path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
build/gr36/docs/doxygen/html/volk__32fc__32f__dot__prod__32fc__a_8h_source.html | aviralchandra/Sandhi | <!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 3.6.4.2 C++ API: volk_32fc_32f_dot_prod_32fc_a.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 3.6.4.2 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('volk__32fc__32f__dot__prod__32fc__a_8h.html','');
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<div class="title">volk_32fc_32f_dot_prod_32fc_a.h</div> </div>
</div><!--header-->
<div class="contents">
<a href="volk__32fc__32f__dot__prod__32fc__a_8h.html">Go to the documentation of this file.</a><div class="fragment"><pre class="fragment"><a name="l00001"></a>00001 <span class="preprocessor">#ifndef INCLUDED_volk_32fc_32f_dot_prod_32fc_a_H</span>
<a name="l00002"></a>00002 <span class="preprocessor"></span><span class="preprocessor">#define INCLUDED_volk_32fc_32f_dot_prod_32fc_a_H</span>
<a name="l00003"></a>00003 <span class="preprocessor"></span>
<a name="l00004"></a>00004 <span class="preprocessor">#include <<a class="code" href="volk__common_8h.html">volk/volk_common.h</a>></span>
<a name="l00005"></a>00005 <span class="preprocessor">#include<stdio.h></span>
<a name="l00006"></a>00006
<a name="l00007"></a>00007
<a name="l00008"></a>00008 <span class="preprocessor">#ifdef LV_HAVE_GENERIC</span>
<a name="l00009"></a>00009 <span class="preprocessor"></span>
<a name="l00010"></a>00010
<a name="l00011"></a>00011 <span class="keyword">static</span> <span class="keyword">inline</span> <span class="keywordtype">void</span> volk_32fc_32f_dot_prod_32fc_a_generic(<a class="code" href="volk__complex_8h.html#ace50e1c8ef539cdeee04bc86f0e99169">lv_32fc_t</a>* result, <span class="keyword">const</span> <a class="code" href="volk__complex_8h.html#ace50e1c8ef539cdeee04bc86f0e99169">lv_32fc_t</a>* input, <span class="keyword">const</span> <span class="keywordtype">float</span> * <a class="code" href="gnuradio-core_2src_2lib_2filter_2interpolator__taps_8h.html#a30bf032e13c2a9fc4a98e14e390cd65a">taps</a>, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> num_points) {
<a name="l00012"></a>00012
<a name="l00013"></a>00013 <span class="keywordtype">float</span> res[2];
<a name="l00014"></a>00014 <span class="keywordtype">float</span> *realpt = &res[0], *imagpt = &res[1];
<a name="l00015"></a>00015 <span class="keyword">const</span> <span class="keywordtype">float</span>* aPtr = (<span class="keywordtype">float</span>*)input;
<a name="l00016"></a>00016 <span class="keyword">const</span> <span class="keywordtype">float</span>* bPtr= <a class="code" href="gnuradio-core_2src_2lib_2filter_2interpolator__taps_8h.html#a30bf032e13c2a9fc4a98e14e390cd65a">taps</a>;
<a name="l00017"></a>00017 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> number = 0;
<a name="l00018"></a>00018
<a name="l00019"></a>00019 *realpt = 0;
<a name="l00020"></a>00020 *imagpt = 0;
<a name="l00021"></a>00021
<a name="l00022"></a>00022 <span class="keywordflow">for</span>(number = 0; number < num_points; number++){
<a name="l00023"></a>00023 *realpt += ((*aPtr++) * (*bPtr));
<a name="l00024"></a>00024 *imagpt += ((*aPtr++) * (*bPtr++));
<a name="l00025"></a>00025 }
<a name="l00026"></a>00026
<a name="l00027"></a>00027 *result = *(<a class="code" href="volk__complex_8h.html#ace50e1c8ef539cdeee04bc86f0e99169">lv_32fc_t</a>*)(&res[0]);
<a name="l00028"></a>00028 }
<a name="l00029"></a>00029
<a name="l00030"></a>00030 <span class="preprocessor">#endif </span><span class="comment">/*LV_HAVE_GENERIC*/</span>
<a name="l00031"></a>00031
<a name="l00032"></a>00032
<a name="l00033"></a>00033 <span class="preprocessor">#ifdef LV_HAVE_SSE</span>
<a name="l00034"></a>00034 <span class="preprocessor"></span>
<a name="l00035"></a>00035
<a name="l00036"></a>00036 <span class="keyword">static</span> <span class="keyword">inline</span> <span class="keywordtype">void</span> volk_32fc_32f_dot_prod_32fc_a_sse( <a class="code" href="volk__complex_8h.html#ace50e1c8ef539cdeee04bc86f0e99169">lv_32fc_t</a>* result, <span class="keyword">const</span> <a class="code" href="volk__complex_8h.html#ace50e1c8ef539cdeee04bc86f0e99169">lv_32fc_t</a>* input, <span class="keyword">const</span> <span class="keywordtype">float</span>* taps, <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> num_points) {
<a name="l00037"></a>00037
<a name="l00038"></a>00038 <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> number = 0;
<a name="l00039"></a>00039 <span class="keyword">const</span> <span class="keywordtype">unsigned</span> <span class="keywordtype">int</span> sixteenthPoints = num_points / 8;
<a name="l00040"></a>00040
<a name="l00041"></a>00041 <span class="keywordtype">float</span> res[2];
<a name="l00042"></a>00042 <span class="keywordtype">float</span> *realpt = &res[0], *imagpt = &res[1];
<a name="l00043"></a>00043 <span class="keyword">const</span> <span class="keywordtype">float</span>* aPtr = (<span class="keywordtype">float</span>*)input;
<a name="l00044"></a>00044 <span class="keyword">const</span> <span class="keywordtype">float</span>* bPtr = <a class="code" href="gnuradio-core_2src_2lib_2filter_2interpolator__taps_8h.html#a30bf032e13c2a9fc4a98e14e390cd65a">taps</a>;
<a name="l00045"></a>00045
<a name="l00046"></a>00046 __m128 a0Val, a1Val, a2Val, a3Val;
<a name="l00047"></a>00047 __m128 b0Val, b1Val, b2Val, b3Val;
<a name="l00048"></a>00048 __m128 x0Val, x1Val, x2Val, x3Val;
<a name="l00049"></a>00049 __m128 c0Val, c1Val, c2Val, c3Val;
<a name="l00050"></a>00050
<a name="l00051"></a>00051 __m128 dotProdVal0 = _mm_setzero_ps();
<a name="l00052"></a>00052 __m128 dotProdVal1 = _mm_setzero_ps();
<a name="l00053"></a>00053 __m128 dotProdVal2 = _mm_setzero_ps();
<a name="l00054"></a>00054 __m128 dotProdVal3 = _mm_setzero_ps();
<a name="l00055"></a>00055
<a name="l00056"></a>00056 <span class="keywordflow">for</span>(;number < sixteenthPoints; number++){
<a name="l00057"></a>00057
<a name="l00058"></a>00058 a0Val = _mm_load_ps(aPtr);
<a name="l00059"></a>00059 a1Val = _mm_load_ps(aPtr+4);
<a name="l00060"></a>00060 a2Val = _mm_load_ps(aPtr+8);
<a name="l00061"></a>00061 a3Val = _mm_load_ps(aPtr+12);
<a name="l00062"></a>00062
<a name="l00063"></a>00063 x0Val = _mm_load_ps(bPtr);
<a name="l00064"></a>00064 x1Val = _mm_load_ps(bPtr);
<a name="l00065"></a>00065 x2Val = _mm_load_ps(bPtr+4);
<a name="l00066"></a>00066 x3Val = _mm_load_ps(bPtr+4);
<a name="l00067"></a>00067 b0Val = _mm_unpacklo_ps(x0Val, x1Val);
<a name="l00068"></a>00068 b1Val = _mm_unpackhi_ps(x0Val, x1Val);
<a name="l00069"></a>00069 b2Val = _mm_unpacklo_ps(x2Val, x3Val);
<a name="l00070"></a>00070 b3Val = _mm_unpackhi_ps(x2Val, x3Val);
<a name="l00071"></a>00071
<a name="l00072"></a>00072 c0Val = _mm_mul_ps(a0Val, b0Val);
<a name="l00073"></a>00073 c1Val = _mm_mul_ps(a1Val, b1Val);
<a name="l00074"></a>00074 c2Val = _mm_mul_ps(a2Val, b2Val);
<a name="l00075"></a>00075 c3Val = _mm_mul_ps(a3Val, b3Val);
<a name="l00076"></a>00076
<a name="l00077"></a>00077 dotProdVal0 = _mm_add_ps(c0Val, dotProdVal0);
<a name="l00078"></a>00078 dotProdVal1 = _mm_add_ps(c1Val, dotProdVal1);
<a name="l00079"></a>00079 dotProdVal2 = _mm_add_ps(c2Val, dotProdVal2);
<a name="l00080"></a>00080 dotProdVal3 = _mm_add_ps(c3Val, dotProdVal3);
<a name="l00081"></a>00081
<a name="l00082"></a>00082 aPtr += 16;
<a name="l00083"></a>00083 bPtr += 8;
<a name="l00084"></a>00084 }
<a name="l00085"></a>00085
<a name="l00086"></a>00086 dotProdVal0 = _mm_add_ps(dotProdVal0, dotProdVal1);
<a name="l00087"></a>00087 dotProdVal0 = _mm_add_ps(dotProdVal0, dotProdVal2);
<a name="l00088"></a>00088 dotProdVal0 = _mm_add_ps(dotProdVal0, dotProdVal3);
<a name="l00089"></a>00089
<a name="l00090"></a>00090 <a class="code" href="volk__common_8h.html#af8ae70079c1927f7c46b6d1880473d17">__VOLK_ATTR_ALIGNED</a>(16) float dotProductVector[4];
<a name="l00091"></a>00091
<a name="l00092"></a>00092 _mm_store_ps(dotProductVector,dotProdVal0); <span class="comment">// Store the results back into the dot product vector</span>
<a name="l00093"></a>00093
<a name="l00094"></a>00094 *realpt = dotProductVector[0];
<a name="l00095"></a>00095 *imagpt = dotProductVector[1];
<a name="l00096"></a>00096 *realpt += dotProductVector[2];
<a name="l00097"></a>00097 *imagpt += dotProductVector[3];
<a name="l00098"></a>00098
<a name="l00099"></a>00099 number = sixteenthPoints*8;
<a name="l00100"></a>00100 for(;number < num_points; number++){
<a name="l00101"></a>00101 *realpt += ((*aPtr++) * (*bPtr));
<a name="l00102"></a>00102 *imagpt += ((*aPtr++) * (*bPtr++));
<a name="l00103"></a>00103 }
<a name="l00104"></a>00104
<a name="l00105"></a>00105 *result = *(<a class="code" href="volk__complex_8h.html#ace50e1c8ef539cdeee04bc86f0e99169">lv_32fc_t</a>*)(&res[0]);
<a name="l00106"></a>00106 }
<a name="l00107"></a>00107
<a name="l00108"></a>00108 <span class="preprocessor">#endif </span><span class="comment">/*LV_HAVE_SSE*/</span>
<a name="l00109"></a>00109
<a name="l00110"></a>00110
<a name="l00111"></a>00111 <span class="preprocessor">#endif </span><span class="comment">/*INCLUDED_volk_32fc_32f_dot_prod_32fc_a_H*/</span>
</pre></div></div><!-- contents -->
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="volk__32fc__32f__dot__prod__32fc__a_8h.html">volk_32fc_32f_dot_prod_32fc_a.h</a> </li>
<li class="footer">Generated on Mon Oct 14 2013 11:58:08 for GNU Radio 3.6.4.2 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>
|
org/bukkit/enchantments/class-use/Enchantment.html | mcuserjp/bukkit_javadoc | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="ja">
<head>
<!-- Generated by javadoc (1.8.0_40) on Sun Apr 10 20:00:11 JST 2016 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>クラス org.bukkit.enchantments.Enchantmentの使用 (Bukkit 1.9.2-R0.1-SNAPSHOT API)</title>
<meta name="date" content="2016-04-10">
<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="\u30AF\u30E9\u30B9 org.bukkit.enchantments.Enchantment\u306E\u4F7F\u7528 (Bukkit 1.9.2-R0.1-SNAPSHOT API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>ブラウザのJavaScriptが無効になっています。</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="ナビゲーション・リンクをスキップ">ナビゲーション・リンクをスキップ</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="ナビゲーション">
<li><a href="../../../../overview-summary.html">概要</a></li>
<li><a href="../package-summary.html">パッケージ</a></li>
<li><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">クラス</a></li>
<li class="navBarCell1Rev">使用</li>
<li><a href="../package-tree.html">階層ツリー</a></li>
<li><a href="../../../../deprecated-list.html">非推奨</a></li>
<li><a href="../../../../index-all.html">索引</a></li>
<li><a href="../../../../help-doc.html">ヘルプ</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>前</li>
<li>次</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/bukkit/enchantments/class-use/Enchantment.html" target="_top">フレーム</a></li>
<li><a href="Enchantment.html" target="_top">フレームなし</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">すべてのクラス</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="クラスの使用 org.bukkit.enchantments.Enchantment" class="title">クラスの使用<br>org.bukkit.enchantments.Enchantment</h2>
</div>
<div class="classUseContainer">
<ul class="blockList">
<li class="blockList">
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、パッケージのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>を使用しているパッケージ</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">パッケージ</th>
<th class="colLast" scope="col">説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="#org.bukkit.enchantments">org.bukkit.enchantments</a></td>
<td class="colLast">
<div class="block">Classes relating to the specialized enhancements to <a href="../../../../org/bukkit/inventory/ItemStack.html" title="org.bukkit.inventory内のクラス"><code>item stacks</code></a>, as part of the <a href="../../../../org/bukkit/inventory/meta/ItemMeta.html" title="org.bukkit.inventory.meta内のインタフェース"><code>meta data</code></a>.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.bukkit.event.enchantment">org.bukkit.event.enchantment</a></td>
<td class="colLast">
<div class="block"><a href="../../../../org/bukkit/event/Event.html" title="org.bukkit.event内のクラス"><code>Events</code></a> triggered from an <a href="../../../../org/bukkit/inventory/EnchantingInventory.html" title="org.bukkit.inventory内のインタフェース"><code>enchantment table</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="#org.bukkit.inventory">org.bukkit.inventory</a></td>
<td class="colLast">
<div class="block">Classes involved in manipulating player inventories and item interactions.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="#org.bukkit.inventory.meta">org.bukkit.inventory.meta</a></td>
<td class="colLast">
<div class="block">The interfaces used when manipulating extra data can can be stored inside
<a href="../../../../org/bukkit/inventory/ItemStack.html" title="org.bukkit.inventory内のクラス"><code>item stacks</code></a>.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<ul class="blockList">
<li class="blockList"><a name="org.bukkit.enchantments">
<!-- -->
</a>
<h3><a href="../../../../org/bukkit/enchantments/package-summary.html">org.bukkit.enchantments</a>での<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>の使用</h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、サブクラスのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/package-summary.html">org.bukkit.enchantments</a>での<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>のサブクラス</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">クラスと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>class </code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/EnchantmentWrapper.html" title="org.bukkit.enchantments内のクラス">EnchantmentWrapper</a></span></code>
<div class="block">A simple wrapper for ease of selecting <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス"><code>Enchantment</code></a>s</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、フィールドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>として宣言されている<a href="../../../../org/bukkit/enchantments/package-summary.html">org.bukkit.enchantments</a>のフィールド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">フィールドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#ARROW_DAMAGE">ARROW_DAMAGE</a></span></code>
<div class="block">Provides extra damage when shooting arrows from bows</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#ARROW_FIRE">ARROW_FIRE</a></span></code>
<div class="block">Sets entities on fire when hit by arrows shot from a bow</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#ARROW_INFINITE">ARROW_INFINITE</a></span></code>
<div class="block">Provides infinite arrows when shooting a bow</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#ARROW_KNOCKBACK">ARROW_KNOCKBACK</a></span></code>
<div class="block">Provides a knockback when an entity is hit by an arrow from a bow</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#DAMAGE_ALL">DAMAGE_ALL</a></span></code>
<div class="block">Increases damage against all targets</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#DAMAGE_ARTHROPODS">DAMAGE_ARTHROPODS</a></span></code>
<div class="block">Increases damage against arthropod targets</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#DAMAGE_UNDEAD">DAMAGE_UNDEAD</a></span></code>
<div class="block">Increases damage against undead targets</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#DEPTH_STRIDER">DEPTH_STRIDER</a></span></code>
<div class="block">Increases walking speed while in water</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#DIG_SPEED">DIG_SPEED</a></span></code>
<div class="block">Increases the rate at which you mine/dig</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#DURABILITY">DURABILITY</a></span></code>
<div class="block">Decreases the rate at which a tool looses durability</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#FIRE_ASPECT">FIRE_ASPECT</a></span></code>
<div class="block">When attacking a target, has a chance to set them on fire</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#FROST_WALKER">FROST_WALKER</a></span></code>
<div class="block">Freezes any still water adjacent to ice / frost which player is walking on</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#KNOCKBACK">KNOCKBACK</a></span></code>
<div class="block">All damage to other targets will knock them back when hit</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#LOOT_BONUS_BLOCKS">LOOT_BONUS_BLOCKS</a></span></code>
<div class="block">Provides a chance of gaining extra loot when destroying blocks</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#LOOT_BONUS_MOBS">LOOT_BONUS_MOBS</a></span></code>
<div class="block">Provides a chance of gaining extra loot when killing monsters</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#LUCK">LUCK</a></span></code>
<div class="block">Decreases odds of catching worthless junk</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#LURE">LURE</a></span></code>
<div class="block">Increases rate of fish biting your hook</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#MENDING">MENDING</a></span></code>
<div class="block">Allows mending the item using experience orbs</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#OXYGEN">OXYGEN</a></span></code>
<div class="block">Decreases the rate of air loss whilst underwater</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#PROTECTION_ENVIRONMENTAL">PROTECTION_ENVIRONMENTAL</a></span></code>
<div class="block">Provides protection against environmental damage</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#PROTECTION_EXPLOSIONS">PROTECTION_EXPLOSIONS</a></span></code>
<div class="block">Provides protection against explosive damage</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#PROTECTION_FALL">PROTECTION_FALL</a></span></code>
<div class="block">Provides protection against fall damage</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#PROTECTION_FIRE">PROTECTION_FIRE</a></span></code>
<div class="block">Provides protection against fire damage</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#PROTECTION_PROJECTILE">PROTECTION_PROJECTILE</a></span></code>
<div class="block">Provides protection against projectile damage</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#SILK_TOUCH">SILK_TOUCH</a></span></code>
<div class="block">Allows blocks to drop themselves instead of fragments (for example,
stone instead of cobblestone)</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#THORNS">THORNS</a></span></code>
<div class="block">Damages the attacker</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#WATER_WORKER">WATER_WORKER</a></span></code>
<div class="block">Increases the speed at which a player may mine underwater</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>を返す<a href="../../../../org/bukkit/enchantments/package-summary.html">org.bukkit.enchantments</a>のメソッド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#getById-int-">getById</a></span>(int id)</code>
<div class="block"><span class="deprecatedLabel">非推奨です。</span>
<div class="block"><span class="deprecationComment">Magic value</span></div>
</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#getByName-java.lang.String-">getByName</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/String.html?is-external=true" title="java.lang内のクラスまたはインタフェース">String</a> name)</code>
<div class="block">Gets the Enchantment at the specified name</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a></code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentWrapper.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/EnchantmentWrapper.html#getEnchantment--">getEnchantment</a></span>()</code>
<div class="block">Gets the enchantment bound to this wrapper</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>[]</code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#values--">values</a></span>()</code>
<div class="block">Gets an array of all the registered <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス"><code>Enchantment</code></a>s</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型のパラメータを持つ<a href="../../../../org/bukkit/enchantments/package-summary.html">org.bukkit.enchantments</a>のメソッド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentWrapper.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/EnchantmentWrapper.html#conflictsWith-org.bukkit.enchantments.Enchantment-">conflictsWith</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> other)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>abstract boolean</code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#conflictsWith-org.bukkit.enchantments.Enchantment-">conflictsWith</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> other)</code>
<div class="block">Check if this enchantment conflicts with another enchantment.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><span class="typeNameLabel">Enchantment.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/enchantments/Enchantment.html#registerEnchantment-org.bukkit.enchantments.Enchantment-">registerEnchantment</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> enchantment)</code>
<div class="block">Registers an enchantment with the given ID and object.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.bukkit.event.enchantment">
<!-- -->
</a>
<h3><a href="../../../../org/bukkit/event/enchantment/package-summary.html">org.bukkit.event.enchantment</a>での<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>の使用</h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型の引数を持つ型を返す<a href="../../../../org/bukkit/event/enchantment/package-summary.html">org.bukkit.event.enchantment</a>のメソッド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="java.util内のクラスまたはインタフェース">Map</a><<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Integer</a>></code></td>
<td class="colLast"><span class="typeNameLabel">EnchantItemEvent.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/event/enchantment/EnchantItemEvent.html#getEnchantsToAdd--">getEnchantsToAdd</a></span>()</code>
<div class="block">Get map of enchantment (levels, keyed by type) to be added to item
(modify map returned to change values).</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、コンストラクタのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型の型引数を持つ<a href="../../../../org/bukkit/event/enchantment/package-summary.html">org.bukkit.event.enchantment</a>のコンストラクタ・パラメータ</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">コンストラクタと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../org/bukkit/event/enchantment/EnchantItemEvent.html#EnchantItemEvent-org.bukkit.entity.Player-org.bukkit.inventory.InventoryView-org.bukkit.block.Block-org.bukkit.inventory.ItemStack-int-java.util.Map-int-">EnchantItemEvent</a></span>(<a href="../../../../org/bukkit/entity/Player.html" title="org.bukkit.entity内のインタフェース">Player</a> enchanter,
<a href="../../../../org/bukkit/inventory/InventoryView.html" title="org.bukkit.inventory内のクラス">InventoryView</a> view,
<a href="../../../../org/bukkit/block/Block.html" title="org.bukkit.block内のインタフェース">Block</a> table,
<a href="../../../../org/bukkit/inventory/ItemStack.html" title="org.bukkit.inventory内のクラス">ItemStack</a> item,
int level,
<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="java.util内のクラスまたはインタフェース">Map</a><<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Integer</a>> enchants,
int i)</code> </td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.bukkit.inventory">
<!-- -->
</a>
<h3><a href="../../../../org/bukkit/inventory/package-summary.html">org.bukkit.inventory</a>での<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>の使用</h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型の引数を持つ型を返す<a href="../../../../org/bukkit/inventory/package-summary.html">org.bukkit.inventory</a>のメソッド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="java.util内のクラスまたはインタフェース">Map</a><<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Integer</a>></code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#getEnchantments--">getEnchantments</a></span>()</code>
<div class="block">Gets a map containing all enchantments and their levels on this item.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型のパラメータを持つ<a href="../../../../org/bukkit/inventory/package-summary.html">org.bukkit.inventory</a>のメソッド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#addEnchantment-org.bukkit.enchantments.Enchantment-int-">addEnchantment</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench,
int level)</code>
<div class="block">Adds the specified <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス"><code>Enchantment</code></a> to this item stack.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#addUnsafeEnchantment-org.bukkit.enchantments.Enchantment-int-">addUnsafeEnchantment</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench,
int level)</code>
<div class="block">Adds the specified <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス"><code>Enchantment</code></a> to this item stack.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#containsEnchantment-org.bukkit.enchantments.Enchantment-">containsEnchantment</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Checks if this ItemStack contains the given <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス"><code>Enchantment</code></a></div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#getEnchantmentLevel-org.bukkit.enchantments.Enchantment-">getEnchantmentLevel</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Gets the level of the specified enchantment on this item stack</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#removeEnchantment-org.bukkit.enchantments.Enchantment-">removeEnchantment</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Removes the specified <a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス"><code>Enchantment</code></a> if it exists on this
ItemStack</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型の型引数を持つ<a href="../../../../org/bukkit/inventory/package-summary.html">org.bukkit.inventory</a>のメソッド・パラメータ</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#addEnchantments-java.util.Map-">addEnchantments</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="java.util内のクラスまたはインタフェース">Map</a><<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Integer</a>> enchantments)</code>
<div class="block">Adds the specified enchantments to this item stack.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><span class="typeNameLabel">ItemStack.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/ItemStack.html#addUnsafeEnchantments-java.util.Map-">addUnsafeEnchantments</a></span>(<a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="java.util内のクラスまたはインタフェース">Map</a><<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Integer</a>> enchantments)</code>
<div class="block">Adds the specified enchantments to this item stack in an unsafe manner.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList"><a name="org.bukkit.inventory.meta">
<!-- -->
</a>
<h3><a href="../../../../org/bukkit/inventory/meta/package-summary.html">org.bukkit.inventory.meta</a>での<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>の使用</h3>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型の引数を持つ型を返す<a href="../../../../org/bukkit/inventory/meta/package-summary.html">org.bukkit.inventory.meta</a>のメソッド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="java.util内のクラスまたはインタフェース">Map</a><<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Integer</a>></code></td>
<td class="colLast"><span class="typeNameLabel">ItemMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/ItemMeta.html#getEnchants--">getEnchants</a></span>()</code>
<div class="block">Returns a copy the enchantments in this ItemMeta.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="http://docs.oracle.com/javase/8/docs/api/java/util/Map.html?is-external=true" title="java.util内のクラスまたはインタフェース">Map</a><<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>,<a href="http://docs.oracle.com/javase/8/docs/api/java/lang/Integer.html?is-external=true" title="java.lang内のクラスまたはインタフェース">Integer</a>></code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentStorageMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/EnchantmentStorageMeta.html#getStoredEnchants--">getStoredEnchants</a></span>()</code>
<div class="block">Gets a copy the stored enchantments in this ItemMeta.</div>
</td>
</tr>
</tbody>
</table>
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="表、メソッドのリストおよび説明の使用">
<caption><span><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a>型のパラメータを持つ<a href="../../../../org/bukkit/inventory/meta/package-summary.html">org.bukkit.inventory.meta</a>のメソッド</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">修飾子とタイプ</th>
<th class="colLast" scope="col">メソッドと説明</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">ItemMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/ItemMeta.html#addEnchant-org.bukkit.enchantments.Enchantment-int-boolean-">addEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench,
int level,
boolean ignoreLevelRestriction)</code>
<div class="block">Adds the specified enchantment to this item meta.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentStorageMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/EnchantmentStorageMeta.html#addStoredEnchant-org.bukkit.enchantments.Enchantment-int-boolean-">addStoredEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench,
int level,
boolean ignoreLevelRestriction)</code>
<div class="block">Stores the specified enchantment in this item meta.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><span class="typeNameLabel">ItemMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/ItemMeta.html#getEnchantLevel-org.bukkit.enchantments.Enchantment-">getEnchantLevel</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Checks for the level of the specified enchantment.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentStorageMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/EnchantmentStorageMeta.html#getStoredEnchantLevel-org.bukkit.enchantments.Enchantment-">getStoredEnchantLevel</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Checks for the level of the stored enchantment.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">ItemMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/ItemMeta.html#hasConflictingEnchant-org.bukkit.enchantments.Enchantment-">hasConflictingEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Checks if the specified enchantment conflicts with any enchantments in
this ItemMeta.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentStorageMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/EnchantmentStorageMeta.html#hasConflictingStoredEnchant-org.bukkit.enchantments.Enchantment-">hasConflictingStoredEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Checks if the specified enchantment conflicts with any enchantments in
this ItemMeta.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">ItemMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/ItemMeta.html#hasEnchant-org.bukkit.enchantments.Enchantment-">hasEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Checks for existence of the specified enchantment.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentStorageMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/EnchantmentStorageMeta.html#hasStoredEnchant-org.bukkit.enchantments.Enchantment-">hasStoredEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Checks for storage of the specified enchantment.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">ItemMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/ItemMeta.html#removeEnchant-org.bukkit.enchantments.Enchantment-">removeEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Removes the specified enchantment from this item meta.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><span class="typeNameLabel">EnchantmentStorageMeta.</span><code><span class="memberNameLink"><a href="../../../../org/bukkit/inventory/meta/EnchantmentStorageMeta.html#removeStoredEnchant-org.bukkit.enchantments.Enchantment-">removeStoredEnchant</a></span>(<a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">Enchantment</a> ench)</code>
<div class="block">Remove the specified stored enchantment from this item meta.</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="ナビゲーション・リンクをスキップ">ナビゲーション・リンクをスキップ</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="ナビゲーション">
<li><a href="../../../../overview-summary.html">概要</a></li>
<li><a href="../package-summary.html">パッケージ</a></li>
<li><a href="../../../../org/bukkit/enchantments/Enchantment.html" title="org.bukkit.enchantments内のクラス">クラス</a></li>
<li class="navBarCell1Rev">使用</li>
<li><a href="../package-tree.html">階層ツリー</a></li>
<li><a href="../../../../deprecated-list.html">非推奨</a></li>
<li><a href="../../../../index-all.html">索引</a></li>
<li><a href="../../../../help-doc.html">ヘルプ</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>前</li>
<li>次</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/bukkit/enchantments/class-use/Enchantment.html" target="_top">フレーム</a></li>
<li><a href="Enchantment.html" target="_top">フレームなし</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">すべてのクラス</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 © 2016. All rights reserved.</small></p>
</body>
</html>
|
2015.1/Estrutura de Dados/Projetos/Projeto 5/www.cs.sunysb.edu/facilities/FAQ/ObtainingMathematica.html | rodrigofegui/UnB | <html>
<head>
<title>Computer Science Department - Obtaining Mathematica or Maple for Personel Use</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<!-- This file contains the site wide Javascript functions and stylesheet -->
<script language="JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}
function MM_preloadImages() { //v3.0
var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}
function MM_findObj(n, d) { //v4.0
var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
if(!x && document.getElementById) x=document.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
//-->
</script>
<link rel="STYLESHEET" type="text/css" href="/style/all.css">
</head>
<body bgcolor="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF">
<table border="0" align="center" width="760">
<tr>
<td valign="top">
<img src="/menu/images/banners/CSfacilitiesbanner.gif" width="640" height="30"><br>
<img src="/menu/images/banners/CSfacilitiespic.jpg" width="640" height="120" vspace="3"><BR>
<table border="0" cellpadding="0" cellspacing="0" width="640">
<tr>
<!-- Shim row, height 1. -->
<td colspan="8" bgcolor="FFFFFF" width="640" height="1"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td gcolor="FFFFFF" width="1" height="1" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- row 1 -->
<td ><a href="/admissions/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('admissions','','/menu/images/CSmenu/admissions_f2.gif',1);" ><img name="admissions" src="/menu/images/CSmenu/admissions.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/research/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('research','','/menu/images/CSmenu/research_f2.gif',1);" ><img name="research" src="/menu/images/CSmenu/research.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/facilities/index.html"><img name="facilities" src="/menu/images/CSmenu/facilities_r1.gif" width="80" height="30" border="0"></a></td>
<td><a href="/people/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('people','','/menu/images/CSmenu/people_f2.gif',1);" ><img name="people" src="/menu/images/CSmenu/people.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/undergrad/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('undergrad','','/menu/images/CSmenu/undergrad_f2.gif',1);" ><img name="undergrad" src="/menu/images/CSmenu/undergrad.gif" width="80" height="30" border="0"></a></td>
<td><a href="/graduate/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('graduate','','/menu/images/CSmenu/graduate_f2.gif',1);" ><img name="graduate" src="/menu/images/CSmenu/graduate.gif" width="80" height="30" border="0"></a></td>
<td ><a href="http://www.cs.sunysb.edu/~news/" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('events','','/menu/images/CSmenu/events_f2.gif',1);" ><img name="events" src="/menu/images/CSmenu/events.gif" width="80" height="30" border="0"></a></td>
<td ><a href="/welcome/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('welcome','','/menu/images/CSmenu/welcome_f2.gif',1);" ><img name="welcome" src="/menu/images/CSmenu/welcome.gif" width="80" height="30" border="0"></a></td>
<td bgcolor="FFFFFF" width="1" height="30" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- row 3 -->
<td colspan="8">
<table border=0 cellpadding=0 cellspacing=0 width="640">
<tr>
<td width="100" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="3" height="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="30" height="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="3" height="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="61" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="118" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="85" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="80" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="100" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
</table>
</td>
<td bgcolor="FFFFFF" width="1" height="3" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- row 3 -->
<td colspan="8">
<table border=0 cellpadding=0 cellspacing=0 width="640">
<tr bgcolor="CCCCCC">
<td bgcolor="CCCCCC" width="100" height="18" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td><a href="/facilities/FAQ/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('faq2','','/menu/images/facilities/faq2_f2.gif',1);" ><img name="faq2" src="/menu/images/facilities/faq2.gif" width="30" height="18" border="0"></a></td>
<td width="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td><img name="row3_dot" src="/menu/images/CSmenu/row3_dot.gif" width="15" height="18" border="0"></td>
<td><a href="/facilities/ComputerScienceLibrary.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('library2','','/menu/images/facilities/library2_f2.gif',1);" ><img name="library2" src="/menu/images/facilities/library2.gif" width="61" height="18" border="0"></a></td>
<td><img name="row3_dot" src="/menu/images/CSmenu/row3_dot.gif" width="15" height="18" border="0"></td>
<td><a href="/facilities/undergrad/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('uglabs2','','/menu/images/facilities/uglabs2_f2.gif',1);" ><img name="uglabs2" src="/menu/images/facilities/uglabs2.gif" width="118" height="18" border="0"></a></td>
<td><img name="row3_dot" src="/menu/images/CSmenu/row3_dot.gif" width="15" height="18" border="0"></td>
<td><a href="/facilities/graduate/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('gradlabs2','','/menu/images/facilities/gradlabs2_f2.gif',1);" ><img name="gradlabs2" src="/menu/images/facilities/gradlabs2.gif" width="85" height="18" border="0"></a></td>
<td><img name="row3_dot" src="/menu/images/CSmenu/row3_dot.gif" width="15" height="18" border="0"></td>
<td><a href="/facilities/research/index.html" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('researchlabs2','','/menu/images/facilities/researchlabs2_f2.gif',1);" ><img name="researchlabs2" src="/menu/images/facilities/researchlabs2.gif" width="80" height="18" border="0"></a></td>
<td bgcolor="CCCCCC" width="100" height="18" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
</table>
</td>
<td bgcolor="FFFFFF" width="1" height="18" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
<tr>
<!-- row 3 -->
<td colspan="8">
<table border=0 cellpadding=0 cellspacing=0 width="640">
<tr>
<td width="100" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="3" height="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="30" height="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="3" height="3" bgcolor="8D4714"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="61" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="118" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="85" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="15" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="80" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
<td width="100" height="3" bgcolor="CCCCCC"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
</table>
</td>
<td bgcolor="FFFFFF" width="1" height="3" border="0"><IMG SRC="/menu/images/CSmenu/blank.gif" WIDTH="1" HEIGHT="1" BORDER="0"></td>
</tr>
</table>
<p>
<!-- Image with table -->
<!-- Image with table -->
</p>
<div align="center">
<h1>
Obtaining Mathematica or Maple for Personal Use
</h1>
</div>
<!-- Enter main content here-->
<br>
<p>
<strong>
Q. How can a CS Department member obtain Mathematica or Maple for personal use?
</strong>
</p>
<P>
The following is a new process developed by Wolfram Research for faculty
and staff of licensed campuses to use to obtain a home-use Mathematica
license:</p>
<p>
To facilitate the process for faculty and staff requesting a Mathematica
home-use license, Wolfram Research has created a Home-Use License Request
Form, which is available online at
http://www.wolfram.com/solutions/highered/homeuse.cgi. The only
information the Mathematica campus license manager and technical
coordinator will need to provide faculty/staff is the Mathematica site
license number.</p>
<p>
Faculty and Staff can also use this form to request an upgrade or renewal
for an existing faculty/staff home-use license. Please note that this form
should not be used for student home-use license requests.</p>
<p>
When a request is received, Wolfram verifies that the applicant is a
current faculty/staff member of your organization and in a department that
is covered by your license program.</p>
<p>
Each individual approved for a home-use license is issued a unique license
number and sent a CD-ROM containing a single-machine version of Mathematica
for the platform requested. Each home-use license expires annually in
conjunction with your organization's campus license. Upgrades are free asthey are released, but each home-use license holder must request them from
Wolfram Research by filling out this form. Certain restrictions of use
apply, so please refer to your organization's home-use license agreement
for details.</p>
<p>
Students can purchase Mathematica in Seawolves for $5.
</p>
<p>
Maple is also available through a campus site license. Faculty should
submit a WREQ request to obtain a copy and students can purchase it for
$5 in Seawolves. You will need to submit a WREQ job in order to
receive the necessary activation codes to install the software.
</p>
<p> </p>
<div align="center">[<a href="FAQbyIndex.html">FAQ by Index</a>] [<a href="index.html">FAQ
by Category</a>]<br>
<br>
</div>
<!-- End main content here-->
</td>
<td valign="top" bordercolor="#FFFFFF">
<div align="center"><a href="http://www.stonybrook.edu"><img src="/menu/images/SBLogo4pmsSM.gif" width="112" height="66" border="0"></a></div>
<BR>
<div align="center"><a href="http://www.cs.sunysb.edu"><img src="/menu/images/cslogotype_color.gif" width="95" height="95" border="0"></a></div>
<BR>
<table width="100%" border=0 cellpadding=2 cellspacing=0>
<tr>
<td align="center">
<form method="get" action="http://www.cs.sunysb.edu/search/search.cgi" name="search" >
<input type="text" name="Terms" id="fdse_TermsEx" size=12 value="Search CS" onFocus="document.search.Terms.value='';document.search.Terms.select()"><input type=image src="/csimages/searchsite.gif" width=15 height=14 alt="Search Now" value="Go">
</form>
</td>
</tr>
</table>
<hr>
<div class="navindex">
<table border=0 cellpadding=5 cellspacing=0>
<tr>
<td width="300">
<HR width="100%">
</td>
</tr>
<tr>
<td> <b><font face="Arial, Helvetica, sans-serif" size="2">
<a href="http://www.cs.sunysb.edu/%7Esso">Services via Single Sign-On</a>
</font></b> </td>
</tr>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="/facilities/FAQ/index.html">Systems
FAQ</a> </font> </td>
</tr>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="http://www.cs.sunysb.edu/~csstaff">Technical Staff</a></td>
</tr>
<tr>
<td><font face="Arial, Helvetica, sans-serif"><a href="/events/newsletters/index.html">Monthly
Newsletter</a> </font> </td>
</tr>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="/documentation/index.html">Documentation</a>
</font> </td>
</tr>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="/DepartmentPolicies.html">Department
Policies</a> </font> </td>
</tr>
<tr>
<td><font face="Arial, Helvetica, sans-serif"><a href="/welcome/directions/BuildingMap.html">Computer Science Department Map</a> </font> </td>
</tr>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="/facilities/GradOrientation_SysStaff.pdf">Start
of Semester Information</a> </font> </td>
</tr>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="/facilities/CampusComputingResources.html">Campus
Computing Resources</a> </font> </td>
</tr>
<tr>
<tr>
<td> <font face="Arial, Helvetica, sans-serif"> <a href="/CSbldg.html">New
CS building Plans</a> </font> </td>
</tr>
</table>
</div>
</table>
</body>
</html>
|
demo.html | AshinGau/pithyUpload | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>pithyUpload</title>
<script src="http://cdn.bootcss.com/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.pithyUpload.js"></script>
<script type="text/javascript">
$(function() {
$('#pithyUpload').pithyUpload({
trigger: 'change',
dataType: 'text',
allowedTypes: ["gif", "jpeg", "jpg", "bmp", "png"],
maxFiles: 8,
maxFileSize: 10 * 1024 * 1024,
extData: {
userid: 'gaoxin',
userpwd: '19931030'
},
onNewFile: function(file) {
console.log('new file:', file.name || file);
},
onComplete: function(data) {
if (data)
console.log('ie complete', data);
else
console.log('complete');
},
onUploadProgress: function(file, percent) {
console.log(file.name, percent);
},
onUploadSuccess: function(file, data, status, xhr) {
console.log(file.name, 'success - ', data);
},
onUploadError: function(file, xhr, status, err) {
console.log(file.name, 'error - ', status);
},
onFileTypeError: function(file) {
console.log('file type error', file);
},
onFileSizeError: function(file) {
console.log('file size error', file);
},
onFilesMaxError: function(file) {
console.log('files max error', file);
}
})
});
</script>
</head>
<body>
<input type="file" name="pithyUpload" id="pithyUpload" multiple="multiple">
</body>
</html> |
html/history.html | kinnla/eniac | <?xml version="1.0" encoding="UTF-8"?>
<!--DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "xhtml1-strict.dtd"-->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>ENIAC simulation: history</title>
<link rel="SHORTCUT ICON" href="eniac.ico" />
<link rel="stylesheet" type="text/css" href="eniac.css" />
<script src="eniac.js" type="text/javascript">@import "eniac.js";</script>
<meta name="author" content="Till Zoppke"/>
<meta name="description"
content="A Simulation of the ENIAC, the first electronic digital computer
build in 1945, as a Java Applet."/>
<meta name="keywords"
content="ENIAC, simulation, Java, Applet, history of computing"/>
<meta name="robots" content="index, follow"/>
</head>
<body>
<h1>ENIAC simulation: <i class="date"> history </i></h1>
<table class="body" summary="main table">
<colgroup>
<col width="88"/>
<col/>
</colgroup>
<tr>
<td valign="top" class="navigation">
<p class="navigation">
<a href="index.html" class="navigation">index</a>
</p>
<p class="navigation">
<a href="simulation.html" class="navigation">
simulation</a>
</p>
<p class="highlight"> history </p>
<p class="navigation">
<a href="faq.html" class="navigation"> f.a.q.</a>
</p>
<p class="navigation">
<a href="links.html" class="navigation"> links</a>
</p>
<p class="navigation">
<a href="about.html" class="navigation"> about</a>
</p>
</td>
<td class="text">
<h2>Trajectory calculation </h2>
<p> At the time of World War II intelligent bombs were not
yet developed, so ground based artillery was used to
attack the enemy. Depending on the distance of the
target and the type of artillery, the bullet has to be
shoot in a certain angle. This angle also is related to
the weather, especially to the wind. To know the
correct angle in the specific situation, the artillery
men used so-called firing tables. But those firing
tables had to be computed first. </p>
<p> Those ballistic computations were done at the Moore
School of Electrical Engineering, part of the
University of Pennsylvania, too.</p>
<p class="cite">Calculating a trajectory could take up to
40 hours using a desk-top calculator. The same problem
took 30 minutes or so on the Moore School's
differential analyzer. But the School had only one such
machine, and since each firing table involved hundreds
of trajectories it might still take the better part of
a month to complete just one table. <a
href="#references" class="references">[1]</a></p>
<p> The speed up in developing new artillery designs caused
an increased need of computation power. In November
1942 US forces landed in French North Africa, and
entered a terrain, which was entirely different from
what they had met before. The existing firing tables
turned out as completely useless. That made the
computation power totally to the bottleneck of the war
machinery. </p>
<p class="img"> <img src="history1.jpeg"
alt="View of the ENIAC in its U-shaped room" /> <br/>
View of the ENIAC in its U-shaped room (US Army photo)</p>
<p> Under these circumstances John Mauchly, a member of
Moore School's <i>Engineering, Science, and Management
War Training</i> (ESMWT) program, wrote a first
five-page memo called <i>The Use of Vacuum Tube Devices
in Calculating</i>. In this paper he suggested a
machine that would add 5,000 10-digit numbers per
second and would be more than 100 times faster than the
fastest computer at that time (the fastest computer in
1942 was a mechanical relay computer operating at
Harvard, Bell Laboratories with 15-50 additions per
second <a href="#references"
class="references">[1]</a>).</p>
<h2> Speed up through vacuum tubes </h2>
<p> The memo was followed by two proposals, which Mauchly
wrote together with J. Presper Eckert, Jr., an
instructor at Moore School. In June, 1942, a contract
was signed and the project became funded by the United
States Army. The machine to be developed was named
<i>Electronic Numerical Integrator And Computer</i>,
short <i>ENIAC</i>. </p>
<p> The ENIAC's great innovation was the usage of vacuum
tubes for number representation in contrast to
mechanical relays, which were commonly used at that
time. The machine consists out of forty independent
panels, each 0.6 m wide, 2.7 m high and 0.7 m deep plus
three movable function tables. Those units were
<i>arranged in U shape occupying an area of about 10m
by 17m</i> <a href="#references"
class="references">[2]</a>. The total number of 17,468
vacuum tubes were used. The first demonstration of the
ENIAC's computing power could be given two years
later:</p>
<p class="cite"> In May of 1944, the ENIAC team was able to
demonstrate ENIAC's workability in what has come to be
known as the two accumulator test. In this, one
accumulator was made to increment its value from one to
five. The number was then transferred into the second
unit one thousand times using the limited control
circuitry housed in each accumulator, all in just over
one fifth of a second, or about the blink of the eye.
At the end of the test, the second accumulator sat
idle, displaying the number 5,000 – hardly the
most impressive of mathematical feats. <a
href="#references" class="references">[1]</a></p>
<p> One problem to deal with was the reliability of the
vacuum tubes. For frequently used circuits the tubes
were selected by hands, and special test procedures
were implemented to identify a broken tube within
minutes in case of a failure. This happened about two
or three times a week causing a weekly downtime of only
a few hours. </p>
<h2>Programming the ENIAC</h2>
<p>The ENIAC didn't have a memory to store programs. So
programming the ENIAC means physically connecting the
units by cables and turning switches to the appropriate
settings. This work was done by six women whose jobs
were called computers. They were chosen from a group of
over eighty women that were calculating ballistic
trajectories by hand. </p>
<p class="img"> <img src="history2.jpeg"
alt="View of the ENIAC in its U-shaped room" />
<br/>The first professional programmers (US Army photo)</p>
<p> 20 of the ENIAC's 40 units were Accumulators. An
Accumulator was capable to store a 10-digit number, to
add and to subtract. Other arithmetic units were the
Multiplier, supported by the Function Table, and the
Divider/Square-rooter. For fast number input, the
Constant Transmitter was used, whereas for controlling
the program flow a Master Programmer was helpful. The
IO connection to stored data was done by an IBM card
reader and an IBM card punch controlled by a printer
panel. Finally there were the Cycling unit as pulse
machine and the Initiating unit to boot the whole
machine or to start a program. </p>
<p> In May 1945, yet before the ENIAC was formally
completed, the World War II came to its end. That
meant, the initial aim of computing firing tables for
the artillery became obsolete. But the upcoming cold
war required even more complex computations. So <i>the
first real task assigned to ENIAC during its test runs
in 1945 involved millions of discrete calculations
associated with top-secret studies of thermonuclear
chain reactions – the hydrogen bomb. <a
href="#references" class="references">[1]</a></i></p>
<h2> <a id="references" name="references"/> References </h2>
<p class="references"> [1] D. Winegrad and A. Akere: <i>A
Short History of the Second American Revolution</i>,
In: <i>ENIAC's 50th Anniversary: The Birth of the
Information Age</i>, The University of Pennsylvania
Almanac N. 42, Jan. 1996. </p>
<p class="references"> [2] H. H. Goldstine and A. Goldstine
(1946): <i>The Electronic Numerical Integrator and
Computer (ENIAC)</i>. In B. Randell (Eds.): <i>The
Origins of Digital Computers</i>, Springer-Verlag
(1982). </p>
</td>
</tr>
<tr>
<td class="w3c">
<a
href="javascript:onclick=openWindow('http://validator.w3.org/check?uri=referer');">
<img src="./valid-xhtml10" alt="Valid XHTML 1.0!"
class="w3c" />
</a>
</td>
<td class="subscript">
<script type="text/javascript"> lastModified(); </script>
</td>
</tr>
</table>
</body>
</html> |
doc/se/his/iit/it325g/examples/messagePassing/asynchMessExchange/class-use/GlobalProgramState.html | JonasMikaelMellin/ConcurrentProgrammingExamplesInJava | <!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_60) on Tue Nov 21 15:12:31 CET 2017 -->
<title>Uses of Class se.his.iit.it325g.examples.messagePassing.asynchMessExchange.GlobalProgramState</title>
<meta name="date" content="2017-11-21">
<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 se.his.iit.it325g.examples.messagePassing.asynchMessExchange.GlobalProgramState";
}
}
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="../../../../../../../../se/his/iit/it325g/examples/messagePassing/asynchMessExchange/GlobalProgramState.html" title="class in se.his.iit.it325g.examples.messagePassing.asynchMessExchange">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?se/his/iit/it325g/examples/messagePassing/asynchMessExchange/class-use/GlobalProgramState.html" target="_top">Frames</a></li>
<li><a href="GlobalProgramState.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 se.his.iit.it325g.examples.messagePassing.asynchMessExchange.GlobalProgramState" class="title">Uses of Class<br>se.his.iit.it325g.examples.messagePassing.asynchMessExchange.GlobalProgramState</h2>
</div>
<div class="classUseContainer">No usage of se.his.iit.it325g.examples.messagePassing.asynchMessExchange.GlobalProgramState</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="../../../../../../../../se/his/iit/it325g/examples/messagePassing/asynchMessExchange/GlobalProgramState.html" title="class in se.his.iit.it325g.examples.messagePassing.asynchMessExchange">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?se/his/iit/it325g/examples/messagePassing/asynchMessExchange/class-use/GlobalProgramState.html" target="_top">Frames</a></li>
<li><a href="GlobalProgramState.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>
|
js/src/views/ParityBar/parityBar.css | jesuscript/parity | /* Copyright 2015, 2016 Parity Technologies (UK) Ltd.
/* This file is part of Parity.
/*
/* Parity 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.
/*
/* Parity 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 Parity. If not, see <http://www.gnu.org/licenses/>.
*/
.bar, .expanded {
position: fixed;
bottom: 0;
right: 0;
font-size: 16px;
font-family: 'Roboto', sans-serif;
z-index: 10001;
}
.overlay {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: rgba(255, 255, 255, 0.5);
z-index: 10000;
}
.bar {
vertical-align: middle;
display: flex;
flex-wrap: wrap;
width: 100%;
}
.expanded {
right: 1em;
border-radius: 4px 4px 0 0;
display: flex;
flex-direction: column;
max-height: 50vh;
}
.expanded .content {
flex: 1;
overflow-y: auto;
overflow-x: hidden;
display: flex;
background: rgba(0, 0, 0, 0.8);
min-height: 16em;
}
.corner {
position: absolute;
bottom: 0;
right: 1em;
border-radius: 4px 4px 0 0;
}
.cornercolor {
background: rgba(0, 0, 0, 0.5);
padding: 0.5em 1em;
}
.link {
white-space: nowrap;
border: none;
outline: none !important;
color: white !important;
display: inline-block;
}
.link img, .link svg {
height: 24px !important;
width: 24px !important;
margin: 2px 0.5em 0 0;
}
.link+.link {
margin-left: 1em;
}
.button, .parityButton {
overflow: visible !important;
}
.parityButton img {
width: auto !important;
height: 24px;
}
.button svg {
fill: white !important;
}
.label {
position: relative;
display: inline-block;
vertical-align: top;
}
.labelText {
text-transform: uppercase;
vertical-align: top;
}
.labelBubble {
position: absolute;
top: 0px;
right: -10px;
}
.header {
height: 2em;
padding: 0.5em 1em;
background: rgba(0, 0, 0, 0.25);
margin-bottom: 0;
}
.header:after {
clear: both;
}
.header button,
.corner button {
color: white !important;
}
.header svg,
.coner svg {
fill: white !important;
}
.body {
padding: 1em;
}
.title {
float: left;
}
.actions {
float: right;
margin-top: -2px;
}
.actions div {
margin-left: 1em;
display: inline-block;
cursor: pointer;
}
.parityIcon, .signerIcon {
width: 24px;
height: 24px;
vertical-align: middle;
margin-left: 12px;
}
|
tag/isomorphism.html | nbloomf/nbloomf.github.io | <?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>nbloomf.blog - Posts tagged "isomorphism"</title>
<link rel="stylesheet" type="text/css" href="../css/default.css" />
<link rel="icon" href="../raw/gfx/icon/favicon-32.png" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="../raw/gfx/icon/favicon-57.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../raw/gfx/icon/favicon-114.png" />
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../raw/gfx/icon/favicon-152.png" />
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML">
</script>
</head>
<body>
<div id="header">
<div id="logo">
<a href="../index.html">nbloomf</a>
</div>
<div id="navigation">
<a href="../index.html">Home</a>
<a href="../pages/about.html">About</a>
<a href="../pages/projects.html">Projects</a>
<a href="../archive.html">Blog</a>
</div>
</div>
<div id="content">
<h1>Posts tagged "isomorphism"</h1>
<!-- BEGIN CONTENT -->
<ol reversed="reversed" class="post-archive">
<li><a href="../posts/2010-06-25-isomorphisms-among-semidirect-products-by-a-cyclic-group.html">Isomorphisms among semidirect products by a cyclic group</a> - <span class="post-date">2010-06-25</span></li>
</ol>
<!-- END CONTENT -->
</div>
<div id="footer"></div>
</body>
</html>
|
1. Docs/Doxygen/html/structarm__fir__sparse__instance__q31-members.html | MyEmbeddedWork/ARM_CORTEX_M3-STM32 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.13"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>STM32_CMSIS: Member List</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtreedata.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</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>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">STM32_CMSIS
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.13 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<script type="text/javascript" src="menudata.js"></script>
<script type="text/javascript" src="menu.js"></script>
<script type="text/javascript">
$(function() {
initMenu('',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
</script>
<div id="main-nav"></div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('structarm__fir__sparse__instance__q31.html','');});
</script>
<div id="doc-content">
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div class="header">
<div class="headertitle">
<div class="title">arm_fir_sparse_instance_q31 Member List</div> </div>
</div><!--header-->
<div class="contents">
<p>This is the complete list of members for <a class="el" href="structarm__fir__sparse__instance__q31.html">arm_fir_sparse_instance_q31</a>, including all inherited members.</p>
<table class="directory">
<tr class="even"><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html#afdd3a1dc72132c854dc379154b68b674">maxDelay</a></td><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html">arm_fir_sparse_instance_q31</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html#a07b6c01e58ec6dde384719130d36b0dc">numTaps</a></td><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html">arm_fir_sparse_instance_q31</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html#a093d6227f0d1597982cd083fb126f4e0">pCoeffs</a></td><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html">arm_fir_sparse_instance_q31</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html#a830be89daa5a393b225048889aa045d1">pState</a></td><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html">arm_fir_sparse_instance_q31</a></td><td class="entry"></td></tr>
<tr class="even"><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html#ab87ae457adec8f727afefaa2599fc983">pTapDelay</a></td><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html">arm_fir_sparse_instance_q31</a></td><td class="entry"></td></tr>
<tr><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html#a557ed9d477e76e4ad2019344f19f568a">stateIndex</a></td><td class="entry"><a class="el" href="structarm__fir__sparse__instance__q31.html">arm_fir_sparse_instance_q31</a></td><td class="entry"></td></tr>
</table></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.13 </li>
</ul>
</div>
</body>
</html>
|
TekkitRestrict/doc/nl/taico/tekkitrestrict/config/YamlRepresenter.html | EterniaLogic/TekkitRestrict | <!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_45) on Wed May 28 15:31:04 CEST 2014 -->
<title>YamlRepresenter</title>
<meta name="date" content="2014-05-28">
<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="YamlRepresenter";
}
//-->
</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/YamlRepresenter.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="../../../../nl/taico/tekkitrestrict/config/YamlConstructor.ConstructCustomObject.html" title="class in nl.taico.tekkitrestrict.config"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.RepresentConfigurationSection.html" title="class in nl.taico.tekkitrestrict.config"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?nl/taico/tekkitrestrict/config/YamlRepresenter.html" target="_top">Frames</a></li>
<li><a href="YamlRepresenter.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><a href="#nested_class_summary">Nested</a> | </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">nl.taico.tekkitrestrict.config</div>
<h2 title="Class YamlRepresenter" class="title">Class YamlRepresenter</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.yaml.snakeyaml.representer.BaseRepresenter</li>
<li>
<ul class="inheritance">
<li>org.yaml.snakeyaml.representer.Representer</li>
<li>
<ul class="inheritance">
<li>nl.taico.tekkitrestrict.config.YamlRepresenter</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<hr>
<br>
<pre>public class <span class="strong">YamlRepresenter</span>
extends org.yaml.snakeyaml.representer.Representer</pre>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</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>
<tr class="altColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentArray</strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentBoolean</strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentByteArray</strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentDate</strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentEnum</strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentIterator</strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentList</strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentMap</strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentNull</strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentNumber</strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentSet</strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected class </code></td>
<td class="colLast"><code><strong>org.yaml.snakeyaml.representer.SafeRepresenter.RepresentString</strong></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>private class </code></td>
<td class="colLast"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.RepresentConfigurationSection.html" title="class in nl.taico.tekkitrestrict.config">YamlRepresenter.RepresentConfigurationSection</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>private class </code></td>
<td class="colLast"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.RepresentConfigurationSerializable.html" title="class in nl.taico.tekkitrestrict.config">YamlRepresenter.RepresentConfigurationSerializable</a></strong></code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="nested_classes_inherited_from_class_org.yaml.snakeyaml.representer.Representer">
<!-- -->
</a>
<h3>Nested classes/interfaces inherited from class org.yaml.snakeyaml.representer.Representer</h3>
<code>org.yaml.snakeyaml.representer.Representer.RepresentJavaBean</code></li>
</ul>
</li>
</ul>
<!-- =========== 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 java.util.regex.Pattern</code></td>
<td class="colLast"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.html#BINARY_PATTERN">BINARY_PATTERN</a></strong></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected java.util.Map<java.lang.Class<? extends java.lang.Object>,org.yaml.snakeyaml.nodes.Tag></code></td>
<td class="colLast"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.html#classTags">classTags</a></strong></code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_org.yaml.snakeyaml.representer.BaseRepresenter">
<!-- -->
</a>
<h3>Fields inherited from class org.yaml.snakeyaml.representer.BaseRepresenter</h3>
<code>defaultFlowStyle, multiRepresenters, nullRepresenter, objectToRepresent, representedObjects, representers</code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.html#YamlRepresenter()">YamlRepresenter</a></strong>()</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>org.yaml.snakeyaml.nodes.Tag</code></td>
<td class="colLast"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.html#addClassTag(java.lang.Class, java.lang.String)">addClassTag</a></strong>(java.lang.Class<? extends java.lang.Object> arg0,
java.lang.String arg1)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>org.yaml.snakeyaml.nodes.Tag</code></td>
<td class="colLast"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.html#addClassTag(java.lang.Class, org.yaml.snakeyaml.nodes.Tag)">addClassTag</a></strong>(java.lang.Class<? extends java.lang.Object> arg0,
org.yaml.snakeyaml.nodes.Tag arg1)</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected org.yaml.snakeyaml.nodes.Tag</code></td>
<td class="colLast"><code><strong><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.html#getTag(java.lang.Class, org.yaml.snakeyaml.nodes.Tag)">getTag</a></strong>(java.lang.Class<?> arg0,
org.yaml.snakeyaml.nodes.Tag arg1)</code> </td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.yaml.snakeyaml.representer.Representer">
<!-- -->
</a>
<h3>Methods inherited from class org.yaml.snakeyaml.representer.Representer</h3>
<code>checkGlobalTag, getProperties, representJavaBean, representJavaBeanProperty</code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.yaml.snakeyaml.representer.BaseRepresenter">
<!-- -->
</a>
<h3>Methods inherited from class org.yaml.snakeyaml.representer.BaseRepresenter</h3>
<code>getDefaultFlowStyle, getPropertyUtils, isExplicitPropertyUtils, represent, representData, representMapping, representScalar, representScalar, representSequence, setDefaultFlowStyle, setDefaultScalarStyle, setPropertyUtils</code></li>
</ul>
<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">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="classTags">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>classTags</h4>
<pre>protected java.util.Map<java.lang.Class<? extends java.lang.Object>,org.yaml.snakeyaml.nodes.Tag> classTags</pre>
</li>
</ul>
<a name="BINARY_PATTERN">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>BINARY_PATTERN</h4>
<pre>public static java.util.regex.Pattern BINARY_PATTERN</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="YamlRepresenter()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>YamlRepresenter</h4>
<pre>public YamlRepresenter()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getTag(java.lang.Class, org.yaml.snakeyaml.nodes.Tag)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getTag</h4>
<pre>protected org.yaml.snakeyaml.nodes.Tag getTag(java.lang.Class<?> arg0,
org.yaml.snakeyaml.nodes.Tag arg1)</pre>
</li>
</ul>
<a name="addClassTag(java.lang.Class, java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>addClassTag</h4>
<pre>public org.yaml.snakeyaml.nodes.Tag addClassTag(java.lang.Class<? extends java.lang.Object> arg0,
java.lang.String arg1)</pre>
</li>
</ul>
<a name="addClassTag(java.lang.Class, org.yaml.snakeyaml.nodes.Tag)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>addClassTag</h4>
<pre>public org.yaml.snakeyaml.nodes.Tag addClassTag(java.lang.Class<? extends java.lang.Object> arg0,
org.yaml.snakeyaml.nodes.Tag arg1)</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/YamlRepresenter.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="../../../../nl/taico/tekkitrestrict/config/YamlConstructor.ConstructCustomObject.html" title="class in nl.taico.tekkitrestrict.config"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../nl/taico/tekkitrestrict/config/YamlRepresenter.RepresentConfigurationSection.html" title="class in nl.taico.tekkitrestrict.config"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?nl/taico/tekkitrestrict/config/YamlRepresenter.html" target="_top">Frames</a></li>
<li><a href="YamlRepresenter.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><a href="#nested_class_summary">Nested</a> | </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>
|
src/main/webapp/WEB-INF/templates/zh_cn/system/user/default/usercenter/ztc_apply_view.html | yzhui/YufanPIM | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>直通车申请详情 - Powered by Sailmi</title>
<meta name="keywords" content="$!config.keywords" />
<meta name="description" content="$!config.description" />
<meta name="generator" content="Sailmi Service Mall 2.0" />
<meta name="author" content="www.sailmi.com" />
<meta name="copyright" content="Sailmi Inc. All Rights Reserved">
<link href="$!webPath/resources/style/system/front/default/css/public.css" type="text/css" rel="stylesheet" />
<link href="$!webPath/resources/style/system/front/default/css/user.css" type="text/css" rel="stylesheet" />
<script src="$!webPath/resources/js/jquery-1.6.2.js"></script>
</head>
<body>
$!httpInclude.include("/top.htm")
<div class="main">
$!httpInclude.include("/seller/nav_head.htm")
<div class="user_center">
<table width="1000" border="0" cellspacing="0" cellpadding="0" class="user_table">
<tr>
$!httpInclude.include("/seller/nav.htm?op=ztc_apply")
<td id="centerbg" valign="top">
<div class="buyer_position"><div class="buyer_p_box"><a href="$!webPath/seller/index.htm">卖家中心</a> > <span>直通车详情</span></div></div>
<div class="productmain">
<div class="ordernav">
<ul class="orderul">
<li class="other"><a href='$!webPath/seller/ztc_apply.htm'>直通车申请</a></li>
<li class="other"><a href='$!webPath/seller/ztc_apply_list.htm'>直通车申请列表</a></li>
<li class="other"><a href='$!webPath/seller/ztc_list.htm'>直通车商品</a></li>
<li class="this">直通车申请详情</li>
</ul>
</div>
<div class="ordercon">
<div class="addnav">
<table width="705" border="0" cellspacing="0" cellpadding="0" class="addnavtable">
<tr>
<td width="100" align="right" valign="top">商品名称:</td>
<td class="px10 message">$!obj.goods_name</td>
</tr>
#foreach($reply in $obj.replys)
#end
<tr>
<td align="right" valign="top">直通车价格:</td>
<td class="px10">$!{obj.ztc_price}金币/天</td>
</tr>
<tr>
<td align="right" valign="top">消耗金币:</td>
<td class="px10">$!{obj.ztc_gold}金币 </td>
</tr>
<tr>
<td align="right" valign="top">开始时间:</td>
<td class="px10">$!obj.ztc_begin_time</td>
</tr>
<tr>
<td align="right" valign="top">支付状态:</td>
#if($!obj.ztc_pay_status==0)
#set($ztc_pay_status="等待支付")
#end
#if($!obj.ztc_pay_status==1)
#set($ztc_pay_status="支付成功")
#end
<td class="px10">$!ztc_pay_status</td>
</tr>
<tr>
<td align="right" valign="top">直通车状态:</td>
#if($!obj.ztc_status==1)
#set($ztc_status="待审核")
#end
#if($!obj.ztc_status==2)
#set($ztc_status="审核通过")
#end
#if($!obj.ztc_status==-1)
#set($ztc_status="审核失败")
#end
<td class="px10">$!ztc_status</td>
</tr>
#if($!obj.ztc_admin)
<tr>
<td align="right" valign="top">操作管理员:</td>
<td class="px10">$!obj.ztc_admin.userName</td>
</tr>
#end
#if($!obj.ztc_admin_content)
<tr>
<td align="right" valign="top">操作备注:</td>
<td class="px10">$!obj.ztc_admin_content</td>
</tr>
#end
<tr>
<td align="right" valign="top"> </td>
<td class="px10"><span class="setsub">
<input type="button" value="返回列表" style="cursor:pointer;" onclick="window.location.href='$!webPath/seller/ztc_apply.htm'" />
</span></td>
</tr>
</table>
</div>
</div>
</div></td>
</tr>
</table>
</div>
$!httpInclude.include("/footer.htm")
</div>
</body>
</html>
|
app/views/main.html | ElSaico/automation-track-builder | <div class="navbar navbar-default navbar-static-top">
<div class="container">
<div class="navbar-header navbar-brand">
<span class="text-primary">Automation Track Builder</span>
</div>
<div class="collapse navbar-collapse navbar-right">
<ul class="nav navbar-nav">
<li>
<input id="import-file" type="file" class="hidden" />
<a ng-click="importFile()">
<span class="glyphicon glyphicon-import"></span>
Load file
</a>
</li>
<li>
<a ng-click="exportFile()">
<span class="glyphicon glyphicon-export"></span>
Save file
</a>
</li>
</ul>
</div>
</div>
</div>
<canvas id="track-overview" width="640" height="360">
</canvas>
<br/>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label>Track name</label>
<input type="text" class="form-control" ng-model="track.name" />
</div>
2D total length: {{ total2D|number:2 }}m
<br/>
3D total length: {{ total3D|number:2 }}m
</div>
<div class="col-sm-4">
<button class="btn btn-default btn-block" ng-click="track.cornerPush(); onTrackUpdate()">
<span class="glyphicon glyphicon-plus"></span>
Append corner
</button>
<button class="btn btn-default btn-block" ng-click="track.cornerPop(); onTrackUpdate()">
<span class="glyphicon glyphicon-remove"></span>
Remove last corner
</button>
</div>
<div class="col-sm-4">
<input id="background-file" type="file" class="hidden" />
<button type="button" class="btn btn-default btn-lg btn-block" ng-click="loadBG()">
<span class="glyphicon glyphicon-picture"></span>
Load background<br/><small>1280x720</small>
</button>
<div class="btn-group btn-group-justified">
<div class="btn btn-default" ng-class="{active: track.pixelMode}" ng-click="track.setPixelMode()">
Pixels
</div>
<div class="btn btn-default" ng-class="{active: !track.pixelMode}" ng-click="track.setMeterMode()">
Meters
</div>
</div>
</div>
</div>
<br/>
<div class="row">
<div class="col-sm-4">
<div class="form-group">
<label>Start position</label>
<div class="input-group">
<span class="input-group-addon">X</span>
<input type="number" class="form-control" min="1" max="1280" ng-model="track.start.x" ng-change="onTrackUpdate()" />
<span class="input-group-addon">px</span>
</div>
<div class="input-group">
<span class="input-group-addon">Y</span>
<input type="number" class="form-control" min="1" max="720" ng-model="track.start.y" ng-change="onTrackUpdate()" />
<span class="input-group-addon">px</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label>Sector distance</label>
<div class="input-group">
<span class="input-group-addon">1</span>
<input type="number" class="form-control" min="1" step="0.1" ng-model="track.split1" />
<span class="input-group-addon">m</span>
</div>
<div class="input-group">
<span class="input-group-addon">2</span>
<input type="number" class="form-control" min="1" step="0.1" ng-model="track.split2" />
<span class="input-group-addon">m</span>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="form-group">
<label>Scale</label>
<div class="input-group">
<input type="number" class="form-control" min="1" ng-model="track.scale.pixels" ng-change="onTrackUpdate()" />
<span class="input-group-addon">px</span>
</div>
<div class="input-group">
<input type="number" class="form-control" min="1" ng-model="track.scale.meters" ng-change="onTrackUpdate()" />
<span class="input-group-addon">m</span>
</div>
</div>
</div>
</div>
<br/>
<div class="row" ng-if="track.selected >= 0">
<div class="col-sm-5 col-sm-offset-1">
2D corner length: {{ track.corners[track.selected].length2D|number:2 }}m
</div>
<div class="col-sm-5">
3D corner length: {{ track.corners[track.selected].length3D|number:2 }}m
</div>
<div class="col-sm-5 col-sm-offset-1">
2D corner distance: {{ track.corners[track.selected].distance2D|number:2 }}m
</div>
<div class="col-sm-5">
3D corner distance: {{ track.corners[track.selected].distance3D|number:2 }}m
</div>
</div>
<br/>
<div class="row" ng-if="track.selected >= 0">
<div class="visible-xs">
<div class="btn-group btn-group-lg btn-group-justified">
<div class="btn-group">
<button type="button" class="btn btn-default"
ng-class="{active: track.corners[track.selected].layout == 1}" ng-click="track.cornerLeft(); onTrackUpdate()">
<span class="glyphicon glyphicon-arrow-left"></span>
</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-default"
ng-class="{active: track.corners[track.selected].layout == 0}" ng-click="track.cornerStraight(); onTrackUpdate()">
<span class="glyphicon glyphicon-arrow-up"></span>
</button>
</div>
<div class="btn-group">
<button type="button" class="btn btn-default"
ng-class="{active: track.corners[track.selected].layout == -1}" ng-click="track.cornerRight(); onTrackUpdate()">
<span class="glyphicon glyphicon-arrow-right"></span>
</button>
</div>
</div>
<br/>
</div>
<div class="hidden-xs col-sm-2">
<div class="btn-group-vertical btn-group-lg btn-block">
<button type="button" class="btn btn-default"
ng-class="{active: track.corners[track.selected].layout == 1}" ng-click="track.cornerLeft(); onTrackUpdate()">
<span class="glyphicon glyphicon-arrow-left"></span>
</button>
<button type="button" class="btn btn-default"
ng-class="{active: track.corners[track.selected].layout == 0}" ng-click="track.cornerStraight(); onTrackUpdate()">
<span class="glyphicon glyphicon-arrow-up"></span>
</button>
<button type="button" class="btn btn-default"
ng-class="{active: track.corners[track.selected].layout == -1}" ng-click="track.cornerRight(); onTrackUpdate()">
<span class="glyphicon glyphicon-arrow-right"></span>
</button>
</div>
</div>
<div class="col-sm-5">
<div class="form-group">
<label>Sportiness</label>
<input type="range" class="form-control" min="0" max="5" step="0.0001" ng-model="track.corners[track.selected].sportiness" />
</div>
<div class="form-group" ng-if="track.corners[track.selected].layout === 0">
<label>Length</label>
<div class="input-group">
<input type="number" class="form-control" min="1" ng-model="track.corners[track.selected].layoutInfo" ng-change="onTrackUpdate()" />
<span ng-if="track.pixelMode" class="input-group-addon">px</span>
<span ng-if="!track.pixelMode" class="input-group-addon">m</span>
</div>
</div>
<div class="form-group" ng-if="track.corners[track.selected].layout !== 0">
<label>Corner radius</label>
<div class="input-group">
<input type="number" class="form-control" min="1" ng-model="track.corners[track.selected].radius" ng-change="onTrackUpdate()" />
<span ng-if="track.pixelMode" class="input-group-addon">px</span>
<span ng-if="!track.pixelMode" class="input-group-addon">m</span>
</div>
</div>
<div class="form-group" ng-if="track.corners[track.selected].layout !== 0">
<label>Angle</label>
<div class="input-group">
<input type="number" class="form-control" min="1" max="360" step="0.5" ng-model="track.corners[track.selected].layoutInfo" ng-change="onTrackUpdate()" />
<span class="input-group-addon">º</span>
</div>
</div>
</div>
<div class="col-sm-5">
<div class="form-group">
<label>Slope</label>
<div class="input-group">
<input type="number" class="form-control" min="-100" max="100" ng-model="track.corners[track.selected].slope" />
<span class="input-group-addon">%</span>
</div>
</div>
<div class="form-group">
<label>Camber</label>
<div class="input-group">
<input type="number" class="form-control" min="-90" max="90" ng-model="track.corners[track.selected].camber" />
<span class="input-group-addon">º</span>
</div>
</div>
</div>
</div>
<div class="alert alert-info" role="alert" ng-if="track.pixelMode">
<strong>Attention:</strong> The track preview above is scaled 1:2.
Take this into consideration when defining the starting position and corner lengths.
</div>
</div>
<script id="track-template" type="text/x-lua">
--You Can use 0, 1, -1 instead.
local STRAIGHT = 0
local LEFT = 1
local RIGHT = -1
Track = {
Name = "{{name}}",
--Track Image Info
--Track Image must be 1280 x 720
--Start Position on the Image x,y from Top Left
Start = { {{start.x}}, {{start.y}} },
--How many pixels per meter ( Pixels / Length )
--Measure a long straight and then manipulate from there
Scale = {{scale.pixels}} / {{scale.meters}},
Layout = { {{#layout}}{{.}}, {{/layout}}},
LayoutInfo = { {{#layoutInfo}}{{.}}, {{/layoutInfo}}},
CornerRadius = { {{#cornerRadius}}{{.}}, {{/cornerRadius}}},
Slope = { {{#slope}}{{.}}, {{/slope}}},
Sportiness = { {{#sportiness}}{{.}}, {{/sportiness}}},
Camber = { {{#camber}}{{.}}, {{/camber}}},
Split1 = {{split1}},
Split2 = {{split2}},
}
</script>
|
discovery/resources/fan/1397/index.html | Timathom/timathom.github.io | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head prefix="og: http://ogp.me/ns# dc: http://purl.org/dc/terms/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="//oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<title>Fan page: J. Martin</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<style type="text/css">
#top{
width: 100%;
float: left;
}
#place{
width: 100%;
float: left;
}
#address{
width: 15%;
float: left;
}
#sgvzl{
width: 80%;
float: left;
}
#credits{
width: 100%;
float: left;
clear: both;
}
#location-marker{
width: 1em;
}
#male-glyph{
width: 1em;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" id="sgvzlr_script" src="http://mgskjaeveland.github.io/sgvizler/v/0.6/sgvizler.min.js"></script>
<script type="text/javascript">
sgvizler
.defaultEndpointURL("http://bibfram.es/fuseki/cobra/query");
//// Leave this as is. Ready, steady, go!
$(document).ready(sgvizler.containerDrawAll);
</script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<meta name="title" content="J. Martin">
<meta property="dc:title" content="J. Martin">
<meta property="og:title" content="J. Martin">
<meta name="author" content="J. Martin">
<meta name="dc:creator" content="J. Martin">
</head>
<body prefix="cbo: http://comicmeta.org/cbo/ dc: http://purl.org/dc/elements/1.1/ dcterms: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ oa: http://www.w3.org/ns/oa# rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# schema: http://schema.org/ skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
<div id="wrapper" class="container" about="http://ivmooc-cobra2.github.io/resources/fan/1397" typeof="http://comicmeta.org/cbo/Fan">
<div id="top">
<h1>
<span property="http://schema.org/name">J. Martin</span>
</h1>
<dl>
<dt>
<label for="http://comicmeta.org/cbo/Fan">
<span>type</span>
</label>
</dt>
<dd>
<span>http://comicmeta.org/cbo/Fan</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/name">
<span>
<a href="http://schema.org/name">name</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/name">J. Martin</span>
</dd>
</dl>
</div>
<div id="place" rel="http://schema.org/address" resource="http://ivmooc-cobra2.github.io/resources/place/1336" typeof="http://schema.org/Place">
<h2>Location <a href="http://ivmooc-cobra2.github.io/resources/place/1336">
<img id="location-marker" src="/static/resources/img/location.svg" alt="location marker glyph">
</a>
</h2>
<div id="address" rel="http://schema.org/address" typeof="http://schema.org/PostalAddress" resource="http://ivmooc-cobra2.github.io/resources/place/1336/address">
<dl>
<dt>
<label for="http://schema.org/streetAddress">
<span>
<a href="http://schema.org/streetAddress">Street address</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/streetAddress">NULL</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/addressLocality">
<span>
<a href="http://schema.org/addressLocality">Address locality</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/addressLocality">Bowling Green</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/addressRegion">
<span>
<a href="http://schema.org/addressRegion">Address region</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/addressRegion">KY</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/postalCode">
<span>
<a href="http://schema.org/postalCode">Postal code</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/postalCode">NULL</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/addressCountry">
<span>
<a href="http://schema.org/addressCountry">Address country</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/addressCountry">US</span>
</dd>
</dl>
</div>
<div id="sgvzl" data-sgvizler-endpoint="http://bibfram.es/fuseki/cobra/query" data-sgvizler-query="PREFIX dc: <http://purl.org/dc/elements/1.1/> 
PREFIX cbo: <http://comicmeta.org/cbo/> 
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX schema: <http://schema.org/>
SELECT ?lat ?long 
WHERE {
 ?fan schema:address ?Place .
 ?Place schema:geo ?Geo .
 ?Geo schema:latitude ?lat .
 ?Geo schema:longitude ?long .
 FILTER(?fan = <http://ivmooc-cobra2.github.io/resources/fan/1397>)
}" data-sgvizler-chart="google.visualization.GeoChart" data-sgvizler-loglevel="2" style="width:800px; height:400px;"></div>
</div>
<div id="letter" rel="http://purl.org/dc/elements/1.1/creator" resource="http://ivmooc-cobra2.github.io/resources/letter/1509">
<dl>
<dt>
<label for="http://schema.org/streetAddress">
<span>
<a href="http://schema.org/streetAddress">Street address</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/streetAddress">NULL</span>
</dd>
</dl>
</div>
<div id="credits">Icons made by <a href="http://www.flaticon.com/authors/simpleicon" title="SimpleIcon">SimpleIcon</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a>
</div>
</div>
</body>
</html> |
src/app/components/action-bar/action-bar.tpl.html | kornicameister/RSpringAtom-Client | <form class="navbar navbar-form navbar-left navbar-static-top" role="form" ng-transclude></form> |
Docs/html/search/functions_e.html | Gabrui/CES22P1 | <!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"/>
<meta name="generator" content="Doxygen 1.8.8"/>
<link rel="stylesheet" type="text/css" href="search.css"/>
<script type="text/javascript" src="functions_e.js"></script>
<script type="text/javascript" src="search.js"></script>
</head>
<body class="SRPage">
<div id="SRIndex">
<div class="SRStatus" id="Loading">Carregando...</div>
<div id="SRResults"></div>
<script type="text/javascript"><!--
createResults();
--></script>
<div class="SRStatus" id="Searching">Procurando...</div>
<div class="SRStatus" id="NoMatches">Nenhuma entrada encontrada</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>
|
app/files/templates/user/layout.navbar.html | KenanBek/django-skeleton | {% load i18n %}
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<div class="navbar navbar-inverse" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">{% blocktrans %}Toggle navigation{% endblocktrans %}</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="{% url 'home' %}">{{ application_config.title }}</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-left">
<li><a href="{% url 'home' %}">{% trans "Dashboard" %}</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false">
{% trans "Blog" %}
<span class="caret"></span>
</a>
<ul class="dropdown-menu" role="menu">
<li><a href="{% url 'blog_index' %}">{% trans "Dashboard" %}</a></li>
<li class="divider"></li>
<li><a href="{% url 'blog_pages' %}">{% trans "Pages" %}</a></li>
<li><a href="{% url 'blog_posts' %}">{% trans "Posts" %}</a></li>
<li class="divider"></li>
<li><a href="{% url 'blog_beep_list' %}">{% trans "Beeps" %}</a></li>
<li><a href="{% url 'blog_beep_new' %}">{% blocktrans %}New beep{% endblocktrans %}</a></li>
<li class="divider"></li>
<li><a href="{% url 'blog_contact' %}">{% trans "Contact" %}</a></li>
</ul>
</li>
</ul>
<form class="navbar-form navbar-right" action="{% url 'search' %}" method="get">
<input id="term" name="term" type="text" class="form-control" placeholder="{% trans "Search..." %}"
value="{{ q|default:"" }}">
<input type="hidden" id="term_id" name="term_id" value="{{ q|default:"" }}">
<input id="term_description" type="hidden" name="term_description" value="{{ q|default:"" }}">
</form>
<style>
#term-description {
margin: 0;
padding: 0;
}
</style>
<script>
$(document).ready(function () {
console.log("Searching ...");
$(function () {
$("#term").autocomplete({
source: "search_autocomplete",
focus: function (event, ui) {
$("#term").val(ui.item.label);
$("#term_id").val(ui.item.id);
$("#term_description").val(ui.item.desc);
return false;
},
change: function (event, ui) {
$("#term_id").val(ui.item ? ui.item.id : "none");
$("#term_description").val(ui.item ? ui.item.desc : "none");
return false;
},
select: function (event, ui) {
$("#term").val(ui.item ? ui.item.label : "none");
$("#term_id").val(ui.item ? ui.item.id : "none");
$("#term_description").val(ui.item ? ui.item.desc : "none");
return false;
}
})
.autocomplete("instance")._renderItem = function (ul, item) {
return $("<li>")
.append("<a>" + item.label + "<br>" + "<p style='font-size:10px;'>" + item.desc + "</p></a>")
.appendTo(ul);
};
});
});
</script>
<br>
<br>
</div>
{% include 'user/layout.user.html' %}
</div>
</div>
</div> |
libFMap/docs/join arcview analisis.html | iCarto/siga | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=iso-8859-1">
<TITLE></TITLE>
<META NAME="GENERATOR" CONTENT="OpenOffice.org 1.1.1 (Linux)">
<META NAME="CREATED" CONTENT="20050421;11160300">
<META NAME="CHANGED" CONTENT="20050421;11231700">
<STYLE>
<!--
@page { size: 21.59cm 27.94cm; margin: 2cm }
P { margin-bottom: 0.21cm }
H1 { margin-bottom: 0.21cm }
H1.western { font-family: "Bitstream Vera Sans", sans-serif; font-size: 16pt }
H1.cjk { font-family: "HG Mincho Light J", "MS Mincho", "HG Mincho J", "HG Mincho L", "HG Mincho", "Mincho", "MS PMincho", "HG Mincho Light J", "MS Gothic", "HG Gothic J", "HG Gothic B", "HG Gothic", "Gothic", "MS PGothic", "Andale Sans UI", "Arial Unicode MS", "Lucida Sans Unicode", "Tahoma"; font-size: 16pt }
H1.ctl { font-family: "Tahoma", "Lucidasans", "Lucida Sans", "Arial Unicode MS"; font-size: 16pt }
H2 { margin-bottom: 0.21cm }
H2.western { font-family: "Bitstream Vera Sans", sans-serif; font-size: 14pt; font-style: italic }
H2.cjk { font-family: "HG Mincho Light J", "MS Mincho", "HG Mincho J", "HG Mincho L", "HG Mincho", "Mincho", "MS PMincho", "HG Mincho Light J", "MS Gothic", "HG Gothic J", "HG Gothic B", "HG Gothic", "Gothic", "MS PGothic", "Andale Sans UI", "Arial Unicode MS", "Lucida Sans Unicode", "Tahoma"; font-size: 14pt; font-style: italic }
H2.ctl { font-size: 14pt; font-style: italic }
-->
</STYLE>
</HEAD>
<BODY LANG="es-ES" DIR="LTR">
<H1 CLASS="western">Análisis de join de arcView</H1>
<DIV ID="Índice de contenido1" DIR="LTR">
<DIV ID="Índice de contenido1_Head" DIR="LTR">
<P STYLE="margin-top: 0.42cm; page-break-after: avoid"><FONT FACE="Bitstream Vera Sans, sans-serif"><FONT SIZE=4 STYLE="font-size: 16pt"><B>Índice
de contenido</B></FONT></FONT></P>
</DIV>
<P STYLE="margin-bottom: 0cm">Análisis de join de arcView 1</P>
<P STYLE="margin-left: 0.5cm; margin-bottom: 0cm">Definición 1</P>
<P STYLE="margin-left: 0.5cm; margin-bottom: 0cm">Conflictos de
nombres 1</P>
<P STYLE="margin-left: 0.5cm; margin-bottom: 0cm">Anidamiento de
joins 1</P>
</DIV>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
<H2 CLASS="western">Definición</H2>
<P STYLE="margin-bottom: 0cm"> La primera tabla es la tabla sobre la
que se añaden los valores, la segunda es la que añade
sus valores a la primera. El campo de join es el campo de cada tabla
usado en la operación.</P>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
<P STYLE="margin-bottom: 0cm"> Para cada registro de la primera tabla
se le hace corresponder con el primer registro de la segunda tabla
que cumpla la condición de igualdad para el campo de join de
cada tabla. Si no hay registros en la segunda tabla que cumplan la
condición se quedarán los valores correspondientes a
los campos de la segunda tabla a null. Lo mismo ocurre si el valor de
la primera tabla es nulo. El esquema de la tabla resultante es la
unión de los esquemas exceptuando el campo de la join que no
se pondrá el de la segunda tabla.</P>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
<H2 CLASS="western">Conflictos de nombres</H2>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
<P STYLE="margin-bottom: 0cm"> Si hay dos campos con el mismo nombre
en los esquemas de las tablas no se resuelve el conflicto. De esta
manera no se podrá acceder por nombre a los campos en
conflicto de la parte del esquema correspondiente a la segunda tabla.</P>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
<H2 CLASS="western">Anidamiento de joins</H2>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
<P STYLE="margin-bottom: 0cm"> El resultado de una join puede ser
usado como tabla primera o segunda para una join posterior.
</P>
<P STYLE="margin-bottom: 0cm"> El resultado de quitar las joins es el
de obtener la tabla original, independientemente de las joins
anidadas que hubiera en la tabla.</P>
<P STYLE="margin-bottom: 0cm"> </P>
<P STYLE="margin-bottom: 0cm"><BR>
</P>
</BODY>
</HTML> |
doc/javadocs/ca/ualberta/appfive/R.integer.html | CMPUT301W16T12/ProjectFive | <!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_60) on Mon Apr 04 15:35:47 MDT 2016 -->
<title>R.integer</title>
<meta name="date" content="2016-04-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="R.integer";
}
}
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="../../../ca/ualberta/appfive/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-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="../../../ca/ualberta/appfive/R.id.html" title="class in ca.ualberta.appfive"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../ca/ualberta/appfive/R.layout.html" title="class in ca.ualberta.appfive"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?ca/ualberta/appfive/R.integer.html" target="_top">Frames</a></li>
<li><a href="R.integer.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="#methods.inherited.from.class.java.lang.Object">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>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">ca.ualberta.appfive</div>
<h2 title="Class R.integer" class="title">Class R.integer</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>ca.ualberta.appfive.R.integer</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../ca/ualberta/appfive/R.html" title="class in ca.ualberta.appfive">R</a></dd>
</dl>
<hr>
<br>
<pre>public static final class <span class="typeNameLabel">R.integer</span>
extends java.lang.Object</pre>
</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="memberSummary" 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><span class="memberNameLink"><a href="../../../ca/ualberta/appfive/R.integer.html#abc_config_activityDefaultDur">abc_config_activityDefaultDur</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../ca/ualberta/appfive/R.integer.html#abc_config_activityShortDur">abc_config_activityShortDur</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../ca/ualberta/appfive/R.integer.html#abc_max_action_buttons">abc_max_action_buttons</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../ca/ualberta/appfive/R.integer.html#cancel_button_image_alpha">cancel_button_image_alpha</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../ca/ualberta/appfive/R.integer.html#design_snackbar_text_max_lines">design_snackbar_text_max_lines</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../ca/ualberta/appfive/R.integer.html#google_play_services_version">google_play_services_version</a></span></code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../ca/ualberta/appfive/R.integer.html#status_bar_notification_info_maxnum">status_bar_notification_info_maxnum</a></span></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="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="../../../ca/ualberta/appfive/R.integer.html#integer--">integer</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>
<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">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="abc_config_activityDefaultDur">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>abc_config_activityDefaultDur</h4>
<pre>public static final int abc_config_activityDefaultDur</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#ca.ualberta.appfive.R.integer.abc_config_activityDefaultDur">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="abc_config_activityShortDur">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>abc_config_activityShortDur</h4>
<pre>public static final int abc_config_activityShortDur</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#ca.ualberta.appfive.R.integer.abc_config_activityShortDur">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="abc_max_action_buttons">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>abc_max_action_buttons</h4>
<pre>public static final int abc_max_action_buttons</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#ca.ualberta.appfive.R.integer.abc_max_action_buttons">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="cancel_button_image_alpha">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>cancel_button_image_alpha</h4>
<pre>public static final int cancel_button_image_alpha</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#ca.ualberta.appfive.R.integer.cancel_button_image_alpha">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="design_snackbar_text_max_lines">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>design_snackbar_text_max_lines</h4>
<pre>public static final int design_snackbar_text_max_lines</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#ca.ualberta.appfive.R.integer.design_snackbar_text_max_lines">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="google_play_services_version">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>google_play_services_version</h4>
<pre>public static final int google_play_services_version</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#ca.ualberta.appfive.R.integer.google_play_services_version">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="status_bar_notification_info_maxnum">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>status_bar_notification_info_maxnum</h4>
<pre>public static final int status_bar_notification_info_maxnum</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../constant-values.html#ca.ualberta.appfive.R.integer.status_bar_notification_info_maxnum">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="integer--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>integer</h4>
<pre>public integer()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<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="../../../ca/ualberta/appfive/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-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="../../../ca/ualberta/appfive/R.id.html" title="class in ca.ualberta.appfive"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../ca/ualberta/appfive/R.layout.html" title="class in ca.ualberta.appfive"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../index.html?ca/ualberta/appfive/R.integer.html" target="_top">Frames</a></li>
<li><a href="R.integer.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="#methods.inherited.from.class.java.lang.Object">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>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
templates/radar_add.html | sellerlink/sellerlink | {% extends "layout_angular.html" %}
{% block extra_css %}
<style type="text/css">
.labels {
color: red;
background-color: white;
font-family: "Lucida Grande", "Arial", sans-serif;
font-size: 10px;
font-weight: bold;
text-align: center;
width: 40px;
border: 2px solid black;
white-space: nowrap;
}
.infoWindow {
border:0px none; opacity:1; background:transparent;
width:50px; color:red; text-align:center; opacity:1;
}
#map_canvas { float:left; width:100%;height:500px; }
</style>
{% endblock %}
{% block content %}
<div class="row" ng-controller="searchResultsCtrl">
<div class="col-lg-6">
Block List: {{ data.features|length }}
Location: <select ng-options="item.label for item in locations" ng-model="formLocation" ng-change="panToLocation()">
</select>
<input type=text ng-model="formInput" id="queryInput" value="" />
<input type=button value="Search" ng-click="doSearch()" />
<input type=button value="Load" ng-click="doLoad()" />
<br><br>
<div id="map_canvas"></div>
</div>
<div class="col-lg-6">
<div id="name"></div>
<div id="results">
{% raw %}
Pending: {{ countKeys(queue.pending) }} <a href="#" ng-click="show('pending')">Show</a> |
Loading: {{ countKeys(queue.loading) }} <a href="#" ng-click="show('loading')">Show</a> |
Blocked: {{ countKeys(queue.blocked) }} <a href="#" ng-click="show('blocked')">Show</a> |
Processed: {{ countKeys(queue.loaded) }} <a href="#" ng-click="show('loaded')">Show</a>
{% endraw %}
<br>
<table width=100%>
<thead>
<colgroup>
<col width=50% />
<col width=15% />
<col width=35% />
</colgroup>
<tr>
<th align=center>Name</th>
<th align=center>Address/Phone</th>
</tr>
</thead>
<tbody>
{% raw %}
<tr ng-repeat="(id, row) in data">
<td>{{row.name}}</td>
<td>{{row.website}}</td>
<td>{{row.formatted_address}} <br> {{row.formatted_phone_number}} <br>
{{row.geometry.location.lat()}}, {{row.geometry.location.lng()}}
</td>
</tr>
{% endraw %}
</tbody>
</table>
</div>
</div>
<input type=button value="Save Markers" ng-click="saveMarkers()" /><br>
</div> <!-- /row -->
{% endblock %}
{% block extra_js %}
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=true&libraries=places"></script>
<script type=text/javascript src="http://www.google.com/uds/api?file=uds.js&v=1.0&key=ABQIAAAAjU0EJWnWPMv7oQ-jjS7dYxQ82LsCgTSsdpNEnBsExtoeJv4cdBSUkiLH6ntmAr_5O4EfjDwOa0oZBQ"></script>
<script type="text/javascript">
var map;
var marker;
var data = {'places':{}, 'radar':[]};
var key = "AIzaSyDwpRW_E84Acc2rHc_k3mzEuFs81zEtP7w";
/*
row = {"name":"", "email":"", "website":"", "location":"", "phone":"", "status":"Entered", "tags":"NYC Timesquare"}
*/
function savemarkers() {
i=0;
for (key in data['radar']) {
row = data['radar'][key];
setTimeout("getDetails('" + row.ref + "')", i*500);
i++;
}
setTimeout("save_data("+i+")", (i+5)*500);
}
function addRow( row ) {
scope = angular.element("#results").scope();
scope.$apply(function() {
scope.data.push( row );
});
}
function save_data(cnt) {
//$.post('save_gmap.cgi', {result:JSON.stringify(data['places'])});
tbl = $('#results table');
for (i in data['places']) {
row = data['places'][i];
console.log(row);
addRow( row );
}
alert("Saved " + cnt + " places");
}
function initialize() {
var myOptions = {
mapTypeControl:false,overviewMapControl:false,panControl:false,rotateControl:false,scaleControl:false,streetViewControl:false,zoomControl:true,
zoom: 12,
center: new google.maps.LatLng(27.914643031621768, -82.74971008300781),
mapTypeId: google.maps.MapTypeId.ROADMAP
}
map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);
marker = new google.maps.Marker({map:map});
}
searchResultsCtrl = app.controller("searchResultsCtrl", function($scope, $log, $window) {
$scope.activeMarkers = [];
$scope.queue = {
'pending': {},
'loaded': {},
'loading': {},
'saved': {},
'blocked': {},
'_all': {},
};
$scope.countKeys = function(q) {
return Object.keys(q).length;
};
// Results loaded into table
$scope.data = [];
$scope.formInput = "used car dealer";
// top 20 metro areas: XXX
$scope.locations = [
{'id': 1, 'pos':'27.914643031621768, -82.74971008300781', 'label':'Clearwater, FL', 'zoom': 12},
{'id': 1, 'pos':'27.9539142,-82.4415314', 'label':'Ybor City, FL', 'zoom': 12},
{'id': 1, 'pos':'26.1411125,-80.149973', 'label':'Ft Lauderdale, FL', 'zoom': 12},
{'id': 1, 'pos':'25.782324,-80.2310801', 'label':'Miami, FL', 'zoom': 12},
{'id': 1, 'pos':'44.076486948484536, -71.22058868408203', 'label':'Bartlett, NH', 'zoom': 12},
{'id': 1, 'pos':'40.7056258,-73.97968', 'label':'NYC', 'zoom': 12},
{'id': 1, 'pos':'40.7636971,-73.9975487', 'label':'Pacho NYC', 'zoom': 12},
{'id': 1, 'pos':'39.1984815,-106.8367246', 'label':'Aspen, CO', 'zoom': 12},
{'id': 1, 'pos':'50.104148,-123.001515', 'label':'Whistler, BC', 'zoom': 12},
{'id': 1, 'pos':'30.0219504,-89.8830829', 'label':'New Orleans, LA', 'zoom': 12},
];
$scope.formLocation = $scope.locations[0];
$scope.show = function(q) {
while ($scope.activeMarkers.length) $scope.activeMarkers.pop().setMap(null);
$scope.data = [];
data = $scope.queue[q];
for (key in data) {
result = data[key];
if (Object.keys(result).indexOf('marker') < 0) {
result.marker = new google.maps.Marker({
map: map, /* global var XXX */
position: result.geometry.location
});
}
else result.marker.setMap( map );
$scope.activeMarkers.push( result.marker );
$scope.data.push( result );
/*
callback = function(marker, row) {
return function() {
getDetails( row.place_id );
}
}( result.marker, result );
result.marker.addListener('click', callback);
*/
}
};
$scope.saveMarkers = function() {
w = $window.open();
tmp = {'blocked':{}, 'loaded': {}};
for (x in $scope.queue['loaded']) {
p = $scope.queue['loaded'][x];
row = {};
row['name'] = p['name'];
row['geometry'] = p['geometry'];
//row['website'] = p['website'];
row['formatted_address'] = p['formatted_address'];
row['formatted_phone_number'] = p['formatted_phone_number'];
tmp['loaded'][x] = row;
}
for (x in $scope.queue['blocked']) {
p = $scope.queue['blocked'][x];
row = {};
row['name'] = p['name'];
row['geometry'] = p['geometry'];
row['website'] = p['website'];
row['formatted_address'] = p['formatted_address'];
row['formatted_phone_number'] = p['formatted_phone_number'];
tmp['blocked'][x] = row;
}
w.document.write( JSON.stringify(tmp) );
};
$scope.doLoad = function() {
max_per_click = 10;
cnt = 0;
keys = Object.keys($scope.queue['pending']);
var service = new google.maps.places.PlacesService(map);
var func = function(place, stat) {
//$log.log( place );
key = place.place_id;
if (stat != google.maps.places.PlacesServiceStatus.OK) {
$log.log( stat );
return false;
}
delete $scope.queue['loading'][key];
// block non-empty URLs, position in geojson, etc
if (place.website == undefined) {
$scope.queue['loaded'][key] = place;
}
else $scope.queue['blocked'][key] = place;
};
while (cnt < max_per_click && keys.length > 0) {
key = keys.pop();
row = $scope.queue['pending'][key];
req = {placeId: row.place_id};
callback = (function(k) { var key = k; return func; })(key);
$scope.queue['loading'][key] = row;
delete $scope.queue['pending'][key];
service.getDetails(req, callback);
cnt++;
}
};
$scope.doSearch = function() {
// 12 zoom level
var req = { bounds: map.getBounds(),
keyword: $scope.formInput
};
var service = new google.maps.places.PlacesService(map);
service.radarSearch(req, function(results, status) {
if (status != google.maps.places.PlacesServiceStatus.OK) {
$window.alert(status);
return;
}
for (var i = 0, result; result = results[i]; i++) {
lat = result.geometry.location.lat;
lng = result.geometry.location.lng;
key = result.place_id;
if ($scope.queue['_all'][key] != undefined) continue;
$scope.queue['_all'][key] = result;
$scope.queue['pending'][key] = result;
}
});
};
$scope.panToLocation = function() {
row = $scope.formLocation;
var lat = row.pos.split(',')[0];
var lng = row.pos.split(',')[1];
map.setCenter({lat: parseFloat(lat), lng: parseFloat(lng)});
};
});
function test() {
scope = angular.element("#results").scope();
scope.$apply(function() {
scope.data.push( {'name': "test"} );
});
}
$(document).ready(function() {
initialize();
});
</script>
{% endblock %}
|
programming_lab/templates/registration/password_reset_confirm.html | buchuki/programming_lab |
{% extends 'base.html' %}
{% block content %}
<div class="grid_16">
{% if validlink %}
<h2>Enter new password</h2>
<p>Please enter your new password twice so we can verify you typed it in correctly.</p>
<form method="post">{% csrf_token %}
{{ form.new_password1.errors }}
<p class="aligned wide"><label for="id_new_password1">New password:</label>{{ form.new_password1 }}</p>
{{ form.new_password2.errors }}
<p class="aligned wide"><label for="id_new_password2">Confirm password:</label>{{ form.new_password2 }}</p>
<p><input type="submit" value="Change my password" /></p>
</form>
{% else %}
<h2>Password reset unsuccessful</h2>
<p>The password reset link was invalid, possibly because it has already been used. Please request a new password reset.</p>
{% endif %}
</div>
{% endblock %}
|
doc/org/monstercraft/irc/plugin/event/events/IRCKickEvent.html | Monstercraft/MonsterIRC | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_31) on Mon Mar 05 16:15:55 EST 2012 -->
<TITLE>
IRCKickEvent
</TITLE>
<META NAME="date" CONTENT="2012-03-05">
<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="IRCKickEvent";
}
}
</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/IRCKickEvent.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-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">
<A HREF="../../../../../../org/monstercraft/irc/plugin/event/events/IRCJoinEvent.html" title="class in org.monstercraft.irc.plugin.event.events"><B>PREV CLASS</B></A>
<A HREF="../../../../../../org/monstercraft/irc/plugin/event/events/IRCMessageEvent.html" title="class in org.monstercraft.irc.plugin.event.events"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/monstercraft/irc/plugin/event/events/IRCKickEvent.html" target="_top"><B>FRAMES</B></A>
<A HREF="IRCKickEvent.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_classes_inherited_from_class_org.bukkit.event.Event">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.monstercraft.irc.plugin.event.events</FONT>
<BR>
Class IRCKickEvent</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by ">org.bukkit.event.Event
<IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../../org/monstercraft/irc/plugin/event/IRCEvent.html" title="class in org.monstercraft.irc.plugin.event">org.monstercraft.irc.plugin.event.IRCEvent</A>
<IMG SRC="../../../../../../resources/inherit.gif" ALT="extended by "><B>org.monstercraft.irc.plugin.event.events.IRCKickEvent</B>
</PRE>
<HR>
<DL>
<DT><PRE>public class <B>IRCKickEvent</B><DT>extends <A HREF="../../../../../../org/monstercraft/irc/plugin/event/IRCEvent.html" title="class in org.monstercraft.irc.plugin.event">IRCEvent</A></DL>
</PRE>
<P>
<HR>
<P>
<!-- ======== NESTED CLASS SUMMARY ======== -->
<A NAME="nested_class_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Nested Class Summary</B></FONT></TH>
</TR>
</TABLE>
<A NAME="nested_classes_inherited_from_class_org.bukkit.event.Event"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Nested classes/interfaces inherited from class org.bukkit.event.Event</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>org.bukkit.event.Event.Result</CODE></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 java.lang.String</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/monstercraft/irc/plugin/event/events/IRCKickEvent.html#CUSTOM_TYPE">CUSTOM_TYPE</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/monstercraft/irc/plugin/event/events/IRCKickEvent.html#IRCKickEvent(org.monstercraft.irc.plugin.wrappers.IRCChannel, java.lang.String)">IRCKickEvent</A></B>(<A HREF="../../../../../../org/monstercraft/irc/plugin/wrappers/IRCChannel.html" title="class in org.monstercraft.irc.plugin.wrappers">IRCChannel</A> channel,
java.lang.String name)</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> org.bukkit.event.HandlerList</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/monstercraft/irc/plugin/event/events/IRCKickEvent.html#getHandlers()">getHandlers</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/monstercraft/irc/plugin/wrappers/IRCChannel.html" title="class in org.monstercraft.irc.plugin.wrappers">IRCChannel</A></CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../../../org/monstercraft/irc/plugin/event/events/IRCKickEvent.html#getIRCChannel()">getIRCChannel</A></B>()</CODE>
<BR>
</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/monstercraft/irc/plugin/event/events/IRCKickEvent.html#getName()">getName</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_org.bukkit.event.Event"><!-- --></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.bukkit.event.Event</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>getEventName</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="CUSTOM_TYPE"><!-- --></A><H3>
CUSTOM_TYPE</H3>
<PRE>
public static final java.lang.String <B>CUSTOM_TYPE</B></PRE>
<DL>
<DL>
<DT><B>See Also:</B><DD><A HREF="../../../../../../constant-values.html#org.monstercraft.irc.plugin.event.events.IRCKickEvent.CUSTOM_TYPE">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="IRCKickEvent(org.monstercraft.irc.plugin.wrappers.IRCChannel, java.lang.String)"><!-- --></A><H3>
IRCKickEvent</H3>
<PRE>
public <B>IRCKickEvent</B>(<A HREF="../../../../../../org/monstercraft/irc/plugin/wrappers/IRCChannel.html" title="class in org.monstercraft.irc.plugin.wrappers">IRCChannel</A> channel,
java.lang.String name)</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="getIRCChannel()"><!-- --></A><H3>
getIRCChannel</H3>
<PRE>
public <A HREF="../../../../../../org/monstercraft/irc/plugin/wrappers/IRCChannel.html" title="class in org.monstercraft.irc.plugin.wrappers">IRCChannel</A> <B>getIRCChannel</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getName()"><!-- --></A><H3>
getName</H3>
<PRE>
public java.lang.String <B>getName</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="getHandlers()"><!-- --></A><H3>
getHandlers</H3>
<PRE>
public org.bukkit.event.HandlerList <B>getHandlers</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Specified by:</B><DD><CODE>getHandlers</CODE> in class <CODE>org.bukkit.event.Event</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/IRCKickEvent.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-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">
<A HREF="../../../../../../org/monstercraft/irc/plugin/event/events/IRCJoinEvent.html" title="class in org.monstercraft.irc.plugin.event.events"><B>PREV CLASS</B></A>
<A HREF="../../../../../../org/monstercraft/irc/plugin/event/events/IRCMessageEvent.html" title="class in org.monstercraft.irc.plugin.event.events"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../../../index.html?org/monstercraft/irc/plugin/event/events/IRCKickEvent.html" target="_top"><B>FRAMES</B></A>
<A HREF="IRCKickEvent.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_classes_inherited_from_class_org.bukkit.event.Event">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>
</BODY>
</HTML>
|
docs/ronin/Ronin/Port.html | ilsec/ilsec.github.io | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
Class: Ronin::Port
— Ronin Documentation
</title>
<link rel="stylesheet" href="../css/style.css" type="text/css" media="screen" charset="utf-8" />
<link rel="stylesheet" href="../css/common.css" type="text/css" media="screen" charset="utf-8" />
<script type="text/javascript" charset="utf-8">
hasFrames = window.top.frames.main ? true : false;
relpath = '../';
framesUrl = "../frames.html#!" + escape(window.location.href);
</script>
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
</head>
<body>
<div id="header">
<div id="menu">
<a href="../_index.html">Index (P)</a> »
<span class='title'><span class='object_link'><a href="../Ronin.html" title="Ronin (module)">Ronin</a></span></span>
»
<span class="title">Port</span>
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="../class_list.html">
Class List
</a>
<a class="full_list_link" id="method_list_link"
href="../method_list.html">
Method List
</a>
<a class="full_list_link" id="file_list_link"
href="../file_list.html">
File List
</a>
</div>
<div class="clear"></div>
</div>
<iframe id="search_frame"></iframe>
<div id="content"><h1>Class: Ronin::Port
</h1>
<dl class="box">
<dt class="r1">Inherits:</dt>
<dd class="r1">
<span class="inheritName">Object</span>
<ul class="fullTree">
<li>Object</li>
<li class="next">Ronin::Port</li>
</ul>
<a href="#" class="inheritanceTree">show all</a>
</dd>
<dt class="r2">Includes:</dt>
<dd class="r2"><span class='object_link'><a href="Model.html" title="Ronin::Model (module)">Model</a></span></dd>
<dt class="r1 last">Defined in:</dt>
<dd class="r1 last">lib/ronin/port.rb</dd>
</dl>
<div class="clear"></div>
<h2>Overview</h2><div class="docstring">
<div class="discussion">
<p>Represents a TCP or UDP port.</p>
</div>
</div>
<div class="tags">
</div><div id="subclasses">
<h2>Direct Known Subclasses</h2>
<p class="children"><span class='object_link'><a href="TCPPort.html" title="Ronin::TCPPort (class)">TCPPort</a></span>, <span class='object_link'><a href="UDPPort.html" title="Ronin::UDPPort (class)">UDPPort</a></span></p>
</div>
<h2>
Class Method Summary
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#from-class_method" title="from (class method)">+ (Port) <strong>from</strong>(number) </a>
</span>
<span class="summary_desc"><div class='inline'><p>Creates a new Port.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#id-class_method" title="id (class method)">+ (Object) <strong>id</strong>(repository = nil) </a>
</span>
<span class="summary_desc"><div class='inline'><p>Primary key of the port.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#number-class_method" title="number (class method)">+ (Object) <strong>number</strong>(repository = nil) </a>
</span>
<span class="summary_desc"><div class='inline'><p>The port number.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#open_ports-class_method" title="open_ports (class method)">+ (Object) <strong>open_ports</strong>(repository = nil) </a>
</span>
<span class="summary_desc"><div class='inline'><p>The open ports.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#parse-class_method" title="parse (class method)">+ (Port) <strong>parse</strong>(number) </a>
</span>
<span class="summary_desc"><div class='inline'><p>Parses a port number.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#protocol-class_method" title="protocol (class method)">+ (Object) <strong>protocol</strong>(repository = nil) </a>
</span>
<span class="summary_desc"><div class='inline'><p>The protocol of the port (either <code>'tcp'</code> / <code>'udp'</code>).</p>
</div></span>
</li>
</ul>
<h2>
Instance Method Summary
<small>(<a href="#" class="summary_toggle">collapse</a>)</small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#id-instance_method" title="#id (instance method)">- (Object) <strong>id</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>Primary key of the port.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#id%3D-instance_method" title="#id= (instance method)">- (Object) <strong>id=</strong>(value) </a>
</span>
<span class="summary_desc"><div class='inline'><p>Primary key of the port.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#inspect-instance_method" title="#inspect (instance method)">- (String) <strong>inspect</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>Inspects the port.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#number-instance_method" title="#number (instance method)">- (Object) <strong>number</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>The port number.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#number%3D-instance_method" title="#number= (instance method)">- (Object) <strong>number=</strong>(value) </a>
</span>
<span class="summary_desc"><div class='inline'><p>The port number.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#open_ports-instance_method" title="#open_ports (instance method)">- (Object) <strong>open_ports</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>The open ports.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#open_ports%3D-instance_method" title="#open_ports= (instance method)">- (Object) <strong>open_ports=</strong>(new_open_ports) </a>
</span>
<span class="summary_desc"><div class='inline'><p>The open ports.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#protocol-instance_method" title="#protocol (instance method)">- (Object) <strong>protocol</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>The protocol of the port (either <code>'tcp'</code> / <code>'udp'</code>).</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#protocol%3D-instance_method" title="#protocol= (instance method)">- (Object) <strong>protocol=</strong>(value) </a>
</span>
<span class="summary_desc"><div class='inline'><p>The protocol of the port (either <code>'tcp'</code> / <code>'udp'</code>).</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#to_i-instance_method" title="#to_i (instance method)">- (Integer) <strong>to_i</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>Converts the port to an integer.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#to_s-instance_method" title="#to_s (instance method)">- (String) <strong>to_s</strong> </a>
</span>
<span class="summary_desc"><div class='inline'><p>Converts the port to a string.</p>
</div></span>
</li>
</ul>
<h3 class="inherited">Methods included from <span class='object_link'><a href="Model.html" title="Ronin::Model (module)">Model</a></span></h3>
<p class="inherited"><span class='object_link'><a href="Model.html#included-class_method" title="Ronin::Model.included (method)">included</a></span></p>
<div id="class_method_details" class="method_details_list">
<h2>Class Method Details</h2>
<div class="method_details first">
<h3 class="signature first" id="from-class_method">
+ (<tt><span class='object_link'><a href="" title="Ronin::Port (class)">Port</a></span></tt>) <strong>from</strong>(number)
</h3><div class="docstring">
<div class="discussion">
<p>Creates a new Port.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>number</span>
<span class='type'>(<tt>String</tt>, <tt>Integer</tt>)</span>
—
<div class='inline'><p>The port number.</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt><span class='object_link'><a href="" title="Ronin::Port (class)">Port</a></span></tt>)</span>
—
<div class='inline'><p>The new or previously saved port.</p>
</div>
</li>
</ul>
<p class="tag_title">Since:</p>
<ul class="since">
<li>
<div class='inline'><p>1.4.0</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
62
63
64</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 62</span>
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_from'>from</span><span class='lparen'>(</span><span class='id identifier rubyid_number'>number</span><span class='rparen'>)</span>
<span class='id identifier rubyid_first_or_new'>first_or_new</span><span class='lparen'>(</span><span class='symbol'>:number</span> <span class='op'>=></span> <span class='id identifier rubyid_number'>number</span><span class='rparen'>)</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="id-class_method">
+ (<tt>Object</tt>) <strong>id</strong>(repository = nil)
</h3><div class="docstring">
<div class="discussion">
<p>Primary key of the port</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
31</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 31</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:id</span><span class='comma'>,</span> <span class='const'>Serial</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="number-class_method">
+ (<tt>Object</tt>) <strong>number</strong>(repository = nil)
</h3><div class="docstring">
<div class="discussion">
<p>The port number</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
39
40
41
42</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 39</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:number</span><span class='comma'>,</span> <span class='const'>Integer</span><span class='comma'>,</span> <span class='symbol'>:required</span> <span class='op'>=></span> <span class='kw'>true</span><span class='comma'>,</span>
<span class='symbol'>:min</span> <span class='op'>=></span> <span class='int'>1</span><span class='comma'>,</span>
<span class='symbol'>:max</span> <span class='op'>=></span> <span class='int'>65535</span><span class='comma'>,</span>
<span class='symbol'>:unique_index</span> <span class='op'>=></span> <span class='symbol'>:protocol_port</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="open_ports-class_method">
+ (<tt>Object</tt>) <strong>open_ports</strong>(repository = nil)
</h3><div class="docstring">
<div class="discussion">
<p>The open ports</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
45</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 45</span>
<span class='id identifier rubyid_has'>has</span> <span class='int'>1</span><span class='op'>..</span><span class='id identifier rubyid_n'>n</span><span class='comma'>,</span> <span class='symbol'>:open_ports</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="parse-class_method">
+ (<tt><span class='object_link'><a href="" title="Ronin::Port (class)">Port</a></span></tt>) <strong>parse</strong>(number)
</h3><div class="docstring">
<div class="discussion">
<p>Parses a port number.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Parameters:</p>
<ul class="param">
<li>
<span class='name'>number</span>
<span class='type'>(<tt>String</tt>, <tt>Integer</tt>)</span>
—
<div class='inline'><p>The port number to parse.</p>
</div>
</li>
</ul>
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt><span class='object_link'><a href="" title="Ronin::Port (class)">Port</a></span></tt>)</span>
—
<div class='inline'><p>The parsed port.</p>
</div>
</li>
</ul>
<p class="tag_title">Since:</p>
<ul class="since">
<li>
<div class='inline'><p>1.4.0</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
79
80
81</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 79</span>
<span class='kw'>def</span> <span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_parse'>parse</span><span class='lparen'>(</span><span class='id identifier rubyid_number'>number</span><span class='rparen'>)</span>
<span class='id identifier rubyid_from'>from</span><span class='lparen'>(</span><span class='id identifier rubyid_number'>number</span><span class='period'>.</span><span class='id identifier rubyid_to_i'>to_i</span><span class='rparen'>)</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="protocol-class_method">
+ (<tt>Object</tt>) <strong>protocol</strong>(repository = nil)
</h3><div class="docstring">
<div class="discussion">
<p>The protocol of the port (either <code>'tcp'</code> / <code>'udp'</code>)</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
34
35
36</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 34</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:protocol</span><span class='comma'>,</span> <span class='const'>String</span><span class='comma'>,</span> <span class='symbol'>:set</span> <span class='op'>=></span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>tcp</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>udp</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='symbol'>:required</span> <span class='op'>=></span> <span class='kw'>true</span><span class='comma'>,</span>
<span class='symbol'>:unique_index</span> <span class='op'>=></span> <span class='symbol'>:protocol_port</span></pre>
</td>
</tr>
</table>
</div>
</div>
<div id="instance_method_details" class="method_details_list">
<h2>Instance Method Details</h2>
<div class="method_details first">
<h3 class="signature first" id="id-instance_method">
- (<tt>Object</tt>) <strong>id</strong>
</h3><div class="docstring">
<div class="discussion">
<p>Primary key of the port</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
31</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 31</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:id</span><span class='comma'>,</span> <span class='const'>Serial</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="id=-instance_method">
- (<tt>Object</tt>) <strong>id=</strong>(value)
</h3><div class="docstring">
<div class="discussion">
<p>Primary key of the port</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
31</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 31</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:id</span><span class='comma'>,</span> <span class='const'>Serial</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="inspect-instance_method">
- (<tt>String</tt>) <strong>inspect</strong>
</h3><div class="docstring">
<div class="discussion">
<p>Inspects the port.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>String</tt>)</span>
—
<div class='inline'><p>The inspected port.</p>
</div>
</li>
</ul>
<p class="tag_title">Since:</p>
<ul class="since">
<li>
<div class='inline'><p>1.0.0</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
121
122
123</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 121</span>
<span class='kw'>def</span> <span class='id identifier rubyid_inspect'>inspect</span>
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>#<</span><span class='embexpr_beg'>#{</span><span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_class'>class</span><span class='rbrace'>}</span><span class='tstring_content'>: </span><span class='embexpr_beg'>#{</span><span class='kw'>self</span><span class='rbrace'>}</span><span class='tstring_content'>></span><span class='tstring_end'>"</span></span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="number-instance_method">
- (<tt>Object</tt>) <strong>number</strong>
</h3><div class="docstring">
<div class="discussion">
<p>The port number</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
39
40
41
42</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 39</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:number</span><span class='comma'>,</span> <span class='const'>Integer</span><span class='comma'>,</span> <span class='symbol'>:required</span> <span class='op'>=></span> <span class='kw'>true</span><span class='comma'>,</span>
<span class='symbol'>:min</span> <span class='op'>=></span> <span class='int'>1</span><span class='comma'>,</span>
<span class='symbol'>:max</span> <span class='op'>=></span> <span class='int'>65535</span><span class='comma'>,</span>
<span class='symbol'>:unique_index</span> <span class='op'>=></span> <span class='symbol'>:protocol_port</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="number=-instance_method">
- (<tt>Object</tt>) <strong>number=</strong>(value)
</h3><div class="docstring">
<div class="discussion">
<p>The port number</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
39
40
41
42</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 39</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:number</span><span class='comma'>,</span> <span class='const'>Integer</span><span class='comma'>,</span> <span class='symbol'>:required</span> <span class='op'>=></span> <span class='kw'>true</span><span class='comma'>,</span>
<span class='symbol'>:min</span> <span class='op'>=></span> <span class='int'>1</span><span class='comma'>,</span>
<span class='symbol'>:max</span> <span class='op'>=></span> <span class='int'>65535</span><span class='comma'>,</span>
<span class='symbol'>:unique_index</span> <span class='op'>=></span> <span class='symbol'>:protocol_port</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="open_ports-instance_method">
- (<tt>Object</tt>) <strong>open_ports</strong>
</h3><div class="docstring">
<div class="discussion">
<p>The open ports</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
45</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 45</span>
<span class='id identifier rubyid_has'>has</span> <span class='int'>1</span><span class='op'>..</span><span class='id identifier rubyid_n'>n</span><span class='comma'>,</span> <span class='symbol'>:open_ports</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="open_ports=-instance_method">
- (<tt>Object</tt>) <strong>open_ports=</strong>(new_open_ports)
</h3><div class="docstring">
<div class="discussion">
<p>The open ports</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
45</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 45</span>
<span class='id identifier rubyid_has'>has</span> <span class='int'>1</span><span class='op'>..</span><span class='id identifier rubyid_n'>n</span><span class='comma'>,</span> <span class='symbol'>:open_ports</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="protocol-instance_method">
- (<tt>Object</tt>) <strong>protocol</strong>
</h3><div class="docstring">
<div class="discussion">
<p>The protocol of the port (either <code>'tcp'</code> / <code>'udp'</code>)</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
34
35
36</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 34</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:protocol</span><span class='comma'>,</span> <span class='const'>String</span><span class='comma'>,</span> <span class='symbol'>:set</span> <span class='op'>=></span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>tcp</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>udp</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='symbol'>:required</span> <span class='op'>=></span> <span class='kw'>true</span><span class='comma'>,</span>
<span class='symbol'>:unique_index</span> <span class='op'>=></span> <span class='symbol'>:protocol_port</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="protocol=-instance_method">
- (<tt>Object</tt>) <strong>protocol=</strong>(value)
</h3><div class="docstring">
<div class="discussion">
<p>The protocol of the port (either <code>'tcp'</code> / <code>'udp'</code>)</p>
</div>
</div>
<div class="tags">
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
34
35
36</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 34</span>
<span class='id identifier rubyid_property'>property</span> <span class='symbol'>:protocol</span><span class='comma'>,</span> <span class='const'>String</span><span class='comma'>,</span> <span class='symbol'>:set</span> <span class='op'>=></span> <span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>tcp</span><span class='tstring_end'>'</span></span><span class='comma'>,</span> <span class='tstring'><span class='tstring_beg'>'</span><span class='tstring_content'>udp</span><span class='tstring_end'>'</span></span><span class='rbracket'>]</span><span class='comma'>,</span>
<span class='symbol'>:required</span> <span class='op'>=></span> <span class='kw'>true</span><span class='comma'>,</span>
<span class='symbol'>:unique_index</span> <span class='op'>=></span> <span class='symbol'>:protocol_port</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="to_i-instance_method">
- (<tt>Integer</tt>) <strong>to_i</strong>
</h3><div class="docstring">
<div class="discussion">
<p>Converts the port to an integer.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Integer</tt>)</span>
—
<div class='inline'><p>The port number.</p>
</div>
</li>
</ul>
<p class="tag_title">Since:</p>
<ul class="since">
<li>
<div class='inline'><p>1.0.0</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
93
94
95</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 93</span>
<span class='kw'>def</span> <span class='id identifier rubyid_to_i'>to_i</span>
<span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_number'>number</span><span class='period'>.</span><span class='id identifier rubyid_to_i'>to_i</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="to_s-instance_method">
- (<tt>String</tt>) <strong>to_s</strong>
</h3><div class="docstring">
<div class="discussion">
<p>Converts the port to a string.</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>String</tt>)</span>
—
<div class='inline'><p>The port number and protocol.</p>
</div>
</li>
</ul>
<p class="tag_title">Since:</p>
<ul class="since">
<li>
<div class='inline'><p>1.0.0</p>
</div>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
107
108
109</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/ronin/port.rb', line 107</span>
<span class='kw'>def</span> <span class='id identifier rubyid_to_s'>to_s</span>
<span class='tstring'><span class='tstring_beg'>"</span><span class='embexpr_beg'>#{</span><span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_number'>number</span><span class='rbrace'>}</span><span class='tstring_content'>/</span><span class='embexpr_beg'>#{</span><span class='kw'>self</span><span class='period'>.</span><span class='id identifier rubyid_protocol'>protocol</span><span class='rbrace'>}</span><span class='tstring_end'>"</span></span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated on Sat Jun 16 20:51:33 2012 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.8.2.1 (ruby-1.9.3).
</div>
</body>
</html> |
resources/Apache/Apache-POI-3.16-beta2/poi-bin-3.16-beta2-20170202/poi-3.16-beta2/docs/apidocs/org/apache/poi/poifs/storage/DocumentBlock.html | doughtnerd/POD | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<title>DocumentBlock (POI API Documentation)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="DocumentBlock (POI API Documentation)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/DocumentBlock.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-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/poi/poifs/storage/DataInputBlock.html" title="class in org.apache.poi.poifs.storage"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/poifs/storage/HeaderBlock.html" title="class in org.apache.poi.poifs.storage"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/poifs/storage/DocumentBlock.html" target="_top">FRAMES</a></li>
<li><a href="DocumentBlock.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">
<p class="subTitle">org.apache.poi.poifs.storage</p>
<h2 title="Class DocumentBlock" class="title">Class DocumentBlock</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>org.apache.poi.poifs.storage.DocumentBlock</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="../../../../../org/apache/poi/poifs/storage/BlockWritable.html" title="interface in org.apache.poi.poifs.storage">BlockWritable</a></dd>
</dl>
<hr>
<br>
<pre>public final class <strong>DocumentBlock</strong>
extends java.lang.Object</pre>
<div class="block">A block of document data.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Marc Johnson (mjohnson at apache dot org)</dd></dl>
</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>protected <a href="../../../../../org/apache/poi/poifs/common/POIFSBigBlockSize.html" title="class in org.apache.poi.poifs.common">POIFSBigBlockSize</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#bigBlockSize">bigBlockSize</a></strong></code>
<div class="block">Either 512 bytes (<a href="../../../../../org/apache/poi/poifs/common/POIFSConstants.html#SMALLER_BIG_BLOCK_SIZE"><code>POIFSConstants.SMALLER_BIG_BLOCK_SIZE</code></a>)
or 4096 bytes (<a href="../../../../../org/apache/poi/poifs/common/POIFSConstants.html#LARGER_BIG_BLOCK_SIZE"><code>POIFSConstants.LARGER_BIG_BLOCK_SIZE</code></a>)</div>
</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="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#DocumentBlock(java.io.InputStream, org.apache.poi.poifs.common.POIFSBigBlockSize)">DocumentBlock</a></strong>(java.io.InputStream stream,
<a href="../../../../../org/apache/poi/poifs/common/POIFSBigBlockSize.html" title="class in org.apache.poi.poifs.common">POIFSBigBlockSize</a> bigBlockSize)</code>
<div class="block">Create a single instance initialized with data.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#DocumentBlock(org.apache.poi.poifs.storage.RawDataBlock)">DocumentBlock</a></strong>(<a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html" title="class in org.apache.poi.poifs.storage">RawDataBlock</a> block)</code>
<div class="block">create a document block from a raw data block</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>static <a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#convert(org.apache.poi.poifs.common.POIFSBigBlockSize, byte[], int)">convert</a></strong>(<a href="../../../../../org/apache/poi/poifs/common/POIFSBigBlockSize.html" title="class in org.apache.poi.poifs.common">POIFSBigBlockSize</a> bigBlockSize,
byte[] array,
int size)</code>
<div class="block">convert a single long array into an array of DocumentBlock
instances</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#doWriteData(java.io.OutputStream, byte[])">doWriteData</a></strong>(java.io.OutputStream stream,
byte[] data)</code>
<div class="block">Default implementation of write for extending classes that
contain their data in a simple array of bytes.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../../org/apache/poi/poifs/storage/DataInputBlock.html" title="class in org.apache.poi.poifs.storage">DataInputBlock</a></code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#getDataInputBlock(org.apache.poi.poifs.storage.DocumentBlock[], int)">getDataInputBlock</a></strong>(<a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</a>[] blocks,
int offset)</code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static byte</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#getFillByte()">getFillByte</a></strong>()</code> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#partiallyRead()">partiallyRead</a></strong>()</code>
<div class="block">Was this a partially read block?</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#size()">size</a></strong>()</code>
<div class="block">Get the number of bytes read for this block</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><strong><a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html#writeBlocks(java.io.OutputStream)">writeBlocks</a></strong>(java.io.OutputStream stream)</code>
<div class="block">Write the storage to an OutputStream</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>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">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="bigBlockSize">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>bigBlockSize</h4>
<pre>protected <a href="../../../../../org/apache/poi/poifs/common/POIFSBigBlockSize.html" title="class in org.apache.poi.poifs.common">POIFSBigBlockSize</a> bigBlockSize</pre>
<div class="block">Either 512 bytes (<a href="../../../../../org/apache/poi/poifs/common/POIFSConstants.html#SMALLER_BIG_BLOCK_SIZE"><code>POIFSConstants.SMALLER_BIG_BLOCK_SIZE</code></a>)
or 4096 bytes (<a href="../../../../../org/apache/poi/poifs/common/POIFSConstants.html#LARGER_BIG_BLOCK_SIZE"><code>POIFSConstants.LARGER_BIG_BLOCK_SIZE</code></a>)</div>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="DocumentBlock(org.apache.poi.poifs.storage.RawDataBlock)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DocumentBlock</h4>
<pre>public DocumentBlock(<a href="../../../../../org/apache/poi/poifs/storage/RawDataBlock.html" title="class in org.apache.poi.poifs.storage">RawDataBlock</a> block)
throws java.io.IOException</pre>
<div class="block">create a document block from a raw data block</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>block</code> - the raw data block</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
<a name="DocumentBlock(java.io.InputStream, org.apache.poi.poifs.common.POIFSBigBlockSize)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>DocumentBlock</h4>
<pre>public DocumentBlock(java.io.InputStream stream,
<a href="../../../../../org/apache/poi/poifs/common/POIFSBigBlockSize.html" title="class in org.apache.poi.poifs.common">POIFSBigBlockSize</a> bigBlockSize)
throws java.io.IOException</pre>
<div class="block">Create a single instance initialized with data.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>stream</code> - the InputStream delivering the data.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code></dd></dl>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="size()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>size</h4>
<pre>public int size()</pre>
<div class="block">Get the number of bytes read for this block</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>bytes read into the block</dd></dl>
</li>
</ul>
<a name="partiallyRead()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>partiallyRead</h4>
<pre>public boolean partiallyRead()</pre>
<div class="block">Was this a partially read block?</div>
<dl><dt><span class="strong">Returns:</span></dt><dd>true if the block was only partially filled with data</dd></dl>
</li>
</ul>
<a name="getFillByte()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getFillByte</h4>
<pre>public static byte getFillByte()</pre>
<dl><dt><span class="strong">Returns:</span></dt><dd>the fill byte used</dd></dl>
</li>
</ul>
<a name="convert(org.apache.poi.poifs.common.POIFSBigBlockSize, byte[], int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>convert</h4>
<pre>public static <a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</a>[] convert(<a href="../../../../../org/apache/poi/poifs/common/POIFSBigBlockSize.html" title="class in org.apache.poi.poifs.common">POIFSBigBlockSize</a> bigBlockSize,
byte[] array,
int size)</pre>
<div class="block">convert a single long array into an array of DocumentBlock
instances</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>array</code> - the byte array to be converted</dd><dd><code>size</code> - the intended size of the array (which may be smaller)</dd>
<dt><span class="strong">Returns:</span></dt><dd>an array of DocumentBlock instances, filled from the
input array</dd></dl>
</li>
</ul>
<a name="getDataInputBlock(org.apache.poi.poifs.storage.DocumentBlock[], int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDataInputBlock</h4>
<pre>public static <a href="../../../../../org/apache/poi/poifs/storage/DataInputBlock.html" title="class in org.apache.poi.poifs.storage">DataInputBlock</a> getDataInputBlock(<a href="../../../../../org/apache/poi/poifs/storage/DocumentBlock.html" title="class in org.apache.poi.poifs.storage">DocumentBlock</a>[] blocks,
int offset)</pre>
</li>
</ul>
<a name="doWriteData(java.io.OutputStream, byte[])">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>doWriteData</h4>
<pre>protected void doWriteData(java.io.OutputStream stream,
byte[] data)
throws java.io.IOException</pre>
<div class="block">Default implementation of write for extending classes that
contain their data in a simple array of bytes.</div>
<dl><dt><span class="strong">Parameters:</span></dt><dd><code>stream</code> - the OutputStream to which the data should be
written.</dd><dd><code>data</code> - the byte array of to be written.</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - on problems writing to the specified
stream.</dd></dl>
</li>
</ul>
<a name="writeBlocks(java.io.OutputStream)">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>writeBlocks</h4>
<pre>public void writeBlocks(java.io.OutputStream stream)
throws java.io.IOException</pre>
<div class="block">Write the storage to an OutputStream</div>
<dl>
<dt><strong>Specified by:</strong></dt>
<dd><code><a href="../../../../../org/apache/poi/poifs/storage/BlockWritable.html#writeBlocks(java.io.OutputStream)">writeBlocks</a></code> in interface <code><a href="../../../../../org/apache/poi/poifs/storage/BlockWritable.html" title="interface in org.apache.poi.poifs.storage">BlockWritable</a></code></dd>
<dt><span class="strong">Parameters:</span></dt><dd><code>stream</code> - the OutputStream to which the stored data should
be written</dd>
<dt><span class="strong">Throws:</span></dt>
<dd><code>java.io.IOException</code> - on problems writing to the specified
stream</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/DocumentBlock.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-all.html">Index</a></li>
<li><a href="../../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../../org/apache/poi/poifs/storage/DataInputBlock.html" title="class in org.apache.poi.poifs.storage"><span class="strong">PREV CLASS</span></a></li>
<li><a href="../../../../../org/apache/poi/poifs/storage/HeaderBlock.html" title="class in org.apache.poi.poifs.storage"><span class="strong">NEXT CLASS</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/poi/poifs/storage/DocumentBlock.html" target="_top">FRAMES</a></li>
<li><a href="DocumentBlock.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 ======= -->
<p class="legalCopy"><small>
<i>Copyright 2017 The Apache Software Foundation or
its licensors, as applicable.</i>
</small></p>
</body>
</html>
|
_includes/head.html | TypeQuery/Home | <head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
<link rel="alternate" type="application/rss+xml" title="{{ site.title | escape }}" href="{{ "/feed.xml" | relative_url }}">
{% if jekyll.environment == 'production' and site.google_analytics %}
{% include google-analytics.html %}
{% endif %}
</head> |
thunder_web/cloud/templates/misc/domain_tab.html | AQORN/thunder-engine | <div id="domainContent">
<div id="domainContainers">
<div id="domainNotifications">
<ul class="bulletList">
<li>Domains represent logincal containers of cloid configurations against which permissions are applied by individual roles</li>
<li>Scopes represent individual clouds</li>
<li>DOMAINS IN USER CANNOT BE REMOVED</li>
</ul>
</div>
<div id="domainCreate">
<table>
<tr class="trpopHeading"><td colspan="2">Create New Domain</td></tr>
<tr><td class="tr-header">Domain:</td><td><input type="text"></td></tr>
<tr><td class="blank-line"></td></tr>
<tr><td class="tr-header">Scope:</td><td><select><option>Select Scope</option></select></td></tr>
<tr><td class="blank-line"></td></tr>
<tr><td colspan="2"> <input type="submit" class="btn btn-danger btn-sm btn-right" value="Create Domain" /></td></tr>
</table>
</div>
</div>
<div id="domainList">
<table>
<tr class="trpopHeading"><th collspan="2" class="popHeading">Existing Domains</th></tr>
<tr class="tr-header"><th>Domain</th><th>Scope</th></tr>
<tr class="trrows">
<td>Thunder</td>
<td>Thunder everything</td>
</tr>
<tr><td class="blank-line"></td></tr>
<tr class="trrows">
<td>Thunder</td>
<td>Thunder everything</td>
</tr>
<tr>
<td>Thunder</td>
<td>Thunder everything</td>
</tr>
<tr>
<td>Thunder</td>
<td>Thunder everything</td>
</tr>
<tr>
<td>Thunder</td>
<td>Thunder everything</td>
</tr>
<tr>
<td>Domain 1</td>
<td>Cloud name</td>
</tr>
<tr>
<td>Thunder</td>
<td>Thunder everything</td>
</tr>
<tr>
<td>Thunder</td>
<td>Thunder everything</td>
</tr>
<tr>
<td>Domain 1</td>
<td>Cloud name</td>
</tr>
<tr>
<td>Domain 2</td>
<td>Cloud name, cloud name XYZ</td>
</tr>
<tr><td class="blank-line"></td></tr>
</table>
</div>
</div> |
zzzAttic/index-fb-g+.html | ola-ct/ct-longitude | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>c't Longitude</title>
<link rel="stylesheet" href="css/ctlon.css" />
<script type="text/javascript">
var CTLON = { authenticated: false };
</script>
<!-- Login with Google -->
<script type="text/javascript">
(function () {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/client:plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
function signinCallback(authResult) {
if (authResult['status']['signed_in']) {
document.getElementById('googleSigninButton').setAttribute('style', 'display: none');
console.log(authResult);
CTLON.authenticated = true;
}
else {
// Possible error values:
// "user_signed_out" - User is signed-out
// "access_denied" - User denied access to your app
// "immediate_failed" - Could not automatically log in the user
console.log('Google sign-in state: ' + authResult['error']);
}
}
</script>
<!-- Login with Facebook -->
<script type="text/javascript">
window.fbAsyncInit = function () {
FB.init({
appId: '1394587504123689',
status: true, // check login status
cookie: true, // enable cookies to allow the server to access the session
xfbml: true // parse XFBML
});
function loginStatusChanged(response) {
console.log(response);
// Here we specify what we do with the response anytime this event occurs.
if (response.status === 'connected') {
// The response object is returned with a status field that lets the app know the current
// login status of the person. In this case, we're handling the situation where they
// have logged in to the app.
console.log('Welcome to Facebook!');
CTLON.authenticated = true;
FB.api('/me', function (response) {
console.log(response);
});
}
else if (response.status === 'not_authorized') {
// In this case, the person is logged into Facebook, but not into the app, so we call
// FB.login() to prompt them to do so.
// In real-life usage, you wouldn't want to immediately prompt someone to login
// like this, for two reasons:
// (1) JavaScript created popup windows are blocked by most browsers unless they
// result from direct interaction from people using the app (such as a mouse click)
// (2) it is a bad experience to be continually prompted to login upon page load.
FB.login();
}
else {
// In this case, the person is not logged into Facebook, so we call the login()
// function to prompt them to do so. Note that at this stage there is no indication
// of whether they are logged into the app. If they aren't then they'll see the Login
// dialog right after they log in to Facebook.
// The same caveats as above apply to the FB.login() call here.
FB.login();
}
}
// Here we subscribe to the auth.authResponseChange JavaScript event. This event is fired
// for any authentication related change, such as login, logout or session refresh. This means that
// whenever someone who was previously logged out tries to log in again, the correct case below
// will be handled.
FB.Event.subscribe('auth.authResponseChange', loginStatusChanged);
// FB.getLoginStatus(loginStatusChanged, true);
};
// Load the SDK asynchronously
(function (d) {
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) { return; }
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
</script>
</head>
<body class="login">
<h1>c't Longitude</h1>
<!-- Login with Google -->
<span id="googleSigninButton">
<span
class="g-signin"
data-callback="signinCallback"
data-clientid="794079768346.apps.googleusercontent.com"
data-cookiepolicy="single_host_origin"
data-scope="https://www.googleapis.com/auth/plus.login"></span>
</span>
<!-- Login with Facebook -->
<div id="fb-root"></div>
<!-- Below we include the Login Button social plugin. This button uses the JavaScript SDK to present a graphical Login button that triggers the FB.login() function when clicked. -->
<fb:login-button show-faces="false"></fb:login-button>
</body>
</html>
|
app/views/search.html | renaekathleen/karaoke | <form id="search" action="javascript:void(0)">
<input type="text" id="query" placeholder="Search" ng-model="query">
<button type="submit" class="fa fa-search" ng-click="search()"></button>
</form>
<ul id="songlist" ng-if="songs.length">
<li ng-repeat="song in songs" ng-if="songs">
<a href="#/sing/{{song.media$group.yt$videoid.$t}}">
<img ng-src="http://img.youtube.com/vi/{{song.media$group.yt$videoid.$t}}/0.jpg"/>
<span>{{song.title.$t}}</span>
</a>
</li>
</ul>
<p ng-if="err" class="search-err">{{err}}</p>
|
RossFamilyTree/ppl/3/9/d15f60350825fd7aecfba4f0b93.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 - ROGERS, Alfred William</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>ROGERS, Alfred William<sup><small></small></sup></h3>
<div id="summaryarea">
<table class="infolist">
<tr>
<td class="ColumnAttribute">Birth Name</td>
<td class="ColumnValue">
ROGERS, Alfred William <a href="#sref1a">1a</a>
</td>
</tr>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnValue">I10228</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/2/0/d15f603500d54baf8b60363f302.html">ROGERS, John Henry<span class="grampsid"> [I10224]</span></a>
</td>
</tr>
<tr>
<td class="ColumnAttribute">Mother</td>
<td class="ColumnValue">
<a href="../../../ppl/9/9/d15f6034fd13f79487ee458cd99.html">STEPHENSON, Mary<span class="grampsid"> [I10223]</span></a>
</td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/8/2/d15f603503841d0daefa28bec28.html">ROGERS, Alice Mary<span class="grampsid"> [I10225]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/5/9/d15f603504e5133f8ea2f362a95.html">ROGERS, Hazel Mary<span class="grampsid"> [I10226]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/f/a/d15f60350652a8f0416a8612caf.html">ROGERS, John Henry<span class="grampsid"> [I10227]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue"> <a href="../../../ppl/3/9/d15f60350825fd7aecfba4f0b93.html">ROGERS, Alfred William<span class="grampsid"> [I10228]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Sister</td>
<td class="ColumnValue"> <a href="../../../ppl/0/f/d15f60350a566eaffe0615040f0.html">ROGERS, Delis Irene<span class="grampsid"> [I10229]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/6/9/d15f60350cf6e62fb5b46d1b496.html">ROGERS, Douglas James<span class="grampsid"> [I10230]</span></a></td>
<td class="ColumnValue"></td>
</tr>
<tr>
<td class="ColumnAttribute"> Brother</td>
<td class="ColumnValue"> <a href="../../../ppl/7/a/d15f60350f6721306eba9f185a7.html">ROGERS, Arthur Ronald<span class="grampsid"> [I10231]</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">EE76F3CEB0E4DC4B8AB7159519A688F406E3</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/2/0/d15f603500d54baf8b60363f302.html">ROGERS, John Henry<span class="grampsid"> [I10224]</span></a>
<ol>
<li class="spouse">
<a href="../../../ppl/9/9/d15f6034fd13f79487ee458cd99.html">STEPHENSON, Mary<span class="grampsid"> [I10223]</span></a>
<ol>
<li>
<a href="../../../ppl/8/2/d15f603503841d0daefa28bec28.html">ROGERS, Alice Mary<span class="grampsid"> [I10225]</span></a>
</li>
<li>
<a href="../../../ppl/5/9/d15f603504e5133f8ea2f362a95.html">ROGERS, Hazel Mary<span class="grampsid"> [I10226]</span></a>
</li>
<li>
<a href="../../../ppl/f/a/d15f60350652a8f0416a8612caf.html">ROGERS, John Henry<span class="grampsid"> [I10227]</span></a>
</li>
<li class="thisperson">
ROGERS, Alfred William
</li>
<li>
<a href="../../../ppl/0/f/d15f60350a566eaffe0615040f0.html">ROGERS, Delis Irene<span class="grampsid"> [I10229]</span></a>
</li>
<li>
<a href="../../../ppl/6/9/d15f60350cf6e62fb5b46d1b496.html">ROGERS, Douglas James<span class="grampsid"> [I10230]</span></a>
</li>
<li>
<a href="../../../ppl/7/a/d15f60350f6721306eba9f185a7.html">ROGERS, Arthur Ronald<span class="grampsid"> [I10231]</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/3/9/d15f60350825fd7aecfba4f0b93.html">
ROGERS, Alfred William
</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/2/0/d15f603500d54baf8b60363f302.html">
ROGERS, John Henry
</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/9/9/d15f6034fd13f79487ee458cd99.html">
STEPHENSON, Mary
</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/3/5/d15f60348e02fbebc395f30b553.html">
STEPHENSON, George
</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="boxbg female AncCol2" style="top: 494px; left: 386px;">
<a class="noThumb" href="../../../ppl/2/8/d15f603489e55b5364f80934f82.html">
HOVEY, Caroline 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 class="bvline" style="top: 526px; left: 545px; width: 15px"></div>
<div class="gvline" style="top: 531px; left: 545px; width: 20px"></div>
<div class="boxbg male AncCol3" style="top: 457px; left: 576px;">
<a class="noThumb" href="../../../ppl/c/b/d15f603300b2458683c0b6fa2bc.html">
HOVEY, James
</a>
</div>
<div class="shadow" style="top: 462px; left: 580px;"></div>
<div class="bvline" style="top: 489px; left: 560px; width: 15px;"></div>
<div class="gvline" style="top: 494px; left: 565px; width: 20px;"></div>
<div class="bhline" style="top: 489px; left: 560px; height: 37px;"></div>
<div class="gvline" style="top: 494px; left: 565px; height: 37px;"></div>
<div class="boxbg female AncCol3" style="top: 531px; left: 576px;">
<a class="noThumb" href="../../../ppl/5/1/d15f6032fb83280de57e4de5d15.html">
LUCAS, Caroline
</a>
</div>
<div class="shadow" style="top: 536px; left: 580px;"></div>
<div class="bvline" style="top: 563px; left: 560px; width: 15px;"></div>
<div class="gvline" style="top: 568px; left: 565px; width: 20px;"></div>
<div class="bhline" style="top: 526px; left: 560px; height: 37px;"></div>
<div class="gvline" style="top: 531px; left: 565px; height: 37px;"></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:48<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
Resources/Private/Templates/Module/Administration/Users/Index.html | folkekirkensit/neos | {namespace neos=TYPO3\Neos\ViewHelpers}
<f:layout name="BackendSubModule" />
<f:section name="content">
<div class="neos-row-fluid">
<table class="neos-table">
<thead>
<tr>
<th>{neos:backend.translate(id: 'users.name', value: 'Name')}</th>
<th>{neos:backend.translate(id: 'users.accountsAndRoles', value: 'Accounts and Roles')}</th>
<th> </th>
</tr>
</thead>
<f:for each="{users}" key="index" as="user">
<tr>
<td title="{user.alias}">{user.name}</td>
<td>
<f:for each="{user.accounts}" as="account">
<i class="icon-user icon-white"></i>{account.accountIdentifier} (<f:render partial="Module/Shared/Roles" arguments="{roles: account.roles}" />)
</f:for>
</td>
<td class="neos-action">
<div class="neos-pull-right">
<f:link.action action="show" arguments="{user: user}" class="neos-button neos-button-primary" title="{neos:backend.translate(id: 'clickToView', value: 'Click to view')}">
<i class="icon-info-sign icon-white"></i>
</f:link.action>
<f:link.action action="edit" arguments="{user: user}" class="neos-button neos-button-primary" title="{neos:backend.translate(id: 'clickToEdit', value: 'Click to edit')}">
<i class="icon-pencil icon-white"></i>
</f:link.action>
<f:if condition="{currentUser} == {user}">
<f:then>
<button class="neos-button neos-button-danger neos-disabled" title="{neos:backend.translate(id: 'users.youCannotDeleteYourself', value: 'You are logged in as this user and you cannot delete yourself.')}"><i class="icon-trash icon-white"></i></button>
</f:then>
<f:else>
<button class="neos-button neos-button-danger" title="{neos:backend.translate(id: 'clickToDelete', value: 'Click to delete')}" data-toggle="modal" href="#user-{index}">
<i class="icon-trash icon-white"></i>
</button>
<div class="neos-hide" id="user-{index}">
<div class="neos-modal">
<div class="neos-modal-header">
<button type="button" class="neos-close neos-button" data-dismiss="modal"></button>
<div class="neos-header">{neos:backend.translate(id: 'users.deleteModalHeader', value: 'Do you really want to delete the user "{0}"?', arguments: {0: "{user.name}"})}</div>
<div>
<div class="neos-subheader">
<p>{neos:backend.translate(id: 'users.deleteModalBody', value: 'This will delete the user, the related accounts and his personal workspace, including all unpublished content. This operation cannot be undone.')}</p>
</div>
</div>
</div>
<div class="neos-modal-footer">
<a href="#" class="neos-button" data-dismiss="modal">{neos:backend.translate(id: 'cancel', value: 'Cancel')}</a>
<f:form action="delete" arguments="{user: user}" class="neos-inline">
<button type="submit" class="neos-button neos-button-danger" title="Delete User">
{neos:backend.translate(id: 'users.deleteModalConfirm', value: 'Yes, delete the user')}
</button>
</f:form>
</div>
</div>
<div class="neos-modal-backdrop neos-in"></div>
</div>
</f:else>
</f:if>
</div>
</td>
</tr>
</f:for>
</table>
</div>
<div class="neos-footer">
<f:link.action action="new" class="neos-button neos-button-primary" title="{neos:backend.translate(id: 'users.createNew', value: 'Create new user')}">{neos:backend.translate(id: 'users.createNew', value: 'Create new user')}</f:link.action>
</div>
</f:section> |
docs/html/d3/da2/structsequoia_1_1testing_1_1equivalence__checker_3_01utilities_1_1iterator_01_4.html | ojrosten/sequoia | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://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.18"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>Sequoia: sequoia::testing::equivalence_checker< utilities::iterator > Struct 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>
<link href="../../doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">Sequoia
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.18 -->
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
var searchBox = new SearchBox("searchBox", "../../search",false,'Search');
/* @license-end */
</script>
<script type="text/javascript" src="../../menudata.js"></script>
<script type="text/javascript" src="../../menu.js"></script>
<script type="text/javascript">
/* @license magnet:?xt=urn:btih:cf05388f2679ee054f2beb29a391d25f4e673ac3&dn=gpl-2.0.txt GPL-v2 */
$(function() {
initMenu('../../',true,false,'search.php','Search');
$(document).ready(function() { init_search(); });
});
/* @license-end */</script>
<div id="main-nav"></div>
<!-- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
</div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="javascript:void(0)" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><b>sequoia</b></li><li class="navelem"><a class="el" href="../../dd/da8/namespacesequoia_1_1testing.html">testing</a></li><li class="navelem"><a class="el" href="../../d3/da2/structsequoia_1_1testing_1_1equivalence__checker_3_01utilities_1_1iterator_01_4.html">equivalence_checker< utilities::iterator ></a></li> </ul>
</div>
</div><!-- top -->
<div class="header">
<div class="summary">
<a href="#pub-types">Public Types</a> |
<a href="#pub-static-methods">Static Public Member Functions</a> |
<a href="../../df/dbf/structsequoia_1_1testing_1_1equivalence__checker_3_01utilities_1_1iterator_01_4-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">sequoia::testing::equivalence_checker< utilities::iterator > Struct Reference</div> </div>
</div><!--header-->
<div class="contents">
<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:a20090877135eb191bb1376ddb3d9e5e6"><td class="memItemLeft" align="right" valign="top"><a id="a20090877135eb191bb1376ddb3d9e5e6"></a>
using </td><td class="memItemRight" valign="bottom"><b>type</b> = <a class="el" href="../../d3/d33/classsequoia_1_1utilities_1_1iterator.html">utilities::iterator</a></td></tr>
<tr class="separator:a20090877135eb191bb1376ddb3d9e5e6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a20090877135eb191bb1376ddb3d9e5e6"><td class="memItemLeft" align="right" valign="top"><a id="a20090877135eb191bb1376ddb3d9e5e6"></a>
using </td><td class="memItemRight" valign="bottom"><b>type</b> = <a class="el" href="../../d3/d33/classsequoia_1_1utilities_1_1iterator.html">utilities::iterator</a></td></tr>
<tr class="separator:a20090877135eb191bb1376ddb3d9e5e6"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-static-methods"></a>
Static Public Member Functions</h2></td></tr>
<tr class="memitem:a164d0681a684d85f4887a1a311260ca2"><td class="memTemplParams" colspan="2"><a id="a164d0681a684d85f4887a1a311260ca2"></a>
template<test_mode Mode> </td></tr>
<tr class="memitem:a164d0681a684d85f4887a1a311260ca2"><td class="memTemplItemLeft" align="right" valign="top">static void </td><td class="memTemplItemRight" valign="bottom"><b>check</b> (<a class="el" href="../../df/d20/classsequoia_1_1testing_1_1test__logger.html">test_logger</a>< Mode > &logger, const <a class="el" href="../../d3/d33/classsequoia_1_1utilities_1_1iterator.html">type</a> &actual, const int *prediction)</td></tr>
<tr class="separator:a164d0681a684d85f4887a1a311260ca2"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a164d0681a684d85f4887a1a311260ca2"><td class="memTemplParams" colspan="2"><a id="a164d0681a684d85f4887a1a311260ca2"></a>
template<test_mode Mode> </td></tr>
<tr class="memitem:a164d0681a684d85f4887a1a311260ca2"><td class="memTemplItemLeft" align="right" valign="top">static void </td><td class="memTemplItemRight" valign="bottom"><b>check</b> (<a class="el" href="../../df/d20/classsequoia_1_1testing_1_1test__logger.html">test_logger</a>< Mode > &logger, const <a class="el" href="../../d3/d33/classsequoia_1_1utilities_1_1iterator.html">type</a> &actual, const int *prediction)</td></tr>
<tr class="separator:a164d0681a684d85f4887a1a311260ca2"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>/Users/Claire/Dropbox/Sequoia/output/TestsTemporaryData/TestFramework/TestRunnerTestCreation/WorkingCopy/FakeProject/Tests/Utilities/<a class="el" href="../../da/d33/output_2TestsTemporaryData_2TestFramework_2TestRunnerTestCreation_2WorkingCopy_2FakeProject_2Tes8ad9c4f28ae241d53cce9da873cbabc6_source.html">IteratorTestingUtilities.hpp</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated by  <a href="http://www.doxygen.org/index.html">
<img class="footer" src="../../doxygen.png" alt="doxygen"/>
</a> 1.8.18
</small></address>
</body>
</html>
|
asset_admin/css/login.css | johnnyswp/promin | /*------------------------------------------------------------------
[Master Stylesheet]
Project : Aether
Version : 1.0
Last change : 2015/03/27
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
[Table of contents]
1. General Structure
2. Anchor Link
3. Text Outside the Box
4. Main Form
5. Login Button
6. Form Invalid
7. Form - Main Message
8. Custom Checkbox & Radio
9. Misc
-------------------------------------------------------------------*/
/*=== 1. General Structure ===*/
html,
body {
background: #efefef;
padding: 10px;
font-family: "Helvetica Neue", Roboto, Arial, "Droid Sans", sans-serif;
}
/*=== 2. Anchor Link ===*/
a {
color: #aaaaaa;
transition: all ease-in-out 200ms;
}
a:hover {
color: #333333;
text-decoration: none;
}
/*=== 3. Text Outside the Box ===*/
.etc-login-form {
color: #919191;
padding: 10px 20px;
}
.etc-login-form p {
margin-bottom: 5px;
}
/*=== 4. Main Form ===*/
.login-form-1 {
/*max-width: 300px;*/
width: 360px;
border-radius: 5px;
display: inline-block;
}
.main-login-form {
position: relative;
}
.login-form-1 .form-control {
border: 0;
box-shadow: 0 0 0;
border-radius: 0;
background: transparent;
color: #555555;
padding: 7px 0;
font-weight: bold;
height:auto;
}
.login-form-1 .form-control::-webkit-input-placeholder {
color: #999999;
}
.login-form-1 .form-control:-moz-placeholder,
.login-form-1 .form-control::-moz-placeholder,
.login-form-1 .form-control:-ms-input-placeholder {
color: #999999;
}
.login-form-1 .form-group {
margin-bottom: 0;
border-bottom: 2px solid #efefef;
padding-right: 20px;
position: relative;
}
.login-form-1 .form-group:last-child {
border-bottom: 0;
}
.login-group {
background: #ffffff;
color: #999999;
border-radius: 8px;
padding: 10px 20px;
}
.login-group-checkbox {
padding: 5px 0;
}
/*=== 5. Login Button ===*/
.login-form-1 .login-button {
position: absolute;
right: -25px;
top: 50%;
background: #fece00;
color: #333;
padding: 11px 0;
width: 50px;
height: 50px;
margin-top: -25px;
border: 5px solid #efefef;
border-radius: 50%;
transition: all ease-in-out 500ms;
}
.login-form-1 .login-button:hover {
color: #555555;
transform: rotate(360deg);
}
.login-form-1 .login-button.clicked {
color: #555555;
}
.login-form-1 .login-button.clicked:hover {
transform: none;
}
.login-form-1 .login-button.clicked.success {
color: #2ecc71;
}
.login-form-1 .login-button.clicked.error {
color: #e74c3c;
}
/*=== 6. Form Invalid ===*/
label.form-invalid {
position: absolute;
top: 0;
right: 0;
z-index: 5;
display: block;
margin-top: -25px;
padding: 7px 9px;
background: #777777;
color: #ffffff;
border-radius: 5px;
font-weight: bold;
font-size: 11px;
}
label.form-invalid:after {
top: 100%;
right: 10px;
border: solid transparent;
content: " ";
height: 0;
width: 0;
position: absolute;
pointer-events: none;
border-color: transparent;
border-top-color: #777777;
border-width: 6px;
}
/*=== 7. Form - Main Message ===*/
.login-form-main-message {
background: #ffffff;
color: #999999;
border-left: 3px solid transparent;
border-radius: 3px;
margin-bottom: 8px;
font-weight: bold;
height: 0;
padding: 0 20px 0 17px;
opacity: 0;
transition: all ease-in-out 200ms;
}
.login-form-main-message.show {
height: auto;
opacity: 1;
padding: 10px 20px 10px 17px;
}
.login-form-main-message.success {
border-left-color: #2ecc71;
}
.login-form-main-message.error {
border-left-color: #e74c3c;
}
/*=== 8. Custom Checkbox & Radio ===*/
/* Base for label styling */
[type="checkbox"]:not(:checked),
[type="checkbox"]:checked,
[type="radio"]:not(:checked),
[type="radio"]:checked {
position: absolute;
left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label,
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label {
position: relative;
padding-left: 25px;
padding-top: 1px;
cursor: pointer;
}
/* checkbox aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before,
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
content: '';
position: absolute;
left: 0;
top: 2px;
width: 17px;
height: 17px;
border: 0px solid #aaa;
background: #f0f0f0;
border-radius: 3px;
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}
/* checked mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after,
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
position: absolute;
color: #555555;
transition: all .2s;
}
/* checked mark aspect changes */
[type="checkbox"]:not(:checked) + label:after,
[type="radio"]:not(:checked) + label:after {
opacity: 0;
transform: scale(0);
}
[type="checkbox"]:checked + label:after,
[type="radio"]:checked + label:after {
opacity: 1;
transform: scale(1);
}
/* disabled checkbox */
[type="checkbox"]:disabled:not(:checked) + label:before,
[type="checkbox"]:disabled:checked + label:before,
[type="radio"]:disabled:not(:checked) + label:before,
[type="radio"]:disabled:checked + label:before {
box-shadow: none;
border-color: #8c8c8c;
background-color: #878787;
}
[type="checkbox"]:disabled:checked + label:after,
[type="radio"]:disabled:checked + label:after {
color: #555555;
}
[type="checkbox"]:disabled + label,
[type="radio"]:disabled + label {
color: #8c8c8c;
}
/* accessibility */
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before,
[type="checkbox"]:checked:focus + label:before,
[type="checkbox"]:not(:checked):focus + label:before {
border: 1px dotted #f6f6f6;
}
/* hover style just for information */
label:hover:before {
border: 1px solid #f6f6f6 !important;
}
/*=== Customization ===*/
/* radio aspect */
[type="checkbox"]:not(:checked) + label:before,
[type="checkbox"]:checked + label:before {
border-radius: 3px;
}
[type="radio"]:not(:checked) + label:before,
[type="radio"]:checked + label:before {
border-radius: 35px;
}
/* selected mark aspect */
[type="checkbox"]:not(:checked) + label:after,
[type="checkbox"]:checked + label:after {
content: '✔';
top: 0;
left: 2px;
font-size: 14px;
}
[type="radio"]:not(:checked) + label:after,
[type="radio"]:checked + label:after {
content: '\2022';
top: 0;
left: 3px;
font-size: 30px;
line-height: 25px;
}
/*=== 9. Misc ===*/
.logo {
padding: 15px 0;
font-size: 25px;
color: #aaaaaa;
font-weight: bold;
}
|
src/components/gist.css | hufan-Akari/LRC-MAKER | .gist {
display: flex;
flex: 1 0 auto;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
}
.new-token,
.get-gist-id {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
max-width: 768px;
margin: 0 auto;
}
.new-token-tip,
.create-new-gist {
flex: 1 0 auto;
width: 100%;
max-width: 500px;
margin: 1rem;
padding: 1rem;
text-align: center;
}
@media (max-width: 500px) {
.new-token-tip {
border-radius: 0;
}
}
.new-token-tip-text,
.gist-id-tip-text {
max-width: 500px;
margin: 1rem;
font-size: 1.2rem;
text-align: center;
}
.github-svg {
width: 100px;
height: 100px;
margin: 1rem;
}
.new-token-input,
.gist-id-input {
flex: 1 0 auto;
margin: 0 0.5rem;
background: 0;
border: 0;
border-bottom: 1px solid var(--theme-color);
border-radius: 0;
}
.new-token-form,
.gist-id-form {
display: flex;
flex: 1 0 auto;
align-items: center;
justify-content: center;
width: 100%;
max-width: 500px;
margin: 1rem 0;
padding: 1rem 0;
}
.file-list {
display: grid;
flex: 1 0 auto;
grid-gap: 1rem;
grid-template-rows: min-content;
grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
width: 100%;
}
.file-item {
padding: 0.5rem;
border-radius: var(--border-radius);
box-shadow: 0 0 2px var(--font-color);
transition: box-shadow var(--transition-duration) ease-in-out;
user-select: none;
}
.file-item:hover {
box-shadow: 0 0 1rem var(--theme-color);
}
.file-content {
height: 15rem;
overflow: hidden;
line-height: 1.6;
white-space: pre;
}
.file-bar {
display: flex;
align-items: flex-start;
justify-content: space-between;
}
.file-title {
padding: 0.5rem;
}
.file-action {
flex: 0 0 auto;
}
.file-load {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
padding: 0;
transition: color 250ms ease-in-out;
}
.file-load > svg {
pointer-events: none;
}
.file-load:hover {
color: var(--theme-color);
}
.gist-details {
width: 100%;
padding: 1rem;
user-select: none;
}
@media (min-width: 1024px) {
.gist-details {
padding: 1rem 0;
}
}
.gist-bar {
display: flex;
justify-content: space-between;
width: 100%;
}
@media (max-width: 768px) {
.gist-bar {
flex-direction: column;
}
}
.gist-info,
.ratelimit {
flex: 1 1 auto;
padding: 0.5rem;
}
.ratelimit > p {
margin: 0;
line-height: 1.5;
}
.gist-loading {
display: flex;
flex: 1 0 auto;
align-items: center;
justify-content: center;
}
.gist-no-data {
display: flex;
flex: 1 1 auto;
}
|
CFMHTMLUI/theme/theme.css | mohsenti/CrowFM | * {
-webkit-user-select: none; /* Chrome all / Safari all */
user-select: none;
}
body {
overflow: hidden;
}
#main {
padding: 10px;
}
.dropdown > a {
text-decoration: none;
color: black;
cursor: default;
padding: 5px;
}
.dropdown > a:hover {
text-decoration: none;
-webkit-user-select: none; /* Chrome all / Safari all */
user-select: none;
}
#main-menu .dropdown {
padding-right: 15px;
}
#toolbar {
background-color: #fafafa;
position: relative;
margin: 10px 0;
padding: 0 5px;
cursor: default;
overflow: hidden;
border: 1px solid #dfdfdf;
color: #404040;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
#toolbar .toolbar-item {
display: inline-block;
padding: 15px 5px;
cursor: default;
}
#toolbar .toolbar-item:hover {
background: #ebebeb;
border-color: #ebebeb;
}
#toolbar .toolbar-item.location-container {
width: 100%;
padding: 8px;
}
#location {
display: inline-block;
width: 100%;
}
#left-container {
width: 200px;
background-color: #fafafa;
position: relative;
cursor: default;
overflow: hidden;
border: 1px solid #dfdfdf;
color: #404040;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
height: 100%;
float: left;
}
#center-container {
margin-left: 5px;
width: calc(100% - 205px);
background-color: #fafafa;
position: relative;
cursor: default;
border: 1px solid #dfdfdf;
color: #404040;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
overflow: auto;
height: 100%;
float: left;
}
.title {
background: #39c;
text-align: center;
padding: 10px 0;
font-weight: bolder;
color: #fff;
}
.treeView {
}
.treeView ul {
padding: 0 0 0 10px;
}
.treeView ul ul {
padding-left: 20px;
}
.treeView ul li {
list-style: none;
padding: 5px;
}
.icon-box {
width: 100px;
max-height: 100px;
border: 1px solid black;
text-align: center;
padding: 10px;
margin: 15px;
display: inline-block;
}
.icon-box .icon {
width: 45px;
height: 60px;
display: inline-block;
}
.icon-box .icon img {
width: 100%;
height: 100%;
} |
docs/Doku/Javadoc/serialized-form.html | TUD-INF-IAI-MCI/SVG-Plott | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<!-- Generated by javadoc (1.8.0_131) on Mon Aug 21 09:22:07 CEST 2017 -->
<title>Serialized Form</title>
<meta name="date" content="2017-08-21">
<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="Serialized Form";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><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?serialized-form.html" target="_top">Frames</a></li>
<li><a href="serialized-form.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Serialized Form" class="title">Serialized Form</h1>
</div>
<div class="serializedFormContainer">
<ul class="blockList">
<li class="blockList">
<h2 title="Package">Package tud.tangram.svgplot.data</h2>
<ul class="blockList">
<li class="blockList"><a name="tud.tangram.svgplot.data.PointListList">
<!-- -->
</a>
<h3>Class <a href="tud/tangram/svgplot/data/PointListList.html" title="class in tud.tangram.svgplot.data">tud.tangram.svgplot.data.PointListList</a> extends java.util.ArrayList<<a href="tud/tangram/svgplot/data/PointListList.PointList.html" title="class in tud.tangram.svgplot.data">PointListList.PointList</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>6902232865786868851L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>maxX</h4>
<pre>java.lang.Double maxX</pre>
</li>
<li class="blockList">
<h4>maxY</h4>
<pre>java.lang.Double maxY</pre>
</li>
<li class="blockList">
<h4>minX</h4>
<pre>java.lang.Double minX</pre>
</li>
<li class="blockListLast">
<h4>minY</h4>
<pre>java.lang.Double minY</pre>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="tud.tangram.svgplot.data.PointListList.PointList">
<!-- -->
</a>
<h3>Class <a href="tud/tangram/svgplot/data/PointListList.PointList.html" title="class in tud.tangram.svgplot.data">tud.tangram.svgplot.data.PointListList.PointList</a> extends java.util.ArrayList<<a href="tud/tangram/svgplot/data/Point.html" title="class in tud.tangram.svgplot.data">Point</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-2318768874799315111L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockList">
<h4>maxX</h4>
<pre>java.lang.Double maxX</pre>
</li>
<li class="blockList">
<h4>maxY</h4>
<pre>java.lang.Double maxY</pre>
</li>
<li class="blockList">
<h4>minX</h4>
<pre>java.lang.Double minX</pre>
</li>
<li class="blockList">
<h4>minY</h4>
<pre>java.lang.Double minY</pre>
</li>
<li class="blockListLast">
<h4>name</h4>
<pre>java.lang.String name</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package tud.tangram.svgplot.data.trendline</h2>
<ul class="blockList">
<li class="blockList"><a name="tud.tangram.svgplot.data.trendline.AtomicModuloInteger">
<!-- -->
</a>
<h3>Class <a href="tud/tangram/svgplot/data/trendline/AtomicModuloInteger.html" title="class in tud.tangram.svgplot.data.trendline">tud.tangram.svgplot.data.trendline.AtomicModuloInteger</a> extends java.util.concurrent.atomic.AtomicInteger implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>1L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>mod</h4>
<pre>int mod</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package tud.tangram.svgplot.legend</h2>
<ul class="blockList">
<li class="blockList"><a name="tud.tangram.svgplot.legend.LegendRenderer">
<!-- -->
</a>
<h3>Class <a href="tud/tangram/svgplot/legend/LegendRenderer.html" title="class in tud.tangram.svgplot.legend">tud.tangram.svgplot.legend.LegendRenderer</a> extends java.util.PriorityQueue<<a href="tud/tangram/svgplot/legend/LegendItem.html" title="class in tud.tangram.svgplot.legend">LegendItem</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>3344044325106436185L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>legendCss</h4>
<pre>java.lang.String legendCss</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList">
<h2 title="Package">Package tud.tangram.svgplot.plotting</h2>
<ul class="blockList">
<li class="blockList"><a name="tud.tangram.svgplot.plotting.OverlayList">
<!-- -->
</a>
<h3>Class <a href="tud/tangram/svgplot/plotting/OverlayList.html" title="class in tud.tangram.svgplot.plotting">tud.tangram.svgplot.plotting.OverlayList</a> extends java.util.ArrayList<<a href="tud/tangram/svgplot/plotting/Overlay.html" title="class in tud.tangram.svgplot.plotting">Overlay</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>-1031062986430320978L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>cs</h4>
<pre><a href="tud/tangram/svgplot/coordinatesystem/CoordinateSystem.html" title="class in tud.tangram.svgplot.coordinatesystem">CoordinateSystem</a> cs</pre>
</li>
</ul>
</li>
</ul>
</li>
<li class="blockList"><a name="tud.tangram.svgplot.plotting.PlotList">
<!-- -->
</a>
<h3>Class <a href="tud/tangram/svgplot/plotting/PlotList.html" title="class in tud.tangram.svgplot.plotting">tud.tangram.svgplot.plotting.PlotList</a> extends java.util.ArrayList<<a href="tud/tangram/svgplot/plotting/Plot.html" title="class in tud.tangram.svgplot.plotting">Plot</a>> implements Serializable</h3>
<dl class="nameValue">
<dt>serialVersionUID:</dt>
<dd>2449399739807644999L</dd>
</dl>
<ul class="blockList">
<li class="blockList">
<h3>Serialized Fields</h3>
<ul class="blockList">
<li class="blockListLast">
<h4>cs</h4>
<pre><a href="tud/tangram/svgplot/coordinatesystem/CoordinateSystem.html" title="class in tud.tangram.svgplot.coordinatesystem">CoordinateSystem</a> cs</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="overview-tree.html">Tree</a></li>
<li><a href="deprecated-list.html">Deprecated</a></li>
<li><a href="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?serialized-form.html" target="_top">Frames</a></li>
<li><a href="serialized-form.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
categories/软考/index.html | fuey/fuey.github.io | <!doctype html>
<html class="theme-next muse use-motion" lang="zh-Hans">
<head><meta name="generator" content="Hexo 3.9.0">
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta http-equiv="Cache-Control" content="no-transform">
<meta http-equiv="Cache-Control" content="no-siteapp">
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Monda:300,300italic,400,400italic,700,700italic|Roboto Slab:300,300italic,400,400italic,700,700italic|Lobster Two:300,300italic,400,400italic,700,700italic|PT Mono:300,300italic,400,400italic,700,700italic&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css">
<link href="/css/main.css?v=5.1.0" rel="stylesheet" type="text/css">
<meta name="keywords" content="Hexo, NexT">
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico?v=5.1.0">
<meta name="description" content="心怀敬畏,心存感激,脚踏实地,做好自己...">
<meta property="og:type" content="website">
<meta property="og:title" content="一个Javaer的手札">
<meta property="og:url" content="http://yoursite.com/categories/软考/index.html">
<meta property="og:site_name" content="一个Javaer的手札">
<meta property="og:description" content="心怀敬畏,心存感激,脚踏实地,做好自己...">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="一个Javaer的手札">
<meta name="twitter:description" content="心怀敬畏,心存感激,脚踏实地,做好自己...">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Muse',
sidebar: {"position":"right","display":"hide","offset":12,"offset_float":0,"b2t":false,"scrollpercent":false},
fancybox: true,
motion: true,
duoshuo: {
userId: 'undefined',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="http://yoursite.com/categories/软考/">
<title> 分类: 软考 | 一个Javaer的手札 </title>
</head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?0f1fd626060161a4a86d92f1cbeecd13";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<div class="container one-collumn sidebar-position-right ">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">一个Javaer的手札</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">a javaer's story</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br>
首页
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br>
分类
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br>
关于
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br>
归档
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br>
标签
</a>
</li>
<li class="menu-item menu-item-wiki">
<a href="/wiki" rel="section">
<i class="menu-item-icon fa fa-fw fa-book"></i> <br>
wiki
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br>
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocapitalize="off" autocomplete="off" autocorrect="off" placeholder="搜索..." spellcheck="false" type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-collapse">
<div class="collection-title">
<h2>
软考
<small>分类</small>
</h2>
</div>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<header class="post-header">
<h1 class="post-title">
<a class="post-title-link" href="/2017/04/18/softwaretest/第 2 章 计算机组成原理与体系结构/first/" itemprop="url">
<span itemprop="name">第 2 章 计算机组成原理与体系结构</span>
</a>
</h1>
<div class="post-meta">
<time class="post-time" itemprop="dateCreated" datetime="2017-04-18T23:45:00+00:00" content="2017-04-18">
04-18
</time>
</div>
</header>
</article>
</section>
</div>
</div>
<div class="sidebar-toggle">
<div class="sidebar-toggle-line-wrap">
<span class="sidebar-toggle-line sidebar-toggle-line-first"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-middle"></span>
<span class="sidebar-toggle-line sidebar-toggle-line-last"></span>
</div>
</div>
<aside id="sidebar" class="sidebar">
<div class="sidebar-inner">
<section class="site-overview sidebar-panel sidebar-panel-active">
<div class="site-author motion-element" itemprop="author" itemscope itemtype="http://schema.org/Person">
<img class="site-author-image" itemprop="image" src="/images/avatar.jpg" alt="luyuanxing">
<p class="site-author-name" itemprop="name">luyuanxing</p>
<p class="site-description motion-element" itemprop="description">心怀敬畏,心存感激,脚踏实地,做好自己...</p>
</div>
<nav class="site-state motion-element">
<div class="site-state-item site-state-posts">
<a href="/archives">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">日志</span>
</a>
</div>
<div class="site-state-item site-state-categories">
<a href="/categories">
<span class="site-state-item-count">5</span>
<span class="site-state-item-name">分类</span>
</a>
</div>
<div class="site-state-item site-state-tags">
<a href="/tags">
<span class="site-state-item-count">8</span>
<span class="site-state-item-name">标签</span>
</a>
</div>
</nav>
<div class="links-of-author motion-element">
</div>
</section>
</div>
</aside>
</div>
</main>
<footer id="footer" class="footer">
<div class="footer-inner">
<div class="copyright">
© 2017 -
<span itemprop="copyrightYear">2019</span>
<span class="with-love">
<i class="fa fa-heart"></i>
</span>
<span class="author" itemprop="copyrightHolder">luyuanxing</span>
</div>
<div class="powered-by">
由 <a class="theme-link" href="https://hexo.io">Hexo</a> 强力驱动
</div>
<div class="theme-info">
主题 -
<a class="theme-link" href="https://github.com/iissnan/hexo-theme-next">
NexT.Muse
</a>
</div>
</div>
</footer>
<div class="back-to-top">
<i class="fa fa-arrow-up"></i>
</div>
</div>
<script type="text/javascript">
if (Object.prototype.toString.call(window.Promise) !== '[object Function]') {
window.Promise = null;
}
</script>
<script type="text/javascript" src="/lib/jquery/index.js?v=2.1.3"></script>
<script type="text/javascript" src="/lib/fastclick/lib/fastclick.min.js?v=1.0.6"></script>
<script type="text/javascript" src="/lib/jquery_lazyload/jquery.lazyload.js?v=1.9.7"></script>
<script type="text/javascript" src="/lib/velocity/velocity.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/velocity/velocity.ui.min.js?v=1.2.1"></script>
<script type="text/javascript" src="/lib/fancybox/source/jquery.fancybox.pack.js?v=2.1.5"></script>
<script type="text/javascript" src="/js/src/utils.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/motion.js?v=5.1.0"></script>
<script type="text/javascript" src="/js/src/bootstrap.js?v=5.1.0"></script>
<script type="text/javascript">
(function(d, s) {
var j, e = d.getElementsByTagName(s)[0];
if (typeof LivereTower === 'function') { return; }
j = d.createElement(s);
j.src = 'https://cdn-city.livere.com/js/embed.dist.js';
j.async = true;
e.parentNode.insertBefore(j, e);
})(document, 'script');
</script>
<script type="text/javascript">
// Popup Window;
var isfetched = false;
// Search DB path;
var search_path = "search.xml";
if (search_path.length == 0) {
search_path = "search.xml";
}
var path = "/" + search_path;
// monitor main search box;
function proceedsearch() {
$("body").append('<div class="local-search-pop-overlay">').css('overflow', 'hidden');
$('.popup').toggle();
}
// search function;
var searchFunc = function(path, search_id, content_id) {
'use strict';
$.ajax({
url: path,
dataType: "xml",
async: true,
success: function( xmlResponse ) {
// get the contents from search data
isfetched = true;
$('.popup').detach().appendTo('.header-inner');
var datas = $( "entry", xmlResponse ).map(function() {
return {
title: $( "title", this ).text(),
content: $("content",this).text(),
url: $( "url" , this).text()
};
}).get();
var $input = document.getElementById(search_id);
var $resultContent = document.getElementById(content_id);
$input.addEventListener('input', function(){
var matchcounts = 0;
var str='<ul class=\"search-result-list\">';
var keywords = this.value.trim().toLowerCase().split(/[\s\-]+/);
$resultContent.innerHTML = "";
if (this.value.trim().length > 1) {
// perform local searching
datas.forEach(function(data) {
var isMatch = false;
var content_index = [];
var data_title = data.title.trim().toLowerCase();
var data_content = data.content.trim().replace(/<[^>]+>/g,"").toLowerCase();
var data_url = decodeURIComponent(data.url);
var index_title = -1;
var index_content = -1;
var first_occur = -1;
// only match artiles with not empty titles and contents
if(data_title != '') {
keywords.forEach(function(keyword, i) {
index_title = data_title.indexOf(keyword);
index_content = data_content.indexOf(keyword);
if( index_title >= 0 || index_content >= 0 ){
isMatch = true;
if (i == 0) {
first_occur = index_content;
}
}
});
}
// show search results
if (isMatch) {
matchcounts += 1;
str += "<li><a href='"+ data_url +"' class='search-result-title'>"+ data_title +"</a>";
var content = data.content.trim().replace(/<[^>]+>/g,"");
if (first_occur >= 0) {
// cut out 100 characters
var start = first_occur - 20;
var end = first_occur + 80;
if(start < 0){
start = 0;
}
if(start == 0){
end = 50;
}
if(end > content.length){
end = content.length;
}
var match_content = content.substring(start, end);
// highlight all keywords
keywords.forEach(function(keyword){
var regS = new RegExp(keyword, "gi");
match_content = match_content.replace(regS, "<b class=\"search-keyword\">"+keyword+"</b>");
});
str += "<p class=\"search-result\">" + match_content +"...</p>"
}
str += "</li>";
}
})};
str += "</ul>";
if (matchcounts == 0) { str = '<div id="no-result"><i class="fa fa-frown-o fa-5x" /></div>' }
if (keywords == "") { str = '<div id="no-result"><i class="fa fa-search fa-5x" /></div>' }
$resultContent.innerHTML = str;
});
proceedsearch();
}
});}
// handle and trigger popup window;
$('.popup-trigger').click(function(e) {
e.stopPropagation();
if (isfetched == false) {
searchFunc(path, 'local-search-input', 'local-search-result');
} else {
proceedsearch();
};
});
$('.popup-btn-close').click(function(e){
$('.popup').hide();
$(".local-search-pop-overlay").remove();
$('body').css('overflow', '');
});
$('.popup').click(function(e){
e.stopPropagation();
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for (i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script type="text/javascript" src="//cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
</body>
</html>
|
docs/lessons/en/html/02.html | cristian99garcia/guido-van-robot-activity | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"><html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml"><head><!-- The XHTML and PHP source for this page
Copyright (c) 2003 Roger Frank
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.2 or any later version published by the Free Software
Foundation; with no Invariant Sections, with no Front-Cover Texts,
and with no Back-Cover Texts. The full text of the license can be
found at: http://www.gnu.org/copyleft/fdl.html
This distribution includes a file named fdl.txt that contains the
text of the GNU Free Documentation License. If it is missing, you
can obtain it from www.gnu.org or by writing to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. -->
<html>
<!-- base href="http://gvr.sourceforge.net/lessons/rfrank/" --><title>What's That Sound?</title>
<link href="main.css" type="text/css" rel="stylesheet"></head>
<body>
<h1>What's That Sound?</h1>
<h2>Tutorial</h2>
<p>
You discovered that the initial robot placement was of the form:
</p>
<pre>Robot 1 2 N 0
</pre>
<p>
where the numbers are:
</p>
<pre>row
column
initial direction (N, W, S, or E)
number of beepers.
</pre>
<p>
Beepers? What are they? A robot can carry beepers, which are little
sound devices Guido can hear. Guido can pick them up or put them down,
all at your command. A beeper is a device that Guido can hear only when
it's located on the same corner he's on. Guido has a beeper-bag he can
use to carry beepers he picks up. He can also take beepers out of the bag
and place them on the corner he occupies. You specify the initial number
of beepers in your world file.
</p>
<p>
The commands to work with beepers are included in the basic
robot commands you will explore. The complete list is:
</p>
<pre>move
turnleft
pickbeeper
putbeeper
turnoff
</pre>
<h2>Your Turn</h2>
<p>
Put a robot with four beepers at the corner of 1st Avenue and 5th Street
facing east. He should go two blocks east, drop one beeper, and then
continue going one block and dropping a beeper at each intersection until
he is out of beepers. Then he should take one more step and then turn off.
When he has finished, the display should look like this:
</p>
<p><img alt="Step 2 image" src="02_files/step02.png"></p>
<hr>
<p style="text-align: center;">
<a href="01.html">Previous</a> | <a href="index.html">Index</a> | <a href="03.html">Next</a></p>
<p class="copyleft">
<a href="http://www.gnu.org/copyleft/copyleft.html">
Copyright</a> © 2003 <a href="http://www.rfrank.net/">Roger Frank</a>.
</p>
</body>
</html> |
mT_web/minoTour/pages/examples/profile.html | minoTour/minoTour | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>AdminLTE 2 | User Profile</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.5 -->
<link rel="stylesheet" href="../../bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="../../dist/css/AdminLTE.min.css">
<!-- AdminLTE Skins. Choose a skin from the css/skins
folder instead of downloading all of them to reduce the load. -->
<link rel="stylesheet" href="../../dist/css/skins/_all-skins.min.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body class="hold-transition skin-blue sidebar-mini fixed">
<div class="wrapper">
<header class="main-header">
<!-- Logo -->
<a href="../../index2.html" class="logo">
<!-- mini logo for sidebar mini 50x50 pixels -->
<span class="logo-mini"><b>A</b>LT</span>
<!-- logo for regular state and mobile devices -->
<span class="logo-lg"><b>Admin</b>LTE</span>
</a>
<!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button-->
<a href="#" class="sidebar-toggle" data-toggle="offcanvas" role="button">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<div class="navbar-custom-menu">
<ul class="nav navbar-nav">
<!-- Messages: style can be found in dropdown.less-->
<li class="dropdown messages-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-envelope-o"></i>
<span class="label label-success">4</span>
</a>
<ul class="dropdown-menu">
<li class="header">You have 4 messages</li>
<li>
<!-- inner menu: contains the actual data -->
<ul class="menu">
<li><!-- start message -->
<a href="#">
<div class="pull-left">
<img src="../../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
</div>
<h4>
Support Team
<small><i class="fa fa-clock-o"></i> 5 mins</small>
</h4>
<p>Why not buy a new awesome theme?</p>
</a>
</li><!-- end message -->
<li>
<a href="#">
<div class="pull-left">
<img src="../../dist/img/user3-128x128.jpg" class="img-circle" alt="User Image">
</div>
<h4>
AdminLTE Design Team
<small><i class="fa fa-clock-o"></i> 2 hours</small>
</h4>
<p>Why not buy a new awesome theme?</p>
</a>
</li>
<li>
<a href="#">
<div class="pull-left">
<img src="../../dist/img/user4-128x128.jpg" class="img-circle" alt="User Image">
</div>
<h4>
Developers
<small><i class="fa fa-clock-o"></i> Today</small>
</h4>
<p>Why not buy a new awesome theme?</p>
</a>
</li>
<li>
<a href="#">
<div class="pull-left">
<img src="../../dist/img/user3-128x128.jpg" class="img-circle" alt="User Image">
</div>
<h4>
Sales Department
<small><i class="fa fa-clock-o"></i> Yesterday</small>
</h4>
<p>Why not buy a new awesome theme?</p>
</a>
</li>
<li>
<a href="#">
<div class="pull-left">
<img src="../../dist/img/user4-128x128.jpg" class="img-circle" alt="User Image">
</div>
<h4>
Reviewers
<small><i class="fa fa-clock-o"></i> 2 days</small>
</h4>
<p>Why not buy a new awesome theme?</p>
</a>
</li>
</ul>
</li>
<li class="footer"><a href="#">See All Messages</a></li>
</ul>
</li>
<!-- Notifications: style can be found in dropdown.less -->
<li class="dropdown notifications-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-bell-o"></i>
<span class="label label-warning">10</span>
</a>
<ul class="dropdown-menu">
<li class="header">You have 10 notifications</li>
<li>
<!-- inner menu: contains the actual data -->
<ul class="menu">
<li>
<a href="#">
<i class="fa fa-users text-aqua"></i> 5 new members joined today
</a>
</li>
<li>
<a href="#">
<i class="fa fa-warning text-yellow"></i> Very long description here that may not fit into the page and may cause design problems
</a>
</li>
<li>
<a href="#">
<i class="fa fa-users text-red"></i> 5 new members joined
</a>
</li>
<li>
<a href="#">
<i class="fa fa-shopping-cart text-green"></i> 25 sales made
</a>
</li>
<li>
<a href="#">
<i class="fa fa-user text-red"></i> You changed your username
</a>
</li>
</ul>
</li>
<li class="footer"><a href="#">View all</a></li>
</ul>
</li>
<!-- Tasks: style can be found in dropdown.less -->
<li class="dropdown tasks-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="fa fa-flag-o"></i>
<span class="label label-danger">9</span>
</a>
<ul class="dropdown-menu">
<li class="header">You have 9 tasks</li>
<li>
<!-- inner menu: contains the actual data -->
<ul class="menu">
<li><!-- Task item -->
<a href="#">
<h3>
Design some buttons
<small class="pull-right">20%</small>
</h3>
<div class="progress xs">
<div class="progress-bar progress-bar-aqua" style="width: 20%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">20% Complete</span>
</div>
</div>
</a>
</li><!-- end task item -->
<li><!-- Task item -->
<a href="#">
<h3>
Create a nice theme
<small class="pull-right">40%</small>
</h3>
<div class="progress xs">
<div class="progress-bar progress-bar-green" style="width: 40%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">40% Complete</span>
</div>
</div>
</a>
</li><!-- end task item -->
<li><!-- Task item -->
<a href="#">
<h3>
Some task I need to do
<small class="pull-right">60%</small>
</h3>
<div class="progress xs">
<div class="progress-bar progress-bar-red" style="width: 60%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">60% Complete</span>
</div>
</div>
</a>
</li><!-- end task item -->
<li><!-- Task item -->
<a href="#">
<h3>
Make beautiful transitions
<small class="pull-right">80%</small>
</h3>
<div class="progress xs">
<div class="progress-bar progress-bar-yellow" style="width: 80%" role="progressbar" aria-valuenow="20" aria-valuemin="0" aria-valuemax="100">
<span class="sr-only">80% Complete</span>
</div>
</div>
</a>
</li><!-- end task item -->
</ul>
</li>
<li class="footer">
<a href="#">View all tasks</a>
</li>
</ul>
</li>
<!-- User Account: style can be found in dropdown.less -->
<li class="dropdown user user-menu">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<img src="../../dist/img/user2-160x160.jpg" class="user-image" alt="User Image">
<span class="hidden-xs">Alexander Pierce</span>
</a>
<ul class="dropdown-menu">
<!-- User image -->
<li class="user-header">
<img src="../../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
<p>
Alexander Pierce - Web Developer
<small>Member since Nov. 2012</small>
</p>
</li>
<!-- Menu Body -->
<li class="user-body">
<div class="col-xs-4 text-center">
<a href="#">Followers</a>
</div>
<div class="col-xs-4 text-center">
<a href="#">Sales</a>
</div>
<div class="col-xs-4 text-center">
<a href="#">Friends</a>
</div>
</li>
<!-- Menu Footer-->
<li class="user-footer">
<div class="pull-left">
<a href="#" class="btn btn-default btn-flat">Profile</a>
</div>
<div class="pull-right">
<a href="#" class="btn btn-default btn-flat">Sign out</a>
</div>
</li>
</ul>
</li>
<!-- Control Sidebar Toggle Button -->
<li>
<a href="#" data-toggle="control-sidebar"><i class="fa fa-gears"></i></a>
</li>
</ul>
</div>
</nav>
</header>
<!-- Left side column. contains the logo and sidebar -->
<aside class="main-sidebar">
<!-- sidebar: style can be found in sidebar.less -->
<section class="sidebar">
<!-- Sidebar user panel -->
<div class="user-panel">
<div class="pull-left image">
<img src="../../dist/img/user2-160x160.jpg" class="img-circle" alt="User Image">
</div>
<div class="pull-left info">
<p>Alexander Pierce</p>
<a href="#"><i class="fa fa-circle text-success"></i> Online</a>
</div>
</div>
<!-- search form -->
<form action="#" method="get" class="sidebar-form">
<div class="input-group">
<input type="text" name="q" class="form-control" placeholder="Search...">
<span class="input-group-btn">
<button type="submit" name="search" id="search-btn" class="btn btn-flat"><i class="fa fa-search"></i></button>
</span>
</div>
</form>
<!-- /.search form -->
<!-- sidebar menu: : style can be found in sidebar.less -->
<ul class="sidebar-menu">
<li class="header">MAIN NAVIGATION</li>
<li class="treeview">
<a href="#">
<i class="fa fa-dashboard"></i> <span>Dashboard</span> <i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="../../index.html"><i class="fa fa-circle-o"></i> Dashboard v1</a></li>
<li><a href="../../index2.html"><i class="fa fa-circle-o"></i> Dashboard v2</a></li>
</ul>
</li>
<li class="treeview">
<a href="#">
<i class="fa fa-files-o"></i>
<span>Layout Options</span>
<span class="label label-primary pull-right">4</span>
</a>
<ul class="treeview-menu">
<li><a href="../layout/top-nav.html"><i class="fa fa-circle-o"></i> Top Navigation</a></li>
<li><a href="../layout/boxed.html"><i class="fa fa-circle-o"></i> Boxed</a></li>
<li><a href="../layout/fixed.html"><i class="fa fa-circle-o"></i> Fixed</a></li>
</ul>
</li>
<li>
<a href="../widgets.html">
<i class="fa fa-th"></i> <span>Widgets</span> <small class="label pull-right bg-green">new</small>
</a>
</li>
<li class="treeview">
<a href="#">
<i class="fa fa-pie-chart"></i>
<span>Charts</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="../charts/chartjs.html"><i class="fa fa-circle-o"></i> ChartJS</a></li>
<li><a href="../charts/morris.html"><i class="fa fa-circle-o"></i> Morris</a></li>
<li><a href="../charts/flot.html"><i class="fa fa-circle-o"></i> Flot</a></li>
<li><a href="../charts/inline.html"><i class="fa fa-circle-o"></i> Inline charts</a></li>
<li><a href="../layout/collapsed-sidebar.html"><i class="fa fa-circle-o"></i> Collapsed Sidebar</a></li>
</ul>
</li>
<li class="treeview">
<a href="#">
<i class="fa fa-laptop"></i>
<span>UI Elements</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="../UI/general.html"><i class="fa fa-circle-o"></i> General</a></li>
<li><a href="../UI/icons.html"><i class="fa fa-circle-o"></i> Icons</a></li>
<li><a href="../UI/buttons.html"><i class="fa fa-circle-o"></i> Buttons</a></li>
<li><a href="../UI/sliders.html"><i class="fa fa-circle-o"></i> Sliders</a></li>
<li><a href="../UI/timeline.html"><i class="fa fa-circle-o"></i> Timeline</a></li>
<li><a href="../UI/modals.html"><i class="fa fa-circle-o"></i> Modals</a></li>
</ul>
</li>
<li class="treeview">
<a href="#">
<i class="fa fa-edit"></i> <span>Forms</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="../forms/general.html"><i class="fa fa-circle-o"></i> General Elements</a></li>
<li><a href="../forms/advanced.html"><i class="fa fa-circle-o"></i> Advanced Elements</a></li>
<li><a href="../forms/editors.html"><i class="fa fa-circle-o"></i> Editors</a></li>
</ul>
</li>
<li class="treeview">
<a href="#">
<i class="fa fa-table"></i> <span>Tables</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="../tables/simple.html"><i class="fa fa-circle-o"></i> Simple tables</a></li>
<li><a href="../tables/data.html"><i class="fa fa-circle-o"></i> Data tables</a></li>
</ul>
</li>
<li>
<a href="../calendar.html">
<i class="fa fa-calendar"></i> <span>Calendar</span>
<small class="label pull-right bg-red">3</small>
</a>
</li>
<li>
<a href="../mailbox/mailbox.html">
<i class="fa fa-envelope"></i> <span>Mailbox</span>
<small class="label pull-right bg-yellow">12</small>
</a>
</li>
<li class="treeview active">
<a href="#">
<i class="fa fa-folder"></i> <span>Examples</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="invoice.html"><i class="fa fa-circle-o"></i> Invoice</a></li>
<li class="active"><a href="profile.html"><i class="fa fa-circle-o"></i> Profile</a></li>
<li><a href="login.html"><i class="fa fa-circle-o"></i> Login</a></li>
<li><a href="register.html"><i class="fa fa-circle-o"></i> Register</a></li>
<li><a href="lockscreen.html"><i class="fa fa-circle-o"></i> Lockscreen</a></li>
<li><a href="404.html"><i class="fa fa-circle-o"></i> 404 Error</a></li>
<li><a href="500.html"><i class="fa fa-circle-o"></i> 500 Error</a></li>
<li><a href="blank.html"><i class="fa fa-circle-o"></i> Blank Page</a></li>
</ul>
</li>
<li class="treeview">
<a href="#">
<i class="fa fa-share"></i> <span>Multilevel</span>
<i class="fa fa-angle-left pull-right"></i>
</a>
<ul class="treeview-menu">
<li><a href="#"><i class="fa fa-circle-o"></i> Level One</a></li>
<li>
<a href="#"><i class="fa fa-circle-o"></i> Level One <i class="fa fa-angle-left pull-right"></i></a>
<ul class="treeview-menu">
<li><a href="#"><i class="fa fa-circle-o"></i> Level Two</a></li>
<li>
<a href="#"><i class="fa fa-circle-o"></i> Level Two <i class="fa fa-angle-left pull-right"></i></a>
<ul class="treeview-menu">
<li><a href="#"><i class="fa fa-circle-o"></i> Level Three</a></li>
<li><a href="#"><i class="fa fa-circle-o"></i> Level Three</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#"><i class="fa fa-circle-o"></i> Level One</a></li>
</ul>
</li>
<li><a href="../../documentation/index.html"><i class="fa fa-book"></i> <span>Documentation</span></a></li>
<li class="header">LABELS</li>
<li><a href="#"><i class="fa fa-circle-o text-red"></i> <span>Important</span></a></li>
<li><a href="#"><i class="fa fa-circle-o text-yellow"></i> <span>Warning</span></a></li>
<li><a href="#"><i class="fa fa-circle-o text-aqua"></i> <span>Information</span></a></li>
</ul>
</section>
<!-- /.sidebar -->
</aside>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<section class="content-header">
<h1>
User Profile
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Home</a></li>
<li><a href="#">Examples</a></li>
<li class="active">User profile</li>
</ol>
</section>
<!-- Main content -->
<section class="content"><?php include 'includes/run_check.php';?>
<div class="row">
<div class="col-md-3">
<!-- Profile Image -->
<div class="box box-primary">
<div class="box-body box-profile">
<img class="profile-user-img img-responsive img-circle" src="../../dist/img/user4-128x128.jpg" alt="User profile picture">
<h3 class="profile-username text-center">Nina Mcintire</h3>
<p class="text-muted text-center">Software Engineer</p>
<ul class="list-group list-group-unbordered">
<li class="list-group-item">
<b>Followers</b> <a class="pull-right">1,322</a>
</li>
<li class="list-group-item">
<b>Following</b> <a class="pull-right">543</a>
</li>
<li class="list-group-item">
<b>Friends</b> <a class="pull-right">13,287</a>
</li>
</ul>
<a href="#" class="btn btn-primary btn-block"><b>Follow</b></a>
</div><!-- /.box-body -->
</div><!-- /.box -->
<!-- About Me Box -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">About Me</h3>
</div><!-- /.box-header -->
<div class="box-body">
<strong><i class="fa fa-book margin-r-5"></i> Education</strong>
<p class="text-muted">
B.S. in Computer Science from the University of Tennessee at Knoxville
</p>
<hr>
<strong><i class="fa fa-map-marker margin-r-5"></i> Location</strong>
<p class="text-muted">Malibu, California</p>
<hr>
<strong><i class="fa fa-pencil margin-r-5"></i> Skills</strong>
<p>
<span class="label label-danger">UI Design</span>
<span class="label label-success">Coding</span>
<span class="label label-info">Javascript</span>
<span class="label label-warning">PHP</span>
<span class="label label-primary">Node.js</span>
</p>
<hr>
<strong><i class="fa fa-file-text-o margin-r-5"></i> Notes</strong>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam fermentum enim neque.</p>
</div><!-- /.box-body -->
</div><!-- /.box -->
</div><!-- /.col -->
<div class="col-md-9">
<div class="nav-tabs-custom">
<ul class="nav nav-tabs">
<li class="active"><a href="#activity" data-toggle="tab">Activity</a></li>
<li><a href="#timeline" data-toggle="tab">Timeline</a></li>
<li><a href="#settings" data-toggle="tab">Settings</a></li>
</ul>
<div class="tab-content">
<div class="active tab-pane" id="activity">
<!-- Post -->
<div class="post">
<div class="user-block">
<img class="img-circle img-bordered-sm" src="../../dist/img/user1-128x128.jpg" alt="user image">
<span class='username'>
<a href="#">Jonathan Burke Jr.</a>
<a href='#' class='pull-right btn-box-tool'><i class='fa fa-times'></i></a>
</span>
<span class='description'>Shared publicly - 7:30 PM today</span>
</div><!-- /.user-block -->
<p>
Lorem ipsum represents a long-held tradition for designers,
typographers and the like. Some people hate it and argue for
its demise, but others ignore the hate as they create awesome
tools to help create filler text for everyone from bacon lovers
to Charlie Sheen fans.
</p>
<ul class="list-inline">
<li><a href="#" class="link-black text-sm"><i class="fa fa-share margin-r-5"></i> Share</a></li>
<li><a href="#" class="link-black text-sm"><i class="fa fa-thumbs-o-up margin-r-5"></i> Like</a></li>
<li class="pull-right"><a href="#" class="link-black text-sm"><i class="fa fa-comments-o margin-r-5"></i> Comments (5)</a></li>
</ul>
<input class="form-control input-sm" type="text" placeholder="Type a comment">
</div><!-- /.post -->
<!-- Post -->
<div class="post clearfix">
<div class='user-block'>
<img class='img-circle img-bordered-sm' src='../../dist/img/user7-128x128.jpg' alt='user image'>
<span class='username'>
<a href="#">Sarah Ross</a>
<a href='#' class='pull-right btn-box-tool'><i class='fa fa-times'></i></a>
</span>
<span class='description'>Sent you a message - 3 days ago</span>
</div><!-- /.user-block -->
<p>
Lorem ipsum represents a long-held tradition for designers,
typographers and the like. Some people hate it and argue for
its demise, but others ignore the hate as they create awesome
tools to help create filler text for everyone from bacon lovers
to Charlie Sheen fans.
</p>
<form class='form-horizontal'>
<div class='form-group margin-bottom-none'>
<div class='col-sm-9'>
<input class="form-control input-sm" placeholder="Response">
</div>
<div class='col-sm-3'>
<button class='btn btn-danger pull-right btn-block btn-sm'>Send</button>
</div>
</div>
</form>
</div><!-- /.post -->
<!-- Post -->
<div class="post">
<div class='user-block'>
<img class='img-circle img-bordered-sm' src='../../dist/img/user6-128x128.jpg' alt='user image'>
<span class='username'>
<a href="#">Adam Jones</a>
<a href='#' class='pull-right btn-box-tool'><i class='fa fa-times'></i></a>
</span>
<span class='description'>Posted 5 photos - 5 days ago</span>
</div><!-- /.user-block -->
<div class='row margin-bottom'>
<div class='col-sm-6'>
<img class='img-responsive' src='../../dist/img/photo1.png' alt='Photo'>
</div><!-- /.col -->
<div class='col-sm-6'>
<div class='row'>
<div class='col-sm-6'>
<img class='img-responsive' src='../../dist/img/photo2.png' alt='Photo'>
<br>
<img class='img-responsive' src='../../dist/img/photo3.jpg' alt='Photo'>
</div><!-- /.col -->
<div class='col-sm-6'>
<img class='img-responsive' src='../../dist/img/photo4.jpg' alt='Photo'>
<br>
<img class='img-responsive' src='../../dist/img/photo1.png' alt='Photo'>
</div><!-- /.col -->
</div><!-- /.row -->
</div><!-- /.col -->
</div><!-- /.row -->
<ul class="list-inline">
<li><a href="#" class="link-black text-sm"><i class="fa fa-share margin-r-5"></i> Share</a></li>
<li><a href="#" class="link-black text-sm"><i class="fa fa-thumbs-o-up margin-r-5"></i> Like</a></li>
<li class="pull-right"><a href="#" class="link-black text-sm"><i class="fa fa-comments-o margin-r-5"></i> Comments (5)</a></li>
</ul>
<input class="form-control input-sm" type="text" placeholder="Type a comment">
</div><!-- /.post -->
</div><!-- /.tab-pane -->
<div class="tab-pane" id="timeline">
<!-- The timeline -->
<ul class="timeline timeline-inverse">
<!-- timeline time label -->
<li class="time-label">
<span class="bg-red">
10 Feb. 2014
</span>
</li>
<!-- /.timeline-label -->
<!-- timeline item -->
<li>
<i class="fa fa-envelope bg-blue"></i>
<div class="timeline-item">
<span class="time"><i class="fa fa-clock-o"></i> 12:05</span>
<h3 class="timeline-header"><a href="#">Support Team</a> sent you an email</h3>
<div class="timeline-body">
Etsy doostang zoodles disqus groupon greplin oooj voxy zoodles,
weebly ning heekya handango imeem plugg dopplr jibjab, movity
jajah plickers sifteo edmodo ifttt zimbra. Babblely odeo kaboodle
quora plaxo ideeli hulu weebly balihoo...
</div>
<div class="timeline-footer">
<a class="btn btn-primary btn-xs">Read more</a>
<a class="btn btn-danger btn-xs">Delete</a>
</div>
</div>
</li>
<!-- END timeline item -->
<!-- timeline item -->
<li>
<i class="fa fa-user bg-aqua"></i>
<div class="timeline-item">
<span class="time"><i class="fa fa-clock-o"></i> 5 mins ago</span>
<h3 class="timeline-header no-border"><a href="#">Sarah Young</a> accepted your friend request</h3>
</div>
</li>
<!-- END timeline item -->
<!-- timeline item -->
<li>
<i class="fa fa-comments bg-yellow"></i>
<div class="timeline-item">
<span class="time"><i class="fa fa-clock-o"></i> 27 mins ago</span>
<h3 class="timeline-header"><a href="#">Jay White</a> commented on your post</h3>
<div class="timeline-body">
Take me to your leader!
Switzerland is small and neutral!
We are more like Germany, ambitious and misunderstood!
</div>
<div class="timeline-footer">
<a class="btn btn-warning btn-flat btn-xs">View comment</a>
</div>
</div>
</li>
<!-- END timeline item -->
<!-- timeline time label -->
<li class="time-label">
<span class="bg-green">
3 Jan. 2014
</span>
</li>
<!-- /.timeline-label -->
<!-- timeline item -->
<li>
<i class="fa fa-camera bg-purple"></i>
<div class="timeline-item">
<span class="time"><i class="fa fa-clock-o"></i> 2 days ago</span>
<h3 class="timeline-header"><a href="#">Mina Lee</a> uploaded new photos</h3>
<div class="timeline-body">
<img src="http://placehold.it/150x100" alt="..." class="margin">
<img src="http://placehold.it/150x100" alt="..." class="margin">
<img src="http://placehold.it/150x100" alt="..." class="margin">
<img src="http://placehold.it/150x100" alt="..." class="margin">
</div>
</div>
</li>
<!-- END timeline item -->
<li>
<i class="fa fa-clock-o bg-gray"></i>
</li>
</ul>
</div><!-- /.tab-pane -->
<div class="tab-pane" id="settings">
<form class="form-horizontal">
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputName" placeholder="Name">
</div>
</div>
<div class="form-group">
<label for="inputEmail" class="col-sm-2 control-label">Email</label>
<div class="col-sm-10">
<input type="email" class="form-control" id="inputEmail" placeholder="Email">
</div>
</div>
<div class="form-group">
<label for="inputName" class="col-sm-2 control-label">Name</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputName" placeholder="Name">
</div>
</div>
<div class="form-group">
<label for="inputExperience" class="col-sm-2 control-label">Experience</label>
<div class="col-sm-10">
<textarea class="form-control" id="inputExperience" placeholder="Experience"></textarea>
</div>
</div>
<div class="form-group">
<label for="inputSkills" class="col-sm-2 control-label">Skills</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="inputSkills" placeholder="Skills">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<div class="checkbox">
<label>
<input type="checkbox"> I agree to the <a href="#">terms and conditions</a>
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-2 col-sm-10">
<button type="submit" class="btn btn-danger">Submit</button>
</div>
</div>
</form>
</div><!-- /.tab-pane -->
</div><!-- /.tab-content -->
</div><!-- /.nav-tabs-custom -->
</div><!-- /.col -->
</div><!-- /.row -->
</section><!-- /.content -->
</div><!-- /.content-wrapper -->
<footer class="main-footer">
<div class="pull-right hidden-xs">
<b>Version</b> 2.3.0
</div>
<strong>Copyright © 2014-2015 <a href="http://almsaeedstudio.com">Almsaeed Studio</a>.</strong> All rights reserved.
</footer>
<!-- Control Sidebar -->
<aside class="control-sidebar control-sidebar-dark">
<!-- Create the tabs -->
<ul class="nav nav-tabs nav-justified control-sidebar-tabs">
<li><a href="#control-sidebar-home-tab" data-toggle="tab"><i class="fa fa-home"></i></a></li>
<li><a href="#control-sidebar-settings-tab" data-toggle="tab"><i class="fa fa-gears"></i></a></li>
</ul>
<!-- Tab panes -->
<div class="tab-content">
<!-- Home tab content -->
<div class="tab-pane" id="control-sidebar-home-tab">
<h3 class="control-sidebar-heading">Recent Activity</h3>
<ul class="control-sidebar-menu">
<li>
<a href="javascript::;">
<i class="menu-icon fa fa-birthday-cake bg-red"></i>
<div class="menu-info">
<h4 class="control-sidebar-subheading">Langdon's Birthday</h4>
<p>Will be 23 on April 24th</p>
</div>
</a>
</li>
<li>
<a href="javascript::;">
<i class="menu-icon fa fa-user bg-yellow"></i>
<div class="menu-info">
<h4 class="control-sidebar-subheading">Frodo Updated His Profile</h4>
<p>New phone +1(800)555-1234</p>
</div>
</a>
</li>
<li>
<a href="javascript::;">
<i class="menu-icon fa fa-envelope-o bg-light-blue"></i>
<div class="menu-info">
<h4 class="control-sidebar-subheading">Nora Joined Mailing List</h4>
<p>nora@example.com</p>
</div>
</a>
</li>
<li>
<a href="javascript::;">
<i class="menu-icon fa fa-file-code-o bg-green"></i>
<div class="menu-info">
<h4 class="control-sidebar-subheading">Cron Job 254 Executed</h4>
<p>Execution time 5 seconds</p>
</div>
</a>
</li>
</ul><!-- /.control-sidebar-menu -->
<h3 class="control-sidebar-heading">Tasks Progress</h3>
<ul class="control-sidebar-menu">
<li>
<a href="javascript::;">
<h4 class="control-sidebar-subheading">
Custom Template Design
<span class="label label-danger pull-right">70%</span>
</h4>
<div class="progress progress-xxs">
<div class="progress-bar progress-bar-danger" style="width: 70%"></div>
</div>
</a>
</li>
<li>
<a href="javascript::;">
<h4 class="control-sidebar-subheading">
Update Resume
<span class="label label-success pull-right">95%</span>
</h4>
<div class="progress progress-xxs">
<div class="progress-bar progress-bar-success" style="width: 95%"></div>
</div>
</a>
</li>
<li>
<a href="javascript::;">
<h4 class="control-sidebar-subheading">
Laravel Integration
<span class="label label-warning pull-right">50%</span>
</h4>
<div class="progress progress-xxs">
<div class="progress-bar progress-bar-warning" style="width: 50%"></div>
</div>
</a>
</li>
<li>
<a href="javascript::;">
<h4 class="control-sidebar-subheading">
Back End Framework
<span class="label label-primary pull-right">68%</span>
</h4>
<div class="progress progress-xxs">
<div class="progress-bar progress-bar-primary" style="width: 68%"></div>
</div>
</a>
</li>
</ul><!-- /.control-sidebar-menu -->
</div><!-- /.tab-pane -->
<!-- Stats tab content -->
<div class="tab-pane" id="control-sidebar-stats-tab">Stats Tab Content</div><!-- /.tab-pane -->
<!-- Settings tab content -->
<div class="tab-pane" id="control-sidebar-settings-tab">
<form method="post">
<h3 class="control-sidebar-heading">General Settings</h3>
<div class="form-group">
<label class="control-sidebar-subheading">
Report panel usage
<input type="checkbox" class="pull-right" checked>
</label>
<p>
Some information about this general settings option
</p>
</div><!-- /.form-group -->
<div class="form-group">
<label class="control-sidebar-subheading">
Allow mail redirect
<input type="checkbox" class="pull-right" checked>
</label>
<p>
Other sets of options are available
</p>
</div><!-- /.form-group -->
<div class="form-group">
<label class="control-sidebar-subheading">
Expose author name in posts
<input type="checkbox" class="pull-right" checked>
</label>
<p>
Allow the user to show his name in blog posts
</p>
</div><!-- /.form-group -->
<h3 class="control-sidebar-heading">Chat Settings</h3>
<div class="form-group">
<label class="control-sidebar-subheading">
Show me as online
<input type="checkbox" class="pull-right" checked>
</label>
</div><!-- /.form-group -->
<div class="form-group">
<label class="control-sidebar-subheading">
Turn off notifications
<input type="checkbox" class="pull-right">
</label>
</div><!-- /.form-group -->
<div class="form-group">
<label class="control-sidebar-subheading">
Delete chat history
<a href="javascript::;" class="text-red pull-right"><i class="fa fa-trash-o"></i></a>
</label>
</div><!-- /.form-group -->
</form>
</div><!-- /.tab-pane -->
</div>
</aside><!-- /.control-sidebar -->
<!-- Add the sidebar's background. This div must be placed
immediately after the control sidebar -->
<div class="control-sidebar-bg"></div>
</div><!-- ./wrapper -->
<!-- jQuery 2.1.4 -->
<script src="../../plugins/jQuery/jQuery-2.1.4.min.js"></script>
<!-- Bootstrap 3.3.5 -->
<script src="../../bootstrap/js/bootstrap.min.js"></script>
<!-- FastClick -->
<script src="../../plugins/fastclick/fastclick.min.js"></script>
<!-- AdminLTE App -->
<script src="../../dist/js/app.min.js"></script>
<!-- AdminLTE for demo purposes -->
<script src="../../dist/js/demo.js"></script>
</body>
</html>
|
kaithem/src/docs/thirdparty/python-3.8.0b3-docs-html/library/pickletools.html | EternityForest/KaithemAutomation |
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>pickletools — Tools for pickle developers — Python 3.8.0b3 documentation</title>
<link rel="stylesheet" href="../_static/pydoctheme.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<script type="text/javascript" src="../_static/language_data.js"></script>
<script type="text/javascript" src="../_static/sidebar.js"></script>
<link rel="search" type="application/opensearchdescription+xml"
title="Search within Python 3.8.0b3 documentation"
href="../_static/opensearch.xml"/>
<link rel="author" title="About these documents" href="../about.html" />
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="copyright" title="Copyright" href="../copyright.html" />
<link rel="next" title="Miscellaneous Services" href="misc.html" />
<link rel="prev" title="dis — Disassembler for Python bytecode" href="dis.html" />
<link rel="canonical" href="https://docs.python.org/3/library/pickletools.html" />
<script type="text/javascript" src="../_static/switchers.js"></script>
<style>
@media only screen {
table.full-width-table {
width: 100%;
}
}
</style>
<link rel="shortcut icon" type="image/png" href="../_static/py.png" />
<script type="text/javascript" src="../_static/copybutton.js"></script>
</head><body>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="misc.html" title="Miscellaneous Services"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="dis.html" title="dis — Disassembler for Python bytecode"
accesskey="P">previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="https://www.python.org/">Python</a> »</li>
<li>
<span class="language_switcher_placeholder">en</span>
<span class="version_switcher_placeholder">3.8.0b3</span>
<a href="../index.html">Documentation </a> »
</li>
<li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> »</li>
<li class="nav-item nav-item-2"><a href="language.html" accesskey="U">Python Language Services</a> »</li>
<li class="right">
<div class="inline-search" style="display: none" role="search">
<form class="inline-search" action="../search.html" method="get">
<input placeholder="Quick search" type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('.inline-search').show(0);</script>
|
</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body" role="main">
<div class="section" id="module-pickletools">
<span id="pickletools-tools-for-pickle-developers"></span><h1><a class="reference internal" href="#module-pickletools" title="pickletools: Contains extensive comments about the pickle protocols and pickle-machine opcodes, as well as some useful functions."><code class="xref py py-mod docutils literal notranslate"><span class="pre">pickletools</span></code></a> — Tools for pickle developers<a class="headerlink" href="#module-pickletools" title="Permalink to this headline">¶</a></h1>
<p><strong>Source code:</strong> <a class="reference external" href="https://github.com/python/cpython/tree/3.8/Lib/pickletools.py">Lib/pickletools.py</a></p>
<hr class="docutils" />
<p>This module contains various constants relating to the intimate details of the
<a class="reference internal" href="pickle.html#module-pickle" title="pickle: Convert Python objects to streams of bytes and back."><code class="xref py py-mod docutils literal notranslate"><span class="pre">pickle</span></code></a> module, some lengthy comments about the implementation, and a
few useful functions for analyzing pickled data. The contents of this module
are useful for Python core developers who are working on the <a class="reference internal" href="pickle.html#module-pickle" title="pickle: Convert Python objects to streams of bytes and back."><code class="xref py py-mod docutils literal notranslate"><span class="pre">pickle</span></code></a>;
ordinary users of the <a class="reference internal" href="pickle.html#module-pickle" title="pickle: Convert Python objects to streams of bytes and back."><code class="xref py py-mod docutils literal notranslate"><span class="pre">pickle</span></code></a> module probably won’t find the
<a class="reference internal" href="#module-pickletools" title="pickletools: Contains extensive comments about the pickle protocols and pickle-machine opcodes, as well as some useful functions."><code class="xref py py-mod docutils literal notranslate"><span class="pre">pickletools</span></code></a> module relevant.</p>
<div class="section" id="command-line-usage">
<h2>Command line usage<a class="headerlink" href="#command-line-usage" title="Permalink to this headline">¶</a></h2>
<div class="versionadded">
<p><span class="versionmodified added">New in version 3.2.</span></p>
</div>
<p>When invoked from the command line, <code class="docutils literal notranslate"><span class="pre">python</span> <span class="pre">-m</span> <span class="pre">pickletools</span></code> will
disassemble the contents of one or more pickle files. Note that if
you want to see the Python object stored in the pickle rather than the
details of pickle format, you may want to use <code class="docutils literal notranslate"><span class="pre">-m</span> <span class="pre">pickle</span></code> instead.
However, when the pickle file that you want to examine comes from an
untrusted source, <code class="docutils literal notranslate"><span class="pre">-m</span> <span class="pre">pickletools</span></code> is a safer option because it does
not execute pickle bytecode.</p>
<p>For example, with a tuple <code class="docutils literal notranslate"><span class="pre">(1,</span> <span class="pre">2)</span></code> pickled in file <code class="docutils literal notranslate"><span class="pre">x.pickle</span></code>:</p>
<div class="highlight-shell-session notranslate"><div class="highlight"><pre><span></span><span class="gp">$</span> python -m pickle x.pickle
<span class="go">(1, 2)</span>
<span class="gp">$</span> python -m pickletools x.pickle
<span class="go"> 0: \x80 PROTO 3</span>
<span class="go"> 2: K BININT1 1</span>
<span class="go"> 4: K BININT1 2</span>
<span class="go"> 6: \x86 TUPLE2</span>
<span class="go"> 7: q BINPUT 0</span>
<span class="go"> 9: . STOP</span>
<span class="go">highest protocol among opcodes = 2</span>
</pre></div>
</div>
<div class="section" id="command-line-options">
<h3>Command line options<a class="headerlink" href="#command-line-options" title="Permalink to this headline">¶</a></h3>
<dl class="cmdoption">
<dt id="cmdoption-pickletools-a">
<code class="descname">-a</code><code class="descclassname"></code><code class="descclassname">, </code><code class="descname">--annotate</code><code class="descclassname"></code><a class="headerlink" href="#cmdoption-pickletools-a" title="Permalink to this definition">¶</a></dt>
<dd><p>Annotate each line with a short opcode description.</p>
</dd></dl>
<dl class="cmdoption">
<dt id="cmdoption-pickletools-o">
<code class="descname">-o</code><code class="descclassname"></code><code class="descclassname">, </code><code class="descname">--output</code><code class="descclassname">=<file></code><a class="headerlink" href="#cmdoption-pickletools-o" title="Permalink to this definition">¶</a></dt>
<dd><p>Name of a file where the output should be written.</p>
</dd></dl>
<dl class="cmdoption">
<dt id="cmdoption-pickletools-l">
<code class="descname">-l</code><code class="descclassname"></code><code class="descclassname">, </code><code class="descname">--indentlevel</code><code class="descclassname">=<num></code><a class="headerlink" href="#cmdoption-pickletools-l" title="Permalink to this definition">¶</a></dt>
<dd><p>The number of blanks by which to indent a new MARK level.</p>
</dd></dl>
<dl class="cmdoption">
<dt id="cmdoption-pickletools-m">
<code class="descname">-m</code><code class="descclassname"></code><code class="descclassname">, </code><code class="descname">--memo</code><code class="descclassname"></code><a class="headerlink" href="#cmdoption-pickletools-m" title="Permalink to this definition">¶</a></dt>
<dd><p>When multiple objects are disassembled, preserve memo between
disassemblies.</p>
</dd></dl>
<dl class="cmdoption">
<dt id="cmdoption-pickletools-p">
<code class="descname">-p</code><code class="descclassname"></code><code class="descclassname">, </code><code class="descname">--preamble</code><code class="descclassname">=<preamble></code><a class="headerlink" href="#cmdoption-pickletools-p" title="Permalink to this definition">¶</a></dt>
<dd><p>When more than one pickle file are specified, print given preamble
before each disassembly.</p>
</dd></dl>
</div>
</div>
<div class="section" id="programmatic-interface">
<h2>Programmatic Interface<a class="headerlink" href="#programmatic-interface" title="Permalink to this headline">¶</a></h2>
<dl class="function">
<dt id="pickletools.dis">
<code class="descclassname">pickletools.</code><code class="descname">dis</code><span class="sig-paren">(</span><em>pickle</em>, <em>out=None</em>, <em>memo=None</em>, <em>indentlevel=4</em>, <em>annotate=0</em><span class="sig-paren">)</span><a class="headerlink" href="#pickletools.dis" title="Permalink to this definition">¶</a></dt>
<dd><p>Outputs a symbolic disassembly of the pickle to the file-like
object <em>out</em>, defaulting to <code class="docutils literal notranslate"><span class="pre">sys.stdout</span></code>. <em>pickle</em> can be a
string or a file-like object. <em>memo</em> can be a Python dictionary
that will be used as the pickle’s memo; it can be used to perform
disassemblies across multiple pickles created by the same
pickler. Successive levels, indicated by <code class="docutils literal notranslate"><span class="pre">MARK</span></code> opcodes in the
stream, are indented by <em>indentlevel</em> spaces. If a nonzero value
is given to <em>annotate</em>, each opcode in the output is annotated with
a short description. The value of <em>annotate</em> is used as a hint for
the column where annotation should start.</p>
<div class="versionadded">
<p><span class="versionmodified added">New in version 3.2: </span>The <em>annotate</em> argument.</p>
</div>
</dd></dl>
<dl class="function">
<dt id="pickletools.genops">
<code class="descclassname">pickletools.</code><code class="descname">genops</code><span class="sig-paren">(</span><em>pickle</em><span class="sig-paren">)</span><a class="headerlink" href="#pickletools.genops" title="Permalink to this definition">¶</a></dt>
<dd><p>Provides an <a class="reference internal" href="../glossary.html#term-iterator"><span class="xref std std-term">iterator</span></a> over all of the opcodes in a pickle, returning a
sequence of <code class="docutils literal notranslate"><span class="pre">(opcode,</span> <span class="pre">arg,</span> <span class="pre">pos)</span></code> triples. <em>opcode</em> is an instance of an
<code class="xref py py-class docutils literal notranslate"><span class="pre">OpcodeInfo</span></code> class; <em>arg</em> is the decoded value, as a Python object, of
the opcode’s argument; <em>pos</em> is the position at which this opcode is located.
<em>pickle</em> can be a string or a file-like object.</p>
</dd></dl>
<dl class="function">
<dt id="pickletools.optimize">
<code class="descclassname">pickletools.</code><code class="descname">optimize</code><span class="sig-paren">(</span><em>picklestring</em><span class="sig-paren">)</span><a class="headerlink" href="#pickletools.optimize" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns a new equivalent pickle string after eliminating unused <code class="docutils literal notranslate"><span class="pre">PUT</span></code>
opcodes. The optimized pickle is shorter, takes less transmission time,
requires less storage space, and unpickles more efficiently.</p>
</dd></dl>
</div>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar" role="navigation" aria-label="main navigation">
<div class="sphinxsidebarwrapper">
<h3><a href="../contents.html">Table of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#"><code class="xref py py-mod docutils literal notranslate"><span class="pre">pickletools</span></code> — Tools for pickle developers</a><ul>
<li><a class="reference internal" href="#command-line-usage">Command line usage</a><ul>
<li><a class="reference internal" href="#command-line-options">Command line options</a></li>
</ul>
</li>
<li><a class="reference internal" href="#programmatic-interface">Programmatic Interface</a></li>
</ul>
</li>
</ul>
<h4>Previous topic</h4>
<p class="topless"><a href="dis.html"
title="previous chapter"><code class="xref py py-mod docutils literal notranslate"><span class="pre">dis</span></code> — Disassembler for Python bytecode</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="misc.html"
title="next chapter">Miscellaneous Services</a></p>
<div role="note" aria-label="source link">
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="../bugs.html">Report a Bug</a></li>
<li>
<a href="https://github.com/python/cpython/blob/3.8/Doc/library/pickletools.rst"
rel="nofollow">Show Source
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related" role="navigation" aria-label="related navigation">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="../genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="../py-modindex.html" title="Python Module Index"
>modules</a> |</li>
<li class="right" >
<a href="misc.html" title="Miscellaneous Services"
>next</a> |</li>
<li class="right" >
<a href="dis.html" title="dis — Disassembler for Python bytecode"
>previous</a> |</li>
<li><img src="../_static/py.png" alt=""
style="vertical-align: middle; margin-top: -1px"/></li>
<li><a href="https://www.python.org/">Python</a> »</li>
<li>
<span class="language_switcher_placeholder">en</span>
<span class="version_switcher_placeholder">3.8.0b3</span>
<a href="../index.html">Documentation </a> »
</li>
<li class="nav-item nav-item-1"><a href="index.html" >The Python Standard Library</a> »</li>
<li class="nav-item nav-item-2"><a href="language.html" >Python Language Services</a> »</li>
<li class="right">
<div class="inline-search" style="display: none" role="search">
<form class="inline-search" action="../search.html" method="get">
<input placeholder="Quick search" type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
</div>
<script type="text/javascript">$('.inline-search').show(0);</script>
|
</li>
</ul>
</div>
<div class="footer">
© <a href="../copyright.html">Copyright</a> 2001-2019, Python Software Foundation.
<br />
The Python Software Foundation is a non-profit corporation.
<a href="https://www.python.org/psf/donations/">Please donate.</a>
<br />
<br />
Last updated on Jul 31, 2019.
<a href="https://docs.python.org/3/bugs.html">Found a bug</a>?
<br />
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 2.0.1.
</div>
</body>
</html> |
doc/glib-2.0/GLib.KeyFile.KeyFile.html | themightyug/ledborg-server | <?xml version="1.0" encoding="utf-8"?>
<html>
<head>
<title>GLib.KeyFile.KeyFile -- 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">GLib.KeyFile.KeyFile 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">glib-2.0</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="namespace"><a href="GLib.html">GLib</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="class"><a href="GLib.KeyFile.html">KeyFile</a></li>
</ul>
<hr class="navi_hr"/>
<ul class="navi_main">
<li class="creation_method">KeyFile</li>
<li class="method"><a href="GLib.KeyFile.get_boolean.html">get_boolean</a></li>
<li class="method"><a href="GLib.KeyFile.get_boolean_list.html">get_boolean_list</a></li>
<li class="method"><a href="GLib.KeyFile.get_comment.html">get_comment</a></li>
<li class="method"><a href="GLib.KeyFile.get_double.html">get_double</a></li>
<li class="method"><a href="GLib.KeyFile.get_double_list.html">get_double_list</a></li>
<li class="method"><a href="GLib.KeyFile.get_groups.html">get_groups</a></li>
<li class="method"><a href="GLib.KeyFile.get_int64.html">get_int64</a></li>
<li class="method"><a href="GLib.KeyFile.get_integer.html">get_integer</a></li>
<li class="method"><a href="GLib.KeyFile.get_integer_list.html">get_integer_list</a></li>
<li class="method"><a href="GLib.KeyFile.get_keys.html">get_keys</a></li>
<li class="method"><a href="GLib.KeyFile.get_locale_string.html">get_locale_string</a></li>
<li class="method"><a href="GLib.KeyFile.get_locale_string_list.html">get_locale_string_list</a></li>
<li class="method"><a href="GLib.KeyFile.get_start_group.html">get_start_group</a></li>
<li class="method"><a href="GLib.KeyFile.get_string.html">get_string</a></li>
<li class="method"><a href="GLib.KeyFile.get_string_list.html">get_string_list</a></li>
<li class="method"><a href="GLib.KeyFile.get_uint64.html">get_uint64</a></li>
<li class="method"><a href="GLib.KeyFile.get_value.html">get_value</a></li>
<li class="method"><a href="GLib.KeyFile.has_group.html">has_group</a></li>
<li class="method"><a href="GLib.KeyFile.has_key.html">has_key</a></li>
<li class="method"><a href="GLib.KeyFile.load_from_data.html">load_from_data</a></li>
<li class="method"><a href="GLib.KeyFile.load_from_data_dirs.html">load_from_data_dirs</a></li>
<li class="method"><a href="GLib.KeyFile.load_from_dirs.html">load_from_dirs</a></li>
<li class="method"><a href="GLib.KeyFile.load_from_file.html">load_from_file</a></li>
<li class="method"><a href="GLib.KeyFile.remove_comment.html">remove_comment</a></li>
<li class="method"><a href="GLib.KeyFile.remove_group.html">remove_group</a></li>
<li class="method"><a href="GLib.KeyFile.remove_key.html">remove_key</a></li>
<li class="method"><a href="GLib.KeyFile.set_boolean.html">set_boolean</a></li>
<li class="method"><a href="GLib.KeyFile.set_boolean_list.html">set_boolean_list</a></li>
<li class="method"><a href="GLib.KeyFile.set_comment.html">set_comment</a></li>
<li class="method"><a href="GLib.KeyFile.set_double.html">set_double</a></li>
<li class="method"><a href="GLib.KeyFile.set_double_list.html">set_double_list</a></li>
<li class="method"><a href="GLib.KeyFile.set_int64.html">set_int64</a></li>
<li class="method"><a href="GLib.KeyFile.set_integer.html">set_integer</a></li>
<li class="method"><a href="GLib.KeyFile.set_integer_list.html">set_integer_list</a></li>
<li class="method"><a href="GLib.KeyFile.set_list_separator.html">set_list_separator</a></li>
<li class="method"><a href="GLib.KeyFile.set_locale_string.html">set_locale_string</a></li>
<li class="method"><a href="GLib.KeyFile.set_locale_string_list.html">set_locale_string_list</a></li>
<li class="method"><a href="GLib.KeyFile.set_string.html">set_string</a></li>
<li class="method"><a href="GLib.KeyFile.set_string_list.html">set_string_list</a></li>
<li class="method"><a href="GLib.KeyFile.set_uint64.html">set_uint64</a></li>
<li class="method"><a href="GLib.KeyFile.set_value.html">set_value</a></li>
<li class="method"><a href="GLib.KeyFile.to_data.html">to_data</a></li>
</ul>
</div>
<div class="site_content">
<h1 class="main_title">KeyFile</h1>
<hr class="main_hr"/>
<h2 class="main_title">Description:</h2>
<div class="main_code_definition"><span class="main_keyword">public</span> <b><span css="creation_method">KeyFile</span></b> ()</div>
</div>
</div><br/>
<div class="site_footer">Generated by <a href="http://www.valadoc.org/">Valadoc</a>
</div>
</body>
</html> |
RossFamilyTree/evt/2/2/d15f6043f3985bb4bb0d5cc122.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>Birth</h3>
<table class="infolist eventlist">
<tbody>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnGRAMPSID">E12473</td>
</tr>
<tr>
<td class="ColumnAttribute">Date</td>
<td class="ColumnColumnDate">
about 1843-03-00
</td>
</tr>
<tr>
<td class="ColumnAttribute">Place</td>
<td class="ColumnColumnPlace">
<a href="../../../plc/3/9/d15f6043f462b443ddc3edf0f93.html" title="">
</a>
</td>
</tr>
</tbody>
</table>
<div class="subsection" id="sourcerefs">
<h4>Source References</h4>
<ol>
<li>
<a href="../../../src/7/9/d15f603d0f065a2e6cc6dbee697.html" title="Custodian Birth Index 1837 to 1983" name ="sref1">
Custodian Birth Index 1837 to 1983
<span class="grampsid"> [S0443]</span>
</a>
<ol>
<li id="sref1a">
<ul>
<li>
Page: 1843 Q1 Medway Vol 5 Pg 378
</li>
<li>
Confidence: High
</li>
</ul>
</li>
</ol>
</li>
</ol>
</div>
<div class="subsection" id="references">
<h4>References</h4>
<ol class="Col1" role="Volume-n-Page"type = 1>
<li>
<a href="../../../ppl/b/c/d15f6043f33113e8894e71c08cb.html">
GAMMON, Mary Ann
<span class="grampsid"> [I457867397]</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:54<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
interface/client/templates/popupWindows/onboardingScreen.html | hiddentao/mist | <template name="popupWindows_onboardingScreen">
<div class="onboarding-screen {{mode}} active-{{TemplateVar.get 'currentActive'}} outgoing-{{TemplateVar.get 'lastActive'}} ">
{{> elements_networkIndicator}}
<div class="main-content">
<div class="onboarding-section onboarding-start">
<p class="description">{{i18n "mist.popupWindows.onboarding.description"}}</p>
<p>
<button class="start-testnet"> {{i18n "mist.popupWindows.onboarding.goToTestnet"}} </button>
{{i18n "mist.popupWindows.onboarding.goToTestnetDescription"}}
</p>
<p>
<button class="goto-import-account"> {{i18n "mist.popupWindows.onboarding.gotoMainnet"}} </button>
{{i18n "mist.popupWindows.onboarding.gotoMainnetDescription"}}
</p>
</div>
<div class="onboarding-section onboarding-import-account row">
{{> popupWindows_onboardingScreen_importAccount}}
<div class="col col-12 footer-buttons">
<button class="goto-start"> {{i18n "buttons.back"}} </button>
<button class="goto-password right-align"> {{i18n "buttons.skip"}} </button>
</div>
</div>
<div class="onboarding-section onboarding-password row">
{{> popupWindows_onboardingScreen_password}}
</div>
<div class="onboarding-section onboarding-testnet row">
{{> popupWindows_onboardingScreen_password}}
</div>
<div class="onboarding-section onboarding-account row">
{{#if TemplateVar.get "testnet"}}
<h1>{{i18n "mist.popupWindows.onboarding.accountTitleTestnet"}} </h1>
{{else}}
<h1>{{i18n "mist.popupWindows.onboarding.accountTitle"}} </h1>
{{/if}}
<div class="col col-6 col-left">
<p>
{{i18n "mist.popupWindows.onboarding.etherDescription"}}
</p>
{{#if TemplateVar.get "testnet"}}
<p>{{{i18n "mist.popupWindows.onboarding.mineItDescription"}}}</p>
{{else}}
<p>{{{i18n "mist.popupWindows.onboarding.loadItDescription"}}}</p>
{{/if}}
</div>
<div class="col col-6 col-deposit">
{{#if TemplateVar.get "newAccount"}}
{{> dapp_identicon identity=(TemplateVar.get "newAccount")}}
<div class="you"> {{i18n "mist.popupWindows.onboarding.you"}} </div>
<input type="text" value="{{i18n 'mist.popupWindows.onboarding.etherbase'}}" class="name" disabled>
<h6 class="address"> {{TemplateVar.get "newAccount"}} </h6>
{{#unless TemplateVar.get "testnet"}}
<a href="https://shapeshift.io/shifty.html?destination={{newAccountLowerCase}}&output=ETH&apiKey=ef8312d8c9b9dda64fb852e8683eac6c33123f8743ff11383fb3bab29a364c01c27343fced4e628db8d5d66d763565763f8699c0fc903ec23db31cb908a944c8" class="button dapp-block-button dapp-small shapeshift" target="_popup"> {{i18n "mist.popupWindows.onboarding.depositBitcoin"}} </a>
<h6> {{{i18n "mist.popupWindows.onboarding.viaShapeshift"}}} </h6>
{{/unless}}
{{/if}}
</div>
<div class="col col-12 footer-buttons">
<button class="goto-start"> {{i18n "buttons.back"}} </button>
<button class="goto-tutorial-1 right-align"> {{i18n "buttons.next"}} </button>
</div>
</div>
<div class="onboarding-section onboarding-tutorial-1 row">
<h1> {{i18n "mist.popupWindows.onboarding.learnIt"}} </h1>
<div class="col col-6 col-left">
{{{i18n "mist.popupWindows.onboarding.tutorial1Description"}}}
<p><a href="https://www.ethereum.org/token" class="button" target="_blank">{{i18n "mist.popupWindows.onboarding.buttons.learnReceipt"}}</a></p>
</div>
<div class="col col-6 tutorial-token"></div>
<div class="col col-12 footer-buttons">
<button class="goto-start"> {{i18n "buttons.back"}} </button>
<button class="goto-tutorial-2 right-align"> {{i18n "buttons.next"}} </button>
</div>
</div>
<div class="onboarding-section onboarding-tutorial-2 row">
<h1> {{i18n "mist.popupWindows.onboarding.learnIt"}} </h1>
<div class="col col-6 col-left">
{{{i18n "mist.popupWindows.onboarding.tutorial2Description"}}}
<p><a href="https://www.ethereum.org/crowdsale" class="button" target="_blank">{{i18n "mist.popupWindows.onboarding.buttons.learnReceipt"}}</a></p>
</div>
<div class="col col-6 tutorial-crowdsale"></div>
<div class="col col-12 footer-buttons">
<button class="goto-tutorial-1"> {{i18n "buttons.back"}} </button>
<button class="goto-tutorial-3 right-align"> {{i18n "buttons.next"}} </button>
</div>
</div>
<div class="onboarding-section onboarding-tutorial-3 row">
<h1> {{i18n "mist.popupWindows.onboarding.learnIt"}} </h1>
<div class="col col-6 col-left">
{{{i18n "mist.popupWindows.onboarding.tutorial3Description"}}}
<p><a href="https://www.ethereum.org/dao" class="button" target="_blank">{{i18n "mist.popupWindows.onboarding.buttons.learnReceipt"}}</a></p>
</div>
<div class="col col-6 tutorial-dao"></div>
<div class="col col-12 footer-buttons">
<button class="goto-tutorial-2"> {{i18n "buttons.back"}} </button>
</div>
</div>
</div>
<footer>
<progress value="{{#with TemplateVar.get 'syncing'}}{{progress}}{{/with}}" max="100"></progress>
<progress class='stateBar' value="{{#with TemplateVar.get 'syncing'}}{{_displayStatesDownload}}{{/with}}" max="1"></progress>
{{#with TemplateVar.get "syncing"}}
<div class="status"> {{i18n "mist.popupWindows.onboarding.downloadingBlocks"}} ({{TemplateVar.get "peerCount"}} {{i18n 'mist.nodeInfo.peers'}})</div>
<div class="blocks">
{{ syncStatus }}
</div>
{{else}}
{{#if TemplateVar.get 'readyToLaunch'}}
<button class="launch-app"> {{i18n "mist.popupWindows.onboarding.buttons.launchApp"}} </button>
{{else}}
<div class="status">
{{#if TemplateVar.get "peerCount"}}
{{TemplateVar.get "peerCount"}} {{i18n 'mist.nodeInfo.peers'}}
{{else}}
{{i18n 'mist.startScreen.nodeSyncConnecting'}}
{{/if}}
</div>
{{/if}}
{{/with}}
</footer>
</div>
</template>
<template name="popupWindows_onboardingScreen_importAccount">
<h1>{{i18n "mist.popupWindows.onboarding.doYouHaveAWalletFile"}}</h1>
<div class="col col-6 col-left">
{{{i18n "mist.popupWindows.onboarding.walletFileDescription"}}}
</div>
{{#if TemplateVar.get "filePath"}}
<div class="col col-6">
{{#if TemplateVar.get "importing"}}
<span class="dapp-identicon dapp-icon-loading"></span>
<h2 style="display: block; text-align: center;">{{i18n "mist.popupWindows.onboarding.importing"}}</h2>
{{else}}
<form action="about:blank" target="dapp-form-helper-iframe">
<input type="{{showPassword}}" placeholder="{{i18n 'mist.popupWindows.requestAccount.enterPassword'}}" class="password">
<br><br>
<input type="checkbox" name="elements_input_bool" class="show-password abi-input">
<label for="show-password">{{i18n "mist.popupWindows.onboarding.buttons.showPassword"}}</label>
<br><br>
<button type="submit" style="margin-left: 15px;">{{i18n "mist.popupWindows.onboarding.buttons.importAccount"}}</button>
</form>
{{/if}}
</div>
{{else}}
<div class="col col-6 dropable"> {{i18n "mist.popupWindows.onboarding.dropFilesHere"}}</div>
{{/if}}
</template>
<template name="popupWindows_onboardingScreen_password">
<h1> {{i18n "mist.popupWindows.onboarding.protectTitle"}} </h1>
<form action="about:blank" target="dapp-form-helper-iframe">
<div class="col col-6 col-left">
<p> {{i18n "mist.popupWindows.onboarding.protectDescription"}} </p>
</div>
<div class="col col-6">
{{#if TemplateVar.get "creatingPassword"}}
<span class="dapp-identicon dapp-icon-loading"></span>
<h2 style="display: block; text-align: center;">{{i18n "mist.popupWindows.onboarding.creating"}}</h2>
{{else}}
<input type="{{passwordInputType}}" placeholder="{{i18n 'mist.popupWindows.requestAccount.enterPassword'}}" class="password {{#if TemplateVar.get 'passwordsMismatch'}}dapp-error{{/if}}">
<input type="{{passwordInputType}}" placeholder="{{i18n 'mist.popupWindows.requestAccount.repeatPassword'}}" class="password-repeat {{#if TemplateVar.get 'passwordsMismatch'}}dapp-error{{/if}}">
<br><br>
<input type="checkbox" name="elements_input_bool" class="show-password abi-input">
<label for="show-password">{{i18n "mist.popupWindows.onboarding.buttons.showPassword"}}</label>
{{/if}}
</div>
<div class="col col-12 footer-buttons">
<button class="goto-start" type="button"> {{i18n "buttons.back"}} </button>
{{#if TemplateVar.get "passwordsNotEmpty"}}
<button class="create-account right-align" type="submit"> {{i18n "buttons.next"}} </button>
{{else}}
<button class="goto-tutorial-1 right-align"> {{i18n "buttons.skip"}} </button>
{{/if}}
</div>
</form>
</template>
|
common/_includes/search-form.html | super-dev/sdr-tools | <form role="search" method="get" class="search-form" action="https://superdevresources.com/">
<div class="search-box">
<svg class="icon icon-search" viewBox="0 0 26 28">
<path d="M18 13c0-3.859-3.141-7-7-7s-7 3.141-7 7 3.141 7 7 7 7-3.141 7-7zM26 26c0 1.094-0.906 2-2 2-0.531 0-1.047-0.219-1.406-0.594l-5.359-5.344c-1.828 1.266-4.016 1.937-6.234 1.937-6.078 0-11-4.922-11-11s4.922-11 11-11 11 4.922 11 11c0 2.219-0.672 4.406-1.937 6.234l5.359 5.359c0.359 0.359 0.578 0.875 0.578 1.406z"></path>
</svg>
<input type="search" class="search-field" placeholder="Search …" value="" name="s" title="Search for:">
</div>
<input type="submit" class="search-submit" value="Search">
</form> |
Manual/MobileOptimizationPracticalScriptingOptimizations.html | rakuten/Uinty3D-Docs-zhcn | <!DOCTYPE html><html lang="en" class="no-js">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Unity - Manual: Optimizing Scripts</title>
<meta name="description" content="Develop once, publish everywhere! Unity is the ultimate tool for video game development, architectural visualizations, and interactive media installations - publish to the web, Windows, OS X, Wii, Xbox 360, and iPhone with many more platforms to come.">
<meta name="author" content="Unity Technologies">
<link rel="shortcut icon" href="../StaticFilesManual/images/favicons/favicon.ico">
<link rel="icon" type="image/png" href="../StaticFilesManual/images/favicons/favicon.png">
<link rel="apple-touch-icon-precomposed" sizes="152x152" href="../StaticFilesManual/images/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../StaticFilesManual/images/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon-precomposed" sizes="120x120" href="../StaticFilesManual/images/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../StaticFilesManual/images/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../StaticFilesManual/images/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon-precomposed" href="../StaticFilesManual/images/favicons/apple-touch-icon.png">
<meta name="msapplication-TileColor" content="#222c37">
<meta name="msapplication-TileImage" content="../StaticFilesManual/images/favicons/tileicon-144x144.png">
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-2854981-1']);
_gaq.push(['_setDomainName', 'unity3d.com']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script><script type="text/javascript" src="../StaticFilesManual/js/jquery.js"></script><script type="text/javascript" src="../StaticFilesManual/js/core.js"></script><script type="text/javascript" src="../StaticFilesManual/js/highlight.js"></script><script type="text/javascript" src="docdata/toc.js"></script><script type="text/javascript" src="docdata/global_toc.js"></script><script>hljs.initHighlightingOnLoad();</script><link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,400italic" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="../StaticFilesManual/css/core.css">
</head>
<body>
<div class="header-wrapper">
<div id="header" class="header"><div class="content">
<div class="spacer"><div class="menu">
<div class="logo"><a href="http://docs.unity3d.com"></a></div>
<div class="search-form"><form action="30_search.html" method="get" class="apisearch">
<input type="text" name="q" placeholder="Search manual..." autosave="Unity Reference" results="5" class="sbox field" id="q"><input type="submit" class="submit">
</form></div>
<ul>
<li><a href="http://docs.unity3d.com">Overview</a></li>
<li><a href="../Manual/index.html" class="selected">Manual</a></li>
<li><a href="../ScriptReference/index.html">Scripting API</a></li>
</ul>
</div></div>
<div class="more">
<div class="filler"></div>
<ul><li><a href="http://unity3d.com/">unity3d.com</a></li></ul>
</div>
</div></div>
<div class="toolbar"><div class="content"><div class="lang-switcher">
<div class="current toggle" data-target=".lang-list">
<div class="lbl">Language: <span class="b">English</span>
</div>
<div class="arrow"></div>
</div>
<div class="lang-list" style="display:none;"><ul>
<li><a href="/Manual/MobileOptimizationPracticalScriptingOptimizations.html">English</a></li>
<li><a href="/es/current/Manual/MobileOptimizationPracticalScriptingOptimizations.html">Español</a></li>
<li><a href="/ru/current/Manual/MobileOptimizationPracticalScriptingOptimizations.html">Русский</a></li>
</ul></div>
</div></div></div>
</div>
<div id="master-wrapper" class="master-wrapper clear">
<div id="sidebar" class="sidebar"><div class="sidebar-wrap"><div class="content"><div class="sidebar-menu"><div class="toc"><h2>Unity Manual</h2></div></div></div></div></div>
<div id="content-wrap" class="content-wrap"><div class="content-block"><div class="content">
<div class="section">
<div class="breadcrumbs clear"><ul>
<li><a href="UnityManualRestructured.html">Unity Manual</a></li>
<li><a href="Architecture.html">Architecture</a></li>
<li>Architecture HOWTOs</li>
<li><a href="MobileDeveloperChecklist.html">Mobile Developer Checklist</a></li>
<li><a href="MobileOptimizationPracticalGuide.html">Practical Guide to Optimization for Mobiles</a></li>
<li>Optimizing Scripts</li>
</ul></div>
<div class="mb20"><div class="nextprev clear">
<div class="icon tt left mr1" data-distance="-40|-30|top">
<span class="prev"><a href="MobileOptimizationPracticalRenderingOptimizations.html"></a></span><div class="tip">Rendering Optimizations</div>
</div>
<div class="icon tt right" data-distance="-40|-30|top">
<span class="next"><a href="ContributingToUnity.html"></a></span><div class="tip">How to contribute to Unity</div>
</div>
</div></div>
<h1>Optimizing Scripts</h1>
<div class="suggest">
<a class="blue-btn sbtn">Suggest a change</a>
<div class="suggest-wrap rel hide">
<div class="loading hide">
<div></div>
<div></div>
<div></div>
</div>
<div class="suggest-success hide">
<h2>Success!</h2>
<p>Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.</p>
<a class="gray-btn sbtn close">Close</a>
</div>
<div class="suggest-failed hide">
<h2>Sumbission failed</h2>
<p>For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.</p>
<a class="gray-btn sbtn close">Close</a>
</div>
<div class="suggest-form clear">
<label for="suggest_name">Your name</label>
<input id="suggest_name" type="text">
<label for="suggest_email">Your email</label>
<input id="suggest_email" type="email">
<label for="suggest_body" class="clear">Suggestion <span class="r">*</span></label>
<textarea id="suggest_body" class="req"></textarea>
<button id="suggest_submit" class="blue-btn mr10">Submit suggestion</button>
<p class="mb0"><a class="cancel left lh42 cn">Cancel</a></p>
</div>
</div>
</div>
<!--BeginSwitchLink--><!--EndSwitchLink-->
<div class="clear"></div>
<p>This section demonstrates how you would go about optimizing the actual scripts and methods your game uses, and it also goes into detail about the reasons why the optimizations work, and why applying them will benefit you in certain situations.</p>
<h2>
<a href="Profiler.html">Profiler</a> is King</h2>
<p>There is no such thing as a list of boxes to check that will ensure your project runs smoothly. To optimize a slow project, you have to profile to find specific offenders that take up a disproportionate amount of time. Trying to optimize without profiling or without thoroughly understanding the results that the profiler gives is like trying to optimize with a blindfold on.</p>
<h3>Internal mobile profiler</h3>
<p>You can use the <a href="iphone-InternalProfiler.html">internal profiler</a> to figure out what kind of process is slowing your game down, be it physics, scripts, or rendering, but you can’t drill down into specific scripts and methods to find the actual offenders. However, by building switches into your game which enable and disable certain functionality, you can narrow down the worst offenders significantly. For example, if you remove the enemy characters’ AI script and the framerate doubles, you know that the script, or something that it brings into the game, has to be optimized. The only problem is that you may have to try a lot of different things before you find the problem.</p>
<p>For more about profiling on mobile devices, see the <a href="MobileOptimizationPracticalGuide.html">profiling section</a>.</p>
<h2>Optimized by Design</h2>
<p>Attempting to develop something which is fast from the beginning is risky, because there is a trade-off between wasting time making things that would be just as fast if they weren’t optimized and making things which will have to be cut or replaced later because they are too slow. It takes intuition and knowledge of the hardware to make good decisions in this regard, especially because every game is different and what might be a crucial optimization for one game may be a flop in another.</p>
<h3>Object Pooling</h3>
<p>We gave object pooling as an example of the intersection between good gameplay and good code design in the <a href="MobileOptimizationScriptingMethods.html">introduction to optimized scripting methods</a>. Using object pooling for ephemeral objects is faster than creating and destroying them, because it makes memory allocation simpler and removes dynamic memory allocation overhead and Garbage Collection, or GC.</p>
<h3>Memory Allocation</h3>
<h4>Simple Explanation of what Automatic Memory Management is</h4>
<p>Scripts you write in Unity use automatic memory management. Just about all scripting languages do this. In contrast, lower level languages such as C and C++ use manual memory allocation, where the programmer is allowed to read and write from memory addresses directly, and as a consequence he is responsible for removing every object he creates. For example, if you create objects in your C++, you have to manually de-allocate the memory that they take up when you are done with them. In a scripting language, it is enough to say <code>objectReference = null;</code>
</p>
<p>
<strong>Note:</strong> If I have a game object variable like <code>GameObject myGameObject;</code> or <code>var myGameObject : GameObject;</code>, why isn’t it destroyed when I say <code>myGameObject = null;</code>?</p>
<ul>
<li>The game object is still referenced by Unity, because Unity has to maintain a reference to it in order for it to be drawn, updated, etc. Calling <code>Destroy(myGameObject);</code> removes that reference and deletes the object.</li>
</ul>
<p>But if you create an object that Unity has no idea about, for example, an instance of a class that does not inherit from anything (in contrast, most classes or “script components” inherit from MonoBehaviour) and then set your reference variable to it to null, what actually happens is that the object is lost as far as your script and Unity are concerned; they can’t access it and will never see it again, but it stays in memory. Then, some time later, the Garbage Collector runs, and it removes anything in memory that is not referenced anywhere. It is able to do this because, behind the scenes, the number of references to each block of memory is kept track of. This is one reason why scripting languages are slower than C++.</p>
<ul>
<li>Read more about <a href="UnderstandingAutomaticMemoryManagement.html">Automatic Memory Management and the Garbage Collector</a>.</li>
</ul>
<h3>How to Avoid Allocating Memory</h3>
<p>Every time an object is created, memory is allocated. Very often in code, you are creating objects without even knowing it.</p>
<ul>
<li>
<code>Debug.Log("boo" + "hoo");</code> creates an object.
<ul>
<li>Use <code>System.String.Empty</code> instead of <code>""</code> when dealing with lots of strings.</li>
</ul>
</li>
<li>Immediate Mode GUI (UnityGUI) is slow and should not be used at any time when performance is an issue.</li>
<li>Difference between class and struct:</li>
</ul>
<p>Classes are objects and behave as references. If <strong>Foo</strong> is a class and</p>
<pre><code> Foo foo = new Foo();
MyFunction(foo);
</code></pre>
<p>then <strong>MyFunction</strong> will receive a reference to the original Foo object that was allocated on the heap. Any changes to <strong>foo</strong> inside <strong>MyFunction</strong> will be visible anywhere foo is referenced.</p>
<p>Classes are data and behave as such. If <strong>Foo</strong> is a struct and</p>
<pre><code> Foo foo = new Foo();
MyFunction(foo);
</code></pre>
<p>then <strong>MyFunction</strong> will receive a copy of <strong>foo</strong>. <strong>foo</strong> is never allocated on the heap and never garbage collected. If <strong>MyFunction</strong> modifies it’s copy of <strong>foo</strong>, the other <strong>foo</strong> is unaffected.</p>
<ul>
<li>Objects which stick around for a long time should be classes, and objects which are ephemeral should be structs. Vector3 is probably the most famous struct. If it were a class, everything would be a lot slower.</li>
</ul>
<h3>Why Object Pooling is Faster</h3>
<p>The upshot of this is that <strong>using Instantiate and Destroy a lot gives the Garbage Collector a lot to do</strong>, and this can cause a “hitch” in gameplay. As the <a href="UnderstandingAutomaticMemoryManagement.html">Automatic Memory Management</a> page explains, there are other ways to get around the common performance hitches that surround Instantiate and Destroy, such as triggering the Garbage Collector manually when nothing is going on, or triggering it very often so that a large backlog of unused memory never builds up.</p>
<p>Another reason is that, when a specific prefab is instantiated for the first time, sometimes additional things have to be loaded into RAM, or textures and meshes need to be uploaded to the GPU. This can cause a hitch as well, and with object pooling, this happens when the level loads instead of during gameplay.</p>
<p>Imagine a puppeteer who has an infinite box of puppets, where every time the script calls for a character to appear, he gets a new copy of its puppet out of the box, and every time the character exits the stage, he tosses the current copy. Object pooling is the equivalent of getting all the puppets out of the box before the show starts, and leaving them on the table behind the stage whenever they are not supposed to be visible.</p>
<h3>Why Object Pooling can be Slower</h3>
<p>One issue is that the creation of a pool reduces the amount of heap memory available for other purposes; so if you keep allocating memory on top of the pools you just created, you might trigger garbage collection even more often. Not only that, every collection will be slower, because the time taken for a collection increases with the number of live objects. With these issues in mind, it should be apparent that performance will suffer if you allocate pools that are too large or keep them active when the objects they contain will not be needed for some time. Furthermore, many types of objects don’t lend themselves well to object pooling. For example, the game may include spell effects that persist for a considerable time or enemies that appear in large numbers but which are only killed gradually as the game progresses. In such cases, the performance overhead of an object pool greatly outweighs the benefits and so it should not be used.</p>
<h3>Implementation</h3>
<p>Here’s a simple side by side comparison of a script for a simple projectile, one using Instantiation, and one using Object Pooling.</p>
<pre><code> // GunWithInstantiate.js // GunWithObjectPooling.js
#pragma strict #pragma strict
var prefab : ProjectileWithInstantiate; var prefab : ProjectileWithObjectPooling;
var maximumInstanceCount = 10;
var power = 10.0; var power = 10.0;
private var instances : ProjectileWithObjectPooling[];
static var stackPosition = Vector3(-9999, -9999, -9999);
function Start () {
instances = new ProjectileWithObjectPooling[maximumInstanceCount];
for(var i = 0; i < maximumInstanceCount; i++) {
// place the pile of unused objects somewhere far off the map
instances[i] = Instantiate(prefab, stackPosition, Quaternion.identity);
// disable by default, these objects are not active yet.
instances[i].enabled = false;
}
}
function Update () { function Update () {
if(Input.GetButtonDown("Fire1")) { if(Input.GetButtonDown("Fire1")) {
var instance : ProjectileWithInstantiate = var instance : ProjectileWithObjectPooling = GetNextAvailiableInstance();
Instantiate(prefab, transform.position, transform.rotation); if(instance != null) {
instance.velocity = transform.forward * power; instance.Initialize(transform, power);
} }
} }
}
function GetNextAvailiableInstance () : ProjectileWithObjectPooling {
for(var i = 0; i < maximumInstanceCount; i++) {
if(!instances[i].enabled) return instances[i];
}
return null;
}
// ProjectileWithInstantiate.js // ProjectileWithObjectPooling.js
#pragma strict #pragma strict
var gravity = 10.0; var gravity = 10.0;
var drag = 0.01; var drag = 0.01;
var lifetime = 10.0; var lifetime = 10.0;
var velocity : Vector3; var velocity : Vector3;
private var timer = 0.0; private var timer = 0.0;
function Initialize(parent : Transform, speed : float) {
transform.position = parent.position;
transform.rotation = parent.rotation;
velocity = parent.forward * speed;
timer = 0;
enabled = true;
}
function Update () { function Update () {
velocity -= velocity * drag * Time.deltaTime; velocity -= velocity * drag * Time.deltaTime;
velocity -= Vector3.up * gravity * Time.deltaTime; velocity -= Vector3.up * gravity * Time.deltaTime;
transform.position += velocity * Time.deltaTime; transform.position += velocity * Time.deltaTime;
timer += Time.deltaTime; timer += Time.deltaTime;
if(timer > lifetime) { if(timer > lifetime) {
transform.position = GunWithObjectPooling.stackPosition;
Destroy(gameObject); enabled = false;
} }
} }
</code></pre>
<p>Of course, for a large, complicated game, you will want to make a generic solution that works for all your prefabs.</p>
<h2>Another Example: Coin Party!</h2>
<p>The example of “Hundreds of rotating, dynamically lit, collectable coins onscreen at once” which was given in the <a href="MobileOptimizationScriptingMethods.html">Scripting Methods</a> section will be used to demonstrate how script code, Unity components like the Particle System, and custom shaders can be used to create a stunning effect without taxing the weak mobile hardware.</p>
<p>Imagine that this effect lives in the context of a 2D sidescrolling game with tons of coins that fall, bounce, and rotate. The coins are dynamically lit by point lights. We want to capture the light glinting off the coins to make our game more impressive.</p>
<p>If we had powerful hardware, we could use a standard approach to this problem. Make every coin an object, shade the object with either vertex-lit, forward, or deferred lighting, and then add glow on top as an image effect to get the brightly reflecting coins to bleed light onto the surrounding area.</p>
<p>But mobile hardware would choke on that many objects, and a glow effect is totally out of the question. So what do we do?</p>
<figure>
<img src="../uploads/Main/MobileOptimization-coinsLighting.jpg" alt="">
<figcaption></figcaption></figure>
<h3>Animated Sprite Particle System</h3>
<p>If you want to display a lot of objects which all move in a similar way and can never be carefully inspected by the player, you might be able to render large amounts of them in no time using a particle system. Here are a few stereotypical applications of this technique:</p>
<ul>
<li>Collectables or Coins</li>
<li>Flying Debris</li>
<li><a href="http://www.gamespot.com/ikaruga/images/580047/">Hordes or Flocks of Simple Enemies</a></li>
<li>Cheering Crowds</li>
<li>Hundreds of Projectiles or Explosions</li>
</ul>
<p>There is a free editor extension called <a href="http://u3d.as/content/forest-johnson/sprite-packer-with-legacy-particle-emitter-to-shuriken-converter-/34E">Sprite Packer</a> that facilitates the creation of animated sprite particle systems. It renders frames of your object to a texture, which can then be used as an animated sprite sheet on a particle system. For our use case, we would use it on our rotating coin.</p>
<figure>
<img src="../uploads/Main/MobileOptimization-coinsParts.jpg" alt="">
<figcaption></figcaption></figure>
<h3>Reference Implementation</h3>
<p>Included in the <a href="http://u3d.as/content/forest-johnson/sprite-packer-with-legacy-particle-emitter-to-shuriken-converter-/34E">Sprite Packer</a> project is an example that demonstrates a solution to this exact problem.</p>
<p>It uses a family of assets of all different kinds to achieve a dazzling effect on a low computing budget:</p>
<ul>
<li>A control script</li>
<li>Specialized textures created from the output of the SpritePacker</li>
<li>A specialized shader which is intimately connected with both the control script and the texture.</li>
</ul>
<p>A readme file is included with the example which attempts to explain why and how the system works, outlining the process that was used to determine what features were needed and how they were implemented. This is that file:</p>
<p>The problem was defined as “Hundreds of rotating, dynamically lit, collectable coins onscreen at once.”</p>
<p>The naive approach is to Instantiate a bunch of copies of a coin prefab, but instead we are going to use particles to render our coins. However, this introduces a number of challenges that we have to overcome.</p>
<ul>
<li>Viewing angles are a problem because particles don’t have them.
<ul>
<li>We assume that the camera stays right-side up and the coins rotate around the Y-axis.</li>
<li>We create the illusion of coin rotation with an animated texture that we packed using the SpritePacker.
<ul>
<li>This introduces a new problem: Monotony of rotating coins all rotating at the same speed and in the same direction</li>
<li>We keep track of rotation and lifetime ourselves and “render” rotation to the particle lifetimes in script to fix this.</li>
</ul>
</li>
</ul>
</li>
<li>Normals are a problem because particles don’t have them, and we need real time lighting.
<ul>
<li>Generate a single normal vector for the face of the coin in each animation frame generated by the Sprite Packer.</li>
<li>Do Blinn-Phong lighting for each particle in script, based on the normal vector grabbed from the above list.</li>
<li>Apply the result to the particle as a color.</li>
<li>Handle the face of the coin and the rim of the coin separately in the shader.
Introduces a new problem: How does the shader know where the rim is, and what part of the rim it’s on?
<ul>
<li>Can’t use UV’s, they are already used for the animation.</li>
<li>Use a texture map.
<ul>
<li>Need Y-position relative to coin.</li>
<li>Need binary “on face” vs “on rim”.</li>
</ul>
</li>
<li>We don’t want to introduce another texture, more texture reads, more texture memory.</li>
<li>Combine needed information into one channel and replace one of the texture’s color channels with it.
<ul>
<li>Now our coin is the wrong color! What do we do?</li>
<li>Use the shader to reconstruct missing channel as a combination of the two remaining channels.</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>Say we want glow from light glinting off our coins. Post process is too expensive for mobile devices.
<ul>
<li>Create another particle system and give it a softened, glowy version of the coin animation.</li>
<li>Color a glow only when the corresponding coin’s color is super bright.</li>
<li>Can’t have glow rendered on every coin every frame - fill rate killer.
<ul>
<li>Reset glows every frame, only position ones with brightness > 0.</li>
</ul>
</li>
</ul>
</li>
<li>Physics is a problem, collecting coins is a problem - particles don’t collide very well.
<ul>
<li>Could use built-in particle collision?</li>
<li>Instead, just wrote collision into the script.</li>
</ul>
</li>
<li>Finally, we have one more problem - this script does a lot, and its getting slow!
<ul>
<li>Performance scales linearly with number of active coins.
<ul>
<li>Limit maximum coins. This works well enough to acheive our goal: 100 coins, 2 lights, runs really fast on mobile devices.</li>
</ul>
</li>
</ul>
</li>
<li>Things to try to optimize further:
<ul>
<li>Instead of calculating lighting for every coin individually, cut the world into chunks and calculate lighting conditions for every rotation frame in every chunk.
<ul>
<li>Use as a lookup table with coin position and coin rotation as indices.</li>
<li>Increase fidelity by using bilinear interpolation with position.</li>
<li>Sparse updates on the lookup table, or, entirely static lookup table.</li>
<li>Use Light Probes for this?
*Instead of calculating lighting in script, use normal-mapped particles?</li>
<li>Use “Display Normals” shader to bake frame animation of normals.</li>
<li>Limits number of lights.</li>
<li>Fixes slow script problem.</li>
</ul>
</li>
</ul>
</li>
</ul>
<p>The end goal of this example or “moral of the story” is that if there is something which your game really needs, and it causes lag when you try to achieve it through conventional means, that doesn’t mean that it is impossible, it just means that you have to put in some work on a system of your own that runs much faster.</p>
<h3>Techniques for Managing Thousands of Objects</h3>
<p>These are specific scripting optimizations which are applicable in situations where hundreds or thousands of dynamic objects are involved. Applying these techniques to every script in your game is a terrible idea; they should be reserved as tools and design guidelines for large scripts which handle tons of objects or data at run time.</p>
<h4>Avoid or minimize O(n2) operations on large data sets</h4>
<p>In computer science, the Order of an operation, denoted by O(n), refers to the way that the number of times that the operation has to be evaluated increases as the number of objects it is applied to (n) increases.</p>
<p>For example, consider a basic sorting algorithm. I have <strong>n</strong> numbers and I want to sort them from smallest to largest.</p>
<pre><code> void sort(int[] arr) {
int i, j, newValue;
for (i = 1; i < arr.Length; i++) {
// record
newValue = arr[i];
//shift everything that is larger to the right
j = i;
while (j > 0 && arr[j - 1] > newValue) {
arr[j] = arr[j - 1];
j--;
}
// place recorded value to the left of large values
arr[j] = newValue;
}
}
</code></pre>
<p>The important part is that there are two loops here, one inside the other.</p>
<pre><code> for (i = 1; i < arr.Length; i++) {
...
j = i;
while (j > 0 && arr[j - 1] > newValue) {
...
j--;
}
}
</code></pre>
<p>Let’s assume that we give the algorithm the worst possible case: the input numbers are sorted, but in reverse order. In that case, the innermost loop will run <strong>j</strong> times. On average, as <strong>i</strong> goes from <strong>1</strong> to <strong>arr.Length–1</strong>, <strong>j</strong> will be <strong>arr.Length/2</strong>. In terms of <strong>O(n)</strong>, <strong>arr.Length</strong> is our <strong>n</strong>, so, in total, the innermost loop runs <strong>n*n/2</strong> times, or <strong>n<sup>2</sup>/2</strong> times. But in <strong>O(n)</strong> terms, we chuck all constants like <strong>1/2</strong>, because we want to talk about the way that the number of operations increases, not the actual number of operations. So the algorithm is <strong>O(n<sup>2</sup>)</strong>. The order of an operation matters a lot if the data set is large, because the number of operations can explode exponentially.</p>
<p>An in-game example of an <strong>O(n<sup>2</sup>)</strong> operation is 100 enemies, where the AI of each enemy takes the movements of every other enemy into account. It might be faster to divide the map into cells, record the movement of each enemy into the nearest cell, and then have each enemy sample the nearest few cells. That would be an <strong>O(n)</strong> operation.</p>
<h4>Cache references instead of performing unnecessary searches</h4>
<p>Say you have 100 enemies in your game, and they all move towards the player.</p>
<pre><code> // EnemyAI.js
var speed = 5.0;
function Update () {
transform.LookAt(GameObject.FindWithTag("Player").transform);
// this would be even worse:
//transform.LookAt(FindObjectOfType(Player).transform);
transform.position += transform.forward * speed * Time.deltaTime;
}
</code></pre>
<p>That could be slow, if there are enough of them running at the same time. Little known fact: all of the component accessors in MonoBehaviour, things like <strong>transform</strong>, <strong>renderer</strong>, and <strong>audio</strong>, are equivalent to their <strong>GetComponent(Transform)</strong> counterparts, and they are actually a bit slow. <strong>GameObject.FindWithTag</strong> has been optimized, but in some cases, for example, in inner loops, or on scripts that run on a lot of instances, this script might be a bit slow.</p>
<p>This is a better version of the script.</p>
<pre><code> // EnemyAI.js
var speed = 5.0;
private var myTransform : Transform;
private var playerTransform : Transform;
function Start () {
myTransform = transform;
playerTransform = GameObject.FindWithTag("Player").transform;
}
function Update () {
myTransform.LookAt(playerTransform);
myTransform.position += myTransform.forward * speed * Time.deltaTime;
}
</code></pre>
<h4>Minimize expensive math functions</h4>
<p>Transcendental functions (<strong>Mathf.Sin</strong>, <strong>Mathf.Pow</strong>, etc), Division, and Square Root all take about 100x the time of a multiplication. (In the grand scheme of things, no time at all, but if you are calling them thousands of times per frame it can add up).</p>
<p>The most common case of this is vector normalization. If you are normalizing the same vector over and over, consider normalizing it once instead and caching the result for use later.</p>
<p>If you are both using the length of a vector and normalizing it, it would be faster to obtain the normalized vector by multiplying the vector by the reciprocal of the length rather than by using the <strong>.normalized</strong> property.</p>
<p>If you are comparing distances, you don’t have to compare the actual distances. You can compare the squares of the distances instead by using the <strong>.sqrMagnitude</strong> property and save a square root or two.</p>
<p>Another one, if you are dividing over and over by a constant c, you can multiply by the reciprocal instead. Calculate the reciprocal first by doing <strong>1.0/c</strong>.</p>
<h4>Only execute expensive operations occasionally, e.g. Physics.Raycast()</h4>
<p>If you have to do something expensive, you might be able to optimize it by doing it less often and caching the result. For example, consider a projectile script that uses Raycast:</p>
<pre><code> // Bullet.js
var speed = 5.0;
function FixedUpdate () {
var distanceThisFrame = speed * Time.fixedDeltaTime;
var hit : RaycastHit;
// every frame, we cast a ray forward from where we are to where we will be next frame
if(Physics.Raycast(transform.position, transform.forward, hit, distanceThisFrame)) {
// Do hit
} else {
transform.position += transform.forward * distanceThisFrame;
}
}
</code></pre>
<p>Right away, we could improve the script by replacing FixedUpdate with Update and fixedDeltaTime with deltaTime. FixedUpdate refers to the Physics update, which happens more often than the frame update. But let’s go even further by only raycasting every n seconds. A smaller n gives greater temporal resolution, and a bigger n gives better performance. The bigger and slower your targets are, the bigger n can be before temporal aliasing occurs. (Appearance of latency, where the player hit the target, but the explosion appears where the target used to be n seconds ago, or the player hit the target, but the projectile goes right through).</p>
<pre><code> // BulletOptimized.js
var speed = 5.0;
var interval = 0.4; // this is 'n', in seconds.
private var begin : Vector3;
private var timer = 0.0;
private var hasHit = false;
private var timeTillImpact = 0.0;
private var hit : RaycastHit;
// set up initial interval
function Start () {
begin = transform.position;
timer = interval+1;
}
function Update () {
// don't allow an interval smaller than the frame.
var usedInterval = interval;
if(Time.deltaTime > usedInterval) usedInterval = Time.deltaTime;
// every interval, we cast a ray forward from where we were at the start of this interval
// to where we will be at the start of the next interval
if(!hasHit && timer >= usedInterval) {
timer = 0;
var distanceThisInterval = speed * usedInterval;
if(Physics.Raycast(begin, transform.forward, hit, distanceThisInterval)) {
hasHit = true;
if(speed != 0) timeTillImpact = hit.distance / speed;
}
begin += transform.forward * distanceThisInterval;
}
timer += Time.deltaTime;
// after the Raycast hit something, wait until the bullet has traveled
// about as far as the ray traveled to do the actual hit
if(hasHit && timer > timeTillImpact) {
// Do hit
} else {
transform.position += transform.forward * speed * Time.deltaTime;
}
}
</code></pre>
<h4>Minimize callstack overhead in inner loops</h4>
<p>Just calling a function has a little bit of overhead in itself. If you are calling things like <strong>x = Mathf.Abs(x)</strong> thousands of times per frame, it might be better to just do <strong>x = (x > 0 ? x : -x);</strong> instead.</p>
<h3>Optimizing Physics Performance</h3>
<p>The NVIDIA PhysX physics engine used by Unity is available on mobiles, but the performance limits of the hardware will be reached more easily on mobile platforms than desktops.</p>
<p>Here are some tips for tuning physics to get better performance on mobiles:-</p>
<ul>
<li>You can adjust the <strong>Fixed Timestep</strong> setting (in the <a href="class-TimeManager.html">Time manager</a>) to reduce the time spent on physics updates. Increasing the timestep will reduce the CPU overhead at the expense of the accuracy of the physics. Often, lower accuracy is an acceptable tradeoff for increased speed.</li>
<li>Set the <strong>Maximum Allowed Timestep</strong> in the <a href="class-TimeManager.html">Time manager</a> in the 8–10fps range to cap the time spent on physics in the worst case scenario.</li>
<li>Mesh colliders have a much higher performance overhead than primitive colliders, so use them sparingly. It is often possible to approximate the shape of a mesh by using child objects with primitive colliders. The child colliders will be controlled collectively as a single compound collider by the rigidbody on the parent.</li>
<li>While wheel colliders are not strictly colliders in the sense of solid objects, they nonetheless have a high CPU overhead.</li>
</ul>
<div class="nextprev clear">
<div class="icon tt left mr1" data-distance="-40|-30|top">
<span class="prev"><a href="MobileOptimizationPracticalRenderingOptimizations.html"></a></span><div class="tip">Rendering Optimizations</div>
</div>
<div class="icon tt right" data-distance="-40|-30|top">
<span class="next"><a href="ContributingToUnity.html"></a></span><div class="tip">How to contribute to Unity</div>
</div>
</div>
</div>
<div class="footer-wrapper"><div class="footer clear">
<div class="copy">Copyright © 2014 Unity Technologies</div>
<div class="menu">
<a href="http://unity3d.com/learn">Learn</a><a href="http://unity3d.com/community">Community</a><a href="http://unity3d.com/asset-store">Asset Store</a><a href="https://store.unity3d.com">Buy</a><a href="http://unity3d.com/unity/download">Download</a>
</div>
</div></div>
</div></div></div>
</div>
</body>
</html>
|
index.html | wohlgejm/wtfruby | ---
layout: default
---
<section>
<h1>WTF Ruby</h1>
<p>
Things I should've known.
</p>
</section>
<section>
<h2>Posts</h2>
{% for post in paginator.posts %}
{% assign nth = forloop.index0 | modulo:2 %}
<div class="media t-hackcss-media">
<div class="media-body">
<div class="media-heading">
<span>{{ post.date | date_to_string }} »
{% if post.external_url %}
<a href="{{ post.external_url }}" target="_blank" title="{{ project.name }}">
{{ post.title }}
</a>
{% else %}
<a href="{{ post.url | prepend: site.baseurl }}" title="{{ project.name }}">
{{ post.title }}
</a>
{% endif %}
</span>
</div>
<div class="media-content">
{{ post.short_description }}
</div>
</div>
</div>
{% endfor %}
<div class="pagination-links">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="previous">Previous</a>
{% else %}
<span class="previous">Previous</span>
{% endif %}
<span class="page_number ">Page: {{ paginator.page }} of {{ paginator.total_pages }}</span>
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="next">Next</a>
{% else %}
<span class="next ">Next</span>
{% endif %}
</div>
</section>
|
Doc/qtquickcontrols/qtquickcontrols-tableview-example.html | angeloprudentino/QtNets | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<!-- qtquickcontrols-examples.qdoc -->
<title>Qt Quick Controls - Table View Example | Qt Quick Controls 5.7</title>
<link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
<script type="text/javascript">
window.onload = function(){document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");};
</script>
</head>
<body>
<div class="header" id="qtdocheader">
<div class="main">
<div class="main-rounded">
<div class="navigationbar">
<table><tr>
<td ><a href="../qtdoc/supported-platforms-and-configurations.html#qt-5-7">Qt 5.7</a></td><td ><a href="qtquickcontrols-index.html">Qt Quick Controls</a></td><td >Qt Quick Controls - Table View Example</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.7.0 Reference Documentation</td>
</tr></table>
</div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar">
<div class="toc">
<h3><a name="toc">Contents</a></h3>
<ul>
<li class="level1"><a href="#running-the-example">Running the Example</a></li>
</ul>
</div>
<div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">Qt Quick Controls - Table View Example</h1>
<span class="subtitle"></span>
<!-- $$$tableview-description -->
<div class="descr"> <a name="details"></a>
<p class="centerAlign"><img src="images/qtquickcontrols-example-tableview.png" alt="" /></p><p>This example project demonstrates the usage of <a href="qml-qtquick-controls-tableview.html">TableView</a> from <a href="qtquickcontrols-index.html">Qt Quick Controls</a> - a control to display one or more columns of information from a data list model. The example includes a model that supports sorting and filtering.</p>
<p>The C++ class, SortFilterProxyModel, is registered as a QML type under the namespace, "<code>org.qtproject.example 1.0</code>".</p>
<p>The following snippets show how the type is registered under a namespace and later imported by <i>main.qml</i>.</p>
<p>QML type registration:</p>
<pre class="cpp">
<span class="preprocessor">#include <QtQml/qqml.h></span>
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span>
qmlRegisterType<span class="operator"><</span>SortFilterProxyModel<span class="operator">></span>(<span class="string">"org.qtproject.example"</span><span class="operator">,</span> <span class="number">1</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> <span class="string">"SortFilterProxyModel"</span>);
<span class="operator">.</span><span class="operator">.</span><span class="operator">.</span>
</pre>
<p>QML namespace import:</p>
<pre class="cpp">
import org<span class="operator">.</span>qtproject<span class="operator">.</span>example <span class="number">1.0</span>
</pre>
<p>For more information about registering C++ classses as QML types, see <a href="../qtqml/qtqml-cppintegration-topic.html#defining-qml-types-from-c">Defining QML Types from C++</a>.</p>
<a name="running-the-example"></a>
<h2 id="running-the-example">Running the Example</h2>
<p>To run the example from <a href="http://doc.qt.io/qtcreator/index.html">Qt Creator</a>, open the <b>Welcome</b> mode and select the example from <b>Examples</b>. For more information, visit <a href="http://doc.qt.io/qtcreator/creator-build-example-application.html">Building and Running an Example</a>.</p>
<p>Files:</p>
<ul>
<li><a href="qtquickcontrols-tableview-main-qml.html">tableview/main.qml</a></li>
<li><a href="qtquickcontrols-tableview-src-sortfilterproxymodel-cpp.html">tableview/src/sortfilterproxymodel.cpp</a></li>
<li><a href="qtquickcontrols-tableview-src-sortfilterproxymodel-h.html">tableview/src/sortfilterproxymodel.h</a></li>
<li><a href="qtquickcontrols-tableview-src-main-cpp.html">tableview/src/main.cpp</a></li>
<li><a href="qtquickcontrols-tableview-tableview-pro.html">tableview/tableview.pro</a></li>
<li><a href="qtquickcontrols-tableview-tableview-qrc.html">tableview/tableview.qrc</a></li>
</ul>
</div>
<!-- @@@tableview -->
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2016 The Qt Company Ltd.
Documentation contributions included herein are the copyrights of
their respective owners.<br> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br> Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. </p>
</div>
</body>
</html>
|
man/closedir.3p.html | fusion809/fusion809.github.io-old | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<style>
table.head, table.foot { width: 100%; }
td.head-rtitle, td.foot-os { text-align: right; }
td.head-vol { text-align: center; }
table.foot td { width: 50%; }
table.head td { width: 33%; }
div.spacer { margin: 1em 0; }
</style>
<title>
CLOSEDIR(3P)</title>
</head>
<body>
<div class="mandoc">
<table class="head">
<tbody>
<tr>
<td class="head-ltitle">
CLOSEDIR(3P)</td>
<td class="head-vol">
POSIX Programmer's Manual</td>
<td class="head-rtitle">
CLOSEDIR(3P)</td>
</tr>
</tbody>
</table>
<div class="section">
<h1>PROLOG</h1> This manual page is part of the POSIX Programmer's Manual. The Linux implementation of this interface may differ (consult the corresponding Linux manual page for details of Linux behavior), or the interface may not be implemented on Linux.<div style="height: 1.00em;">
 </div>
</div>
<div class="section">
<h1>NAME</h1> closedir — close a directory stream</div>
<div class="section">
<h1>SYNOPSIS</h1><br/>
#include <dirent.h><div class="spacer">
</div>
int closedir(DIR *<i>dirp</i>);<br/>
</div>
<div class="section">
<h1>DESCRIPTION</h1> The <i>closedir</i>() function shall close the directory stream referred to by the argument <i>dirp</i>. Upon return, the value of <i>dirp</i> may no longer point to an accessible object of the type <b>DIR</b>. If a file descriptor is used to implement type <b>DIR</b>, that file descriptor shall be closed.</div>
<div class="section">
<h1>RETURN VALUE</h1> Upon successful completion, <i>closedir</i>() shall return 0; otherwise, −1 shall be returned and <i>errno</i> set to indicate the error.</div>
<div class="section">
<h1>ERRORS</h1> The <i>closedir</i>() function may fail if:<dl>
<dt>
<b>EBADF</b></dt>
<dd>
The <i>dirp</i> argument does not refer to an open directory stream.</dd>
</dl>
<dl>
<dt>
<b>EINTR</b></dt>
<dd>
The <i>closedir</i>() function was interrupted by a signal.</dd>
</dl>
<div class="spacer">
</div>
<i>The following sections are informative.</i></div>
<div class="section">
<h1>EXAMPLES</h1><div class="subsection">
<h2>Closing a Directory Stream</h2> The following program fragment demonstrates how the <i>closedir</i>() function is used.<div style="height: 1.00em;">
 </div>
<div style="margin-left: 4.00ex;">
<br/>
<b></b><br/>
<b>...</b><br/>
<b> DIR *dir;</b><br/>
<b> struct dirent *dp;</b><br/>
<b>...</b><br/>
<b> if ((dir = opendir (".")) == NULL) {</b><br/>
<b>...</b><br/>
<b> }</b><div class="spacer">
</div>
<br/>
while ((dp = readdir (dir)) != NULL) {<br/>
...<br/>
}<div class="spacer">
</div>
<br/>
closedir(dir);<br/>
...<br/>
</div>
</div>
</div>
<div class="section">
<h1>APPLICATION USAGE</h1> None.</div>
<div class="section">
<h1>RATIONALE</h1> None.</div>
<div class="section">
<h1>FUTURE DIRECTIONS</h1> None.</div>
<div class="section">
<h1>SEE ALSO</h1> <i><i>dirfd</i>()</i>, <i><i>fdopendir</i>()</i><div class="spacer">
</div>
The Base Definitions volume of POSIX.1‐2008, <i><b><dirent.h></b></i></div>
<div class="section">
<h1>COPYRIGHT</h1> Portions of this text are reprinted and reproduced in electronic form from IEEE Std 1003.1, 2013 Edition, Standard for Information Technology -- Portable Operating System Interface (POSIX), The Open Group Base Specifications Issue 7, Copyright (C) 2013 by the Institute of Electrical and Electronics Engineers, Inc and The Open Group. (This is POSIX.1-2008 with the 2013 Technical Corrigendum 1 applied.) In the event of any discrepancy between this version and the original IEEE and The Open Group Standard, the original IEEE and The Open Group Standard is the referee document. The original Standard can be obtained online at http://www.unix.org/online.html .<div style="height: 1.00em;">
 </div>
Any typographical or formatting errors that appear in this page are most likely to have been introduced during the conversion of the source files to man page format. To report such errors, see https://www.kernel.org/doc/man-pages/reporting_bugs.html .</div>
<table class="foot">
<tr>
<td class="foot-date">
2013</td>
<td class="foot-os">
IEEE/The Open Group</td>
</tr>
</table>
</div>
</body>
</html>
|
public/views/orders.html | abhijitghosh/wms | <div class="text-center">
<h1><i class="fa fa-list-alt "></i> Delivery Orders </h1>
<label class="badge pull-right">{{date| date:'MMM d, y h:mm:ss a'}}</label>
<table id="basket-table" class="table table-bordered">
<thead>
<tr>
<th >Tracking ID</th>
<th>Created On </th>
<th>Current Status</th>
<th >Address</th>
<th>Delivery Person</th>
<th>Assign</th>
<th>Barcode</th>
<th>Track</th>
<th>Show</th>
</tr>
</thead>
<tbody>
<tr data-ng-repeat="i in orders|orderBy:'-created_on' ">
<td>{{i._id}}</td>
<td>{{i.created_on|date:'MMM d, y h:mm:ss a'}}</td>
<td>{{i.shipping.tracking.status}}</td>
<td>{{i.shipping.address}}</td>
<td >
<div >
<select name="" id="" ng-model="i.shipping.tracking.deliveryperson" class="form-control">
<option value="111111">John Doe</option>
<option value="333333">Freddie Mercury</option>
<option value="444444">Frank Sinatra</option>
</select>
</div>
</td>
<td>
<a class="btn btn-success" ng-click="assign(i._id,i.shipping.tracking.deliveryperson)"><i class="fa fa-arrow-circle-o-right"></i></a>
</td>
</td>
<td ><a class="btn btn-default" ng-click="toggle=!toggle" ng-init="toggle=false;" ng-show="!toggle">Show</a>
<a class="btn btn-default" ng-click="toggle=!toggle" ng-show="toggle">Hide</a>
<img ng-show="toggle" src="{{i.shipping.barcode.filepath}}" alt="" style="width:400px; height:100px;"/></td>
<td>
<a href="{{i.track}}" class="btn btn-danger"> Track</a>
</td>
<td> <a href="{{i.url}}" class="btn btn-primary"> Show</a>
</td>
</tr>
</tbody>
</table>
</div>
|
0.8/parsing.html | diging/tethne-docs | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Parsing Bibliographic Metadata — tethne 0.8 documentation</title>
<link rel="stylesheet" type="text/css" href="_static/css/spc-bootstrap.css">
<link rel="stylesheet" type="text/css" href="_static/css/spc-extend.css">
<link rel="stylesheet" href="_static/scipy.css" type="text/css" >
<link rel="stylesheet" href="_static/pygments.css" type="text/css" >
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '0.8',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="_static/js/copybutton.js"></script>
<link rel="top" title="tethne 0.8 documentation" href="index.html" >
</head>
<body>
<div class="container">
<div class="top-scipy-org-logo-header">
<a href="index.html">
<img style="border: 0; height: 60px;" alt="SciPy" src="_static/img/logo_long_devo.png"></a>
</div>
</div>
</div>
<div class="container">
<div class="main">
<div class="row-fluid">
<div class="span12">
<div class="spc-navbar">
<ul class="nav nav-pills pull-left">
<li class="active"><a href="http://diging.github.io/tethne/">Tethne</a></li>
<li class="active"><a href="index.html">tethne 0.8 documentation</a></li>
</ul>
<ul class="nav nav-pills pull-right">
<li class="active">
<a href="genindex.html" title="General Index"
accesskey="I">index</a>
</li>
<li class="active">
<a href="py-modindex.html" title="Python Module Index"
>modules</a>
</li>
</ul>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span9">
<div class="bodywrapper">
<div class="body" id="spc-section-body">
<div class="section" id="parsing-bibliographic-metadata">
<span id="parsing"></span><h1>Parsing Bibliographic Metadata<a class="headerlink" href="#parsing-bibliographic-metadata" title="Permalink to this headline">¶</a></h1>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">For instructions on acquiring bibliographic data from several sources,
see <a class="reference internal" href="getting_data.html#gettingdata"><span>Getting Bibliographic Metadata</span></a>.</p>
</div>
<p>Tethne provides several parsing modules, located in <a class="reference internal" href="tethne.readers.html#module-tethne.readers" title="tethne.readers"><code class="xref py py-mod docutils literal"><span class="pre">tethne.readers</span></code></a>. The
recommended pattern for parsing data is to import the parsing module
corresponding to your data type, and use its’ <code class="docutils literal"><span class="pre">read</span></code> function to parse your
data. For example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="kn">from</span> <span class="nn">tethne.readers</span> <span class="kn">import</span> <span class="n">wos</span>
<span class="gp">>>> </span><span class="n">myCorpus</span> <span class="o">=</span> <span class="n">wos</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/path/to/my/data.txt'</span><span class="p">)</span>
</pre></div>
</div>
<p>By default, <code class="docutils literal"><span class="pre">read</span></code> will return a <a class="reference internal" href="tethne.classes.html#tethne.classes.corpus.Corpus" title="tethne.classes.corpus.Corpus"><code class="xref py py-class docutils literal"><span class="pre">Corpus</span></code></a> object.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">myCorpus</span>
<span class="go"><tethne.classes.corpus.Corpus object at 0x1046aa7d0></span>
</pre></div>
</div>
<p>A <a class="reference internal" href="tethne.classes.html#tethne.classes.corpus.Corpus" title="tethne.classes.corpus.Corpus"><code class="xref py py-class docutils literal"><span class="pre">Corpus</span></code></a> is a collection of <a class="reference internal" href="tethne.classes.html#tethne.classes.paper.Paper" title="tethne.classes.paper.Paper"><code class="xref py py-class docutils literal"><span class="pre">Paper</span></code></a>s that can be indexed in
a variety of ways. A <a class="reference internal" href="tethne.classes.html#tethne.classes.corpus.Corpus" title="tethne.classes.corpus.Corpus"><code class="xref py py-class docutils literal"><span class="pre">Corpus</span></code></a> behaves like a list of <a class="reference internal" href="tethne.classes.html#tethne.classes.paper.Paper" title="tethne.classes.paper.Paper"><code class="xref py py-class docutils literal"><span class="pre">Paper</span></code></a>s:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="nb">len</span><span class="p">(</span><span class="n">myCorpus</span><span class="p">)</span> <span class="c"># How many Papers do I have?</span>
<span class="go">500</span>
<span class="gp">>>> </span><span class="n">myCorpus</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="c"># Returns the first Paper.</span>
<span class="go"><tethne.classes.paper.Paper at 0x10bcde290></span>
<span class="gp">>>> </span><span class="n">myCorpus</span><span class="p">[</span><span class="o">-</span><span class="mi">1</span><span class="p">]</span> <span class="c"># Returns the last Paper.</span>
<span class="go"><tethne.classes.paper.Paper at 0x103911f50></span>
</pre></div>
</div>
<p>Depending on which module you use, <code class="docutils literal"><span class="pre">read</span></code> will make assumptions about which
field to use as the primary index for the <a class="reference internal" href="tethne.classes.html#tethne.classes.paper.Paper" title="tethne.classes.paper.Paper"><code class="xref py py-class docutils literal"><span class="pre">Paper</span></code></a>s in your dataset.
The default for Web of Science data, for example, is <code class="docutils literal"><span class="pre">'wosid'</span></code> (the value of
the <code class="docutils literal"><span class="pre">UT</span></code> field-tag).</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">myCorpus</span><span class="o">.</span><span class="n">index_by</span>
<span class="go">'wosid'</span>
</pre></div>
</div>
<p>If you’d prefer to index by a different field, you can pass the <code class="docutils literal"><span class="pre">index_by</span></code>
parameter.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">myOtherCorpus</span> <span class="o">=</span> <span class="n">wos</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/path/to/my/data.txt'</span><span class="p">,</span> <span class="n">index_by</span><span class="o">=</span><span class="s">'doi'</span><span class="p">)</span>
<span class="gp">>>> </span><span class="n">myOtherCorpus</span><span class="o">.</span><span class="n">index_by</span>
<span class="go">'doi'</span>
</pre></div>
</div>
<div class="section" id="new-in-0-8-streaming">
<h2>New in 0.8: Streaming<a class="headerlink" href="#new-in-0-8-streaming" title="Permalink to this headline">¶</a></h2>
<p>With large collections of metadata, even just tens of thousands of records,
memory consumption can get a bit out of hand. In Tethne 0.8, you can “stream”
your corpus by passing <code class="docutils literal"><span class="pre">streaming=True</span></code> to <code class="docutils literal"><span class="pre">read()</span></code> (WoS and DfR only).
Rather than hold all of your metadata in memory, Tethne will cache the metadata
on disk (look for a hidden folder called <code class="docutils literal"><span class="pre">.tethne</span></code> in your cwd), and then
access those bits of metadata that you need later on.</p>
<p>This will lead to a bit of a performance hit if you’re iterating over all of
your records, but may be a suitable trade-off if you don’t have billions of
gigabytes of RAM.</p>
</div>
<div class="section" id="new-in-0-8-parse-only">
<h2>New in 0.8: <code class="docutils literal"><span class="pre">parse_only</span></code><a class="headerlink" href="#new-in-0-8-parse-only" title="Permalink to this headline">¶</a></h2>
<p>An alternative (or complementary) approach to streaming is to only parse those
specific fields that you need for your analysis. You can now pass a list of
field names to <code class="docutils literal"><span class="pre">read()</span></code> (WoS and DfR only) using the parameter <code class="docutils literal"><span class="pre">parse_only</span></code>,
and Tethne will parse only those fields (plus the indexing field). For example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span> <span class="o">=</span> <span class="n">dfr</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/path/to/data'</span><span class="p">,</span> <span class="n">parse_only</span><span class="o">=</span><span class="p">[</span><span class="s">'title'</span><span class="p">,</span> <span class="s">'date'</span><span class="p">])</span>
<span class="gp">>>> </span><span class="n">corpus</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span><span class="o">.</span><span class="n">__dict__</span>
<span class="go">{'date': 1965, 'doi': '10.2307/4108217', 'title': 'Plant Mutations'}</span>
</pre></div>
</div>
</div>
<div class="section" id="module-specific-details">
<h2>Module-specific details<a class="headerlink" href="#module-specific-details" title="Permalink to this headline">¶</a></h2>
<p>The following sections describe specific behaviors of each of the parsing
modules.</p>
<div class="contents local topic" id="contents">
<ul class="simple">
<li><a class="reference internal" href="#web-of-science" id="id3">Web of Science</a><ul>
<li><a class="reference internal" href="#parsing-several-wos-files" id="id4">Parsing Several WoS Files</a></li>
</ul>
</li>
<li><a class="reference internal" href="#jstor-data-for-research" id="id5">JSTOR Data for Research</a><ul>
<li><a class="reference internal" href="#parsing-several-dfr-files" id="id6">Parsing Several DfR Files</a></li>
</ul>
</li>
<li><a class="reference internal" href="#zotero-rdf" id="id7">Zotero RDF</a></li>
</ul>
</div>
<div class="section" id="web-of-science">
<h3><a class="toc-backref" href="#id3">Web of Science</a><a class="headerlink" href="#web-of-science" title="Permalink to this headline">¶</a></h3>
<p>To parse a Web of Science field-tagged file, or a collection of field-tagged
files, use the <a class="reference internal" href="tethne.readers.html#tethne.readers.wos.read" title="tethne.readers.wos.read"><code class="xref py py-func docutils literal"><span class="pre">tethne.readers.wos.read()</span></code></a> method.</p>
<p>To parse a single file, provide the path to that data file. For example:</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="kn">from</span> <span class="nn">tethne.readers</span> <span class="kn">import</span> <span class="n">wos</span>
<span class="gp">>>> </span><span class="n">corpus</span> <span class="o">=</span> <span class="n">wos</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/path/to/my/data.txt'</span><span class="p">)</span>
</pre></div>
</div>
<div class="section" id="parsing-several-wos-files">
<h4><a class="toc-backref" href="#id4">Parsing Several WoS Files</a><a class="headerlink" href="#parsing-several-wos-files" title="Permalink to this headline">¶</a></h4>
<p>Often you’ll be working with datasets comprised of multiple data files. The Web
of Science database only allows you to download 500 records at a time (because
they’re dirty capitalists). You can use the <strong>``read``</strong> function to load a list
of <a href="#id1"><span class="problematic" id="id2">``</span></a>Paper``s from a directory containing multiple data files.</p>
<p>The <code class="docutils literal"><span class="pre">read</span></code> function knows that your path is a directory and not a data file;
it looks inside of that directory for WoS data files.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span> <span class="o">=</span> <span class="n">wos</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/Path/to/my/wos/data/dir'</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="jstor-data-for-research">
<h3><a class="toc-backref" href="#id5">JSTOR Data for Research</a><a class="headerlink" href="#jstor-data-for-research" title="Permalink to this headline">¶</a></h3>
<p>The DfR parsing module is <a class="reference internal" href="tethne.readers.html#module-tethne.readers.dfr" title="tethne.readers.dfr"><code class="xref py py-mod docutils literal"><span class="pre">tethne.readers.dfr</span></code></a>.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="kn">from</span> <span class="nn">tethne.readers</span> <span class="kn">import</span> <span class="n">dfr</span>
</pre></div>
</div>
<p>The DfR reader works just like the WoS reader. To load a single dataset, provide
the path to the folder created when you unzipped your dataset download (it
should contain a file called <code class="docutils literal"><span class="pre">citations.xml</span></code>).</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span> <span class="o">=</span> <span class="n">dfr</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/path/to/my/dfr'</span><span class="p">,</span> <span class="n">features</span><span class="o">=</span><span class="p">[</span><span class="s">'uni'</span><span class="p">])</span>
</pre></div>
</div>
<p>Whereas Corpora generated from WoS datasets are indexed by <code class="docutils literal"><span class="pre">wosid</span></code> by default,
Corpora generated from DfR datasets are indexed by <code class="docutils literal"><span class="pre">doi</span></code>.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span><span class="o">.</span><span class="n">indexed_papers</span><span class="o">.</span><span class="n">keys</span><span class="p">()[</span><span class="mi">0</span><span class="p">:</span><span class="mi">10</span><span class="p">]</span> <span class="c"># The first 10 dois.</span>
<span class="go">['10.2307/2418718',</span>
<span class="go"> '10.2307/2258178',</span>
<span class="go"> '10.2307/3241549',</span>
<span class="go"> '10.2307/2416998',</span>
<span class="go"> '10.2307/20000814',</span>
<span class="go"> '10.2307/2428935',</span>
<span class="go"> '10.2307/2418714',</span>
<span class="go"> '10.2307/1729159',</span>
<span class="go"> '10.2307/2407516',</span>
<span class="go"> '10.2307/2816048']</span>
</pre></div>
</div>
<p>But unlike WoS datasets, DfR datasets can contain wordcounts and N-grams in
addition to bibliographic data. <code class="docutils literal"><span class="pre">read</span></code> will find these extra data about your
Bibliographic records, and load them as
<a class="reference internal" href="tethne.classes.html#tethne.classes.feature.FeatureSet" title="tethne.classes.feature.FeatureSet"><code class="xref py py-class docutils literal"><span class="pre">tethne.classes.feature.FeatureSet</span></code></a> instances.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span><span class="o">.</span><span class="n">features</span>
<span class="go">{'authors': <tethne.classes.feature.FeatureSet at 0x100434e90>,</span>
<span class="go"> 'citations': <tethne.classes.feature.FeatureSet at 0x10041b990>,</span>
<span class="go"> 'wordcounts': <tethne.classes.feature.FeatureSet at 0x107688750>}</span>
</pre></div>
</div>
<div class="section" id="parsing-several-dfr-files">
<h4><a class="toc-backref" href="#id6">Parsing Several DfR Files</a><a class="headerlink" href="#parsing-several-dfr-files" title="Permalink to this headline">¶</a></h4>
<p>Just like the WoS parser, the DfR <code class="docutils literal"><span class="pre">read</span></code> function can load several datasets
at once. Instead of providing a path to a single dataset, provide a path to a
directory containing several datasets. <code class="docutils literal"><span class="pre">read</span></code> will look for DfR datasets, and
load them all into a single <a class="reference internal" href="tethne.classes.html#tethne.classes.corpus.Corpus" title="tethne.classes.corpus.Corpus"><code class="xref py py-class docutils literal"><span class="pre">Corpus</span></code></a>.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span> <span class="o">=</span> <span class="n">dfr</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/path/to/many/datasets'</span><span class="p">)</span>
</pre></div>
</div>
</div>
</div>
<div class="section" id="zotero-rdf">
<h3><a class="toc-backref" href="#id7">Zotero RDF</a><a class="headerlink" href="#zotero-rdf" title="Permalink to this headline">¶</a></h3>
<div class="admonition note">
<p class="first admonition-title">Note</p>
<p class="last">In previous versions, <code class="xref py py-func docutils literal"><span class="pre">Zotero.read()</span></code> required the path to the
directory created by Zotero on export. As of 0.8, the preferred
approach is to pass the full path to the RDF document. The old
behavior should also still work.</p>
</div>
<p>The Zotero parsing module is <a class="reference internal" href="tethne.readers.html#module-tethne.readers.zotero" title="tethne.readers.zotero"><code class="xref py py-mod docutils literal"><span class="pre">tethne.readers.zotero</span></code></a>.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="kn">from</span> <span class="nn">tethne.readers</span> <span class="kn">import</span> <span class="n">zotero</span>
</pre></div>
</div>
<p>The Zotero reader works just like the WoS and DfR readers. To load a single
dataset, provide the path to the RDF file.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span> <span class="o">=</span> <span class="n">zotero</span><span class="o">.</span><span class="n">read</span><span class="p">(</span><span class="s">'/path/to/my/rdf/export/export.rdf'</span><span class="p">)</span>
</pre></div>
</div>
<p>Since RDF relies on <a class="reference external" href="https://en.wikipedia.org/wiki/Uniform_Resource_Identifier">Uniform Resource Identifiers (URIs)</a>, the default
indexing field for Zotero datasets is <code class="docutils literal"><span class="pre">uri</span></code>.</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="n">corpus</span><span class="o">.</span><span class="n">indexed_papers</span><span class="o">.</span><span class="n">items</span><span class="p">()[</span><span class="mi">0</span><span class="p">:</span><span class="mi">5</span><span class="p">]</span> <span class="c"># The first 10 URIs.</span>
<span class="go">[('http://www.ncbi.nlm.nih.gov/pmc/articles/PMC3527233/',</span>
<span class="go"> <tethne.classes.paper.Paper at 0x10976dcd0>),</span>
<span class="go"> ('http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1513266/',</span>
<span class="go"> <tethne.classes.paper.Paper at 0x109dbf050>),</span>
<span class="go"> ('http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2211313/',</span>
<span class="go"> <tethne.classes.paper.Paper at 0x109712bd0>),</span>
<span class="go"> ('http://www.ncbi.nlm.nih.gov/pmc/articles/PMC2886068/',</span>
<span class="go"> <tethne.classes.paper.Paper at 0x1095dc9d0>),</span>
<span class="go"> ('http://www.ncbi.nlm.nih.gov/pmc/articles/PMC1914331/',</span>
<span class="go"> <tethne.classes.paper.Paper at 0x1095dc5d0>)]</span>
</pre></div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="spc-rightsidebar span3">
<div class="sphinxsidebarwrapper">
<p class="logo"><a href="index.html">
<img class="logo" src="_static/logo_round.png" alt="Logo">
</a></p>
<h3><a href="index.html">Table Of Contents</a></h3>
<ul>
<li><a class="reference internal" href="#">Parsing Bibliographic Metadata</a><ul>
<li><a class="reference internal" href="#new-in-0-8-streaming">New in 0.8: Streaming</a></li>
<li><a class="reference internal" href="#new-in-0-8-parse-only">New in 0.8: <code class="docutils literal"><span class="pre">parse_only</span></code></a></li>
<li><a class="reference internal" href="#module-specific-details">Module-specific details</a><ul>
<li><a class="reference internal" href="#web-of-science">Web of Science</a><ul>
<li><a class="reference internal" href="#parsing-several-wos-files">Parsing Several WoS Files</a></li>
</ul>
</li>
<li><a class="reference internal" href="#jstor-data-for-research">JSTOR Data for Research</a><ul>
<li><a class="reference internal" href="#parsing-several-dfr-files">Parsing Several DfR Files</a></li>
</ul>
</li>
<li><a class="reference internal" href="#zotero-rdf">Zotero RDF</a></li>
</ul>
</li>
</ul>
</li>
</ul>
<h3>This Page</h3>
<div>
<a href="_sources/parsing.txt"
rel="nofollow">Show Source</a>
</div>
<div class="this-page-menu">
<a href="/scipy/docs/scipy-docs/parsing.rst">Edit page</a>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container container-navbar-bottom">
<div class="spc-navbar">
</div>
</div>
<div class="container">
<div class="footer">
<div class="row-fluid">
<ul class="inline pull-left">
<li>
© Copyright 2015, ASU Digital Innovation Group.
</li>
<li>
Created using <a href="http://sphinx.pocoo.org/">Sphinx</a> 1.3.1.
</li>
</ul>
</div>
</div>
</div>
</body>
</html> |
Content/help/levelediting/level_search.html | jpmac26/PGE-Project | <!DOCTYPE html>
<html>
<head>
<meta content="en-us" http-equiv="Content-Language">
<meta charset="utf-8" />
<title>Level Items > Search </title>
<link rel="stylesheet" type="text/css" href="../style.css">
</head>
<body>
<p style="text-align: center">
<a title="Contents" href="../manual_editor.html"><img alt="Editor splash" src="../images/splash_editor.png"></a></p>
<h1 style="text-align: left">Level Items > Search</h1>
<p style="text-align: left">Also, you can find on the level map the necessary
item by it's available properties.</p>
<p style="text-align: left">Search toolbox available in the toolbar and have
this icon:
<img alt="" src="../screenshots/LevelEditing/Search/SeatchIcon.png">.</p>
<p style="text-align: left"> </p>
<p style="text-align: left"> </p>
<p style="text-align: center"><em>Search of blocks</em></p>
<p style="text-align: center">
<img alt="" height="635" src="../screenshots/LevelEditing/Search/SeatchBlock.png" width="741"></p>
<p style="text-align: center"> </p>
<p style="text-align: center"> </p>
<p style="text-align: center"><em>Search of NPC</em></p>
<p style="text-align: center">
<img alt="" src="../screenshots/LevelEditing/Search/SearchNPC.png" ></p>
<p style="text-align: left"> </p>
<p style="text-align: left"> </p>
<p style="text-align: left"> </p>
<p style="text-align: left"> </p>
<p style="text-align: left"> </p>
<p style="text-align: center"> </p>
<hr>
<p><a class="back_link" href="../manual_editor.html"><< Back</a></p><br>
<p style="text-align: center">Copyright © 2014-2016 Platformer Game Engine by
Wohlstand project.</p>
</body>
</html>
|
packages/simple/django-grappelli/index.html | JacobSheehy/pressureNETAnalysis | <a href='django-grappelli-2.4.4.tar.gz'>django-grappelli-2.4.4.tar.gz</a><br />
|
data/themes/orange/obmin.css | konkor/obmin | @import "../default/obmin.css";
@define-color obmin_base_color #323843;
@define-color obmin_bg_color orange;
|
_source/news/2019-12-22-anand-sharma.html | InstantKhabar/_source | ---
title: "पीएम के आरोप पर कांग्रेस का पलटवार, हमने नहीं आपके गृह मंत्री ने बनाया है भय का माहौल"
layout: item
category: ["politics"]
date: 2019-12-22T15:08:38.437Z
image: 1577027318437anand-sharma.jpg
---
<p>नई दिल्ली: कांग्रेस ने प्रधानमंत्री नरेंद्र मोदी के आरोपों को खारिज करते हुए कहा है कि हमारे नहीं बल्कि केंद्रीय गृह मंत्री अमित के बयान से देश में भय और अनिश्चितता का माहौल बना। मोदी ने आरोप लगाया था कि विपक्ष लोगों को भड़का रहा है और भय और अनिश्चितता का माहौल बना रहा है।</p>
<p>कांग्रेस के वरिष्ठ प्रवक्ता आनंद शर्मा ने कहा कि गृह मंत्री संसद के दोनों सदनों में बयान दिया कि देश में नए नागरिकता कानून के बाद एनआरसी लागू की जाएगी। इससे देश में भय और अनिश्चितता का माहौल बना। मौजूदा माहौल के लिए सरकार पूरी तरह जिम्मेदार है। उन्होंने कहा कि पूरे देश में नागरिकता कानून और एनआरसी के खिलाफ प्रदर्शनों को देखते हुए प्रधानमंत्री को राष्ट्रीय एकता परिषद में सभी मुख्यमंत्रियों की बैठक बुलानी चाहिए और लोगों की शांत करने का प्रयास करना चाहिए। अगर पीएम संवेदनशील है तो वे ऐसा ही करेंगे।</p>
<p>कांग्रेस नेता और राज्यसभा सदस्य प्रताप सिंह बाजवा ने राष्ट्रपति राम नाथ कोविंद से अपील की ह कि नए नागरिकता कानून का दायरा बढ़ाकर अहमदिया समुदाय को भी शामिल किया जाए क्योंकि पाकिस्तान में उनका भी धार्मिक उत्पड़न हो रहा है।</p>
<p>बाजवा ने इसके संबंध में राष्ट्रपति को एक पत्र भेजा है। नागरिकता कानून को लेकर पूरे देश में प्रदर्शनों के बीच बाजवा ने तर्क तिया है कि सरकार को मानवीय आधार पर अहमदिया समुदाय को भी नागरिकता कानून में शामिल करना चाहिए। इस समुदाय के भी लोग पाकिस्तान से धार्मिक उत्पीड़न के कारण भागकर भारत आए थे। उन्होंने पत्र में कहा है कि भारत के सिद्धांत हमेशा उत्पीड़ित लोगों को संरक्षण देने रहे हैं। लंबे अतीत से लेकर आज तक भारत विविधता में एकता को समाए रहा है। हमने अल्पसंख्यकों को संरक्षण दिया है।</p>
<p>बाजवा ने कहा कि महात्मा गांधी की 150वीं जयंती पर हम लोगों से अपील करते हैं कि वे सरकार से मांग करें कि हमारे आसपास उत्पीड़न के शिकार लोगों को संरक्षण देना जारी रखा जाए और इसके लिए नागरिकता कानून का दायरा बढ़ाया जा।</p> |
doc/overview-tree.html | obale/semantic_parser | <!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_18) on Mon Jul 19 17:18:18 CEST 2010 -->
<TITLE>
Class Hierarchy
</TITLE>
<META NAME="date" CONTENT="2010-07-19">
<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="Class Hierarchy";
}
}
</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"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </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?overview-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="overview-tree.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>
Hierarchy For All Packages</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="to/networld/scrawler/package-tree.html">to.networld.scrawler</A>, <A HREF="to/networld/scrawler/annotations/package-tree.html">to.networld.scrawler.annotations</A>, <A HREF="to/networld/scrawler/common/package-tree.html">to.networld.scrawler.common</A>, <A HREF="to/networld/scrawler/doap/package-tree.html">to.networld.scrawler.doap</A>, <A HREF="to/networld/scrawler/foaf/package-tree.html">to.networld.scrawler.foaf</A>, <A HREF="to/networld/scrawler/interfaces/package-tree.html">to.networld.scrawler.interfaces</A>, <A HREF="to/networld/scrawler/rdfa/package-tree.html">to.networld.scrawler.rdfa</A>, <A HREF="to/networld/scrawler/scubadive/package-tree.html">to.networld.scrawler.scubadive</A>, <A HREF="to/networld/scrawler/tests/package-tree.html">to.networld.scrawler.tests</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">to.networld.scrawler.tests.<A HREF="to/networld/scrawler/tests/IFOAFAgentTest.html" title="class in to.networld.scrawler.tests"><B>IFOAFAgentTest</B></A><LI TYPE="circle">to.networld.scrawler.<A HREF="to/networld/scrawler/Main.html" title="class in to.networld.scrawler"><B>Main</B></A><LI TYPE="circle">to.networld.scrawler.common.<A HREF="to/networld/scrawler/common/Ontologies.html" title="class in to.networld.scrawler.common"><B>Ontologies</B></A><LI TYPE="circle">to.networld.scrawler.common.<A HREF="to/networld/scrawler/common/RDFParser.html" title="class in to.networld.scrawler.common"><B>RDFParser</B></A><UL>
<LI TYPE="circle">to.networld.scrawler.scubadive.<A HREF="to/networld/scrawler/scubadive/Buddy.html" title="class in to.networld.scrawler.scubadive"><B>Buddy</B></A> (implements to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IScubaDiveBuddy.html" title="interface in to.networld.scrawler.interfaces">IScubaDiveBuddy</A>)
<LI TYPE="circle">to.networld.scrawler.scubadive.<A HREF="to/networld/scrawler/scubadive/Dive.html" title="class in to.networld.scrawler.scubadive"><B>Dive</B></A> (implements to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IScubaDiveDive.html" title="interface in to.networld.scrawler.interfaces">IScubaDiveDive</A>)
<LI TYPE="circle">to.networld.scrawler.doap.<A HREF="to/networld/scrawler/doap/DOAPOrganization.html" title="class in to.networld.scrawler.doap"><B>DOAPOrganization</B></A> (implements to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IDOAPOrganization.html" title="interface in to.networld.scrawler.interfaces">IDOAPOrganization</A>)
<LI TYPE="circle">to.networld.scrawler.rdfa.<A HREF="to/networld/scrawler/rdfa/MetaData.html" title="class in to.networld.scrawler.rdfa"><B>MetaData</B></A><LI TYPE="circle">to.networld.scrawler.foaf.<A HREF="to/networld/scrawler/foaf/Person.html" title="class in to.networld.scrawler.foaf"><B>Person</B></A> (implements to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IFOAFPerson.html" title="interface in to.networld.scrawler.interfaces">IFOAFPerson</A>)
</UL>
</UL>
</UL>
<H2>
Interface Hierarchy
</H2>
<UL>
<LI TYPE="circle">to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IDOAPOrganization.html" title="interface in to.networld.scrawler.interfaces"><B>IDOAPOrganization</B></A><LI TYPE="circle">to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IRDFEntity.html" title="interface in to.networld.scrawler.interfaces"><B>IRDFEntity</B></A><UL>
<LI TYPE="circle">to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IFOAFPerson.html" title="interface in to.networld.scrawler.interfaces"><B>IFOAFPerson</B></A></UL>
<LI TYPE="circle">to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IScubaDiveBuddy.html" title="interface in to.networld.scrawler.interfaces"><B>IScubaDiveBuddy</B></A><LI TYPE="circle">to.networld.scrawler.interfaces.<A HREF="to/networld/scrawler/interfaces/IScubaDiveDive.html" title="interface in to.networld.scrawler.interfaces"><B>IScubaDiveDive</B></A></UL>
<H2>
Annotation Type Hierarchy
</H2>
<UL>
<LI TYPE="circle">to.networld.scrawler.annotations.<A HREF="to/networld/scrawler/annotations/RDFEntity.html" title="annotation in to.networld.scrawler.annotations"><B>RDFEntity</B></A> (implements java.lang.annotation.Annotation)
<LI TYPE="circle">to.networld.scrawler.annotations.<A HREF="to/networld/scrawler/annotations/RDFProperty.html" title="annotation in to.networld.scrawler.annotations"><B>RDFProperty</B></A> (implements java.lang.annotation.Annotation)
</UL>
<H2>
Enum Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">java.lang.Enum<E> (implements java.lang.Comparable<T>, java.io.Serializable)
<UL>
<LI TYPE="circle">to.networld.scrawler.annotations.<A HREF="to/networld/scrawler/annotations/RDFProperty.Type.html" title="enum in to.networld.scrawler.annotations"><B>RDFProperty.Type</B></A></UL>
</UL>
</UL>
<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"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </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?overview-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="overview-tree.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>
|
src/css/utility.css | factorone/Modular-CMS | /* -- Utility Classes --*/
.margin-top { margin-top: 1.25rem; }
.margin-right { margin-right: 1.25rem; }
.margin-bottom { margin-bottom: 1.25rem; }
.margin-left { margin-left: 1.25rem; }
.margin-x { margin: 0 1.25rem !important; }
.margin-y { margin: 1.25rem 0 !important; }
.margin-all { margin: 1.25rem; }
.margin-auto { margin: auto; }
.margin-top-0 { margin-top: 0 !important; }
.margin-right-0 { margin-right: 0 !important; }
.margin-bottom-0 { margin-bottom: 0 !important; }
.margin-left-0 { margin-left: 0 !important; }
.margin-none { margin: 0 !important; }
.pad-top { padding-top: 1.25rem;}
.pad-right { padding-right: 1.25rem; }
.pad-bottom { padding-bottom: 1.25rem; }
.pad-left { padding-left: 1.25rem; }
.pad-x { padding: 0 1.25rem !important; }
.pad-y { padding: 1.25rem 0 !important; }
.pad-all { padding: 1.25rem }
.pad-top-0 { padding-top: 0 !important; }
.pad-right-0 { padding-right: 0 !important; }
.pad-bottom-0 { padding-bottom: 0 !important; }
.pad-left-0 { padding-left: 0 !important; }
.pad-none { padding: 0 !important; }
.float-none { float: none !important; }
.float-left { float: left !important; }
.float-right { float: right !important; }
.border--top { border-top: 1px solid #ebebeb; }
.border--right { border-right: 1px solid #ebebeb; }
.border--bottom { border-bottom: 1px solid #ebebeb; }
.border--left { border-left: 1px solid #ebebeb; }
.border--x {
border-right: 1px solid #ebebeb;
border-left: 1px solid #ebebeb;
}
.border--y {
border-top: 1px solid #ebebeb;
border-bottom: 1px solid #ebebeb;
}
.border--3 { border-width: 3px; }
.border--5 { border-width: 5px; }
.border--10 { border-width: 10px; }
.border--none { border: 0; }
.border--top-none { border-top: 0; }
.border--right-none { border-right: 0; }
.border--bottom-none { border-bottom: 0; }
.border--left-none { border-left: 0; }
.clear-both { clear: both; }
.clear-right { clear: right; }
.clear-left { clear: left; }
.clear-none { clear: none; }
.text-inherit { text-align: inherit; }
.text-italic { font-style: italic; }
.text-normal { font-style: normal; }
.text-bold { font-weight: bold; }
.text-transnone { text-transform: none; }
.text-uppercase { text-transform: uppercase; }
.text-capitalize { text-transform: capitalize; }
.text-lowercase { text-transform: lowercase; }
.text-nowrap { white-space: nowrap; }
.radius,
.radius-three {
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
}
.radius-five {
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
}
.radius-ten {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
.radius-twenty {
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
}
.radius-fourty {
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
border-radius: 40px;
} |
doc/es/usal/tfg/security/package-summary.html | AythaE/Demos_Rest | <!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_91) on Mon Jul 04 13:59:32 CEST 2016 -->
<title>es.usal.tfg.security</title>
<meta name="date" content="2016-07-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="es.usal.tfg.security";
}
}
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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.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="../../../../es/usal/tfg/imageProcessing/package-summary.html">Prev Package</a></li>
<li>Next Package</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?es/usal/tfg/security/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package es.usal.tfg.security</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../es/usal/tfg/security/PasswordStorage.html" title="class in es.usal.tfg.security">PasswordStorage</a></td>
<td class="colLast">
<div class="block">Clase PasswordStorage encargada de crear hashes de las contraseñas de campaña
para su almacenamiento en la base de datos de campañas y de comparar
contraseñas para determinar si son iguales a las almacenadas</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../es/usal/tfg/security/SymmetricEncryption.html" title="class in es.usal.tfg.security">SymmetricEncryption</a></td>
<td class="colLast">
<div class="block">Clase SymmetricEncryption creada para las tareas de encriptado y
desencriptado con
<a href="https://es.wikipedia.org/wiki/Advanced_Encryption_Standard">AES</a>
necesarias en el servidor.</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Exception Summary table, listing exceptions, and an explanation">
<caption><span>Exception Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Exception</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../es/usal/tfg/security/PasswordStorage.CannotPerformOperationException.html" title="class in es.usal.tfg.security">PasswordStorage.CannotPerformOperationException</a></td>
<td class="colLast"> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../es/usal/tfg/security/PasswordStorage.InvalidHashException.html" title="class in es.usal.tfg.security">PasswordStorage.InvalidHashException</a></td>
<td class="colLast"> </td>
</tr>
</tbody>
</table>
</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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.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="../../../../es/usal/tfg/imageProcessing/package-summary.html">Prev Package</a></li>
<li>Next Package</li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?es/usal/tfg/security/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.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>
|
homework5/task1.html | shirrick/xyzzygo | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Task1</title>
<link rel="stylesheet" href="task1.css">
</head>
<body>
<div class="menutop">
<ul class="overscore">
<li><a href="#">HOME</a></li>
<li>NEWS
<div class="news select"><ul>
<li><a href="#">World</a></li>
<li><a href="#">Politics</a></li>
<li><a href="#">Economics</a></li>
<li><a href="#">Technology</a></li>
<li><a href="#">Current Events</a></li>
</ul>
</div>
</li>
<li>ECONOMICS
<div class="economics select"><ul>
<li><a href="#">World</a></li>
<li><a href="#">Stocks</a></li>
<li><a href="#">Trends</a></li>
<li><a href="#">Real Estate</a></li>
</ul>
</div>
</li>
<li>LOCAL
<div class="local select"><ul>
<li><a href="#">Sports</a></li>
<li><a href="#">Markets</a></li>
<li><a href="#">Politics</a></li>
<li><a href="#">Art</a></li>
<li><a href="#">Scene</a></li>
</ul>
</div>
</li>
<li>SPORT
<div class="sport select"><ul>
<li><a href="#">Soccer</a></li>
<li><a href="#">Football</a></li>
<li><a href="#">NASCAR</a></li>
<li><a href="#">Tennis</a></li>
</ul>
</div>
</li>
<li>CULTURE
<div class="culture select"><ul>
<li><a href="#">Galleries</a></li>
<li><a href="#">Shows</a></li>
<li><a href="#">Plays</a></li>
<li><a href="#">Exhibits</a></li>
</ul>
</div>
</li>
<li>TRAVEL
<div class="travel select"><ul>
<li><a href="#">Amsterdam</a></li>
<li><a href="#">Bahamas</a></li>
<li><a href="#">Jamaica</a></li>
<li><a href="#">Las Vegas</a></li>
<li><a href="#">London</a></li>
<li><a href="#">Los Angeles</a></li>
<li><a href="#">Miami</a></li>
<li><a href="#">Montreal</a></li>
<li><a href="#">Paris</a></li>
<li><a href="#">Rome</a></li>
</ul>
</div>
</li>
<li>LIVING
<div class="living select"><ul>
<li><a href="#">Health</a></li>
<li><a href="#">Lifestyle</a></li>
<li><a href="#">Shopping</a></li>
<li><a href="#">Celebrities</a></li>
</ul>
</div>
</li>
<li>MONEY
<div class="money select"><ul>
<li><a href="#">Stocks</a></li>
<li><a href="#">Currency</a></li>
<li><a href="#">Investment</a></li>
<li><a href="#">Banking</a></li>
</ul>
</div>
</li>
<li>TECHNOLOGY
<div class="technology select"><ul>
<li><a href="#">Computers</a></li>
<li><a href="#">Mobile</a></li>
<li><a href="#">Auto</a></li>
<li><a href="#">Aerospace</a></li>
</ul>
</div>
</li>
<li>MORE
<div class="more select"><ul>
<li><a href="#">Editorial</a></li>
<li><a href="#">Copyright</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Team</a></li>
</ul>
</div>
</li>
</ul>
</div>
</body>
</html>
|
_source/news/20266-national.html | InstantKhabar/_source | ---
title: "निर्भया पर बनी डॉक्यूमेंट्री पर बैन गलत: एडिटर्स गिल्ड"
layout: item
category: india
date: 2015-03-06T13:16:36.000Z
image: cad963f6810517388fee7b56893e3ff6.jpg
---
<p style="text-align: justify;">नई दिल्ली: एडिटर्स गिल्ड ऑफ इंडिया ने सरकार से बीबीसी के वृतचित्र के प्रसारण पर लगाए गए प्रतिबंध को हटाने की मांग की है। इस वृतचित्र में 2012 के निर्भया सामूहिक बलात्कार एवं हत्या के बाद की स्थिति को दर्शाया गया है।</p>
<p style="text-align: justify;">गिल्ड ने कहा है कि यह कदम गैर जरूरी था और उसने केंद्र सरकार से प्रतिबंध हटाने की मांग की है।</p>
<p style="text-align: justify;">गिल्ड ने अपने बयान में कहा कि वृत्तचित्र इंडियाज़ डाटर में एक ऐसे परिवार के साहस, समझबूझ और उदारवादी सोच को दर्शाया गया है, जो अपनी बच्ची के साथ हुई इस तरह की बर्बरता से पीड़ित है और जहां महिलाओं के प्रति दोषी समेत वकील एवं शिक्षित वर्ग का इस तरह का शर्मनाक रुख है।</p>
<p style="text-align: justify;">एडिटर्स गिल्ड ने अपने बयान में कहा कि उनका तर्क कि प्रतिबंध न्याय के हित में और व्यवस्था बनाए रखने के लिए लगाया गया, क्योंकि फिल्म तनाव की स्थिति पैदा करने के साथ महिलाओं में भय पैदा कर रही थी और दोषी मामले में अपील के लिए मीडिया का इस्तेमाल कर सकते थे.. प्रतीत होता है कि यह उत्तरचिंतन था।</p> |
QMOLEDEV/maxima-5.29.1/doc/info/pt.utf8/maxima_24.html | chriskmanx/qmole | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html401/loose.dtd">
<html>
<!-- Created on Dezembro, 3 2012 by texi2html 1.76 -->
<!--
Written by: Lionel Cons <Lionel.Cons@cern.ch> (original author)
Karl Berry <karl@freefriends.org>
Olaf Bachmann <obachman@mathematik.uni-kl.de>
and many others.
Maintained by: Many creative people <dev@texi2html.cvshome.org>
Send bugs and suggestions to <users@texi2html.cvshome.org>
-->
<head>
<title>Manual do Maxima: 24. Arrays</title>
<meta name="description" content="Manual do Maxima: 24. Arrays">
<meta name="keywords" content="Manual do Maxima: 24. Arrays">
<meta name="resource-type" content="document">
<meta name="distribution" content="global">
<meta name="Generator" content="texi2html 1.76">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<style type="text/css">
<!--
a.summary-letter {text-decoration: none}
pre.display {font-family: serif}
pre.format {font-family: serif}
pre.menu-comment {font-family: serif}
pre.menu-preformatted {font-family: serif}
pre.smalldisplay {font-family: serif; font-size: smaller}
pre.smallexample {font-size: smaller}
pre.smallformat {font-family: serif; font-size: smaller}
pre.smalllisp {font-size: smaller}
span.sansserif {font-family:sans-serif; font-weight:normal;}
ul.toc {list-style: none}
body
{
color: black;
background: white;
margin-left: 8%;
margin-right: 13%;
}
h1
{
margin-left: +8%;
font-size: 150%;
font-family: sans-serif
}
h2
{
font-size: 125%;
font-family: sans-serif
}
h3
{
font-size: 100%;
font-family: sans-serif
}
h2,h3,h4,h5,h6 { margin-left: +4%; }
div.textbox
{
border: solid;
border-width: thin;
/* width: 100%; */
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
padding-right: 2em
}
div.titlebox
{
border: none;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
padding-right: 2em;
background: rgb(200,255,255);
font-family: sans-serif
}
div.synopsisbox
{
border: none;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 2em;
padding-right: 2em;
background: rgb(255,220,255);
/*background: rgb(200,255,255); */
/* font-family: fixed */
}
pre.example
{
border: 1px solid gray;
padding-top: 1em;
padding-bottom: 1em;
padding-left: 1em;
padding-right: 1em;
/* background: rgb(247,242,180); */ /* kind of sandy */
/* background: rgb(200,255,255); */ /* sky blue */
background-color: #F1F5F9; /* light blue-gray */
/* font-family: "Lucida Console", monospace */
}
div.spacerbox
{
border: none;
padding-top: 2em;
padding-bottom: 2em
}
div.image
{
margin: 0;
padding: 1em;
text-align: center;
}
div.categorybox
{
border: 1px solid gray;
padding-top: 0px;
padding-bottom: 0px;
padding-left: 1em;
padding-right: 1em;
background: rgb(247,242,220);
}
-->
</style>
<link rel="icon" href="http://maxima.sourceforge.net/favicon.ico"/>
</head>
<body lang="pt" bgcolor="#FFFFFF" text="#000000" link="#0000FF" vlink="#800080" alink="#FF0000">
<a name="Arrays"></a>
<a name="SEC78"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="maxima_23.html#SEC77" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="#SEC79" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima_23.html#SEC73" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_25.html#SEC80" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_74.html#SEC274" title="Index">Índice</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h1 class="chapter"> 24. Arrays </h1>
<table class="menu" border="0" cellspacing="0">
<tr><td align="left" valign="top"><a href="#SEC79">24.1 Definições para Arrays</a></td><td> </td><td align="left" valign="top">
</td></tr>
</table>
<hr size="6">
<a name="Defini_00e7_00f5es-para-Arrays"></a>
<a name="SEC79"></a>
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC78" title="Previous section in reading order"> < </a>]</td>
<td valign="middle" align="left">[<a href="maxima_25.html#SEC80" title="Next section in reading order"> > </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="#SEC78" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="#SEC78" title="Up section"> Up </a>]</td>
<td valign="middle" align="left">[<a href="maxima_25.html#SEC80" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_74.html#SEC274" title="Index">Índice</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<h2 class="section"> 24.1 Definições para Arrays </h2>
<dl>
<dt><u>Função:</u> <b>array</b><i> (<var>name</var>, <var>dim_1</var>, ..., <var>dim_n</var>)</i>
<a name="IDX732"></a>
</dt>
<dt><u>Função:</u> <b>array</b><i> (<var>name</var>, <var>type</var>, <var>dim_1</var>, ..., <var>dim_n</var>)</i>
<a name="IDX733"></a>
</dt>
<dt><u>Função:</u> <b>array</b><i> ([<var>nome_1</var>, ..., <var>nome_m</var>], <var>dim_1</var>, ..., <var>dim_n</var>)</i>
<a name="IDX734"></a>
</dt>
<dd><p>Cria um array <em>n</em>-dimensional.
<em>n</em> pode ser menor ou igual a 5.
Os subscritos para
a <em>i</em>'ésima dimensão são inteiros no intervalo de 0 a <var>dim_i</var>.
</p>
<p><code>array (<var>name</var>, <var>dim_1</var>, ..., <var>dim_n</var>)</code> cria um array genérico.
</p>
<p><code>array (<var>name</var>, <var>type</var>, <var>dim_1</var>, ..., <var>dim_n</var>)</code> cria
um array, com elementos de um tipo especificado.
<var>type</var> pode ser <code>fixnum</code> para
inteiros de tamanho limitado ou <code>flonum</code> para números em ponto flutuante.
</p>
<p><code>array ([<var>nome_1</var>, ..., <var>nome_m</var>], <var>dim_1</var>, ..., <var>dim_n</var>)</code>
cria <em>m</em> arrays, todos da mesma dimensão.
</p>
<p>Se o utilizador atribui a uma variável subscrita antes de declarar o
array correspondente, um array não declarado é criado.
Arrays não declarados, também conhecidos como array desordenado (porque
o codigo desordenado termina nos subscritos), são mais gerais que arrays
declarados. O utilizador não declara seu tamanho máximo, e ele cresce
dinamicamente e desordenadamente à medida que são atribuídos valores a mais elementos. Os
subscritos de um array não declarado não precisam sempre ser números. Todavia,
excepto para um array um tanto quanto esparso, é provavelmente mais eficiente
declarar isso quando possível que deixar não declarado. A função <code>array</code>
pode ser usada para transformar um array não declarado em um array
declarado.
</p>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>arrayapply</b><i> (<var>A</var>, [<var>i_1</var>, ..., <var>i_n</var>])</i>
<a name="IDX735"></a>
</dt>
<dd><p>Avalia <code><var>A</var> [<var>i_1</var>, ..., <var>i_n</var>]</code>,
quando <var>A</var> for um array e <var>i_1</var>, ..., <var>i_n</var> são inteiros.
</p>
<p>Ela é remanescente de <code>apply</code>, excepto o primeiro argumento que é um array ao invés de uma função.
</p>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>arrayinfo</b><i> (<var>A</var>)</i>
<a name="IDX736"></a>
</dt>
<dd><p>Retorna informações sobre o array <var>A</var>.
O argumento <var>A</var> pode ser um array declarado, uma array não declarado ( que sofreu um hash),
uma função de array, ou uma função que possui subscrito.
</p>
<p>Para arrays declarados, <code>arrayinfo</code> retorna uma lista
compreendendo o átomo <code>declared</code>, o n;umero de dimensões, e o tamanho de cada dimensão.
Os elementos do array, ambos associados e não associados, são retornados por <code>listarray</code>.
</p>
<p>Para arrays não declarados (arrays que sofreram um hash),
<code>arrayinfo</code> retorna uma lista compreendendo o átomo <code>hashed</code>, o número de subscritos,
e os subscritos de de todo elemento que tiver um valor.
Os valores são retornados por meio de <code>listarray</code>.
</p>
<p>Para funções de array,
<code>arrayinfo</code> retretorna uma lista compreendendo o átomo <code>hashed</code>, o número de subscritos,
e quaisquer valores de subscritos para os quais exista valores funcionais armazenados.
Os valores funcionais armazenados são retornados através de <code>listarray</code>.
</p>
<p>Para funções que possuem subscritos,
<code>arrayinfo</code> retorna uma lista compreendendo o átomo <code>hashed</code>, o número de subscritos,
e qualquer valores subscritos para os quais existe uma expressões lambda.
As expressões lambda são retornadas por <code>listarray</code>.
</p>
<p>Examples:
</p>
<p><code>arrayinfo</code> e <code>listarray</code> aplicado a um array declarado.
</p>
<pre class="example">(%i1) array (aa, 2, 3);
(%o1) aa
(%i2) aa [2, 3] : %pi;
(%o2) %pi
(%i3) aa [1, 2] : %e;
(%o3) %e
(%i4) arrayinfo (aa);
(%o4) [declared, 2, [2, 3]]
(%i5) listarray (aa);
(%o5) [#####, #####, #####, #####, #####, #####, %e, #####,
#####, #####, #####, %pi]
</pre>
<p><code>arrayinfo</code> e <code>listarray</code> aplicado a um array não declarado (no qual foi aplicado um hash).
</p>
<pre class="example">(%i1) bb [FOO] : (a + b)^2;
2
(%o1) (b + a)
(%i2) bb [BAR] : (c - d)^3;
3
(%o2) (c - d)
(%i3) arrayinfo (bb);
(%o3) [hashed, 1, [BAR], [FOO]]
(%i4) listarray (bb);
3 2
(%o4) [(c - d) , (b + a) ]
</pre>
<p><code>arrayinfo</code> e <code>listarray</code> aplicado a uma função de array.
</p>
<pre class="example">(%i1) cc [x, y] := y / x;
y
(%o1) cc := -
x, y x
(%i2) cc [u, v];
v
(%o2) -
u
(%i3) cc [4, z];
z
(%o3) -
4
(%i4) arrayinfo (cc);
(%o4) [hashed, 2, [4, z], [u, v]]
(%i5) listarray (cc);
z v
(%o5) [-, -]
4 u
</pre>
<p><code>arrayinfo</code> e <code>listarray</code> aplicadas a funções com subscritos.
</p>
<pre class="example">(%i1) dd [x] (y) := y ^ x;
x
(%o1) dd (y) := y
x
(%i2) dd [a + b];
b + a
(%o2) lambda([y], y )
(%i3) dd [v - u];
v - u
(%o3) lambda([y], y )
(%i4) arrayinfo (dd);
(%o4) [hashed, 1, [b + a], [v - u]]
(%i5) listarray (dd);
b + a v - u
(%o5) [lambda([y], y ), lambda([y], y )]
</pre></dd></dl>
<dl>
<dt><u>Função:</u> <b>arraymake</b><i> (<var>A</var>, [<var>i_1</var>, ..., <var>i_n</var>])</i>
<a name="IDX737"></a>
</dt>
<dd><p>Retorna a expressão <code><var>A</var>[<var>i_1</var>, ..., <var>i_n</var>]</code>.
O resultado é uma referência a um array não avaliado.
</p>
<p><code>arraymake</code> é remanicência de <code>funmake</code>,
excepto o valor retornado é um array de referência não avaliado
ao invés de uma chamada de função não avaliada.
</p>
<p>Exemplos:
</p>
<pre class="example">(%i1) arraymake (A, [1]);
(%o1) A
1
(%i2) arraymake (A, [k]);
(%o2) A
k
(%i3) arraymake (A, [i, j, 3]);
(%o3) A
i, j, 3
(%i4) array (A, fixnum, 10);
(%o4) A
(%i5) fillarray (A, makelist (i^2, i, 1, 11));
(%o5) A
(%i6) arraymake (A, [5]);
(%o6) A
5
(%i7) ''%;
(%o7) 36
(%i8) L : [a, b, c, d, e];
(%o8) [a, b, c, d, e]
(%i9) arraymake ('L, [n]);
(%o9) L
n
(%i10) ''%, n = 3;
(%o10) c
(%i11) A2 : make_array (fixnum, 10);
(%o11) {Array: #(0 0 0 0 0 0 0 0 0 0)}
(%i12) fillarray (A2, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
(%o12) {Array: #(1 2 3 4 5 6 7 8 9 10)}
(%i13) arraymake ('A2, [8]);
(%o13) A2
8
(%i14) ''%;
(%o14) 9
</pre>
</dd></dl>
<dl>
<dt><u>Variável de sistema:</u> <b>arrays</b>
<a name="IDX738"></a>
</dt>
<dd><p>Valor por omissão: <code>[]</code>
</p>
<p><code>arrays</code> é uma lista dos arrays que tiverem sido alocados.
Essa lista compreende arrays declarados através de <code>array</code>,
arrays desordenados (hashed) construídos através de definição implícita (atribuindo alguma coisa a um elemento de array),
e funções de array definidas por meio de <code>:=</code> e <code>define</code>.
Arrays definidos por meio de <code>make_array</code> não estão incluídos.
</p>
<p>Veja também
<code>array</code>, <code>arrayapply</code>, <code>arrayinfo</code>, <code>arraymake</code>,
<code>fillarray</code>, <code>listarray</code>, e <code>rearray</code>.
</p>
<p>Exemplos:
</p>
<pre class="example">(%i1) array (aa, 5, 7);
(%o1) aa
(%i2) bb [FOO] : (a + b)^2;
2
(%o2) (b + a)
(%i3) cc [x] := x/100;
x
(%o3) cc := ---
x 100
(%i4) dd : make_array ('any, 7);
(%o4) {Array: #(NIL NIL NIL NIL NIL NIL NIL)}
(%i5) arrays;
(%o5) [aa, bb, cc]
</pre>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>bashindices</b><i> (<var>expr</var>)</i>
<a name="IDX739"></a>
</dt>
<dd><p>Transforma a expressão <var>expr</var> dando a cada
somatório e a cada produto um único índice. Isso dá a <code>changevar</code> grande
precisão quando se está trabalhando com somatórios e produtos. A forma do
único índice é <code>j<var>number</var></code>. A quantidade <var>number</var> é determindad por
referência a <code>gensumnum</code>, que pode ser alterada pelo utilizador. Por
exemplo, <code>gensumnum:0$</code> reseta isso.
</p>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>fillarray</b><i> (<var>A</var>, <var>B</var>)</i>
<a name="IDX740"></a>
</dt>
<dd><p>Preenche o array <var>A</var> com <var>B</var>, que é uma lista ou um array.
</p>
<p>Se um tipo específico for declarado para <var>A</var> no momento de sua criação,
<var>A</var> somente porde ser preenchido com elementos do tipo especificado;
Constitui um erro alguma tentativa feita para copiar um um elemento de um tipo diferente.
</p>
<p>Se as dimensões dos arrays <var>A</var> e <var>B</var> forem
diferents, <var>A</var> é preenchido no ordem de maior fileira. Se não existirem elementos
livres em <var>B</var> o último elemento é usado para preencher todo o
resto de <var>A</var>. Se existirem muitos , esses restantes seram ignorados.
</p>
<p><code>fillarray</code> retorna esse primeiro argumento.
</p>
<p>Exemplos:
</p>
<p>Create an array of 9 elements and fill it from a list.
</p>
<pre class="example">(%i1) array (a1, fixnum, 8);
(%o1) a1
(%i2) listarray (a1);
(%o2) [0, 0, 0, 0, 0, 0, 0, 0, 0]
(%i3) fillarray (a1, [1, 2, 3, 4, 5, 6, 7, 8, 9]);
(%o3) a1
(%i4) listarray (a1);
(%o4) [1, 2, 3, 4, 5, 6, 7, 8, 9]
</pre>
<p>Quando existirem poucos elementos para preencher o array,
o último elemento é repetido.
Quando houverem muitos elementos,
os elementos extras são ignorados.
</p>
<pre class="example">(%i1) a2 : make_array (fixnum, 8);
(%o1) {Array: #(0 0 0 0 0 0 0 0)}
(%i2) fillarray (a2, [1, 2, 3, 4, 5]);
(%o2) {Array: #(1 2 3 4 5 5 5 5)}
(%i3) fillarray (a2, [4]);
(%o3) {Array: #(4 4 4 4 4 4 4 4)}
(%i4) fillarray (a2, makelist (i, i, 1, 100));
(%o4) {Array: #(1 2 3 4 5 6 7 8)}
</pre>
<p>Arrays multi-dimensionais são preenchidos em ordem de maior fileira.
</p>
<pre class="example">(%i1) a3 : make_array (fixnum, 2, 5);
(%o1) {Array: #2A((0 0 0 0 0) (0 0 0 0 0))}
(%i2) fillarray (a3, [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]);
(%o2) {Array: #2A((1 2 3 4 5) (6 7 8 9 10))}
(%i3) a4 : make_array (fixnum, 5, 2);
(%o3) {Array: #2A((0 0) (0 0) (0 0) (0 0) (0 0))}
(%i4) fillarray (a4, a3);
(%o4) {Array: #2A((1 2) (3 4) (5 6) (7 8) (9 10))}
</pre>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>listarray</b><i> (<var>A</var>)</i>
<a name="IDX741"></a>
</dt>
<dd><p>Retorna uma lista dos elementos do array <var>A</var>.
O argumento <var>A</var> pode ser um array declarado, um array não declarado (desordenado - hashed),
uma função de array, ou uma função com subscritos.
</p>
<p>Elementos são listados em ordem de linha maior.
Isto é, elementos são ordenados conforme o primeiro índice, en seguida conforme o segundo índice, e assim sucessivamente.
A sequuência de ordenação por meio dos valores dos índices é a mesma ordem estabelecida por meio de <code>orderless</code>.
</p>
<p>Para arrays não declarados , funções de arrays, e funções com subscritos,
os elementos correspondem aos valores de índice retornados através de <code>arrayinfo</code>.
</p>
<p>Elemetos não associados de arrays genéricos declarados (isto é, não <code>fixnum</code> e não <code>flonum</code>)
são retornados como <code>#####</code>.
Elementos não associados de arrays declarados <code>fixnum</code> ou <code>flonum</code>
são retornados como 0 ou 0.0, respectivamente.
Elementos não associados de arrays não declarados, funções de array,
e funções subscritas não são retornados.
</p>
<p>Exemplos:
</p>
<p><code>listarray</code> e <code>arrayinfo</code> aplicados a um array declarado.
</p>
<pre class="example">(%i1) array (aa, 2, 3);
(%o1) aa
(%i2) aa [2, 3] : %pi;
(%o2) %pi
(%i3) aa [1, 2] : %e;
(%o3) %e
(%i4) listarray (aa);
(%o4) [#####, #####, #####, #####, #####, #####, %e, #####,
#####, #####, #####, %pi]
(%i5) arrayinfo (aa);
(%o5) [declared, 2, [2, 3]]
</pre>
<p><code>listarray</code> e <code>arrayinfo</code> aplicadas a arrays não declarados (hashed - desordenados).
</p>
<pre class="example">(%i1) bb [FOO] : (a + b)^2;
2
(%o1) (b + a)
(%i2) bb [BAR] : (c - d)^3;
3
(%o2) (c - d)
(%i3) listarray (bb);
3 2
(%o3) [(c - d) , (b + a) ]
(%i4) arrayinfo (bb);
(%o4) [hashed, 1, [BAR], [FOO]]
</pre>
<p><code>listarray</code> e <code>arrayinfo</code> aplicada a uma função de array.
</p>
<pre class="example">(%i1) cc [x, y] := y / x;
y
(%o1) cc := -
x, y x
(%i2) cc [u, v];
v
(%o2) -
u
(%i3) cc [4, z];
z
(%o3) -
4
(%i4) listarray (cc);
z v
(%o4) [-, -]
4 u
(%i5) arrayinfo (cc);
(%o5) [hashed, 2, [4, z], [u, v]]
</pre>
<p><code>listarray</code> e <code>arrayinfo</code> aplicadas a funções com subscritos.
</p>
<pre class="example">(%i1) dd [x] (y) := y ^ x;
x
(%o1) dd (y) := y
x
(%i2) dd [a + b];
b + a
(%o2) lambda([y], y )
(%i3) dd [v - u];
v - u
(%o3) lambda([y], y )
(%i4) listarray (dd);
b + a v - u
(%o4) [lambda([y], y ), lambda([y], y )]
(%i5) arrayinfo (dd);
(%o5) [hashed, 1, [b + a], [v - u]]
</pre>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>make_array</b><i> (<var>type</var>, <var>dim_1</var>, ..., <var>dim_n</var>)</i>
<a name="IDX742"></a>
</dt>
<dd><p>Cria e retorna um array de Lisp. <var>type</var> pode
ser <code>any</code>, <code>flonum</code>, <code>fixnum</code>, <code>hashed</code> ou
<code>functional</code>.
Existem <em>n</em> indices,
e o <em>i</em>'enésimo indice está no intervalo de 0 a <em><var>dim_i</var> - 1</em>.
</p>
<p>A vantagem de <code>make_array</code> sobre <code>array</code> é que o valor de retorno não tem
um nome, e uma vez que um ponteiro a ele vai, ele irá também.
Por exemplo, se <code>y: make_array (...)</code> então <code>y</code> aponta para um objecto
que ocupa espaço, mas depois de <code>y: false</code>, <code>y</code> não mais
aponta para aquele objecto, então o objecto pode ser descartado.
</p>
<p>Exemplos:
</p>
<pre class="example">(%i1) A1 : make_array (fixnum, 10);
(%o1) {Array: #(0 0 0 0 0 0 0 0 0 0)}
(%i2) A1 [8] : 1729;
(%o2) 1729
(%i3) A1;
(%o3) {Array: #(0 0 0 0 0 0 0 0 1729 0)}
(%i4) A2 : make_array (flonum, 10);
(%o4) {Array: #(0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0)}
(%i5) A2 [2] : 2.718281828;
(%o5) 2.718281828
(%i6) A2;
(%o6)
{Array: #(0.0 0.0 2.718281828 0.0 0.0 0.0 0.0 0.0 0.0 0.0)}
(%i7) A3 : make_array (any, 10);
(%o7) {Array: #(NIL NIL NIL NIL NIL NIL NIL NIL NIL NIL)}
(%i8) A3 [4] : x - y - z;
(%o8) - z - y + x
(%i9) A3;
(%o9) {Array: #(NIL NIL NIL NIL ((MPLUS SIMP) $X ((MTIMES SIMP)\
-1 $Y) ((MTIMES SIMP) -1 $Z))
NIL NIL NIL NIL NIL)}
(%i10) A4 : make_array (fixnum, 2, 3, 5);
(%o10) {Array: #3A(((0 0 0 0 0) (0 0 0 0 0) (0 0 0 0 0)) ((0 0 \
0 0 0) (0 0 0 0 0) (0 0 0 0 0)))}
(%i11) fillarray (A4, makelist (i, i, 1, 2*3*5));
(%o11) {Array: #3A(((1 2 3 4 5) (6 7 8 9 10) (11 12 13 14 15))
((16 17 18 19 20) (21 22 23 24 25) (26 27 28 29 30)))}
(%i12) A4 [0, 2, 1];
(%o12) 12
</pre>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>rearray</b><i> (<var>A</var>, <var>dim_1</var>, ..., <var>dim_n</var>)</i>
<a name="IDX743"></a>
</dt>
<dd><p>Altera as dimenções de um array.
O novo array será preenchido com os elementos do antigo em
ordem da maior linha. Se o array antigo era muito pequeno,
os elementos restantes serão preenchidos com
<code>false</code>, <code>0.0</code> ou <code>0</code>,
dependendo do tipo do array. O tipo do array não pode ser
alterado.
</p>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>remarray</b><i> (<var>A_1</var>, ..., <var>A_n</var>)</i>
<a name="IDX744"></a>
</dt>
<dt><u>Função:</u> <b>remarray</b><i> (all)</i>
<a name="IDX745"></a>
</dt>
<dd><p>Remove arrays e funções associadas
a arrays e libera o espaço ocupado.
Os argumentos podem ser arrays declarados, arrays não declarados (dsordenados - hashed), funções de array functions, e funções com subscritos.
</p>
<p><code>remarray (all)</code> remove todos os ítens na lista global <code>arrays</code>.
</p>
<p>Isso pode ser necessário para usar essa função se isso é
desejado para redefinir os valores em um array desordenado.
</p>
<p><code>remarray</code> retorna a lista dos arrays removidos.
</p>
</dd></dl>
<dl>
<dt><u>Função:</u> <b>subvar</b><i> (<var>x</var>, <var>i</var>)</i>
<a name="IDX746"></a>
</dt>
<dd><p>Avalia a expressão subscrita <code><var>x</var>[<var>i</var>]</code>.
</p>
<p><code>subvar</code> avalia seus argumentos.
</p>
<p><code>arraymake (<var>x</var>, [<var>i</var>]</code> constrói a expressão <code><var>x</var>[<var>i</var>]</code>,
mas não a avalia.
</p>
<p>Exemplos:
</p>
<pre class="example">(%i1) x : foo $
(%i2) i : 3 $
(%i3) subvar (x, i);
(%o3) foo
3
(%i4) foo : [aa, bb, cc, dd, ee]$
(%i5) subvar (x, i);
(%o5) +(%i6) arraymake (x, [i]);
(%o6) foo
3
(%i7) ''%;
(%o7) +</pre>
</dd></dl>
<dl>
<dt><u>Variável de pção:</u> <b>use_fast_arrays</b>
<a name="IDX747"></a>
</dt>
<dd><p>- Se <code>true</code> somente dois tipos de arrays são reconhecidos.
</p>
<p>1) O array art-q (t no Lisp Comum) que pode ter muitas dimensões
indexadas por inteiros, e pode aceitar qualquer objecto do Lisp ou do Maxima como uma
entrada. Para construir assim um array, insira <code>a:make_array(any,3,4);</code>
então <code>a</code> terá como valor, um array com doze posições, e o
índice é baseado em zero.
</p>
<p>2) O array Hash_table que é o tipo padrão de array criado se um
faz <code>b[x+1]:y^2</code> (e <code>b</code> não é ainda um array, uma lista, ou uma
matriz - se isso ou um desses ocorrer um erro pode ser causado desde
<code>x+1</code> não poderá ser um subscrito válido para um array art-q, uma lista ou
uma matriz). Esses índices (também conhecidos como chaves) podem ser quaisquer objectos.
Isso somente pega uma chave por vez a cada vez (<code>b[x+1,u]:y</code> ignorará o <code>u</code>).
A referência termina em <code>b[x+1] ==> y^2</code>. Certamente a chave poe ser uma lista
, e.g. <code>b[[x+1,u]]:y</code> poderá ser válido. Isso é incompatível
com os arrays antigos do Maxima, mas poupa recursos.
</p>
<p>Uma vantagem de armazenar os arrays como valores de símbolos é que as
convenções usuais sobre variáveis locais de uma função aplicam-se a arrays
também. O tipo Hash_table também usa menos recursos e é mais eficiente
que o velho tipo hashar do Maxima. Para obter comportamento consistente em
códigos traduzidos e compilados posicione <code>translate_fast_arrays</code> para ser
<code>true</code>.
</p>
</dd></dl>
<hr size="6">
<table cellpadding="1" cellspacing="1" border="0">
<tr><td valign="middle" align="left">[<a href="#SEC78" title="Beginning of this chapter or previous chapter"> << </a>]</td>
<td valign="middle" align="left">[<a href="maxima_25.html#SEC80" title="Next chapter"> >> </a>]</td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left"> </td>
<td valign="middle" align="left">[<a href="maxima.html#SEC_Top" title="Cover (top) of document">Top</a>]</td>
<td valign="middle" align="left">[<a href="maxima_toc.html#SEC_Contents" title="Table of contents">Contents</a>]</td>
<td valign="middle" align="left">[<a href="maxima_74.html#SEC274" title="Index">Índice</a>]</td>
<td valign="middle" align="left">[<a href="maxima_abt.html#SEC_About" title="About (help)"> ? </a>]</td>
</tr></table>
<p>
<font size="-1">
This document was generated by <em>Robert</em> on <em>Dezembro, 3 2012</em> using <a href="http://texi2html.cvshome.org/"><em>texi2html 1.76</em></a>.
</font>
<br>
</p>
</body>
</html>
|
_source/news/2019-07-28-sa.html | InstantKhabar/_source | ---
title: "'संगीत-सरूप-सतगुरु' का मुंबई में भव्य प्रीमियर"
layout: item
category: ["entertainment"]
date: 2019-07-28T03:07:10.257Z
image: 1564319230257sa.jpg
---
<p>तरनजीत सिंह नामधारी की डॉक्यूमेंट्री 'संगीत-सरूप-सतगुरु' का प्रीमियर मुंबई में संपन्न हुआ, जहां कई मशहूर स्टार्स की मौजूदगी का गवाह बना। ये डॉक्यूमेंट्री सतगुरु जगजीत सिंह द्वारा पंजाब के भैणी साहिब नामक गांव में शास्त्रीय संगीत सीखने के लिए नौजवानों को प्रेरित करने के काम को दर्शाता है। सतगुरु की ये संगीतमय विरासत 100 साल की हो चुकी है। प्रीमियर में नामधारी के वर्तमान गुरु सतगुरु उदय सिंहजी, उस्ताद जाकिर हुसैन, पंडित शिव कुमार शर्मा सहित अन्य गणमान्य लोग उपस्थित थे।</p>
<p>डॉक्यूमेंट्री 'संगीत-सरूप-सतगुरु' संगीत के 100 साल पुरानी विरासत व संगीत के प्रभाव को चित्रित करती है। उद्योग दिग्गजों द्वारा उन लोगों की कहानियों को नैरेट किया गया है, जिन्होंने गांव के बच्चों को ज्ञान प्रदान करके इस प्रक्रिया को बढ़ावा दिया और उन्हें संगीत सीखने के लिए प्रेरित किया. फिल्म निर्माता तरनजीत सिंह नामधारी ने शास्त्रीय संगीत के सच्चे संरक्षक की सबसे आश्चर्यजनक कहानियों में से एक को दिखाया है।</p>
<p>इस मौके पर उस्ताद जाकिर हुसैन ने कहा, ‘बहुत कम उस्तादों का जीवन के सभी क्षेत्रों में, संगीत पर, आध्यात्मिकता पर इस तरह का प्रभाव पड़ा है। संगीत के जरिए इंसान एक आदर्श जीवन कैसे जी सकता है, यह सीखाना ही अपने आप में बडी बात है। सतगुरु जी के आशीर्वाद से हमें ऐसे कलाकार मिले, जो इस जीवन या युग में कहीं अन्यत्र नहीं मिल सकते है।‘ पंडित शिव कुमार शर्मा ने कहा, ‘सतगुरुजी के प्रयासों को इतिहास में स्वर्णाक्षरों में लिखा जाएगा. दिलरुबा पर उनका लयबद्ध प्रदर्शन अतुलनीय था।‘ </p>
<p>सतगुरु जगजीत सिंह भारत में शास्त्रीय संगीत के सबसे बड़े संरक्षक थे और इसके लिए उनके प्यार और समर्पण ने दुनिया भर के कई संगीतकारों को प्रेरित किया। उनका मानना था कि शास्त्रीय संगीत सीखने से व्यक्ति अनुशासित होता है और उसका ध्यान केंद्रित होता है, जो किसी के लिए भी बचपन से ही आवश्यक है। एक युवा के रूप में, उन्होंने भैणी साहिब के सभी बच्चों के लिए शास्त्रीय संगीत सीखना अनिवार्य कर दिया। नामधारियों के वर्तमान गुरु, सतगुरु उदय सिंह ने 2012 में सतगुरु जगजीत सिंह के निधन के बाद इस परंपरा को आगे बढ़ाया।</p>
<p>बिस्मिल्लाह खान, किशन महाराज और विलायत खान से लेकर पंडित शिवकुमार शर्मा, उस्ताद जाकिर हुसैन और अमजद अली खान तक ने इस परम्परा के तहत भैणी साहिब के बच्चों को अपने ज्ञान से शिक्षित किया। यह डॉक्यूमेंट्री एक संगीतमय यात्रा है, जो श्री भैणी साहिब के छिपे हुए रत्नों और सतगुरु जगजीत सिंह की मंत्रमुग्ध कर देने वाली कहानी को उजागर करती है। </p> |
src/index.html | mimoriarty/finTest | <!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>FinTest</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.3/jquery.min.js"></script>
<script src="http://code.highcharts.com/highcharts.js"></script>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<div class="main-container">
<app-root>Loading...</app-root>
</div>
</body>
</html>
|
QMOLEDEV/gtk+-2.24.17/docs/reference/gtk/html/GtkActionGroup.html | chriskmanx/qmole | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>GtkActionGroup</title>
<meta name="generator" content="DocBook XSL Stylesheets V1.78.0">
<link rel="home" href="index.html" title="GTK+ 2 Reference Manual">
<link rel="up" href="Actions.html" title="Action-based menus and toolbars">
<link rel="prev" href="GtkUIManager.html" title="GtkUIManager">
<link rel="next" href="GtkAction.html" title="GtkAction">
<meta name="generator" content="GTK-Doc V1.18 (XML mode)">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table class="navigation" id="top" width="100%" summary="Navigation header" cellpadding="2" cellspacing="2">
<tr valign="middle">
<td><a accesskey="p" href="GtkUIManager.html"><img src="left.png" width="24" height="24" border="0" alt="Prev"></a></td>
<td><a accesskey="u" href="Actions.html"><img src="up.png" width="24" height="24" border="0" alt="Up"></a></td>
<td><a accesskey="h" href="index.html"><img src="home.png" width="24" height="24" border="0" alt="Home"></a></td>
<th width="100%" align="center">GTK+ 2 Reference Manual</th>
<td><a accesskey="n" href="GtkAction.html"><img src="right.png" width="24" height="24" border="0" alt="Next"></a></td>
</tr>
<tr><td colspan="5" class="shortcuts">
<a href="#GtkActionGroup.synopsis" class="shortcut">Top</a>
|
<a href="#GtkActionGroup.description" class="shortcut">Description</a>
|
<a href="#GtkActionGroup.object-hierarchy" class="shortcut">Object Hierarchy</a>
|
<a href="#GtkActionGroup.implemented-interfaces" class="shortcut">Implemented Interfaces</a>
|
<a href="#GtkActionGroup.properties" class="shortcut">Properties</a>
|
<a href="#GtkActionGroup.signals" class="shortcut">Signals</a>
</td></tr>
</table>
<div class="refentry">
<a name="GtkActionGroup"></a><div class="titlepage"></div>
<div class="refnamediv"><table width="100%"><tr>
<td valign="top">
<h2><span class="refentrytitle"><a name="GtkActionGroup.top_of_page"></a>GtkActionGroup</span></h2>
<p>GtkActionGroup — A group of actions</p>
</td>
<td valign="top" align="right"></td>
</tr></table></div>
<div class="refsynopsisdiv">
<a name="GtkActionGroup.synopsis"></a><h2>Synopsis</h2>
<pre class="synopsis">
#include <gtk/gtk.h>
struct <a class="link" href="GtkActionGroup.html#GtkActionGroup-struct" title="struct GtkActionGroup">GtkActionGroup</a>;
<a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="returnvalue">GtkActionGroup</span></a> * <a class="link" href="GtkActionGroup.html#gtk-action-group-new" title="gtk_action_group_new ()">gtk_action_group_new</a> (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkActionGroup.html#gtk-action-group-get-name" title="gtk_action_group_get_name ()">gtk_action_group_get_name</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);
<span class="returnvalue">gboolean</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-get-sensitive" title="gtk_action_group_get_sensitive ()">gtk_action_group_get_sensitive</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-set-sensitive" title="gtk_action_group_set_sensitive ()">gtk_action_group_set_sensitive</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><span class="type">gboolean</span> sensitive</code></em>);
<span class="returnvalue">gboolean</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-get-visible" title="gtk_action_group_get_visible ()">gtk_action_group_get_visible</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-set-visible" title="gtk_action_group_set_visible ()">gtk_action_group_set_visible</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><span class="type">gboolean</span> visible</code></em>);
<a class="link" href="GtkAction.html" title="GtkAction"><span class="returnvalue">GtkAction</span></a> * <a class="link" href="GtkActionGroup.html#gtk-action-group-get-action" title="gtk_action_group_get_action ()">gtk_action_group_get_action</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *action_name</code></em>);
<span class="returnvalue">GList</span> * <a class="link" href="GtkActionGroup.html#gtk-action-group-list-actions" title="gtk_action_group_list_actions ()">gtk_action_group_list_actions</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-action" title="gtk_action_group_add_action ()">gtk_action_group_add_action</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-action-with-accel" title="gtk_action_group_add_action_with_accel ()">gtk_action_group_add_action_with_accel</a>
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *accelerator</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-remove-action" title="gtk_action_group_remove_action ()">gtk_action_group_remove_action</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);
struct <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry">GtkActionEntry</a>;
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-actions" title="gtk_action_group_add_actions ()">gtk_action_group_add_actions</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-actions-full" title="gtk_action_group_add_actions_full ()">gtk_action_group_add_actions_full</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);
struct <a class="link" href="GtkActionGroup.html#GtkToggleActionEntry" title="struct GtkToggleActionEntry">GtkToggleActionEntry</a>;
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-toggle-actions" title="gtk_action_group_add_toggle_actions ()">gtk_action_group_add_toggle_actions</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkToggleActionEntry" title="struct GtkToggleActionEntry"><span class="type">GtkToggleActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-toggle-actions-full" title="gtk_action_group_add_toggle_actions_full ()">gtk_action_group_add_toggle_actions_full</a>
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkToggleActionEntry" title="struct GtkToggleActionEntry"><span class="type">GtkToggleActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);
struct <a class="link" href="GtkActionGroup.html#GtkRadioActionEntry" title="struct GtkRadioActionEntry">GtkRadioActionEntry</a>;
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-radio-actions" title="gtk_action_group_add_radio_actions ()">gtk_action_group_add_radio_actions</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkRadioActionEntry" title="struct GtkRadioActionEntry"><span class="type">GtkRadioActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gint</span> value</code></em>,
<em class="parameter"><code><span class="type">GCallback</span> on_change</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-add-radio-actions-full" title="gtk_action_group_add_radio_actions_full ()">gtk_action_group_add_radio_actions_full</a>
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkRadioActionEntry" title="struct GtkRadioActionEntry"><span class="type">GtkRadioActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gint</span> value</code></em>,
<em class="parameter"><code><span class="type">GCallback</span> on_change</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translate-func" title="gtk_action_group_set_translate_func ()">gtk_action_group_set_translate_func</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkItemFactory.html#GtkTranslateFunc" title="GtkTranslateFunc ()"><span class="type">GtkTranslateFunc</span></a> func</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);
<span class="returnvalue">void</span> <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()">gtk_action_group_set_translation_domain</a>
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *domain</code></em>);
const <span class="returnvalue">gchar</span> * <a class="link" href="GtkActionGroup.html#gtk-action-group-translate-string" title="gtk_action_group_translate_string ()">gtk_action_group_translate_string</a> (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *string</code></em>);
</pre>
</div>
<div class="refsect1">
<a name="GtkActionGroup.object-hierarchy"></a><h2>Object Hierarchy</h2>
<pre class="synopsis">
GObject
+----GtkActionGroup
</pre>
</div>
<div class="refsect1">
<a name="GtkActionGroup.implemented-interfaces"></a><h2>Implemented Interfaces</h2>
<p>
GtkActionGroup implements
<a class="link" href="GtkBuildable.html" title="GtkBuildable">GtkBuildable</a>.</p>
</div>
<div class="refsect1">
<a name="GtkActionGroup.properties"></a><h2>Properties</h2>
<pre class="synopsis">
"<a class="link" href="GtkActionGroup.html#GtkActionGroup--name" title='The "name" property'>name</a>" <span class="type">gchar</span>* : Read / Write / Construct Only
"<a class="link" href="GtkActionGroup.html#GtkActionGroup--sensitive" title='The "sensitive" property'>sensitive</a>" <span class="type">gboolean</span> : Read / Write
"<a class="link" href="GtkActionGroup.html#GtkActionGroup--visible" title='The "visible" property'>visible</a>" <span class="type">gboolean</span> : Read / Write
</pre>
</div>
<div class="refsect1">
<a name="GtkActionGroup.signals"></a><h2>Signals</h2>
<pre class="synopsis">
"<a class="link" href="GtkActionGroup.html#GtkActionGroup-connect-proxy" title='The "connect-proxy" signal'>connect-proxy</a>"
"<a class="link" href="GtkActionGroup.html#GtkActionGroup-disconnect-proxy" title='The "disconnect-proxy" signal'>disconnect-proxy</a>"
"<a class="link" href="GtkActionGroup.html#GtkActionGroup-post-activate" title='The "post-activate" signal'>post-activate</a>"
"<a class="link" href="GtkActionGroup.html#GtkActionGroup-pre-activate" title='The "pre-activate" signal'>pre-activate</a>"
</pre>
</div>
<div class="refsect1">
<a name="GtkActionGroup.description"></a><h2>Description</h2>
<p>
Actions are organised into groups. An action group is essentially a
map from names to <a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> objects.
</p>
<p>
All actions that would make sense to use in a particular context
should be in a single group. Multiple action groups may be used for a
particular user interface. In fact, it is expected that most nontrivial
applications will make use of multiple groups. For example, in an application
that can edit multiple documents, one group holding global actions
(e.g. quit, about, new), and one group per document holding actions that
act on that document (eg. save, cut/copy/paste, etc). Each window's menus
would be constructed from a combination of two action groups.
</p>
<p><a name="Action-Accel"></a>
Accelerators are handled by the GTK+ accelerator map. All actions are assigned an
accelerator path (which normally has the form
<code class="literal"><Actions>/<em class="replaceable"><code>group-name</code></em>/<em class="replaceable"><code>action-name</code></em></code>)
and a shortcut is associated with this accelerator path. All menuitems and
toolitems take on this accelerator path. The GTK+ accelerator map code makes
sure that the correct shortcut is displayed next to the menu item.
</p>
<div class="refsect2">
<a name="GtkActionGroup-BUILDER-UI"></a><h3>GtkActionGroup as GtkBuildable</h3>
<p>
The GtkActionGroup implementation of the GtkBuildable interface accepts
GtkAction objects as <child> elements in UI definitions.
</p>
<p>
Note that it is probably more common to define actions and action groups
in the code, since they are directly related to what the code can do.
</p>
<p>
The GtkActionGroup implementation of the GtkBuildable interface supports a
custom <accelerator> element, which has attributes named key and
modifiers and allows to specify accelerators. This is similar to the
<accelerator> element of GtkWidget, the main difference is that
it doesn't allow you to specify a signal.
</p>
<div class="example">
<a name="idm140406212205840"></a><p class="title"><b>Example 38. A <span class="structname">GtkDialog</span> UI definition fragment.</b></p>
<div class="example-contents">
<table class="listing_frame" border="0" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td class="listing_lines" align="right"><pre>1
2
3
4
5
6
7
8
9
10</pre></td>
<td class="listing_code"><pre class="programlisting"><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkActionGroup"</span><span class="normal"> id</span><span class="symbol">=</span><span class="string">"actiongroup"</span><span class="symbol">></span>
<span class="normal"> </span><span class="symbol"><</span><span class="normal">child</span><span class="symbol">></span>
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">object</span><span class="normal"> class</span><span class="symbol">=</span><span class="string">"GtkAction"</span><span class="normal"> id</span><span class="symbol">=</span><span class="string">"About"</span><span class="symbol">></span>
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">property</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"name"</span><span class="symbol">></span><span class="normal">About</span><span class="symbol"></</span><span class="normal">property</span><span class="symbol">></span>
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">property</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"stock_id"</span><span class="symbol">></span><span class="normal">gtk</span><span class="symbol">-</span><span class="normal"><a href="/usr/share/gtk-doc/html/libiptcdata/iptc-about.html#about">about</a></span><span class="symbol"></</span><span class="normal">property</span><span class="symbol">></span>
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">signal</span><span class="normal"> handler</span><span class="symbol">=</span><span class="string">"about_activate"</span><span class="normal"> name</span><span class="symbol">=</span><span class="string">"activate"</span><span class="symbol">/></span>
<span class="normal"> </span><span class="symbol"></</span><span class="normal">object</span><span class="symbol">></span>
<span class="normal"> </span><span class="symbol"><</span><span class="usertype">accelerator</span><span class="normal"> key</span><span class="symbol">=</span><span class="string">"F1"</span><span class="normal"> modifiers</span><span class="symbol">=</span><span class="string">"GDK_CONTROL_MASK | GDK_SHIFT_MASK"</span><span class="symbol">/></span>
<span class="normal"> </span><span class="symbol"></</span><span class="normal">child</span><span class="symbol">></span>
<span class="symbol"></</span><span class="normal">object</span><span class="symbol">></span></pre></td>
</tr>
</tbody>
</table>
</div>
</div>
<br class="example-break">
</div>
</div>
<div class="refsect1">
<a name="GtkActionGroup.details"></a><h2>Details</h2>
<div class="refsect2">
<a name="GtkActionGroup-struct"></a><h3>struct GtkActionGroup</h3>
<pre class="programlisting">struct GtkActionGroup;</pre>
<p>
The <span class="structname">GtkActionGroup</span> struct contains only private
members and should not be accessed directly.
</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-new"></a><h3>gtk_action_group_new ()</h3>
<pre class="programlisting"><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="returnvalue">GtkActionGroup</span></a> * gtk_action_group_new (<em class="parameter"><code>const <span class="type">gchar</span> *name</code></em>);</pre>
<p>
Creates a new <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> object. The name of the action group
is used when associating <a class="link" href="GtkActionGroup.html#Action-Accel">keybindings</a>
with the actions.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>name</code></em> :</span></p></td>
<td>the name of the action group.</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the new <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-get-name"></a><h3>gtk_action_group_get_name ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_action_group_get_name (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);</pre>
<p>
Gets the name of the action group.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the name of the action group.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-get-sensitive"></a><h3>gtk_action_group_get_sensitive ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_action_group_get_sensitive (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);</pre>
<p>
Returns <code class="literal">TRUE</code> if the group is sensitive. The constituent actions
can only be logically sensitive (see <a class="link" href="GtkAction.html#gtk-action-is-sensitive" title="gtk_action_is_sensitive ()"><code class="function">gtk_action_is_sensitive()</code></a>) if
they are sensitive (see <a class="link" href="GtkAction.html#gtk-action-get-sensitive" title="gtk_action_get_sensitive ()"><code class="function">gtk_action_get_sensitive()</code></a>) and their group
is sensitive.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if the group is sensitive.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-set-sensitive"></a><h3>gtk_action_group_set_sensitive ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_set_sensitive (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><span class="type">gboolean</span> sensitive</code></em>);</pre>
<p>
Changes the sensitivity of <em class="parameter"><code>action_group</code></em>
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>sensitive</code></em> :</span></p></td>
<td>new sensitivity</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-get-visible"></a><h3>gtk_action_group_get_visible ()</h3>
<pre class="programlisting"><span class="returnvalue">gboolean</span> gtk_action_group_get_visible (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);</pre>
<p>
Returns <code class="literal">TRUE</code> if the group is visible. The constituent actions
can only be logically visible (see <a class="link" href="GtkAction.html#gtk-action-is-visible" title="gtk_action_is_visible ()"><code class="function">gtk_action_is_visible()</code></a>) if
they are visible (see <a class="link" href="GtkAction.html#gtk-action-get-visible" title="gtk_action_get_visible ()"><code class="function">gtk_action_get_visible()</code></a>) and their group
is visible.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>
<code class="literal">TRUE</code> if the group is visible.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-set-visible"></a><h3>gtk_action_group_set_visible ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_set_visible (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><span class="type">gboolean</span> visible</code></em>);</pre>
<p>
Changes the visible of <em class="parameter"><code>action_group</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>visible</code></em> :</span></p></td>
<td>new visiblity</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-get-action"></a><h3>gtk_action_group_get_action ()</h3>
<pre class="programlisting"><a class="link" href="GtkAction.html" title="GtkAction"><span class="returnvalue">GtkAction</span></a> * gtk_action_group_get_action (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *action_name</code></em>);</pre>
<p>
Looks up an action in the action group by name.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_name</code></em> :</span></p></td>
<td>the name of the action</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the action, or <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a> if no action by that name exists. <span class="annotation">[<acronym title="Don't free data after the code is done."><span class="acronym">transfer none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-list-actions"></a><h3>gtk_action_group_list_actions ()</h3>
<pre class="programlisting"><span class="returnvalue">GList</span> * gtk_action_group_list_actions (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>);</pre>
<p>
Lists the actions in the action group.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>an allocated list of the action objects in the action group. <span class="annotation">[<acronym title="Generics and defining elements of containers and arrays."><span class="acronym">element-type</span></acronym> GtkAction][<acronym title="Free data container after the code is done."><span class="acronym">transfer container</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-action"></a><h3>gtk_action_group_add_action ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_action (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
<p>
Adds an action object to the action group. Note that this function
does not set up the accel path of the action, which can lead to problems
if a user tries to modify the accelerator of a menuitem associated with
the action. Therefore you must either set the accel path yourself with
<a class="link" href="GtkAction.html#gtk-action-set-accel-path" title="gtk_action_set_accel_path ()"><code class="function">gtk_action_set_accel_path()</code></a>, or use
<code class="literal">gtk_action_group_add_action_with_accel (..., NULL)</code>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
<td>an action</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-action-with-accel"></a><h3>gtk_action_group_add_action_with_accel ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_action_with_accel
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *accelerator</code></em>);</pre>
<p>
Adds an action object to the action group and sets up the accelerator.
</p>
<p>
If <em class="parameter"><code>accelerator</code></em> is <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a>, attempts to use the accelerator associated
with the stock_id of the action.
</p>
<p>
Accel paths are set to
<code class="literal"><Actions>/<em class="replaceable"><code>group-name</code></em>/<em class="replaceable"><code>action-name</code></em></code>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
<td>the action to add</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>accelerator</code></em> :</span></p></td>
<td>the accelerator for the action, in
the format understood by <a class="link" href="gtk2-Keyboard-Accelerators.html#gtk-accelerator-parse" title="gtk_accelerator_parse ()"><code class="function">gtk_accelerator_parse()</code></a>, or "" for no accelerator, or
<a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a> to use the stock accelerator. <span class="annotation">[<acronym title="NULL is ok, both for passing and for returning."><span class="acronym">allow-none</span></acronym>]</span>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-remove-action"></a><h3>gtk_action_group_remove_action ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_remove_action (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action</code></em>);</pre>
<p>
Removes an action object from the action group.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
<td>an action</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkActionEntry"></a><h3>struct GtkActionEntry</h3>
<pre class="programlisting">struct GtkActionEntry {
const gchar *name;
const gchar *stock_id;
const gchar *label;
const gchar *accelerator;
const gchar *tooltip;
GCallback callback;
};
</pre>
<p>
<span class="structname">GtkActionEntry</span> structs are used with
<a class="link" href="GtkActionGroup.html#gtk-action-group-add-actions" title="gtk_action_group_add_actions ()"><code class="function">gtk_action_group_add_actions()</code></a> to construct actions.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkActionEntry.name"></a>name</code></em>;</span></p></td>
<td>The name of the action.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkActionEntry.stock-id"></a>stock_id</code></em>;</span></p></td>
<td>The stock id for the action, or the name of an icon from the icon
theme.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkActionEntry.label"></a>label</code></em>;</span></p></td>
<td>The label for the action. This field should typically be marked for
translation, see <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()"><code class="function">gtk_action_group_set_translation_domain()</code></a>. If <em class="parameter"><code>label</code></em>
is <a href="/usr/share/gtk-doc/html/liboil/liboil-liboiljunk.html#NULL:CAPS"><code class="literal">NULL</code></a>, the label of the stock item with id <em class="parameter"><code>stock_id</code></em> is used.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkActionEntry.accelerator"></a>accelerator</code></em>;</span></p></td>
<td>The accelerator for the action, in the format understood by
<a class="link" href="gtk2-Keyboard-Accelerators.html#gtk-accelerator-parse" title="gtk_accelerator_parse ()"><code class="function">gtk_accelerator_parse()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkActionEntry.tooltip"></a>tooltip</code></em>;</span></p></td>
<td>The tooltip for the action. This field should typically be marked
for translation, see <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()"><code class="function">gtk_action_group_set_translation_domain()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term"><span class="type">GCallback</span> <em class="structfield"><code><a name="GtkActionEntry.callback"></a>callback</code></em>;</span></p></td>
<td>The function to call when the action is activated.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-actions"></a><h3>gtk_action_group_add_actions ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_actions (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
<p>
This is a convenience function to create a number of actions and add them
to the action group.
</p>
<p>
The "activate" signals of the actions are connected to the callbacks and
their accel paths are set to
<code class="literal"><Actions>/<em class="replaceable"><code>group-name</code></em>/<em class="replaceable"><code>action-name</code></em></code>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>entries</code></em> :</span></p></td>
<td>an array of action descriptions</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_entries</code></em> :</span></p></td>
<td>the number of entries</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>data to pass to the action callbacks</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-actions-full"></a><h3>gtk_action_group_add_actions_full ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_actions_full (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);</pre>
<p>
This variant of <a class="link" href="GtkActionGroup.html#gtk-action-group-add-actions" title="gtk_action_group_add_actions ()"><code class="function">gtk_action_group_add_actions()</code></a> adds a <span class="type">GDestroyNotify</span>
callback for <em class="parameter"><code>user_data</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>entries</code></em> :</span></p></td>
<td>an array of action descriptions</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_entries</code></em> :</span></p></td>
<td>the number of entries</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>data to pass to the action callbacks</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
<td>destroy notification callback for <em class="parameter"><code>user_data</code></em>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkToggleActionEntry"></a><h3>struct GtkToggleActionEntry</h3>
<pre class="programlisting">struct GtkToggleActionEntry {
const gchar *name;
const gchar *stock_id;
const gchar *label;
const gchar *accelerator;
const gchar *tooltip;
GCallback callback;
gboolean is_active;
};
</pre>
<p>
<span class="structname">GtkToggleActionEntry</span> structs are used with
<a class="link" href="GtkActionGroup.html#gtk-action-group-add-toggle-actions" title="gtk_action_group_add_toggle_actions ()"><code class="function">gtk_action_group_add_toggle_actions()</code></a> to construct toggle actions.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkToggleActionEntry.name"></a>name</code></em>;</span></p></td>
<td>The name of the action.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkToggleActionEntry.stock-id"></a>stock_id</code></em>;</span></p></td>
<td>The stock id for the action, or the name of an icon from the icon
theme.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkToggleActionEntry.label"></a>label</code></em>;</span></p></td>
<td>The label for the action. This field should typically be marked for
translation, see <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()"><code class="function">gtk_action_group_set_translation_domain()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkToggleActionEntry.accelerator"></a>accelerator</code></em>;</span></p></td>
<td>The accelerator for the action, in the format understood by
<a class="link" href="gtk2-Keyboard-Accelerators.html#gtk-accelerator-parse" title="gtk_accelerator_parse ()"><code class="function">gtk_accelerator_parse()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkToggleActionEntry.tooltip"></a>tooltip</code></em>;</span></p></td>
<td>The tooltip for the action. This field should typically be marked
for translation, see <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()"><code class="function">gtk_action_group_set_translation_domain()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term"><span class="type">GCallback</span> <em class="structfield"><code><a name="GtkToggleActionEntry.callback"></a>callback</code></em>;</span></p></td>
<td>The function to call when the action is activated.</td>
</tr>
<tr>
<td><p><span class="term"><span class="type">gboolean</span> <em class="structfield"><code><a name="GtkToggleActionEntry.is-active"></a>is_active</code></em>;</span></p></td>
<td>The initial state of the toggle action.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-toggle-actions"></a><h3>gtk_action_group_add_toggle_actions ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_toggle_actions (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkToggleActionEntry" title="struct GtkToggleActionEntry"><span class="type">GtkToggleActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
<p>
This is a convenience function to create a number of toggle actions and add them
to the action group.
</p>
<p>
The "activate" signals of the actions are connected to the callbacks and
their accel paths are set to
<code class="literal"><Actions>/<em class="replaceable"><code>group-name</code></em>/<em class="replaceable"><code>action-name</code></em></code>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>entries</code></em> :</span></p></td>
<td>an array of toggle action descriptions</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_entries</code></em> :</span></p></td>
<td>the number of entries</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>data to pass to the action callbacks</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-toggle-actions-full"></a><h3>gtk_action_group_add_toggle_actions_full ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_toggle_actions_full
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkToggleActionEntry" title="struct GtkToggleActionEntry"><span class="type">GtkToggleActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);</pre>
<p>
This variant of <a class="link" href="GtkActionGroup.html#gtk-action-group-add-toggle-actions" title="gtk_action_group_add_toggle_actions ()"><code class="function">gtk_action_group_add_toggle_actions()</code></a> adds a
<span class="type">GDestroyNotify</span> callback for <em class="parameter"><code>user_data</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>entries</code></em> :</span></p></td>
<td>an array of toggle action descriptions</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_entries</code></em> :</span></p></td>
<td>the number of entries</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>data to pass to the action callbacks</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
<td>destroy notification callback for <em class="parameter"><code>user_data</code></em>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkRadioActionEntry"></a><h3>struct GtkRadioActionEntry</h3>
<pre class="programlisting">struct GtkRadioActionEntry {
const gchar *name;
const gchar *stock_id;
const gchar *label;
const gchar *accelerator;
const gchar *tooltip;
gint value;
};
</pre>
<p>
<span class="structname">GtkRadioActionEntry</span> structs are used with
<a class="link" href="GtkActionGroup.html#gtk-action-group-add-radio-actions" title="gtk_action_group_add_radio_actions ()"><code class="function">gtk_action_group_add_radio_actions()</code></a> to construct groups of radio actions.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkRadioActionEntry.name"></a>name</code></em>;</span></p></td>
<td>The name of the action.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkRadioActionEntry.stock-id"></a>stock_id</code></em>;</span></p></td>
<td>The stock id for the action, or the name of an icon from the icon
theme.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkRadioActionEntry.label"></a>label</code></em>;</span></p></td>
<td>The label for the action. This field should typically be marked for
translation, see <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()"><code class="function">gtk_action_group_set_translation_domain()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkRadioActionEntry.accelerator"></a>accelerator</code></em>;</span></p></td>
<td>The accelerator for the action, in the format understood by
<a class="link" href="gtk2-Keyboard-Accelerators.html#gtk-accelerator-parse" title="gtk_accelerator_parse ()"><code class="function">gtk_accelerator_parse()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term">const <span class="type">gchar</span> *<em class="structfield"><code><a name="GtkRadioActionEntry.tooltip"></a>tooltip</code></em>;</span></p></td>
<td>The tooltip for the action. This field should typically be marked for
translation, see <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()"><code class="function">gtk_action_group_set_translation_domain()</code></a>.</td>
</tr>
<tr>
<td><p><span class="term"><span class="type">gint</span> <em class="structfield"><code><a name="GtkRadioActionEntry.value"></a>value</code></em>;</span></p></td>
<td>The value to set on the radio action. See <a class="link" href="GtkRadioAction.html#gtk-radio-action-get-current-value" title="gtk_radio_action_get_current_value ()"><code class="function">gtk_radio_action_get_current_value()</code></a>.</td>
</tr>
</tbody>
</table></div>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-radio-actions"></a><h3>gtk_action_group_add_radio_actions ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_radio_actions (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkRadioActionEntry" title="struct GtkRadioActionEntry"><span class="type">GtkRadioActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gint</span> value</code></em>,
<em class="parameter"><code><span class="type">GCallback</span> on_change</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>);</pre>
<p>
This is a convenience routine to create a group of radio actions and
add them to the action group.
</p>
<p>
The "changed" signal of the first radio action is connected to the
<em class="parameter"><code>on_change</code></em> callback and the accel paths of the actions are set to
<code class="literal"><Actions>/<em class="replaceable"><code>group-name</code></em>/<em class="replaceable"><code>action-name</code></em></code>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>entries</code></em> :</span></p></td>
<td>an array of radio action descriptions</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_entries</code></em> :</span></p></td>
<td>the number of entries</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
<td>the value of the action to activate initially, or -1 if
no action should be activated</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>on_change</code></em> :</span></p></td>
<td>the callback to connect to the changed signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>data to pass to the action callbacks</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-add-radio-actions-full"></a><h3>gtk_action_group_add_radio_actions_full ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_add_radio_actions_full
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <a class="link" href="GtkActionGroup.html#GtkRadioActionEntry" title="struct GtkRadioActionEntry"><span class="type">GtkRadioActionEntry</span></a> *entries</code></em>,
<em class="parameter"><code><span class="type">guint</span> n_entries</code></em>,
<em class="parameter"><code><span class="type">gint</span> value</code></em>,
<em class="parameter"><code><span class="type">GCallback</span> on_change</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> user_data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> destroy</code></em>);</pre>
<p>
This variant of <a class="link" href="GtkActionGroup.html#gtk-action-group-add-radio-actions" title="gtk_action_group_add_radio_actions ()"><code class="function">gtk_action_group_add_radio_actions()</code></a> adds a
<span class="type">GDestroyNotify</span> callback for <em class="parameter"><code>user_data</code></em>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the action group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>entries</code></em> :</span></p></td>
<td>an array of radio action descriptions</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>n_entries</code></em> :</span></p></td>
<td>the number of entries</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>value</code></em> :</span></p></td>
<td>the value of the action to activate initially, or -1 if
no action should be activated</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>on_change</code></em> :</span></p></td>
<td>the callback to connect to the changed signal</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>data to pass to the action callbacks</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>destroy</code></em> :</span></p></td>
<td>destroy notification callback for <em class="parameter"><code>user_data</code></em>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-set-translate-func"></a><h3>gtk_action_group_set_translate_func ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_set_translate_func (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code><a class="link" href="GtkItemFactory.html#GtkTranslateFunc" title="GtkTranslateFunc ()"><span class="type">GtkTranslateFunc</span></a> func</code></em>,
<em class="parameter"><code><span class="type">gpointer</span> data</code></em>,
<em class="parameter"><code><span class="type">GDestroyNotify</span> notify</code></em>);</pre>
<p>
Sets a function to be used for translating the <em class="parameter"><code>label</code></em> and <em class="parameter"><code>tooltip</code></em> of
<span class="type">GtkActionGroupEntry</span>s added by <a class="link" href="GtkActionGroup.html#gtk-action-group-add-actions" title="gtk_action_group_add_actions ()"><code class="function">gtk_action_group_add_actions()</code></a>.
</p>
<p>
If you're using <code class="function">gettext()</code>, it is enough to set the translation domain
with <a class="link" href="GtkActionGroup.html#gtk-action-group-set-translation-domain" title="gtk_action_group_set_translation_domain ()"><code class="function">gtk_action_group_set_translation_domain()</code></a>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>a <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>func</code></em> :</span></p></td>
<td>a <a class="link" href="GtkItemFactory.html#GtkTranslateFunc" title="GtkTranslateFunc ()"><span class="type">GtkTranslateFunc</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>data</code></em> :</span></p></td>
<td>data to be passed to <em class="parameter"><code>func</code></em> and <em class="parameter"><code>notify</code></em>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>notify</code></em> :</span></p></td>
<td>a <span class="type">GDestroyNotify</span> function to be called when <em class="parameter"><code>action_group</code></em> is
destroyed and when the translation function is changed again</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-set-translation-domain"></a><h3>gtk_action_group_set_translation_domain ()</h3>
<pre class="programlisting"><span class="returnvalue">void</span> gtk_action_group_set_translation_domain
(<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *domain</code></em>);</pre>
<p>
Sets the translation domain and uses <code class="function">g_dgettext()</code> for translating the
<em class="parameter"><code>label</code></em> and <em class="parameter"><code>tooltip</code></em> of <a class="link" href="GtkActionGroup.html#GtkActionEntry" title="struct GtkActionEntry"><span class="type">GtkActionEntry</span></a>s added by
<a class="link" href="GtkActionGroup.html#gtk-action-group-add-actions" title="gtk_action_group_add_actions ()"><code class="function">gtk_action_group_add_actions()</code></a>.
</p>
<p>
If you're not using <code class="function">gettext()</code> for localization, see
<a class="link" href="GtkActionGroup.html#gtk-action-group-set-translate-func" title="gtk_action_group_set_translate_func ()"><code class="function">gtk_action_group_set_translate_func()</code></a>.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>a <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>domain</code></em> :</span></p></td>
<td>the translation domain to use for <code class="function">g_dgettext()</code> calls</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="gtk-action-group-translate-string"></a><h3>gtk_action_group_translate_string ()</h3>
<pre class="programlisting">const <span class="returnvalue">gchar</span> * gtk_action_group_translate_string (<em class="parameter"><code><a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group</code></em>,
<em class="parameter"><code>const <span class="type">gchar</span> *string</code></em>);</pre>
<p>
Translates a string using the specified <code class="function">translate_func()</code>. This
is mainly intended for language bindings.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>a <a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a>
</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>string</code></em> :</span></p></td>
<td>a string</td>
</tr>
<tr>
<td><p><span class="term"><span class="emphasis"><em>Returns</em></span> :</span></p></td>
<td>the translation of <em class="parameter"><code>string</code></em>
</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.6</p>
</div>
</div>
<div class="refsect1">
<a name="GtkActionGroup.property-details"></a><h2>Property Details</h2>
<div class="refsect2">
<a name="GtkActionGroup--name"></a><h3>The <code class="literal">"name"</code> property</h3>
<pre class="programlisting"> "name" <span class="type">gchar</span>* : Read / Write / Construct Only</pre>
<p>A name for the action group.</p>
<p>Default value: NULL</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkActionGroup--sensitive"></a><h3>The <code class="literal">"sensitive"</code> property</h3>
<pre class="programlisting"> "sensitive" <span class="type">gboolean</span> : Read / Write</pre>
<p>Whether the action group is enabled.</p>
<p>Default value: TRUE</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkActionGroup--visible"></a><h3>The <code class="literal">"visible"</code> property</h3>
<pre class="programlisting"> "visible" <span class="type">gboolean</span> : Read / Write</pre>
<p>Whether the action group is visible.</p>
<p>Default value: TRUE</p>
</div>
</div>
<div class="refsect1">
<a name="GtkActionGroup.signal-details"></a><h2>Signal Details</h2>
<div class="refsect2">
<a name="GtkActionGroup-connect-proxy"></a><h3>The <code class="literal">"connect-proxy"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group,
<a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action,
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *proxy,
<span class="type">gpointer</span> user_data)</pre>
<p>
The ::connect-proxy signal is emitted after connecting a proxy to
an action in the group. Note that the proxy may have been connected
to a different action before.
</p>
<p>
This is intended for simple customizations for which a custom action
class would be too clumsy, e.g. showing tooltips for menuitems in the
statusbar.
</p>
<p>
<a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a> proxies the signal and provides global notification
just before any action is connected to a proxy, which is probably more
convenient to use.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
<td>the action</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
<td>the proxy</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkActionGroup-disconnect-proxy"></a><h3>The <code class="literal">"disconnect-proxy"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group,
<a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action,
<a class="link" href="GtkWidget.html" title="GtkWidget"><span class="type">GtkWidget</span></a> *proxy,
<span class="type">gpointer</span> user_data)</pre>
<p>
The ::disconnect-proxy signal is emitted after disconnecting a proxy
from an action in the group.
</p>
<p>
<a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a> proxies the signal and provides global notification
just before any action is connected to a proxy, which is probably more
convenient to use.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
<td>the action</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>proxy</code></em> :</span></p></td>
<td>the proxy</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkActionGroup-post-activate"></a><h3>The <code class="literal">"post-activate"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group,
<a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action,
<span class="type">gpointer</span> user_data)</pre>
<p>
The ::post-activate signal is emitted just after the <em class="parameter"><code>action</code></em> in the
<em class="parameter"><code>action_group</code></em> is activated
</p>
<p>
This is intended for <a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a> to proxy the signal and provide global
notification just after any action is activated.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
<td>the action</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
<hr>
<div class="refsect2">
<a name="GtkActionGroup-pre-activate"></a><h3>The <code class="literal">"pre-activate"</code> signal</h3>
<pre class="programlisting"><span class="returnvalue">void</span> user_function (<a class="link" href="GtkActionGroup.html" title="GtkActionGroup"><span class="type">GtkActionGroup</span></a> *action_group,
<a class="link" href="GtkAction.html" title="GtkAction"><span class="type">GtkAction</span></a> *action,
<span class="type">gpointer</span> user_data)</pre>
<p>
The ::pre-activate signal is emitted just before the <em class="parameter"><code>action</code></em> in the
<em class="parameter"><code>action_group</code></em> is activated
</p>
<p>
This is intended for <a class="link" href="GtkUIManager.html" title="GtkUIManager"><span class="type">GtkUIManager</span></a> to proxy the signal and provide global
notification just before any action is activated.
</p>
<div class="variablelist"><table border="0" class="variablelist">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody>
<tr>
<td><p><span class="term"><em class="parameter"><code>action_group</code></em> :</span></p></td>
<td>the group</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>action</code></em> :</span></p></td>
<td>the action</td>
</tr>
<tr>
<td><p><span class="term"><em class="parameter"><code>user_data</code></em> :</span></p></td>
<td>user data set when the signal handler was connected.</td>
</tr>
</tbody>
</table></div>
<p class="since">Since 2.4</p>
</div>
</div>
</div>
<div class="footer">
<hr>
Generated by GTK-Doc V1.18</div>
</body>
</html> |
templates/channel.html | sethcreech/MinimalTwitch | <!DOCTYPE html>
<html>
<head>
<title>Channel - {{ channel }}</title>
<link rel="stylesheet" href="//player.twitch.tv/css/player.332a9511.css"/>
<link rel="stylesheet" href=" {{ url_for('static', filename='styles/player.css') }} "/>
<script type="text/javascript">var Twitch=Twitch||{};Twitch.notScript=!0;</script>
<style type="text/css">:root .advertisement, :root .a300, :root #js-esl300, :root #ad {display:none !important;}</style>
<script src="//player.twitch.tv/js/jquery.4a54b4c0.js"></script>
<script src="//player.twitch.tv/js/jquery-ui.337218f2.js"></script>
<script src="//player.twitch.tv/js/chromecast.f895d9e6.js"></script>
<script src="//player.twitch.tv/js/player.e3985a71.js"></script>
<style type="text/css" media="screen">#swfobject-0 {visibility:hidden}</style>
</head>
<body style="margin: 0">
<div class="player" id="video-playback">
</div>
<div class="custom-controls">
{% include 'info_button.html' %}
</div>
<script type="text/javascript">
var params={"channel": "{{ channel }}"};
var player=new Twitch.video.Player("video-playback",params);
</script>
</body>
</html> |
docs/javadocs/ca/ualberta/cmput301/t03/R.array.html | CMPUT301F15T03/301p | <!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_20) on Mon Nov 30 15:17:53 MST 2015 -->
<title>R.array</title>
<meta name="date" content="2015-11-30">
<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="R.array";
}
}
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="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-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="../../../../ca/ualberta/cmput301/t03/R.anim.html" title="class in ca.ualberta.cmput301.t03"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../ca/ualberta/cmput301/t03/R.attr.html" title="class in ca.ualberta.cmput301.t03"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?ca/ualberta/cmput301/t03/R.array.html" target="_top">Frames</a></li>
<li><a href="R.array.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="#methods.inherited.from.class.java.lang.Object">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>Method</li>
</ul>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">ca.ualberta.cmput301.t03</div>
<h2 title="Class R.array" class="title">Class R.array</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li>java.lang.Object</li>
<li>
<ul class="inheritance">
<li>ca.ualberta.cmput301.t03.R.array</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>Enclosing class:</dt>
<dd><a href="../../../../ca/ualberta/cmput301/t03/R.html" title="class in ca.ualberta.cmput301.t03">R</a></dd>
</dl>
<hr>
<br>
<pre>public static final class <span class="typeNameLabel">R.array</span>
extends java.lang.Object</pre>
</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="memberSummary" 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><span class="memberNameLink"><a href="../../../../ca/ualberta/cmput301/t03/R.array.html#categories_array">categories_array</a></span></code> </td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../ca/ualberta/cmput301/t03/R.array.html#categories_array_with_none">categories_array_with_none</a></span></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="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="../../../../ca/ualberta/cmput301/t03/R.array.html#array--">array</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>
<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">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="categories_array">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>categories_array</h4>
<pre>public static final int categories_array</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#ca.ualberta.cmput301.t03.R.array.categories_array">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="categories_array_with_none">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>categories_array_with_none</h4>
<pre>public static final int categories_array_with_none</pre>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#ca.ualberta.cmput301.t03.R.array.categories_array_with_none">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="array--">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>array</h4>
<pre>public array()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!-- -->
</a>
<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="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="../../../../ca/ualberta/cmput301/t03/R.anim.html" title="class in ca.ualberta.cmput301.t03"><span class="typeNameLink">Prev Class</span></a></li>
<li><a href="../../../../ca/ualberta/cmput301/t03/R.attr.html" title="class in ca.ualberta.cmput301.t03"><span class="typeNameLink">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?ca/ualberta/cmput301/t03/R.array.html" target="_top">Frames</a></li>
<li><a href="R.array.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="#methods.inherited.from.class.java.lang.Object">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>Method</li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>
|
discovery/resources/fan/1321/index.html | Timathom/timathom.github.io | <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head prefix="og: http://ogp.me/ns# dc: http://purl.org/dc/terms/">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="//oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="//oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
<title>Fan page: Mark A. H. Drobnick</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
<style type="text/css">
#top{
width: 100%;
float: left;
}
#place{
width: 100%;
float: left;
}
#address{
width: 15%;
float: left;
}
#sgvzl{
width: 80%;
float: left;
}
#credits{
width: 100%;
float: left;
clear: both;
}
#location-marker{
width: 1em;
}
#male-glyph{
width: 1em;
}
</style>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript" id="sgvzlr_script" src="http://mgskjaeveland.github.io/sgvizler/v/0.6/sgvizler.min.js"></script>
<script type="text/javascript">
sgvizler
.defaultEndpointURL("http://bibfram.es/fuseki/cobra/query");
//// Leave this as is. Ready, steady, go!
$(document).ready(sgvizler.containerDrawAll);
</script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
<meta name="title" content="Mark A. H. Drobnick">
<meta property="dc:title" content="Mark A. H. Drobnick">
<meta property="og:title" content="Mark A. H. Drobnick">
<meta name="author" content="Mark A. H. Drobnick">
<meta name="dc:creator" content="Mark A. H. Drobnick">
</head>
<body prefix="cbo: http://comicmeta.org/cbo/ dc: http://purl.org/dc/elements/1.1/ dcterms: http://purl.org/dc/terms/ foaf: http://xmlns.com/foaf/0.1/ oa: http://www.w3.org/ns/oa# rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns# schema: http://schema.org/ skos: http://www.w3.org/2004/02/skos/core# xsd: http://www.w3.org/2001/XMLSchema#">
<div id="wrapper" class="container" about="http://ivmooc-cobra2.github.io/resources/fan/1321" typeof="http://comicmeta.org/cbo/Fan">
<div id="top">
<h1>
<span property="http://schema.org/name">Mark A. H. Drobnick</span>
<img id="male-glyph" src="/static/resources/img/man.svg" alt="male glyph">
</h1>
<dl>
<dt>
<label for="http://comicmeta.org/cbo/Fan">
<span>type</span>
</label>
</dt>
<dd>
<span>http://comicmeta.org/cbo/Fan</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/name">
<span>
<a href="http://schema.org/name">name</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/name">Mark A. H. Drobnick</span>
</dd>
</dl>
</div>
<div id="place" rel="http://schema.org/address" resource="http://ivmooc-cobra2.github.io/resources/place/1255" typeof="http://schema.org/Place">
<h2>Location <a href="http://ivmooc-cobra2.github.io/resources/place/1255">
<img id="location-marker" src="/static/resources/img/location.svg" alt="location marker glyph">
</a>
</h2>
<div id="address" rel="http://schema.org/address" typeof="http://schema.org/PostalAddress" resource="http://ivmooc-cobra2.github.io/resources/place/1255/address">
<dl>
<dt>
<label for="http://schema.org/streetAddress">
<span>
<a href="http://schema.org/streetAddress">Street address</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/streetAddress">1017 Wadworth Avenue</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/addressLocality">
<span>
<a href="http://schema.org/addressLocality">Address locality</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/addressLocality">North Chicago</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/addressRegion">
<span>
<a href="http://schema.org/addressRegion">Address region</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/addressRegion">IL</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/postalCode">
<span>
<a href="http://schema.org/postalCode">Postal code</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/postalCode">60064</span>
</dd>
</dl>
<dl>
<dt>
<label for="http://schema.org/addressCountry">
<span>
<a href="http://schema.org/addressCountry">Address country</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/addressCountry">US</span>
</dd>
</dl>
</div>
<div id="sgvzl" data-sgvizler-endpoint="http://bibfram.es/fuseki/cobra/query" data-sgvizler-query="PREFIX dc: <http://purl.org/dc/elements/1.1/> 
PREFIX cbo: <http://comicmeta.org/cbo/> 
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
PREFIX schema: <http://schema.org/>
SELECT ?lat ?long 
WHERE {
 ?fan schema:address ?Place .
 ?Place schema:geo ?Geo .
 ?Geo schema:latitude ?lat .
 ?Geo schema:longitude ?long .
 FILTER(?fan = <http://ivmooc-cobra2.github.io/resources/fan/1321>)
}" data-sgvizler-chart="google.visualization.GeoChart" data-sgvizler-loglevel="2" style="width:800px; height:400px;"></div>
</div>
<div id="letter" rel="http://purl.org/dc/elements/1.1/creator" resource="http://ivmooc-cobra2.github.io/resources/letter/1411">
<dl>
<dt>
<label for="http://schema.org/streetAddress">
<span>
<a href="http://schema.org/streetAddress">Street address</a>
</span>
</label>
</dt>
<dd>
<span property="http://schema.org/streetAddress">1017 Wadworth Avenue</span>
</dd>
</dl>
</div>
<div id="credits">Icons made by <a href="http://www.flaticon.com/authors/simpleicon" title="SimpleIcon">SimpleIcon</a> from <a href="http://www.flaticon.com" title="Flaticon">www.flaticon.com</a> is licensed by <a href="http://creativecommons.org/licenses/by/3.0/" title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a>
</div>
</div>
</body>
</html> |
teemo/src/main/webapp/static/css/demo/webuploader-demo.css | beiyoufx/teemo | #container {
color: #838383;
font-size: 12px;
}
#uploader .queueList {
margin: 20px;
border: 3px dashed #e6e6e6;
}
#uploader .queueList.filled {
padding: 17px;
margin: 0;
border: 3px dashed transparent;
}
#uploader .queueList.webuploader-dnd-over {
border: 3px dashed #999999;
}
#uploader p {margin: 0;}
.element-invisible {
position: absolute !important;
clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
clip: rect(1px,1px,1px,1px);
}
#uploader .placeholder {
min-height: 350px;
padding-top: 178px;
text-align: center;
background: url(../../img/webuploader.png) center 93px no-repeat;
color: #cccccc;
font-size: 18px;
position: relative;
}
#uploader .placeholder .webuploader-pick {
font-size: 18px;
background: #00b7ee;
border-radius: 3px;
line-height: 44px;
padding: 0 30px;
*width: 120px;
color: #fff;
display: inline-block;
margin: 0 auto 20px auto;
cursor: pointer;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}
#uploader .placeholder .webuploader-pick-hover {
background: #00a2d4;
}
#uploader .placeholder .flashTip {
color: #666666;
font-size: 12px;
position: absolute;
width: 100%;
text-align: center;
bottom: 20px;
}
#uploader .placeholder .flashTip a {
color: #0785d1;
text-decoration: none;
}
#uploader .placeholder .flashTip a:hover {
text-decoration: underline;
}
#uploader .filelist {
list-style: none;
margin: 0;
padding: 0;
}
#uploader .filelist:after {
content: '';
display: block;
width: 0;
height: 0;
overflow: hidden;
clear: both;
}
#uploader .filelist li {
width: 110px;
height: 110px;
background: url(../../img/bg.png) no-repeat;
text-align: center;
margin: 0 8px 20px 0;
position: relative;
display: inline;
float: left;
overflow: hidden;
font-size: 12px;
}
#uploader .filelist li p.log {
position: relative;
top: -45px;
}
#uploader .filelist li p.title {
position: absolute;
top: 0;
left: 0;
width: 100%;
overflow: hidden;
white-space: nowrap;
text-overflow : ellipsis;
top: 5px;
text-indent: 5px;
text-align: left;
}
#uploader .filelist li p.progress {
position: absolute;
width: 100%;
bottom: 0;
left: 0;
height: 8px;
overflow: hidden;
z-index: 50;
margin: 0;
border-radius: 0;
background: none;
-webkit-box-shadow: 0 0 0;
}
#uploader .filelist li p.progress span {
display: none;
overflow: hidden;
width: 0;
height: 100%;
background: #1483d8 url(../../img/progress.png) repeat-x;
-webit-transition: width 200ms linear;
-moz-transition: width 200ms linear;
-o-transition: width 200ms linear;
-ms-transition: width 200ms linear;
transition: width 200ms linear;
-webkit-animation: progressmove 2s linear infinite;
-moz-animation: progressmove 2s linear infinite;
-o-animation: progressmove 2s linear infinite;
-ms-animation: progressmove 2s linear infinite;
animation: progressmove 2s linear infinite;
-webkit-transform: translateZ(0);
}
@-webkit-keyframes progressmove {
0% {
background-position: 0 0;
}
100% {
background-position: 17px 0;
}
}
@-moz-keyframes progressmove {
0% {
background-position: 0 0;
}
100% {
background-position: 17px 0;
}
}
@keyframes progressmove {
0% {
background-position: 0 0;
}
100% {
background-position: 17px 0;
}
}
#uploader .filelist li p.imgWrap {
position: relative;
z-index: 2;
line-height: 110px;
vertical-align: middle;
overflow: hidden;
width: 110px;
height: 110px;
-webkit-transform-origin: 50% 50%;
-moz-transform-origin: 50% 50%;
-o-transform-origin: 50% 50%;
-ms-transform-origin: 50% 50%;
transform-origin: 50% 50%;
-webit-transition: 200ms ease-out;
-moz-transition: 200ms ease-out;
-o-transition: 200ms ease-out;
-ms-transition: 200ms ease-out;
transition: 200ms ease-out;
}
#uploader .filelist li img {
width: 100%;
}
#uploader .filelist li p.error {
background: #f43838;
color: #fff;
position: absolute;
bottom: 0;
left: 0;
height: 28px;
line-height: 28px;
width: 100%;
z-index: 100;
}
#uploader .filelist li .success {
display: block;
position: absolute;
left: 0;
bottom: 0;
height: 40px;
width: 100%;
z-index: 200;
background: url(../../img/success.png) no-repeat right bottom;
}
#uploader .filelist div.file-panel {
position: absolute;
height: 0;
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#80000000', endColorstr='#80000000')\0;
background: rgba( 0, 0, 0, 0.5 );
width: 100%;
top: 0;
left: 0;
overflow: hidden;
z-index: 300;
}
#uploader .filelist div.file-panel span {
width: 24px;
height: 24px;
display: inline;
float: right;
text-indent: -9999px;
overflow: hidden;
background: url(../../img/icons.png) no-repeat;
margin: 5px 1px 1px;
cursor: pointer;
}
#uploader .filelist div.file-panel span.rotateLeft {
background-position: 0 -24px;
}
#uploader .filelist div.file-panel span.rotateLeft:hover {
background-position: 0 0;
}
#uploader .filelist div.file-panel span.rotateRight {
background-position: -24px -24px;
}
#uploader .filelist div.file-panel span.rotateRight:hover {
background-position: -24px 0;
}
#uploader .filelist div.file-panel span.cancel {
background-position: -48px -24px;
}
#uploader .filelist div.file-panel span.cancel:hover {
background-position: -48px 0;
}
#uploader .statusBar {
height: 63px;
border-top: 1px solid #dadada;
padding: 0 20px;
line-height: 63px;
vertical-align: middle;
position: relative;
}
#uploader .statusBar .progress {
border: 1px solid #1483d8;
width: 198px;
background: #fff;
height: 18px;
position: relative;
display: inline-block;
text-align: center;
line-height: 20px;
color: #6dbfff;
position: relative;
margin: 0 10px 0 0;
}
#uploader .statusBar .progress span.percentage {
width: 0;
height: 100%;
left: 0;
top: 0;
background: #1483d8;
position: absolute;
}
#uploader .statusBar .progress span.text {
position: relative;
z-index: 10;
}
#uploader .statusBar .info {
display: inline-block;
font-size: 14px;
color: #666666;
}
#uploader .statusBar .btns {
position: absolute;
top: 10px;
right: 20px;
line-height: 40px;
}
#filePicker2 {
display: inline-block;
float: left;
}
#uploader .statusBar .btns .webuploader-pick,
#uploader .statusBar .btns .uploadBtn,
#uploader .statusBar .btns .uploadBtn.state-uploading,
#uploader .statusBar .btns .uploadBtn.state-paused {
background: #ffffff;
border: 1px solid #cfcfcf;
color: #565656;
padding: 0 18px;
display: inline-block;
border-radius: 3px;
margin-left: 10px;
cursor: pointer;
font-size: 14px;
float: left;
}
#uploader .statusBar .btns .webuploader-pick-hover,
#uploader .statusBar .btns .uploadBtn:hover,
#uploader .statusBar .btns .uploadBtn.state-uploading:hover,
#uploader .statusBar .btns .uploadBtn.state-paused:hover {
background: #f0f0f0;
}
#uploader .statusBar .btns .uploadBtn {
background: #00b7ee;
color: #fff;
border-color: transparent;
}
#uploader .statusBar .btns .uploadBtn:hover {
background: #00a2d4;
}
#uploader .statusBar .btns .uploadBtn.disabled {
pointer-events: none;
opacity: 0.6;
}
|
ultimo_sito_html/astronavi/vulcan/suurok.html | luigirosa/hypertrek | <!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="it">
<!--rxRWR Suurok, Astronavi di classe-->
<!--rxADD Ni'var-->
<!--rxADD Ti'Mur-->
<head>
<meta http-equiv="pics-label" content="(pics-1.1 "http://www.icra.org/ratingsv02.html" l gen true for "http://www.hypertrek.info/" r (cz 1 lz 1 nz 1 oz 1 vj 1) "http://www.rsac.org/ratingsv01.html" l gen true for "http://www.hypertrek.info/" r (n 0 s 0 v 1 l 0))">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>HyperTrek * Astronavi * Vulcaniani * Classe Suurok</title>
<link rel="STYLESHEET" href="../../style/astronavi.css" type="text/css">
<base target="main">
</head>
<body>
<table border="0" width="100%" class="titolo">
<tr>
<td width="52"><a target="nav" href="../index.html"><img src="../../skin/astronavi.gif" alt="Astronavi" border="0" width="52" height="42"></a></td>
<td>
<h1>Vulcaniani - Classe <i>Suurok</i></h1>
</td>
</tr>
</table>
<table border="1" cellpadding="2" width="100%" class="tabella">
<tr>
<td><i><b><a name="Nivar">Ni'var</a></b></i> Comandata dal capitano Sopek,
è stata inviata dall'Alto Consiglio a trasportare <a href="../../personaggi/t/tpol.html">
T'Pol</a> dall'<i><a href="../starfleet/enterprise-nx-01.html">Enterprise</a></i>
a <a href="../../pianeti/v/vulcano.html">Vulcano</a> in seguito alla distruzione
di P'Jem, nel <a href="../../timeline/2151.html">2151</a>.</td>
<td><a href="../../ent/ent014.html">Shadows of P'Jem</a></td>
</tr>
<tr>
<td><b><i><a name="TiMur">Ti'Mur</a></i></b> Comandata dal capitano Vanik,
nel <a href="../../timeline/2151.html">2151</a> assiste l'<i><a href="../starfleet/enterprise-nx-01.html">Enterprise</a></i>
durante un'operazione di salvataggio. La velocità massima della nave è Warp
6,5. Vanik ha assunto il comando della <i>Ti'Mur</i> nel
<a href="../../timeline/2063-2150.html#t2136">2136</a>.</td>
<td><a href="../../ent/ent008.html">Breaking the Ice</a></td>
</tr>
</table>
<hr>
<script language="JavaScript" type="text/javascript">document.write("<h6>Ultima modifica: ",document.lastModified,"<\/h6>")
</script>
</body>
</html>
|
ultimo_sito_html/pianeti/d/denobula.html | luigirosa/hypertrek | <!doctype HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html lang="it">
<head>
<meta http-equiv="pics-label" content="(pics-1.1 "http://www.icra.org/ratingsv02.html" l gen true for "http://www.hypertrek.info/" r (cz 1 lz 1 nz 1 oz 1 vj 1) "http://www.rsac.org/ratingsv01.html" l gen true for "http://www.hypertrek.info/" r (n 0 s 0 v 1 l 0))">
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>HyperTrek * Pianeti * Denobula</title>
<link rel="STYLESHEET" href="../../style/pianeti.css" type="text/css">
<base target="main">
</head>
<body>
<table border="0" class="titolo" width="100%">
<tr>
<td width="52"><a target="nav" href="../index.html"><img src="../../skin/pianeti.gif" alt="Pianeti" border="0" width="52" height="42"></a></td>
<td>
<h1>Denobula</h1>
</td>
</tr>
</table>
<table border="0" class="xr" align="right" cellspacing="0" cellpadding="3">
<tr>
<td class="xrtestata">Specie</td>
</tr>
<tr>
<td class="xrdettaglio">
<a href="../../specie/d/denobulani.html">Denobulani</a></td>
</tr>
</table>
<table border="0" cellpadding="3" class="standard">
<tr>
<td>Classe</td>
<td><b><a href="../../navigazione/pianeti.html#M">M</a></b></td>
</tr>
<tr>
<td>Forma di vita senziente</td>
<td><b><a href="../../specie/d/denobulani.html">Denobulano</a></b></td>
</tr>
</table>
<p>Mondo in perenne sovraffollamento, nel
<a href="../../timeline/2151.html">2151</a> vivevano dodici miliardi di
persone sull'unico continente del pianeta (<a href="../../ent/ent038.html">The
Catwalk</a>). Il sistema denobulano dista 36 anni luce dalla
<a href="../t/terra.html">Terra</a>.</p>
<hr>
<script language="JavaScript" type="text/javascript">document.write("<h6>Ultima modifica: ",document.lastModified,"<\/h6>")
</script>
</body>
</html>
|
views/license.html | ericball1/testApp | <pre>
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for
software and other kinds of works.
The licenses for most software and other practical works are designed
to take away your freedom to share and change the works. By contrast,
the GNU General Public License is intended to guarantee your freedom to
share and change all versions of a program--to make sure it remains free
software for all its users. We, the Free Software Foundation, use the
GNU General Public License for most of our software; it applies also to
any other work released this way by its authors. You can apply it to
your programs, too.
When we speak of free software, we are referring to freedom, not
price. Our General Public Licenses are designed to make sure that you
have the freedom to distribute copies of free software (and charge for
them if you wish), that you receive source code or can get it if you
want it, that you can change the software or use pieces of it in new
free programs, and that you know you can do these things.
To protect your rights, we need to prevent others from denying you
these rights or asking you to surrender the rights. Therefore, you have
certain responsibilities if you distribute copies of the software, or if
you modify it: responsibilities to respect the freedom of others.
For example, if you distribute copies of such a program, whether
gratis or for a fee, you must pass on to the recipients the same
freedoms that you received. You must make sure that they, too, receive
or can get the source code. And you must show them these terms so they
know their rights.
Developers that use the GNU GPL protect your rights with two steps:
(1) assert copyright on the software, and (2) offer you this License
giving you legal permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains
that there is no warranty for this free software. For both users' and
authors' sake, the GPL requires that modified versions be marked as
changed, so that their problems will not be attributed erroneously to
authors of previous versions.
Some devices are designed to deny users access to install or run
modified versions of the software inside them, although the manufacturer
can do so. This is fundamentally incompatible with the aim of
protecting users' freedom to change the software. The systematic
pattern of such abuse occurs in the area of products for individuals to
use, which is precisely where it is most unacceptable. Therefore, we
have designed this version of the GPL to prohibit the practice for those
products. If such problems arise substantially in other domains, we
stand ready to extend this provision to those domains in future versions
of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents.
States should not allow patents to restrict development and use of
software on general-purpose computers, but in those that do, we wish to
avoid the special danger that patents applied to a free program could
make it effectively proprietary. To prevent this, the GPL assures that
patents cannot be used to render the program non-free.
The precise terms and conditions for copying, distribution and
modification follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of
works, such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this
License. Each licensee is addressed as "you". "Licensees" and
"recipients" may be individuals or organizations.
To "modify" a work means to copy from or adapt all or part of the work
in a fashion requiring copyright permission, other than the making of an
exact copy. The resulting work is called a "modified version" of the
earlier work or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based
on the Program.
To "propagate" a work means to do anything with it that, without
permission, would make you directly or secondarily liable for
infringement under applicable copyright law, except executing it on a
computer or modifying a private copy. Propagation includes copying,
distribution (with or without modification), making available to the
public, and in some countries other activities as well.
To "convey" a work means any kind of propagation that enables other
parties to make or receive copies. Mere interaction with a user through
a computer network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices"
to the extent that it includes a convenient and prominently visible
feature that (1) displays an appropriate copyright notice, and (2)
tells the user that there is no warranty for the work (except to the
extent that warranties are provided), that licensees may convey the
work under this License, and how to view a copy of this License. If
the interface presents a list of user commands or options, such as a
menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work
for making modifications to it. "Object code" means any non-source
form of a work.
A "Standard Interface" means an interface that either is an official
standard defined by a recognized standards body, or, in the case of
interfaces specified for a particular programming language, one that
is widely used among developers working in that language.
The "System Libraries" of an executable work include anything, other
than the work as a whole, that (a) is included in the normal form of
packaging a Major Component, but which is not part of that Major
Component, and (b) serves only to enable use of the work with that
Major Component, or to implement a Standard Interface for which an
implementation is available to the public in source code form. A
"Major Component", in this context, means a major essential component
(kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to
produce the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all
the source code needed to generate, install, and (for an executable
work) run the object code and to modify the work, including scripts to
control those activities. However, it does not include the work's
System Libraries, or general-purpose tools or generally available free
programs which are used unmodified in performing those activities but
which are not part of the work. For example, Corresponding Source
includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically
linked subprograms that the work is specifically designed to require,
such as by intimate data communication or control flow between those
subprograms and other parts of the work.
The Corresponding Source need not include anything that users
can regenerate automatically from other parts of the Corresponding
Source.
The Corresponding Source for a work in source code form is that
same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of
copyright on the Program, and are irrevocable provided the stated
conditions are met. This License explicitly affirms your unlimited
permission to run the unmodified Program. The output from running a
covered work is covered by this License only if the output, given its
content, constitutes a covered work. This License acknowledges your
rights of fair use or other equivalent, as provided by copyright law.
You may make, run and propagate covered works that you do not
convey, without conditions so long as your license otherwise remains
in force. You may convey covered works to others for the sole purpose
of having them make modifications exclusively for you, or provide you
with facilities for running those works, provided that you comply with
the terms of this License in conveying all material for which you do
not control copyright. Those thus making or running the covered works
for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of
your copyrighted material outside their relationship with you.
Conveying under any other circumstances is permitted solely under
the conditions stated below. Sublicensing is not allowed; section 10
makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological
measure under any applicable law fulfilling obligations under article
11 of the WIPO copyright treaty adopted on 20 December 1996, or
similar laws prohibiting or restricting circumvention of such
measures.
When you convey a covered work, you waive any legal power to forbid
circumvention of technological measures to the extent such circumvention
is effected by exercising rights under this License with respect to
the covered work, and you disclaim any intention to limit operation or
modification of the work as a means of enforcing, against the work's
users, your or third parties' legal rights to forbid circumvention of
technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you
receive it, in any medium, provided that you conspicuously and
appropriately publish on each copy an appropriate copyright notice;
keep intact all notices stating that this License and any
non-permissive terms added in accord with section 7 apply to the code;
keep intact all notices of the absence of any warranty; and give all
recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey,
and you may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to
produce it from the Program, in the form of source code under the
terms of section 4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified
it, and giving a relevant date.
b) The work must carry prominent notices stating that it is
released under this License and any conditions added under section
7. This requirement modifies the requirement in section 4 to
"keep intact all notices".
c) You must license the entire work, as a whole, under this
License to anyone who comes into possession of a copy. This
License will therefore apply, along with any applicable section 7
additional terms, to the whole of the work, and all its parts,
regardless of how they are packaged. This License gives no
permission to license the work in any other way, but it does not
invalidate such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display
Appropriate Legal Notices; however, if the Program has interactive
interfaces that do not display Appropriate Legal Notices, your
work need not make them do so.
A compilation of a covered work with other separate and independent
works, which are not by their nature extensions of the covered work,
and which are not combined with it such as to form a larger program,
in or on a volume of a storage or distribution medium, is called an
"aggregate" if the compilation and its resulting copyright are not
used to limit the access or legal rights of the compilation's users
beyond what the individual works permit. Inclusion of a covered work
in an aggregate does not cause this License to apply to the other
parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms
of sections 4 and 5, provided that you also convey the
machine-readable Corresponding Source under the terms of this License,
in one of these ways:
a) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by the
Corresponding Source fixed on a durable physical medium
customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product
(including a physical distribution medium), accompanied by a
written offer, valid for at least three years and valid for as
long as you offer spare parts or customer support for that product
model, to give anyone who possesses the object code either (1) a
copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical
medium customarily used for software interchange, for a price no
more than your reasonable cost of physically performing this
conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the
written offer to provide the Corresponding Source. This
alternative is allowed only occasionally and noncommercially, and
only if you received the object code with such an offer, in accord
with subsection 6b.
d) Convey the object code by offering access from a designated
place (gratis or for a charge), and offer equivalent access to the
Corresponding Source in the same way through the same place at no
further charge. You need not require recipients to copy the
Corresponding Source along with the object code. If the place to
copy the object code is a network server, the Corresponding Source
may be on a different server (operated by you or a third party)
that supports equivalent copying facilities, provided you maintain
clear directions next to the object code saying where to find the
Corresponding Source. Regardless of what server hosts the
Corresponding Source, you remain obligated to ensure that it is
available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided
you inform other peers where the object code and Corresponding
Source of the work are being offered to the general public at no
charge under subsection 6d.
A separable portion of the object code, whose source code is excluded
from the Corresponding Source as a System Library, need not be
included in conveying the object code work.
A "User Product" is either (1) a "consumer product", which means any
tangible personal property which is normally used for personal, family,
or household purposes, or (2) anything designed or sold for incorporation
into a dwelling. In determining whether a product is a consumer product,
doubtful cases shall be resolved in favor of coverage. For a particular
product received by a particular user, "normally used" refers to a
typical or common use of that class of product, regardless of the status
of the particular user or of the way in which the particular user
actually uses, or expects or is expected to use, the product. A product
is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent
the only significant mode of use of the product.
"Installation Information" for a User Product means any methods,
procedures, authorization keys, or other information required to install
and execute modified versions of a covered work in that User Product from
a modified version of its Corresponding Source. The information must
suffice to ensure that the continued functioning of the modified object
code is in no case prevented or interfered with solely because
modification has been made.
If you convey an object code work under this section in, or with, or
specifically for use in, a User Product, and the conveying occurs as
part of a transaction in which the right of possession and use of the
User Product is transferred to the recipient in perpetuity or for a
fixed term (regardless of how the transaction is characterized), the
Corresponding Source conveyed under this section must be accompanied
by the Installation Information. But this requirement does not apply
if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has
been installed in ROM).
The requirement to provide Installation Information does not include a
requirement to continue to provide support service, warranty, or updates
for a work that has been modified or installed by the recipient, or for
the User Product in which it has been modified or installed. Access to a
network may be denied when the modification itself materially and
adversely affects the operation of the network or violates the rules and
protocols for communication across the network.
Corresponding Source conveyed, and Installation Information provided,
in accord with this section must be in a format that is publicly
documented (and with an implementation available to the public in
source code form), and must require no special password or key for
unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this
License by making exceptions from one or more of its conditions.
Additional permissions that are applicable to the entire Program shall
be treated as though they were included in this License, to the extent
that they are valid under applicable law. If additional permissions
apply only to part of the Program, that part may be used separately
under those permissions, but the entire Program remains governed by
this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option
remove any additional permissions from that copy, or from any part of
it. (Additional permissions may be written to require their own
removal in certain cases when you modify the work.) You may place
additional permissions on material, added by you to a covered work,
for which you have or can give appropriate copyright permission.
Notwithstanding any other provision of this License, for material you
add to a covered work, you may (if authorized by the copyright holders of
that material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the
terms of sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or
author attributions in that material or in the Appropriate Legal
Notices displayed by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or
requiring that modified versions of such material be marked in
reasonable ways as different from the original version; or
d) Limiting the use for publicity purposes of names of licensors or
authors of the material; or
e) Declining to grant rights under trademark law for use of some
trade names, trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that
material by anyone who conveys the material (or modified versions of
it) with contractual assumptions of liability to the recipient, for
any liability that these contractual assumptions directly impose on
those licensors and authors.
All other non-permissive additional terms are considered "further
restrictions" within the meaning of section 10. If the Program as you
received it, or any part of it, contains a notice stating that it is
governed by this License along with a term that is a further
restriction, you may remove that term. If a license document contains
a further restriction but permits relicensing or conveying under this
License, you may add to a covered work material governed by the terms
of that license document, provided that the further restriction does
not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you
must place, in the relevant source files, a statement of the
additional terms that apply to those files, or a notice indicating
where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the
form of a separately written license, or stated as exceptions;
the above requirements apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly
provided under this License. Any attempt otherwise to propagate or
modify it is void, and will automatically terminate your rights under
this License (including any patent licenses granted under the third
paragraph of section 11).
However, if you cease all violation of this License, then your
license from a particular copyright holder is reinstated (a)
provisionally, unless and until the copyright holder explicitly and
finally terminates your license, and (b) permanently, if the copyright
holder fails to notify you of the violation by some reasonable means
prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is
reinstated permanently if the copyright holder notifies you of the
violation by some reasonable means, this is the first time you have
received notice of violation of this License (for any work) from that
copyright holder, and you cure the violation prior to 30 days after
your receipt of the notice.
Termination of your rights under this section does not terminate the
licenses of parties who have received copies or rights from you under
this License. If your rights have been terminated and not permanently
reinstated, you do not qualify to receive new licenses for the same
material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or
run a copy of the Program. Ancillary propagation of a covered work
occurring solely as a consequence of using peer-to-peer transmission
to receive a copy likewise does not require acceptance. However,
nothing other than this License grants you permission to propagate or
modify any covered work. These actions infringe copyright if you do
not accept this License. Therefore, by modifying or propagating a
covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically
receives a license from the original licensors, to run, modify and
propagate that work, subject to this License. You are not responsible
for enforcing compliance by third parties with this License.
An "entity transaction" is a transaction transferring control of an
organization, or substantially all assets of one, or subdividing an
organization, or merging organizations. If propagation of a covered
work results from an entity transaction, each party to that
transaction who receives a copy of the work also receives whatever
licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the
Corresponding Source of the work from the predecessor in interest, if
the predecessor has it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the
rights granted or affirmed under this License. For example, you may
not impose a license fee, royalty, or other charge for exercise of
rights granted under this License, and you may not initiate litigation
(including a cross-claim or counterclaim in a lawsuit) alleging that
any patent claim is infringed by making, using, selling, offering for
sale, or importing the Program or any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this
License of the Program or a work on which the Program is based. The
work thus licensed is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims
owned or controlled by the contributor, whether already acquired or
hereafter acquired, that would be infringed by some manner, permitted
by this License, of making, using, or selling its contributor version,
but do not include claims that would be infringed only as a
consequence of further modification of the contributor version. For
purposes of this definition, "control" includes the right to grant
patent sublicenses in a manner consistent with the requirements of
this License.
Each contributor grants you a non-exclusive, worldwide, royalty-free
patent license under the contributor's essential patent claims, to
make, use, sell, offer for sale, import and otherwise run, modify and
propagate the contents of its contributor version.
In the following three paragraphs, a "patent license" is any express
agreement or commitment, however denominated, not to enforce a patent
(such as an express permission to practice a patent or covenant not to
sue for patent infringement). To "grant" such a patent license to a
party means to make such an agreement or commitment not to enforce a
patent against the party.
If you convey a covered work, knowingly relying on a patent license,
and the Corresponding Source of the work is not available for anyone
to copy, free of charge and under the terms of this License, through a
publicly available network server or other readily accessible means,
then you must either (1) cause the Corresponding Source to be so
available, or (2) arrange to deprive yourself of the benefit of the
patent license for this particular work, or (3) arrange, in a manner
consistent with the requirements of this License, to extend the patent
license to downstream recipients. "Knowingly relying" means you have
actual knowledge that, but for the patent license, your conveying the
covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that
country that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or
arrangement, you convey, or propagate by procuring conveyance of, a
covered work, and grant a patent license to some of the parties
receiving the covered work authorizing them to use, propagate, modify
or convey a specific copy of the covered work, then the patent license
you grant is automatically extended to all recipients of the covered
work and works based on it.
A patent license is "discriminatory" if it does not include within
the scope of its coverage, prohibits the exercise of, or is
conditioned on the non-exercise of one or more of the rights that are
specifically granted under this License. You may not convey a covered
work if you are a party to an arrangement with a third party that is
in the business of distributing software, under which you make payment
to the third party based on the extent of your activity of conveying
the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory
patent license (a) in connection with copies of the covered work
conveyed by you (or copies made from those copies), or (b) primarily
for and in connection with specific products or compilations that
contain the covered work, unless you entered into that arrangement,
or that patent license was granted, prior to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting
any implied license or other defenses to infringement that may
otherwise be available to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or
otherwise) that contradict the conditions of this License, they do not
excuse you from the conditions of this License. If you cannot convey a
covered work so as to satisfy simultaneously your obligations under this
License and any other pertinent obligations, then as a consequence you may
not convey it at all. For example, if you agree to terms that obligate you
to collect a royalty for further conveying from those to whom you convey
the Program, the only way you could satisfy both those terms and this
License would be to refrain entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have
permission to link or combine any covered work with a work licensed
under version 3 of the GNU Affero General Public License into a single
combined work, and to convey the resulting work. The terms of this
License will continue to apply to the part which is the covered work,
but the special requirements of the GNU Affero General Public License,
section 13, concerning interaction through a network will apply to the
combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of
the GNU General Public License from time to time. Such new versions will
be similar in spirit to the present version, but may differ in detail to
address new problems or concerns.
Each version is given a distinguishing version number. If the
Program specifies that a certain numbered version of the GNU General
Public License "or any later version" applies to it, you have the
option of following the terms and conditions either of that numbered
version or of any later version published by the Free Software
Foundation. If the Program does not specify a version number of the
GNU General Public License, you may choose any version ever published
by the Free Software Foundation.
If the Program specifies that a proxy can decide which future
versions of the GNU General Public License can be used, that proxy's
public statement of acceptance of a version permanently authorizes you
to choose that version for the Program.
Later license versions may give you additional or different
permissions. However, no additional obligations are imposed on any
author or copyright holder as a result of your choosing to follow a
later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided
above cannot be given local legal effect according to their terms,
reviewing courts shall apply local law that most closely approximates
an absolute waiver of all civil liability in connection with the
Program, unless a warranty or assumption of liability accompanies a
copy of the Program in return for a fee.
END OF TERMS AND CONDITIONS
</pre> |
public_html/beta.html | relipse/cworklog | <!--
/**
* Coders/Contractors Work Log - A time tracking/invoicing app
* Copyright (C) 2015 Jim A Kinsman (cworklog.com) relipse@gmail.com github.com/relipse
*
* But God demonstrates His own love toward us, in that while we were still sinners,
* Christ died for us. - Rom 5:8
*
* LICENSES - GPL 3. (If you need a different commercial license please contact Jim)
*
* 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.
*
* 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 (gpl.txt). If not, see <http://www.gnu.org/licenses/>.
*/
-->
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="DeanoMaestro" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="viewport" content="width=device-width, maximum-scale=1" />
<title>Contractor's WorkLog | Welcome</title>
<link href="css/betarelease_style.css" type="text/css" rel="stylesheet" />
<script src="js/jquery-1.10.0.min.js"></script>
<link rel="stylesheet" href="js/prettyPhoto/css/prettyPhoto.css" type="text/css" media="screen" charset="utf-8" />
<script src="js/prettyPhoto/js/jquery.prettyPhoto.js" type="text/javascript" charset="utf-8"></script>
<script type='text/javascript' src='js/jquery.scrollTo-min.js'></script>
</head>
<body>
<div id="main-wrapper">
<div id="header-wrapper">
<div id="header">
<img class="logo" src="betarelease_images/logo.png" title="Contractor's WorkLog" alt="Contractor's WorkLog" />
<span class="register">Try Us, <a href="register.php">Register</a></span>
<img class="beta" src="betarelease_images/it's_beta.png" />
<ul class="nav">
<li><a href="index.php">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#plans" id="scrollto_plans">Our Plans</a></li>
<li class="login"><a class="login" href="#">Login</a>
<div id="quick_login" style="display:none"><form id="frmQuickLogin" method="post" action="index.php"><label>Username <input type="text" name="username_or_email" tabindex="1" /></label><label>Password <input type="password" name="password" tabindex="2" /></label><input type="submit" value="Login" tabindex="3" /><a class="littletext link" href="lostpassword.php" >Forgot password?</a></form></div></li>
</ul>
</div>
</div>
<div id="middle-wrapper">
<div class="wrapper">
<h1>Welcome to Contractor's Work Log</h1>
<p>Contractor's WorkLog is a tool to track billable time for clients, and then send them an invoice. <span class="bold">It's easy!</span></p>
<div class="steps">
<ul>
<li class="one">Add a Client Work Log</li>
<li class="two">Log Your Time</li>
<li class="three">Send a Bill</li>
</ul>
</div>
<div id="left">
<a href="register.php"><img src="betarelease_images/get_started.png" /></a>
<a href="http://www.youtube.com/watch?v=Hl9zjlxUhT4&width=80%&height=80%" rel="prettyPhoto[inside]" class="laptop_small"><img src="betarelease_images/laptop_small.png" /></a>
<a href="http://www.youtube.com/watch?v=Hl9zjlxUhT4&width=80%&height=80%" rel="prettyPhoto" class="laptop_small"><img src="betarelease_images/learn_more.png" /></a>
<a href="images/screenshots/ss2013-01-03.png?width=80%&height=80%" rel="prettyPhoto[inside]"></a>
</div>
<div id="right">
<img src="betarelease_images/laptop_large.png" />
</div>
</div>
</div>
<div id="features">
<div class="wrapper">
<h1>Features <span class="changecolour">Include:</span></h1>
<ul class="top">
<li class="first">Keep track of all your clients</li>
<li class="second">Easy click Start/Stop to track all billable time</li>
<li class="third">One-click PDF generated invoice</li>
</ul>
<ul class="bottom">
<li>Pad your invoice if needed</li>
</ul>
</div>
</div>
<div id="lower-wrapper">
<div class="wrapper">
<h1>Our BETA Plans</h1>
<p>Time tracking, client management, and quick invoicing, <span class="bold">made easy!</span></p>
<div id="offers">
<div id="offer-left">
<h1>BETA<br />Free</h1>
<ul>
<li class="selected">$0.00/mo</li>
<li>2 clients</li>
<li>2 active work logs</li>
</ul>
<a href="register.php?plan=free"><img src="betarelease_images/sign_up_dark.png" /></a>
</div>
<div id="offer-center">
<h1>BETA<br />Starter</h1>
<ul>
<li class="selected">$7.00/mo</li>
<li>10 clients</li>
<li>7 active work logs</li>
</ul>
<a href="register.php?plan=betastarter"><img src="betarelease_images/sign_up.png" /></a>
</div>
<div id="offer-right">
<h1>BETA<br />Pro</h1>
<ul>
<li class="selected">$15.00/mo</li>
<li>25 clients</li>
<li>15 active work logs</li>
</ul>
<a href="register.php?plan=betapro"><img src="betarelease_images/sign_up_dark.png" /></a>
</div>
</div>
</div>
</div>
<div id="footer">
<div class="footer-wrapper">
<a href="terms.php?iframe=true&width=80%&height=80%" class="docs" rel="prettyPhoto">Privacy Policy</a>
<a href="terms.php?iframe=true&width=80%&height=80%" rel="prettyPhoto">Terms and Conditions</a>
<p class="copy">© 2013 Contractor's WorkLog</p>
<img class="footer-icon" src="betarelease_images/footer_icon.png" />
</div>
</div>
</div>
<script src="js/index.js"></script>
</body>
</html>
|
web/index-files/index-10.html | alperenelhan/java_restful_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_10) on Sat Jan 12 16:28:30 EET 2013 -->
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>S-Index</title>
<meta name="date" content="2013-01-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="S-Index";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-9.html">Prev Letter</a></li>
<li><a href="index-11.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-10.html" target="_top">Frames</a></li>
<li><a href="index-10.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="contentContainer"><a href="index-1.html">B</a> <a href="index-2.html">C</a> <a href="index-3.html">D</a> <a href="index-4.html">F</a> <a href="index-5.html">G</a> <a href="index-6.html">I</a> <a href="index-7.html">M</a> <a href="index-8.html">O</a> <a href="index-9.html">P</a> <a href="index-10.html">S</a> <a href="index-11.html">T</a> <a href="index-12.html">U</a> <a name="_S_">
<!-- -->
</a>
<h2 class="title">S</h2>
<dl>
<dt><span class="strong"><a href="../org/elhan/model/User.html#setId(java.lang.String)">setId(String)</a></span> - Method in class org.elhan.model.<a href="../org/elhan/model/User.html" title="class in org.elhan.model">User</a></dt>
<dd>
<div class="block">Sets the id of the user</div>
</dd>
<dt><span class="strong"><a href="../org/elhan/utils/Globals.html#SUCCESFULLY_CREATED">SUCCESFULLY_CREATED</a></span> - Static variable in class org.elhan.utils.<a href="../org/elhan/utils/Globals.html" title="class in org.elhan.utils">Globals</a></dt>
<dd>
<div class="block">If a user succesfully created as a result of the POST operation, then
application returns this data.</div>
</dd>
<dt><span class="strong"><a href="../org/elhan/utils/Globals.html#SUCCESFULLY_DELETED">SUCCESFULLY_DELETED</a></span> - Static variable in class org.elhan.utils.<a href="../org/elhan/utils/Globals.html" title="class in org.elhan.utils">Globals</a></dt>
<dd>
<div class="block">If a user succesfully deleted as a result of the DELETE operation, then
application returns this data.</div>
</dd>
<dt><span class="strong"><a href="../org/elhan/utils/Globals.html#SUCCESFULLY_DROPPED">SUCCESFULLY_DROPPED</a></span> - Static variable in class org.elhan.utils.<a href="../org/elhan/utils/Globals.html" title="class in org.elhan.utils">Globals</a></dt>
<dd>
<div class="block">If database dropped after a DELETE operation, then application returns
this data.</div>
</dd>
<dt><span class="strong"><a href="../org/elhan/utils/Globals.html#SUCCESFULLY_UPDATED">SUCCESFULLY_UPDATED</a></span> - Static variable in class org.elhan.utils.<a href="../org/elhan/utils/Globals.html" title="class in org.elhan.utils">Globals</a></dt>
<dd>
<div class="block">If a user succesfully updated as a result of the PUT operation, then
application returns this data.</div>
</dd>
</dl>
<a href="index-1.html">B</a> <a href="index-2.html">C</a> <a href="index-3.html">D</a> <a href="index-4.html">F</a> <a href="index-5.html">G</a> <a href="index-6.html">I</a> <a href="index-7.html">M</a> <a href="index-8.html">O</a> <a href="index-9.html">P</a> <a href="index-10.html">S</a> <a href="index-11.html">T</a> <a href="index-12.html">U</a> </div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../overview-summary.html">Overview</a></li>
<li>Package</li>
<li>Class</li>
<li>Use</li>
<li><a href="../overview-tree.html">Tree</a></li>
<li><a href="../deprecated-list.html">Deprecated</a></li>
<li class="navBarCell1Rev">Index</li>
<li><a href="../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="index-9.html">Prev Letter</a></li>
<li><a href="index-11.html">Next Letter</a></li>
</ul>
<ul class="navList">
<li><a href="../index.html?index-filesindex-10.html" target="_top">Frames</a></li>
<li><a href="index-10.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>
|
php-manual/judy.offsetunset.html | Sliim/sleemacs | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Offset to unset</title>
</head>
<body><div class="manualnavbar" style="text-align: center;">
<div class="prev" style="text-align: left; float: left;"><a href="judy.offsetset.html">Judy::offsetSet</a></div>
<div class="next" style="text-align: right; float: right;"><a href="judy.prev.html">Judy::prev</a></div>
<div class="up"><a href="class.judy.html">Judy</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="judy.offsetunset" class="refentry">
<div class="refnamediv">
<h1 class="refname">Judy::offsetUnset</h1>
<p class="verinfo">(PECL judy >= 0.1.1)</p><p class="refpurpose"><span class="refname">Judy::offsetUnset</span> — <span class="dc-title">Offset to unset</span></p>
</div>
<div class="refsect1 description" id="refsect1-judy.offsetunset-description">
<h3 class="title">Description</h3>
<div class="methodsynopsis dc-description">
<span class="modifier">public</span> <span class="type">bool</span> <span class="methodname"><strong>Judy::offsetUnset</strong></span>
( <span class="methodparam"><span class="type"><a href="language.pseudo-types.html#language.types.mixed" class="type mixed">mixed</a></span> <code class="parameter">$offset</code></span>
)</div>
<p class="para rdfs-comment">
Unsets an offset.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-judy.offsetunset-parameters">
<h3 class="title">Parameters</h3>
<dl>
<dt>
<span class="term"><em><code class="parameter">offset</code></em></span>
<dd>
<p class="para">
The offset to unset.
</p>
</dd>
</dt>
</dl>
</div>
<div class="refsect1 returnvalues" id="refsect1-judy.offsetunset-returnvalues">
<h3 class="title">Return Values</h3>
<p class="para">
No value is returned.
</p>
</div>
</div><hr /><div class="manualnavbar" style="text-align: center;">
<div class="prev" style="text-align: left; float: left;"><a href="judy.offsetset.html">Judy::offsetSet</a></div>
<div class="next" style="text-align: right; float: right;"><a href="judy.prev.html">Judy::prev</a></div>
<div class="up"><a href="class.judy.html">Judy</a></div>
<div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>
|
Doc/qtquick/qtquick-imageprovider-imageprovidercore-qmldir.html | angeloprudentino/QtNets | <?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>qmldir Example File | Qt Quick 5.7</title>
<link rel="stylesheet" type="text/css" href="style/offline-simple.css" />
<script type="text/javascript">
window.onload = function(){document.getElementsByTagName("link").item(0).setAttribute("href", "style/offline.css");};
</script>
</head>
<body>
<div class="header" id="qtdocheader">
<div class="main">
<div class="main-rounded">
<div class="navigationbar">
<table><tr>
<td ><a href="../qtdoc/supported-platforms-and-configurations.html#qt-5-7">Qt 5.7</a></td><td ><a href="qtquick-index.html">Qt Quick</a></td><td ><a href="qtquick-imageprovider-example.html">C++ Extensions: Image Provider Example</a></td><td >qmldir Example File</td></tr></table><table class="buildversion"><tr>
<td id="buildversion" width="100%" align="right">Qt 5.7.0 Reference Documentation</td>
</tr></table>
</div>
</div>
<div class="content">
<div class="line">
<div class="content mainContent">
<div class="sidebar"><div class="sidebar-content" id="sidebar-content"></div></div>
<h1 class="title">qmldir Example File</h1>
<span class="subtitle">imageprovider/ImageProviderCore/qmldir</span>
<!-- $$$imageprovider/ImageProviderCore/qmldir-description -->
<div class="descr"> <a name="details"></a>
<pre class="cpp">
plugin qmlimageproviderplugin
</pre>
</div>
<!-- @@@imageprovider/ImageProviderCore/qmldir -->
</div>
</div>
</div>
</div>
</div>
<div class="footer">
<p>
<acronym title="Copyright">©</acronym> 2016 The Qt Company Ltd.
Documentation contributions included herein are the copyrights of
their respective owners.<br> The documentation provided herein is licensed under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.<br> Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property
of their respective owners. </p>
</div>
</body>
</html>
|
InfoRetrievalSystem/dataset/CACM-1200.html | jrosseel/ProjectInformationRetrieval | <html>
<pre>
On Reversible Subroutines and Computers that Run Backwards
A computer design is describe which permits
subroutines to be executed backward as well as
forward, either with their instructions unchanged or
replaced with conjugate instructions. It is shown
that using this concept a number of new subroutine types
can be developed with rather unusual properties.
Since these properties are analogous to certain matrix
operations, a parallel nomenclature is suggested
for their classification.
CACM September, 1965
Reily, E. D.
Federighi, F. D.
CA650906 JB March 6, 19787:33 PM
1200 5 1200
1200 5 1200
1200 5 1200
1945 5 1200
823 6 1200
914 6 1200
915 6 1200
917 6 1200
984 6 1200
989 6 1200
990 6 1200
1012 6 1200
1084 6 1200
1098 6 1200
1122 6 1200
1138 6 1200
1139 6 1200
1141 6 1200
1200 6 1200
1223 6 1200
1265 6 1200
1336 6 1200
1396 6 1200
1455 6 1200
1477 6 1200
1487 6 1200
1491 6 1200
1496 6 1200
483 6 1200
584 6 1200
669 6 1200
680 6 1200
763 6 1200
</pre>
</html>
|
RossFamilyTree/fam/9/8/d15f60919c67df99d98531ee89.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 - Family of ANDERSON, Eric Edward and SCHRAM, Mildred Joyce</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 class = "CurrentSection"><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="RelationshipDetail">
<h2>Family of ANDERSON, Eric Edward and SCHRAM, Mildred Joyce<sup><small></small></sup></h2>
<div class="subsection" id="families">
<h4>Families</h4>
<table class="infolist">
<tr class="BeginFamily">
<td class="ColumnType">Unknown</td>
<td class="ColumnAttribute">Partner</td>
<td class="ColumnValue">
<a href="../../../ppl/b/8/d15f609198a74642e409074558b.html">ANDERSON, Eric Edward<span class="grampsid"> [I17945]</span></a>
</td>
</tr>
<tr class="BeginFamily">
<td class="ColumnType">Unknown</td>
<td class="ColumnAttribute">Partner</td>
<td class="ColumnValue">
<a href="../../../ppl/c/a/d15f60919ed7ea806083fbb75ac.html">SCHRAM, Mildred Joyce<span class="grampsid"> [I17946]</span></a>
</td>
</tr>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute">Attributes</td>
<td class="ColumnValue">
<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">219EE4CEA23149478F1A9718D6EA09F1E695</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</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">219EE4CEA23149478F1A9718D6EA09F1E695</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</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:55:26<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
site/_includes/hero.html | micromata/projectforge | {% if page.header.image %}
{% assign image = page.header.image %}
{% endif %}
{% if page.header.align %}
{% assign align = page.header.align %}
{% else %}
{% assign align = "center" %}
{% endif %}
<header class="uk-background-{{ align }}-center uk-background-cover" style="{% if page.header.background %}background-color: {{ page.header.background }};{% endif %}{% if page.header.image %} background-image: url({% if image contains 'http' %}{{ image }}{% else %}{{ site.uploads | absolute_url }}{{ image }}{% endif %});{% endif %}">
<div class="uk-overlay-header" style="{% if page.header.overlay %}background: {{ page.header.overlay }};{% endif %}">
{% include navbar.html %}
<div class="uk-section section-hero uk-position-relative" data-uk-scrollspy="cls: uk-animation-slide-bottom-medium; repeat: true">
<div class="uk-container uk-container-small">
{% if page.hero.image %}
<p class="hero-image uk-text-center"><img src="{{ site.uploads | absolute_url }}{{ page.hero.image }}" alt="Hero"></p>
{% endif %}
<h1 class="uk-heading-primary uk-text-center uk-margin-remove-top">{{ page.hero.title }}</h1>
{% if page.hero.subtitle %}<p class="uk-text-lead uk-text-center">{{ page.hero.subtitle }}</p>{% endif %}
{% if page.hero.search %}
<div class="hero-search">
<!-- Html Elements for Search -->
<div class="uk-position-relative">
<form class="uk-search uk-search-default uk-width-1-1" name="search-hero" onsubmit="return false;">
<span class="uk-search-icon-flip" data-uk-search-icon></span>
<input id="search-hero" class="uk-search-input uk-box-shadow-large" type="search" placeholder="{{ site.data.translation[site.lang].search_placeholder | default: "Search for answers" }}" autocomplete="off">
</form>
<ul id="search-hero-results" class="uk-position-absolute uk-width-1-1 uk-list"></ul>
</div>
<script>
SimpleJekyllSearch({
searchInput: document.getElementById('search-hero'),
resultsContainer: document.getElementById('search-hero-results'),
noResultsText: '<li class="no-results">{{ site.data.translation[site.lang].search_no_results | default: "No results found" }}</li>',
searchResultTemplate: '<li><a href="{url}">{title}</a></li>',
json: "{{ '/search.json' | relative_url }}"
});
searchResults("search-hero");
</script>
</div>
{% endif %}
</div>
</div>
</div>
</header>
|
_source/news/2019-10-08-rss-mohan-bhagwat-slow-down-.html | InstantKhabar/_source | ---
title: "आरएसएस प्रमुख ने कहा, मंदी पर बहुत अधिक चर्चा की जरूरत नहीं"
layout: item
category: ["india"]
date: 2019-10-08T15:45:28.926Z
image: 1570549528925rss-mohan-bhagwat-slow-down-.jpg
---
<p>नागपुर. राष्ट्रीय स्वयंसेवक संघ प्रमुख मोहन भागवत ने मंगलवार को यहां कहा कि ”तथाकथित” अर्थिक मंदी के बारे में ”बहुत अधिक चर्चा” करने की जरूरत नहीं है क्योंकि इससे कारोबार जगत तथा लोग चिंतित होते हैं और आर्थिक गतिविधियों में कमी आती है. उन्होंने यह भी कहा कि 'स्वदेशी' पर आरएसएस के जोर का मतलब आत्मनिर्भरता है, न कि आर्थिक अलगाव.</p>
<p>भागवत ने कहा कि सरकार स्थितियों में सुधार के उपाय कर रही है और हमें विश्वास रखना चाहिए. वह विजयादशमी के अवसर पर राष्ट्रीय स्वयंसेवक संघ की एक सभा को संबोधित कर रहे थे. भागवत ने कहा, 'देश बढ़ रहा है. लेकिन विश्व अर्थव्यवस्था में एक चक्र चलता है, जब कुछ कठिनाई आती है तो विकास धीमा हो जाता है. तब इसे सुस्ती कहते हैं.'</p>
<p>उन्होंने कहा, 'एक अर्थशास्त्री ने मुझसे कहा कि आप इसे मंदी तभी कह सकते हैं जबकि आपकी विकास दर शून्य हो. लेकिन हमारी विकास दर पांच प्रतिशत के करीब है. कोई इसे लेकर चिंता जता सकता है, लेकिन इस पर चर्चा करने की जरूरत नहीं है.'</p>
<p>उन्होंने कहा, 'इस पर चर्चा से एक ऐसे परिवेश का निर्माण होता है, जो गतिविधियों को प्रभावित करता है. तथाकथित मंदी के बारे में बहुत अधिक चर्चा से उद्योग एवं व्यापार में लोगों को लगने लगता है कि अर्थव्यवस्था में सच में मंदी आ रही है और वे अपने कदमों को लेकर अधिक सतर्क हो जाते हैं.' उन्होंने कहा, 'सरकार ने इस विषय पर संवेदनशीलता दिखाई है और कुछ कदम उठाए हैं.'</p>
<p>संघ प्रमुख ने कहा कि सरकार को अमेरिका और चीन के बीच व्यापार युद्ध जैसे कुछ बाहरी कारणों का सामना भी करना पड़ा है. उन्होंने कहा, 'हमें अपनी सरकार पर भरोसा करने की जरूरत है. हमने कई कदम उठाए हैं, आने वाले दिनों में कुछ सकारात्मक असर होंगे.'</p>
<p>प्रत्यक्ष विदेशी निवेश (एफडीआई) के बारे में भागवत ने कहा आरएसएस स्वदेशी का समर्थन करता है. उन्होंने साथ ही जोड़ा, 'कुछ लोग सोचते हैं कि स्वदेशी का अर्थ है कि बाकी दुनिया के साथ संबंध तोड़ लेना. ऐसा बिल्कुल भी नहीं है.'</p>
<p>उन्होंने कहा, 'जो चीज मैं घर में बना सकता हूं, उसे बाजार से नहीं खरीदूंगा. अगर मुझे इसे खरीदना ही है तो मुझे स्थानीय बाजार को प्राथमिकता देनी चाहिए और स्थानीय बाजार और उनके रोजगार को संरक्षण देना चाहिए... दूसरे देशों के साथ अपनी शर्तों पर व्यापार को स्वदेशी कहते हैं.'</p> |
app/app.css | kunthar/ulakbus-ui | /* Space out content a bit */
body {
font-family:'robotoregular';
background-color: #f5f5f5;
overflow:hidden;
}
::-webkit-scrollbar {
width: 5px;
height: 5px;
}
::-webkit-scrollbar-track {
background-color:#ccc;
}
::-webkit-scrollbar-thumb {
background-color:#999;
}
.tooltip {
font-family:'robotolight';
font-size:13px;
letter-spacing:0.3px;
padding:15px;
}
.dropdown-toggle {
cursor:pointer;
}
.badge {
border-radius: 100%;
width: 22px;
height: 22px;
padding: 0;
position: absolute;
z-index: 1;
line-height: 19px;
top: 4px;
left: 2px;
background-color: rgba(220, 112, 0, 1);
border: 2px solid #a61229;
font-family: 'robotomedium';
font-weight: normal;
}
.form-container {
width: 650px;
background-color: #fff;
padding: 25px;
border-radius: 3px;
margin-left: auto;
margin-right: auto;
-webkit-box-shadow: 0 0 25px rgba(0,0,0,0.04);
-moz-box-shadow: 0 0 25px rgba(0,0,0,0.04);
box-shadow: 0 0 25px rgba(0,0,0,0.04);
}
.form-control {
box-shadow:none;
border-radius:0;
border-color:#ececec;
}
.btn {
border:none;
}
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
outline: none;
}
a {
color:#a61229;
-webkit-transition: all .1s;
-moz-transition: all .1s;
-ms-transition: all .1s;
-o-transition: all .1s;
transition: all .1s;
}
a:hover {
color:#941A1A;
}
.breadcrumb {
background-color:transparent;
padding:0;
font-size:18px;
float:left;
margin-bottom: 0;
}
.buttons-on-bottom {
float:left;
}
.filter-inner {
background-color: #fff;
padding: 15px;
margin-top: 104px;
border: 1px solid #E6E6E6;
}
.filter-inner h4 {
font-family: 'robotobold';
color: #333;
letter-spacing: 0.5px;
}
img.header-profile {
width:27px;
height:27px;
border-radius:100%;
margin-right:6px;
}
/** DETAIL PAGE **/
.detail-page {
background-color: #fff;
padding: 15px;
border: 1px solid #E6E6E6;
}
/** END DETAIL PAGE **/
/** BRAND **/
.brand-bg {
background-color:#A61229;
}
button.brand-bg {
background-color:#A61229;
color:#fff;
}
button.brand-bg:hover {
background-color:#941A1A;
color:#fff;
}
.brand {
position: absolute;
width: 120px;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}
a.logo {
height: 42px;
display: block;
text-align: center;
line-height: 38px;
opacity: 0.8;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
a.logo:hover {
opacity:1;
}
.logo img {
width: 100px;
}
/** END OF BRAND **/
/** LOADER **/
.loader {
font-size: 2px;
position: relative;
text-indent: -9999em;
border-top: 1.1em solid rgba(166, 12, 41, 0.2);
border-right: 1.1em solid rgba(166, 12, 41, 0.2);
border-bottom: 1.1em solid rgba(166, 12, 41, 0.2);
border-left: 1.1em solid #A61229;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-animation: load8 1.1s infinite linear;
animation: load8 1.1s infinite linear;
float: left;
margin-left: 10px;
margin-top: 3px;
}
.loader,
.loader:after {
border-radius: 50%;
width: 10em;
height: 10em;
}
@-webkit-keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
@keyframes load8 {
0% {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
transform: rotate(360deg);
}
}
/** END OF LOADER **/
/* Everything but the jumbotron gets side spacing for mobile first views */
.header,
.marketing,
.footer {
padding-left: 15px;
padding-right: 15px;
}
/* Custom page header */
.header {
border-bottom: 1px solid #e5e5e5;
}
/* Make the masthead heading the same height as the navigation */
.header h3 {
margin-top: 0;
margin-bottom: 0;
line-height: 40px;
padding-bottom: 19px;
}
/* Custom page footer */
.footer {
padding-top: 19px;
color: #777;
border-top: 1px solid #e5e5e5;
}
nav.navbar {
background-color: #A61229;
border-color: #941A1A;
min-height:30px;
}
a.navbar-brand img {
height:45px;
margin-top:-6px;
}
.navbar-default .navbar-toggle .icon-bar {
background-color:#fff;
}
.navbar-default .navbar-toggle:hover {
background-color:#9a1026;
}
.navbar-default .navbar-toggle:focus {
background-color:#A61229;
}
.container-narrow > hr {
margin: 30px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
text-align: center;
border-bottom: 1px solid #e5e5e5;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
/* Supporting marketing content */
.marketing {
margin: 40px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
ul.header-menu {
float:left;
padding-left:23px;
}
ul.header-menu li {
list-style:none;
float:left;
margin-right:15px;
margin-top:10px;
}
ul.header-menu li a{
color:#fff;
text-decoration:none;
opacity:0.9;
}
ul.header-menu li a:hover{
opacity:1;
}
.nav>li>a {
color: #696969;
border-left:3px solid transparent;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.sidebar .nav>li ul {
border-left: 3px solid #A61229;
}
.sidebar .nav>li ul>li a {
font-family:'robotoregular';
background-color:#fdfdfd;
}
.nav>li>a:visited {
}
.nav>li.active>a {
text-decoration: none;
background-color: #fdfdfd;
color: #565656;
border-color:#A61229;
}
.nav>li.active>a:hover,
.sidebar .nav>li ul>li a:hover,
.nav>li>a:hover {
background-color:#f9f9f9;
}
/*!
* Start Bootstrap - SB Admin 2 Bootstrap Admin Theme (http://startbootstrap.com)
* Code licensed under the Apache License v2.0.
* For details, see http://www.apache.org/licenses/LICENSE-2.0.
*/
select {
padding: 5px 10px;
border-color: #dcdcdc;
outline: none;
}
#wrapper {
width: 100%;
}
.manager-view {
height:100%;
width: calc(100% - 250px);
-webkit-width: calc(100% - 250px);
position: absolute;
right: 0;
background-color:#f5f5f5;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.manager-view-inner {
height:calc(100% - 41px);
-webkit-height:calc(100% - 41px);
display: -webkit-flex;
display: flex;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.manager-view-header {
/*width:100%;*/
/*width: calc(100% - 300px);*/
padding:10px;
background-color:#fff;
border-bottom:1px solid #ccc;
-webkit-flex-shrink: 0;
flex-shrink: 0;
position:relative;
z-index:1;
height: 43px;
}
.manager-view-content {
padding:25px 40px;
overflow:auto;
-webkit-flex-grow: 1;
flex-grow: 1;
}
.navbar-top-links {
margin-right: 0;
}
.navbar-top-links li {
display: inline-block;
}
.navbar-top-links li:last-child {
margin-right: 15px;
}
.navbar-top-links li a {
color:#fff;
cursor:pointer;
}
.navbar-top-links li>a:hover,
.navbar-top-links .open>a,
.navbar-top-links .open>a:hover,
.navbar-top-links .open>a:active,
.navbar-top-links .open>a:focus {
background-color:#9A1026;
}
.navbar-top-links .dropdown-menu li.divider {
margin:0;
}
.navbar-top-links .dropdown-menu li a:hover {
background-color:#fcfcfc;
}
.navbar-top-links .open>a,
.navbar-top-links .open>a:hover {
border-color:#9A1026;
}
.navbar-top-links .dropdown-menu li {
display: block;
}
.navbar-top-links .dropdown-menu li:last-child {
margin-right: 0;
}
.navbar-top-links .dropdown-menu li a {
padding: 10px 20px;
min-height: 0;
color:#444;
}
.navbar-top-links .dropdown-menu li a div {
white-space: normal;
}
.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
width: 310px;
min-width: 0;
}
.navbar-top-links .dropdown-messages {
margin-left: 5px;
}
.navbar-top-links .dropdown-tasks {
margin-left: -59px;
}
.navbar-top-links .dropdown-alerts {
margin-left: -123px;
}
.navbar-top-links .dropdown-user {
right: 0;
left: auto;
}
.sidebar {
background-color:#fff;
border-right: 1px solid #ccc;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.sidebar .fa {
font-size:18px;
margin-right:10px;
}
.sidebar span.menu-text {
display:inline-block;
}
.sidebar .sidebar-nav.navbar-collapse {
padding-right: 0;
padding-left: 0;
}
.sidebar .sidebar-search {
padding: 15px;
}
.sidebar ul li {
font-family: 'robotomedium';
letter-spacing: 0.2px;
border-bottom: 1px solid #DCDCDC;
}
.sidebar ul li a {
/*height:40px;*/
overflow:hidden;
}
.sidebar ul li a.active {
background-color: #eee;
}
.sidebar .arrow {
float: right;
}
.sidebar .fa.arrow:before {
content: "\f104";
}
.sidebar .active>a>.fa.arrow:before {
content: "\f107";
}
.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
border-bottom: 0!important;
}
.sidebar .nav-second-level li a {
padding-left: 37px;
}
.sidebar .nav-third-level li a {
padding-left: 52px;
font-size: 12px;
}
.sidebar-person-info {
overflow-x: visible;
overflow-y: auto;
/*position: absolute;*/
width: 100%;
/*max-height: 50%;*/
background: whitesmoke;
/*display:none;*/ /** angular template will hndle this */
}
.sidebar-person-info .identity {
color:#555;
padding:10px;
padding-bottom: 0px;
}
.sidebar-person-info .identity-header {
border-bottom: 1px solid #ECECEC;
}
.sidebar-person-info .identity-info {
margin-top:10px;
color: #6D6D6D;
border-bottom: 1px solid #ECECEC;
}
.sidebar-person-info .identity-info div {
margin-bottom:4px;
}
.sidebar-person-info .identity-info div div {
float:left;
width:80%;
}
.sidebar-person-info .identity-info span {
float:left;
width:27px;
margin-top: 3px;
}
.sidebar-person-info .identity img {
width:40px;
height:40px;
border-radius:100%;
margin:10px auto;
float:left;
margin-right:10px;
border: 1px solid #E4E4E4;
}
.sidebar-person-info .identity p.identity-name {
font-family:'robotomedium';
font-size:16px;
margin-bottom: 0;
margin-top:13px;
}
.sidebar-person-info .identity p.identity-surname {
font-family:'robotomedium';
font-size:16px;
margin-bottom: 0;
text-transform:uppercase;
}
.sidebar-person-info .identity p.identity-email {
float:left;
}
.sidebar-person-info .identity ul {
margin:0;
padding:0;
}
.sidebar-person-info .identity ul li {
list-style:none;
border:none;
}
.sidebar-person-info .person-actions {
}
.sidebar-person-info .person-actions ul {
margin:0;
padding:0;
}
.sidebar-person-info .person-actions ul li {
list-style:none;
border:none;
}
.sidebar-person-info .person-actions ul li a {
text-decoration:none;
color:#555;
display:block;
padding:10px 15px;
font-family: 'robotobold';
}
.sidebar-person-info .person-actions ul li a:hover {
background-color:#f5f5f5;
}
.sidebar-person-info .person-actions ul li a span {
margin-right:13px;
}
.sidebar-person-info .close-sidebar-person-info {
width: 45%;
margin-left: auto;
margin-right: auto;
margin-top: 11px;
border-radius: 5px;
padding: 8px 10px;
text-align: center;
cursor: pointer;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
background-color: #B93939;
color: #fff;
display:block;
}
.sidebar-person-info .close-sidebar-person-info:hover {
background-color:#9A1026;
}
.sidebar-person-info .close-sidebar-person-info span {
font-size: 12px;
color: #555;
margin-right: 6px;
position: relative;
top: -1px;
}
.btn-outline {
color: inherit;
background-color: transparent;
transition: all .5s;
}
.btn-primary.btn-outline {
color: #428bca;
}
.btn-success.btn-outline {
color: #5cb85c;
}
.btn-info.btn-outline {
color: #5bc0de;
}
.btn-warning.btn-outline {
color: #f0ad4e;
}
.btn-danger.btn-outline {
color: #d9534f;
}
.btn-primary.btn-outline:hover,
.btn-success.btn-outline:hover,
.btn-info.btn-outline:hover,
.btn-warning.btn-outline:hover,
.btn-danger.btn-outline:hover {
color: #fff;
}
.chat {
margin: 0;
padding: 0;
list-style: none;
}
.chat li {
margin-bottom: 10px;
padding-bottom: 5px;
border-bottom: 1px dotted #999;
}
.chat li.left .chat-body {
margin-left: 60px;
}
.chat li.right .chat-body {
margin-right: 60px;
}
.chat li .chat-body p {
margin: 0;
}
.panel .slidedown .glyphicon,
.chat .glyphicon {
margin-right: 5px;
}
.chat-panel .panel-body {
height: 350px;
overflow-y: scroll;
}
.login-panel {
margin-top: 25%;
}
.flot-chart {
display: block;
height: 400px;
}
.flot-chart-content {
width: 100%;
height: 100%;
}
.dataTables_wrapper {
position: relative;
clear: both;
}
table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
background: 0 0;
}
table.dataTable thead .sorting_asc:after {
content: "\f0de";
float: right;
font-family: fontawesome;
}
table.dataTable thead .sorting_desc:after {
content: "\f0dd";
float: right;
font-family: fontawesome;
}
table.dataTable thead .sorting:after {
content: "\f0dc";
float: right;
font-family: fontawesome;
color: rgba(50,50,50,.5);
}
.btn-circle {
width: 30px;
height: 30px;
padding: 6px 0;
border-radius: 15px;
text-align: center;
font-size: 12px;
line-height: 1.428571429;
}
.btn-circle.btn-lg {
width: 50px;
height: 50px;
padding: 10px 16px;
border-radius: 25px;
font-size: 18px;
line-height: 1.33;
}
.btn-circle.btn-xl {
width: 70px;
height: 70px;
padding: 10px 16px;
border-radius: 35px;
font-size: 24px;
line-height: 1.33;
}
.show-grid [class^=col-] {
padding-top: 10px;
padding-bottom: 10px;
border: 1px solid #ddd;
background-color: #eee!important;
}
.show-grid {
margin: 15px 0;
}
.huge {
font-size: 40px;
}
.panel-green {
border-color: #5cb85c;
}
.panel-green .panel-heading {
border-color: #5cb85c;
color: #fff;
background-color: #5cb85c;
}
.panel-green a {
color: #5cb85c;
}
.panel-green a:hover {
color: #3d8b3d;
}
.panel-red {
border-color: #d9534f;
}
.panel-red .panel-heading {
border-color: #d9534f;
color: #fff;
background-color: #d9534f;
}
.panel-red a {
color: #d9534f;
}
.panel-red a:hover {
color: #b52b27;
}
.panel-yellow {
border-color: #f0ad4e;
}
.panel-yellow .panel-heading {
border-color: #f0ad4e;
color: #fff;
background-color: #f0ad4e;
}
.panel-yellow a {
color: #f0ad4e;
}
.panel-yellow a:hover {
color: #df8a13;
}
.timeline {
position: relative;
padding: 20px 0 20px;
list-style: none;
}
.timeline:before {
content: " ";
position: absolute;
top: 0;
bottom: 0;
left: 50%;
width: 3px;
margin-left: -1.5px;
background-color: #eeeeee;
}
.timeline > li {
position: relative;
margin-bottom: 20px;
}
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}
.timeline > li:after {
clear: both;
}
.timeline > li:before,
.timeline > li:after {
content: " ";
display: table;
}
.timeline > li:after {
clear: both;
}
.timeline > li > .timeline-panel {
float: left;
position: relative;
width: 46%;
padding: 20px;
border: 1px solid #d4d4d4;
border-radius: 2px;
-webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline > li > .timeline-panel:before {
content: " ";
display: inline-block;
position: absolute;
top: 26px;
right: -15px;
border-top: 15px solid transparent;
border-right: 0 solid #ccc;
border-bottom: 15px solid transparent;
border-left: 15px solid #ccc;
}
.timeline > li > .timeline-panel:after {
content: " ";
display: inline-block;
position: absolute;
top: 27px;
right: -14px;
border-top: 14px solid transparent;
border-right: 0 solid #fff;
border-bottom: 14px solid transparent;
border-left: 14px solid #fff;
}
.timeline > li > .timeline-badge {
z-index: 100;
position: absolute;
top: 16px;
left: 50%;
width: 50px;
height: 50px;
margin-left: -25px;
border-radius: 50% 50% 50% 50%;
text-align: center;
font-size: 1.4em;
line-height: 50px;
color: #fff;
background-color: #999999;
}
.timeline > li.timeline-inverted > .timeline-panel {
float: right;
}
.timeline > li.timeline-inverted > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}
.timeline > li.timeline-inverted > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}
.timeline-badge.primary {
background-color: #2e6da4 !important;
}
.timeline-badge.success {
background-color: #3f903f !important;
}
.timeline-badge.warning {
background-color: #f0ad4e !important;
}
.timeline-badge.danger {
background-color: #d9534f !important;
}
.timeline-badge.info {
background-color: #5bc0de !important;
}
.timeline-title {
margin-top: 0;
color: inherit;
}
.timeline-body > p,
.timeline-body > ul {
margin-bottom: 0;
}
.timeline-body > p + p {
margin-top: 5px;
}
/* DASHBOARD */
.dashboard .row {
margin-bottom:10px;
}
.dashboard .major-buttons {
margin-bottom:20px;
}
.dashboard .major-buttons i {
margin-right:10px;
}
.dashboard .major-buttons a button {
width:100%;
height:100px;
font-size: 19px;
font-family: 'robotolight';
}
.dashboard .major-buttons a button:focus {
color:#fff;
}
.dashboard-main-search .panel-default {
padding-bottom:25px;
border-radius:2px;
}
.dashboard-main-search .dashboard-student-search h3,
.dashboard-main-search .dashboard-personnel-search h3 {
font-family: 'robotolight';
color: #5A5A5A;
letter-spacing: 1px;
font-size:16px;
}
.dashboard-main-search input {
width: 70%;
border-radius: 3px;
border: 1px solid #e0e0e0;
padding: 7px;
outline: none;
border-right: none;
border-bottom-right-radius: 0;
border-top-right-radius: 0;
margin-right: -5px;
}
.bordered-fa-icon {
padding: 10px 15px;
border: 1px solid #e0e0e0;
border-bottom-right-radius: 3px;
border-top-right-radius: 3px;
background-color: #FBF9F9;
cursor:pointer;
color:#5A5A5A;
}
.dashboard-student-search {
float: left;
width: 50%;
border-right: 1px solid #e8e8e8;
}
.dashboard-personnel-search {
float: left;
width: 50%;
}
.dashboard-search-results {
width: 80%;
margin-left: auto;
margin-right: auto;
margin-top: 25px;
}
.dashboard-search-results ul {
max-height: 600px;
overflow-y: auto;
padding:0;
webkit-box-shadow: 0 0 4px rgba(0,0,0,0.15);
-moz-box-shadow: 0 0 4px rgba(0,0,0,0.15);
box-shadow: 0 0 4px rgba(0,0,0,0.15);
background-color: #fff;
border-radius: 3px;
}
.dashboard-search-results ul li {
list-style:none;
border-bottom: 1px solid #F3F3F3;
}
.dashboard-search-results ul li:last-child {
border:none;
}
.dashboard-search-results ul li a {
color:#666;
padding: 10px 25px;
display:block;
text-decoration:none;
}
.dashboard-search-results ul li a:hover {
background-color:#f5f5f5;
}
.dashboard-search-results ul li:first-child a:hover {
border-top-left-radius:3px;
border-top-right-radius:3px;
}
.dashboard-search-results ul li:last-child a:hover {
border-bottom-left-radius:3px;
border-bottom-right-radius:3px;
}
.right-sidebar {
width: 0px;
background-color: #FFFFFF;
border-left: 1px solid #ccc;
height: calc(100% - 40px);
position: absolute;
top: 0px;
right: 0px;
overflow-y: auto;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.right-sidebar-box {
border-bottom: 1px solid #D0D0D0;
}
.right-sidebar-title {
border-bottom: 1px solid #D0D0D0;
padding: 10px;
background-color: #F3F3F3;
}
.right-sidebar-title h3 {
float: left;
margin: 0;
font-size: 16px;
color: #666;
font-family: 'robotobold';
text-transform: uppercase;
line-height:normal;
}
.right-sidebar-title span a {
float: right;
color: #A61229;
text-decoration:none;
}
.right-sidebar-message-block {
border-bottom: 1px solid #F3F3F3;
}
.right-sidebar-message-block:last-child {
border-bottom:none;
}
.right-sidebar-message-block a {
padding: 10px 15px;
display: block;
color: #555;
}
.right-sidebar-message-block a:hover{
background-color:#f5f5f5;
}
.right-sidebar-message-block a img {
width: 30px;
height: 30px;
border-radius: 100%;
float: left;
}
.right-sidebar-message-content {
float: left;
margin-left: 15px;
position:relative;
width: calc(100% - 50px);
}
.right-sidebar-message-content div:nth-child(1) {
width: 180px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
font-family: 'robotomedium';
font-size: 15px;
margin-top: -5px;
}
.right-sidebar-message-content div:nth-child(2) {
width: 180px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
margin-top: -5px;
}
.right-sidebar-message-content div:nth-child(3) {
color: #8C8C8C;
position: absolute;
right: 0;
top: 5px;
}
.right-sidebar-task-block a {
padding: 10px 25px;
display: block;
color: #555;
text-decoration:none;
}
.right-sidebar-task-block a:hover {
background-color:#f5f5f5;
}
.right-sidebar-task-block .task-type {
padding: 5px 10px;
font-size: 15px;
font-family: 'robotomedium';
color: #666;
}
.right-sidebar-task-block .progress {
margin-top: 5px;
margin-bottom: 0;
}
.right-sidebar-task-block .progress .progress-bar {
background-color: #A61229;
}
.right-sidebar-announcement-block a,
.right-sidebar-last-action-block a {
width: 100%;
display: block;
padding: 7px 15px;
color:#555;
text-decoration:none;
border-bottom: 1px solid #f3f3f3;
}
.right-sidebar-announcement-block a:hover,
.right-sidebar-last-action-block a:hover {
background-color:#f5f5f5;
}
.dashboard .user-pic {
width:100%;
}
.dashboard .panel-default > .panel-heading {
background-color:#fff;
border-color:#F2F2F2;
font-family:'robotolight';
color: rgb(95, 95, 95);
padding:15px;
}
.dashboard .panel-default > .panel-heading .panel-title {
font-size:18px;
display:inline-block;
}
.dashboard .panel-default > .panel-heading .panel-action {
font-size: 15px;
padding-top: 3px;
padding-right: 10px;
font-family:'robotomedium';
cursor:pointer;
}
.dashboard .user-info .user-name {
font-family:'robotomedium';
padding-top:15px;
}
.dashboard .quick-links .panel-default {
/*height: 274px;*/
}
.dashboard .quick-links .panel-body,
.dashboard .quick-links .link-buttons {
padding:0;
}
.dashboard .quick-links .link-buttons a {
padding:15px;
display:block;
color:#333;
text-decoration:none;
border-bottom: 1px solid #EFEFEF;
border-right: 1px solid #efefef;
}
.dashboard .quick-links .link-buttons a:hover {
background-color:#efefef;
}
/* END OF DASHBOARD */
/* SELECTED PERSON FIELD */
.selected-person-field .right-sidebar-header {
height:43px;
width:100%;
}
.selected-person-field .right-sidebar-header .bar-title {
margin-left: 10px;
height: 43px;
line-height: 43px;
font-family: 'robotomedium';
font-size: 15px;
}
.selected-person-field .right-sidebar-header .unselect-person {
height: 43px;
width: 43px;
font-size: 24px;
line-height: 43px;
float: right;
text-align: center;
cursor:pointer;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.selected-person-field .right-sidebar-header .unselect-person:hover > i{
color:#333;
}
.selected-person-field .right-sidebar-header .unselect-person i {
color:#999;
}
.selected-person-field img.selected-person-img {
width:150px;
height:150px;
border-radius:100%;
margin-top:5px;
margin-left:75px;
margin-right:75px;
}
.selected-person-field .selected-person-info .selected-person-name {
width:100%;
padding:15px 20px;
text-align:center;
font-family:'robotomedium';
font-size:18px;
}
/* END OF SELECTED PERSON FIELD */
/* PERSONNEL INFO */
.generic-profile-picture img {
width:220px;
height:220px;
}
.personnel-info-container {
width:1000px;
height:530px;
margin-left:auto;
margin-right:auto;
margin-bottom:50px;
background-color:#fff;
-webkit-box-shadow: 0 0 3px rgba(0,0,0,0.1);
-moz-box-shadow: 0 0 3px rgba(0,0,0,0.1);
box-shadow: 0 0 3px rgba(0,0,0,0.1);
position:relative;
}
.personnel-info-left {
width:250px;
height:100%;
background-color:#fcfcfc;
padding:15px;
position:absolute;
left:0;
overflow-y: auto;
overflow-x: hidden;
border-right: 1px solid #F7F7F7;
}
.personnel-info-left ul {
padding:0;
margin-top:20px;
}
.personnel-info-left ul li {
list-style:none;
margin-bottom:15px;
position:relative;
padding-left:30px;
color:#555;
}
.personnel-info-left ul li:nth-child(1) {
padding:0;
font-family:'robotobold';
font-size:18px;
color:#333;
}
.personnel-info-left ul li:nth-child(2) {
padding:0;
font-family:'robotomedium';
font-size:17px;
color:#666;
}
.personnel-info-left ul li i.fa {
width:18px;
margin-right:15px;
font-size:18px;
position:absolute;
left:0;
text-align:center;
}
.personnel-info-right {
width:750px;
height:100%;
background-color:#fff;
padding:40px;
padding-top:15px;
position:absolute;
right:0;
overflow-y:auto;
}
.personnel-info-right h2 {
margin-top:0;
margin-bottom:20px;
font-family:'robotolight';
font-size:23px;
}
.info-block {
margin-bottom:70px;
}
.info-block:last-child {
margin-bottom:0px;
}
.info-block-body dt {
text-align:left;
font-family:'robotomedium';
font-weight:normal;
}
.info-block-body dl {
margin-bottom:10px;
color:#444;
}
.personnel-info-edit .personnel-info-left ul li {
padding-left:0;
}
/* END OF PERSONNEL INFO */
/* SIDEBAR COLLAPSE */
.sidebar-collapse-button {
width: 62px;
height: 41px;
float: left;
padding: 8px 16px;
cursor:pointer;
}
.sidebar-collapse-button:hover {
background-color:#9A1026;
}
.sidebar-collapse-button div {
width: 30px;
height: 2px;
background-color: #fff;
margin-top:5px;
border-radius:5px;
}
/* END OF SIDEBAR COLLAPSE */
/* STUDENT DASHBOARD */
.student-dashboard a:hover {
text-decoration:none;
background-color:#f9f9f9;
}
.student-dashboard .panel-body ul,
.student-dashboard .panel-body {
padding:0;
margin:0;
}
.student-dashboard .panel-body ul li {
list-style: none;
border-bottom: 1px solid #f5f5f5;
font-size:16px;
}
.student-dashboard .panel-body ul li a {
padding:25px;
display:block;
color:#333;
}
.student-dashboard .panel-body ul li:last-child {
border:none;
}
.student-course-list .panel-body,
.student-assignment-list .panel-body {
height:437px;
overflow-y:auto;
}
.student-course-list .panel-body ul li span {
margin-right:15px;
}
.student-assignment-list .assignment-status {
width:35px;
float:left;
}
.student-assignment-list .assignment-status .assignment-circle {
width:10px;
height:10px;
border-radius:100%;
margin-top: 7px;
margin-left: 3px;
}
.student-assignment-list .urgent-assignment .assignment-circle {
background-color:#D4244B;
}
.student-assignment-list .urgent-assignment .assignment-due-date {
color:#D4244B;
}
.student-assignment-list .approaching-assignment .assignment-circle {
background-color:#F7941E;
}
.student-assignment-list .approaching-assignment .assignment-due-date {
color:#F7941E;
}
.student-assignment-list .non-urgent-assignment .assignment-circle {
background-color:#01AEEE;
}
.student-assignment-list .non-urgent-assignment .assignment-due-date {
color:#01AEEE;
}
.student-assignment-list .assignment-title {
width:calc(100% - 100px);
float:left;
}
.student-assignment-list .assignment-title {
font-family:'robotomedium';
}
.student-assignment-list .assignment-title div:nth-child(1) {
font-family:'robotomedium';
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-right: 15px;
}
.student-assignment-list .assignment-title div:nth-child(2) {
font-size:15px;
font-family:'robotolight';
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
padding-right: 15px;
}
.student-assignment-list .assignment-due-date {
width:65px;
float:left;
font-family:'robotolight';
position:relative;
}
.student-assignment-list .assignment-due-date div:nth-child(1) {
width:65px;
font-size:22px;
position:absolute;
text-align:center;
}
.student-assignment-list .assignment-due-date div:nth-child(2) {
width:65px;
font-size:13px;
position:absolute;
margin-top:25px;
text-align:center;
}
.student-assignment-list .last-assignment .assignment-status div {
width:3px;
height:47px;
background-color: #00A650;
margin-left: 6px;
}
.student-assignment-list .last-assignment .panel-title {
background-color: #fff;
border-color: #F2F2F2;
font-family: 'robotolight';
color: rgb(95, 95, 95);
padding: 12px 0 0;
font-size: 18px;
}
.student-assignment-list .last-assignment .assignment-due-date i {
color:#01A550;
margin-top: 16px;
}
.student-announcement-list .announcement-date {
float:left;
font-family:'robotolight';
margin-right:25px;
width:30px;
}
.student-announcement-list .announcement-text {
float:left;
width:calc(100% - 55px);
margin-top:3px;
}
.student-announcement-list .announcement-date div:first-child {
font-size: 22px;
text-align: center;
}
.student-announcement-list .announcement-date div:last-child {
font-size: 13px;
text-align: center;
}
.student-message-list .profile-pic {
width: 65px;
display: block;
margin-right: 20px;
float: left;
}
.student-message-list .profile-pic img {
width: 100%;
border-radius: 100%;
}
.student-message-list .message-content {
width: calc(100% - 200px);
float: left;
}
.student-message-list .message-content div:first-child {
margin-top:7px;
font-family:'robotomedium';
font-size:18px;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.student-message-list .message-content div:last-child {
margin-top: 5px;
color: #848484;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.student-message-list .message-time {
width: 100px;
float: right;
text-align:right;
padding-top: 21px;
color: #B3B3B3;
font-size: 14px;
}
/* END OF STUDENT DASHBOARD */
/* ACADEMICIAN DASHBOARD */
.academician-dashboard a:hover {
text-decoration:none;
background-color:#f9f9f9;
}
.academician-dashboard .panel-body ul,
.academician-dashboard .panel-body {
padding:0;
margin:0;
}
.academician-dashboard .panel-body ul li {
list-style: none;
border-bottom: 1px solid #f5f5f5;
font-size:16px;
}
.academician-dashboard .panel-body ul li a {
padding:20px 25px;
display:block;
color:#333;
}
.academician-dashboard .panel-body ul li:last-child {
border:none;
}
.academician-course-list .panel-body,
.academician-weekly-schedule .panel-body {
height:437px;
overflow-y:auto;
overflow-x:hidden;
}
.academician-course-list .panel-body ul li span {
margin-right:15px;
}
.academician-course-list .panel-body ul li div {
margin-left: 47px;
font-size: 15px;
color: #7E7E7E;
}
.academician-dashboard .academician-weekly-schedule table {
width: calc(100% + 2px);
-webkit-width: calc(100% + 2px);
border: none;
margin-top: -1px;
margin-left: -1px;
text-align:center;
}
.academician-dashboard .academician-weekly-schedule table a {
color:#333;
display:block;
height: 38px;
line-height: 38px;
}
.academician-dashboard .academician-weekly-schedule table a:hover {
font-family:'robotobold';
background-color:transparent;
font-size:16px;
}
.academician-dashboard .academician-weekly-schedule table tr.days td {
width: calc(100% / 6);
font-family: 'robotomedium';
background-color: #FDFDFD;
}
.academician-dashboard .academician-weekly-schedule table tr.days td:first-child {
background-color:transparent;
}
.academician-dashboard .academician-weekly-schedule table tr td:first-child {
height: 38px;
font-family: 'robotomedium';
background-color: #FDFDFD;
}
.academician-dashboard .academician-weekly-schedule p.schedule-notice {
margin-left: 36px;
margin-top: 18px;
}
.academician-dashboard .academician-weekly-schedule p.schedule-notice span {
font-family: 'robotomedium';
}
/* END OF ACADEMICIAN DASHBOARD */
/* ACADEMIC CALENDER DASHBOARD WIDGET */
.academic-calendar-widget .panel-body {
padding-top:30px;
padding-bottom:30px;
}
.academic-calendar-widget .calendar-inner {
width: 85%;
margin-left: auto;
margin-right: auto;
position: relative;
}
.academic-calendar-widget .date-circle {
width: calc(100%/7);
float:left;
}
.academic-calendar-widget .date-circle .year {
width: 75px;
text-align: center;
font-size: 11px;
color: #C6C6C6;
}
.academic-calendar-widget .date-circle-container .date-circle:nth-child(5) .year,
.academic-calendar-widget .date-circle-container .date-circle:nth-child(6) .year,
.academic-calendar-widget .date-circle-container .date-circle:nth-child(7) .year {
float:right;
}
.academic-calendar-widget .date-circle a {
width:75px;
height:75px;
color:#808285;
border: 3px solid #fff;
background-color:#fff;
border-radius: 100%;
text-align: center;
display:block;
margin-left: auto;
margin-right: auto;
margin-top:12px;
z-index:1;
position:relative;
cursor:pointer;
font-family:'robotolight';
}
.academic-calendar-widget .date-circle a:hover {
background-color:#EBEBEB;
}
.academic-calendar-widget .date-circle a:before {
border: 2px solid #939598;
content: " ";
position: absolute;
z-index: -1;
border-radius: 100%;
width: 100%;
height: 100%;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
}
.academic-calendar-widget .date-today .year {
width: 95px;
margin-left: auto;
margin-right: auto;
}
.academic-calendar-widget .date-today a {
width:95px;
height:95px;
border: 2px solid #fff;
border-radius: 100%;
text-align: center;
margin-top:0;
color:#000;
}
.academic-calendar-widget .date-today a:hover {
background-color:#C9635F;
color:#fff;
}
.academic-calendar-widget .date-today a:before {
border-color: #BE1E2D;
}
.academic-calendar-widget .date-today a .date-day {
margin-top: 18px;
font-size: 25px;
}
.academic-calendar-widget .date-today a .date-month {
font-size: 17px;
}
.academic-calendar-widget a .date-day {
margin-top: 12px;
font-size: 19px;
}
.academic-calendar-widget a .date-month {
line-height: 7px;
}
.calendar-line {
width: 100%;
height: 1px;
background-color: #E5E5E5;
position: absolute;
margin-top: 48px;
z-index: 0;
}
.academic-calendar-widget .date-circle-container .date-circle:nth-child(1) a,
.academic-calendar-widget .date-circle-container .date-circle:nth-child(2) a,
.academic-calendar-widget .date-circle-container .date-circle:nth-child(3) a {
margin-left:0;
}
.academic-calendar-widget .date-circle-container .date-circle:nth-child(5) a,
.academic-calendar-widget .date-circle-container .date-circle:nth-child(6) a,
.academic-calendar-widget .date-circle-container .date-circle:nth-child(7) a {
margin-right:0;
}
.calendar-widget-navigation {
position: relative;
font-size: 40px;
color: #ccc;
}
.calendar-widget-navigation .fa {
position:absolute;
top: 27px;
cursor:pointer;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.calendar-widget-navigation .fa:hover {
color:#666;
}
.calendar-widget-navigation .fa-angle-left {
left:25px;
}
.calendar-widget-navigation .fa-angle-right {
right:25px;
}
.academic-calendar-widget-popover label {
color:#A61229;
}
.academic-calendar-widget-popover .content-wrapper {
border-bottom:1px solid #dedede;
margin-bottom:10px;
}
.academic-calendar-widget-popover .content-wrapper:last-child {
border:none;
}
.academic-calendar-widget .date-circle .popover {
width:450px !important;
padding-bottom:0 !important;
}
/* END OF ACADEMIC CALENDER DASHBOARD WIDGET */
/* CHAT APPLICATION */
.chat-app {
width: 800px;
height: 600px;
background-color: #fff;
position: fixed;
bottom: 15px;
right: 15px;
-moz-box-shadow: 0px 0px 45px rgba(0,0,0,0.4);
box-shadow: 0px 0px 45px rgba(0,0,0,0.4);
z-index: 2100;
border-radius: 3px;
}
.chat-app .chat-app-container {
padding-left:240px;
}
.chat-app .side-navigation {
background-color: #8C1028;
width: 240px;
height: 100%;
position: absolute;
border-top-left-radius: 3px;
border-bottom-left-radius: 3px;
overflow: auto;
padding-bottom: 20px;
left:0;
}
.chat-app .side-navigation ul {
margin: 0;
padding-left: 0;
padding-top: 15px;
}
.chat-app .side-navigation ul.channels {
border-bottom: 1px solid #9B1334;
padding-bottom: 15px;
}
.chat-app .side-navigation ul.channels li.public-ro-channel {
font-style:italic;
}
.chat-app .side-navigation ul li {
list-style: none;
color: #fff;
font-size: 15px;
padding-left: 20px;
padding-bottom: 3px;
padding-top: 3px;
position:relative;
cursor:pointer;
}
.chat-app .side-navigation ul li:hover {
background-color:#B51533;
}
.chat-app .side-navigation ul li.title {
font-family:'robotobold';
cursor:default;
}
.chat-app .side-navigation ul li.title:hover {
background-color:transparent;
}
.chat-app .side-navigation ul li.title .badge {
position: relative;
top: -3px;
border-radius: 20px;
padding: 1px 7px;
width: auto;
height: auto;
background-color: #B51533;
border: none;
margin-left: 4px;
font-family: 'robotoblack';
}
.chat-app .side-navigation ul li.title .add-action {
display: inline-block;
position: absolute;
right: 21px;
top: 6px;
/*margin-left: 4px;*/
/*top: 2px;*/
/*position: relative;*/
/*display: inline-block;*/
}
.chat-app .side-navigation ul li.compose {
background-color: #6f0d20;
margin: 5px 10px;
border-radius: 3px;
padding-left: 33px !important;
padding-top: 8px;
padding-bottom: 8px;
}
.chat-app .side-navigation ul li.compose:hover {
background-color: #B51533;
}
.chat-app .side-navigation ul li.compose span {
position: absolute;
top: 12px;
left: 10px;
}
.chat-app .side-navigation ul li.compose:before {
display:none !important;
}
.chat-app .side-navigation ul.direct-messages li.title {
padding-left: 20px;
}
.chat-app .side-navigation ul.direct-messages li {
padding-left: 40px;
}
.chat-app .side-navigation ul.direct-messages li.active, .chat-app .side-navigation ul.channels li.active {
background-color: #B51533;
}
.chat-app .side-navigation ul.direct-messages li.title:before {
display:none;
}
.chat-app .side-navigation ul.direct-messages li:before {
content: " ";
width: 8px;
height: 8px;
background-color: rgba(255,255,255,0.3);
display: inline-block;
border-radius: 100%;
position: absolute;
left: 24px;
top: 9px;
}
.chat-app .side-navigation ul li.unread:after {
content: " ";
width: 8px;
height: 8px;
background-color: rgb(181, 21, 51);
display: inline-block;
border-radius: 100%;
position: absolute;
right: 24px;
top: 9px;
}
.chat-app .side-navigation ul.direct-messages li.online:before {
background-color:#CAFF4A;
}
.chat-app .conversation-section {
width: 100%;
height: 600px;
}
.chat-app .conversation-header {
height: 70px;
width: 560px;
border-bottom:1px solid #efefef;
}
.chat-app .conversation-header .conversation-user {
display: inline-block;
width: 240px;
margin-left: 23px;
float: left;
}
.chat-app .conversation-header .user-photo {
float: left;
margin-top: 20px;
}
.chat-app .conversation-header .user-name {
margin-top: 25px;
float: left;
margin-left: 10px;
font-family: 'robotobold';
font-size: 16px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
width: 180px;
}
.chat-app .conversation-header .conversation-search {
display:inline-block;
float:left;
}
.chat-app .conversation-header .conversation-search input {
width: 180px;
height: 40px;
padding-left: 10px;
border: 1px solid #efefef;
border-radius: 3px;
outline: none;
margin-top: 15px;
}
.chat-app .conversation-header .close-chat-app, .chat-app .conversation-section-empty .close-chat-app {
display: inline-block;
float: left;
width: 40px;
height: 40px;
border: 1px solid #efefef;
text-align: center;
line-height: 40px;
margin-left: 10px;
border-radius: 3px;
margin-top:15px;
cursor: pointer;
}
.chat-app .conversation-section-empty .close-chat-app {
display: block;
position: absolute;
right: 15px;
top: 0px;
}
.chat-app .conversation-section-empty .close-chat-app {
display: block;
position: absolute;
right: 15px;
top: 0px;
}
.chat-app .conversation-header .chat-app-actions {
display: inline-block;
float: left;
width: 40px;
height: 40px;
border: 1px solid #efefef;
text-align: center;
line-height: 40px;
margin-left: 10px;
border-radius: 3px;
margin-top:15px;
}
.chat-app .conversation-body {
overflow: auto;
height: calc(100% - 140px);
overflow-x: hidden;
}
.chat-app .conversation-body.readonly {
height: calc(100% - 100px);
}
.chat-app .conversation-footer {
height: 70px;
width: 560px;
position: absolute;
bottom: 0;
padding-left: 23px;
padding-right: 23px;
padding-top: 10px;
}
.chat-app .conversation-footer textarea {
outline: none;
resize: none;
width: calc(100% - 110px);
padding: 6px;
height: 50px;
border: 1px solid #efefef;
border-radius: 3px;
float:left;
}
.chat-app .conversation-footer .add-attachment {
float:left;
}
.chat-app .conversation-footer .add-attachment .glyphicon {
width: 50px;
height: 50px;
float: left;
border: 1px solid #efefef;
border-radius: 3px;
line-height: 50px;
text-align: center;
font-size: 20px;
top: 0;
margin-left: 5px;
color:#4D4D4D;
cursor:pointer;
}
.chat-app .conversation-footer .add-attachment .glyphicon:hover {
background-color:#efefef;
color:#000000;
}
.chat-app .conversation-section .conversation-header .conversation-user .user-photo img {
width:35px;
height:35px;
border-radius:100%;
}
.chat-app .conversation-section .conversation-body .beginning-of-conversation, .chat-app .conversation-section-empty .conversation-body {
text-align: center;
font-family: 'robotobold';
font-size: 20px;
color: #ababab;
padding: 15px;
margin-bottom: 30px;
border-bottom: 1px solid #f3f3f3;
}
.chat-app .conversation-section-empty .conversation-body {
padding-top: 100px;
}
.chat-app .conversation-section .conversation-body .conversation-block {
display:block;
position:relative;
padding:5px 23px;
margin-bottom:10px;
}
.chat-app .conversation-section .conversation-body .conversation-block:hover {
background-color:#f5f5f5;
}
.chat-app .conversation-section .conversation-body .conversation-block .conversation-actions {
opacity:0;
width:0;
position:absolute;
}
.chat-app .conversation-section .conversation-body .conversation-block .conversation-actions .action {
background-color: #fff;
display: inline-block;
padding: 3px 9px;
border-radius: 3px;
border: 1px solid #ece8e8;
float: left;
margin-right: 5px;
cursor: pointer;
color: #696969;
}
.chat-app .conversation-section .conversation-body .conversation-block .conversation-actions .action:hover {
color:#000000;
}
.chat-app .conversation-section .conversation-body .conversation-block:hover > .conversation-actions {
opacity: 1;
width: 130px;
position: absolute;
top: -14px;
right: 0;
}
.chat-app .conversation-section .conversation-body .conversation-block .user-photo img {
width: 40px;
float: left;
}
.chat-app .conversation-section .conversation-body .conversation-block .user-photo img {
width:35px;
height:35px;
border-radius:100%;
}
.chat-app .conversation-section .conversation-body .conversation-block .user-message {
float: left;
width: calc(100% - 40px);
padding-left:10px;
}
.chat-app .conversation-section .conversation-body .conversation-block .user-message .user-name {
font-family: 'robotobold';
font-size: 16px;
float:left;
}
.chat-app .conversation-section .conversation-body .conversation-block .user-message .message-time {
float: left;
margin-left: 10px;
font-size: 11px;
color: #a0a0a0;
margin-top: 4px;
}
.chat-app .conversation-section .user-message .message-content {
font-family: 'robotomedium';
position: relative;
}
.chat-app .conversation-section .message-content-url {
display: block;
}
.chat-app .conversation-section .user-message .message-content .attachment-message {
color: #909090;
}
.chat-app .conversation-section .user-message .message-content .attachment-message span {
color: #b51533;
}
.chat-app .conversation-section .user-message .message-content .attachment-holder {
position:relative;
display: inline-block;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.chat-app .conversation-section .user-message .message-content .attachment-holder .attachment-download {
position: absolute;
right: 10px;
top: 10px;
color: #fff;
font-size: 21px;
opacity:0;
cursor:pointer;
-webkit-transition: all .2s;
-moz-transition: all .2s;
-ms-transition: all .2s;
-o-transition: all .2s;
transition: all .2s;
}
.chat-app .conversation-section .user-message .message-content .attachment-holder:hover > .attachment-download {
opacity:0.6;
}
.chat-app .conversation-section .user-message .message-content .attachment-holder .attachment-download:hover {
opacity:1;
}
.chat-app .conversation-section .user-message .message-content .image-attached img {
width: 220px;
border-radius: 3px;
border: 1px solid #a0a0a0;
}
.chat-app .conversation-section .user-message .message-content .file-attached {
width: 100%;
border: 1px solid #ccc;
border-radius: 3px;
padding: 10px;
padding-left: 5px;
background-color:#fff;
}
.chat-app .conversation-section .user-message .message-content .file-attached img {
width: 40px;
float:left;
}
.chat-app .conversation-section .user-message .message-content .file-attached .attached-file-info {
float:left;
margin-left:10px;
}
.chat-app .conversation-section .user-message .message-content .file-attached .attached-file-info div:first-child {
color: #333;
font-size: 15px;
}
.chat-app .conversation-section .user-message .message-content .file-attached .attached-file-info div:last-child {
color: #a2a2a2;
font-size: 13px;
}
.chat-app .conversation-section .user-message .message-content .file-attached .attachment-download {
color:#333;
margin-top:10px;
}
.chat-app .conversation-section .user-message .message-content .file-attached:hover > .attachment-download {
opacity:0.6;
}
.chat-app .conversation-section .user-message .message-content .file-attached .attachment-download:hover {
opacity:1;
}
.chat-app .conversation-section .user-message .edit-text-message .editor {
width: 100%;
margin-bottom: 7px;
margin-top: 7px;
border-radius: 3px;
border: 1px solid #ccc;
padding: 5px 10px;
outline: none;
}
.chat-app .chat-popup-window {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 11;
background-color: rgba(255,255,255,0.97);
border-radius:3px;
/*display:none;*/
}
.chat-app .create-new-message-window input {
width: 50%;
margin-left: 25%;
margin-top: 90px;
height: 50px;
padding-left: 15px;
border: 1px solid #ccc;
border-radius: 5px;
outline:none;
}
.chat-app .close-chat-popup-window {
width: 50px;
height: 50px;
border: 1px solid #ccc;
border-radius: 100%;
text-align: center;
line-height: 50px;
position: absolute;
right: 20px;
top: 20px;
font-size: 14px;
color: #a2a2a2;
cursor:pointer;
}
.chat-app .close-chat-popup-window:hover {
background-color:#efefef;
color:#000000;
}
.chat-app .create-new-message-window .search-results, .chat-app .add-user-unit .search-results {
width: 50%;
margin-left: 25%;
margin-top: 25px;
height: calc(100% - 165px);
overflow: auto;
}
.chat-app .create-new-message-window .search-results .user, .chat-app .add-user-unit .search-results .user {
width: 100%;
display: inline-block;
padding: 10px;
border-radius: 3px;
cursor:pointer;
}
.chat-app .create-new-message-window .search-results .user:hover, .chat-app .add-user-unit .search-results .user:hover{
background-color:#efefef;
}
.chat-app .create-new-message-window .search-results .user img, .chat-app .add-user-unit .search-results .user img{
width: 45px;
height: 45px;
border-radius: 100%;
float: left;
}
.chat-app .create-new-message-window .search-results .user .user-name, .chat-app .add-user-unit .search-results .user .user-name {
float: left;
margin-left: 15px;
font-family: 'robotobold';
font-size: 18px;
margin-top: 9px;
}
.chat-app-button {
display: block;
position: fixed;
bottom: 20px;
right: 20px;
background: white;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
padding: 0;
z-index: 1000;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
text-align: center;
cursor: pointer;
}
.chat-app-button i {
top: 16px;
color: #333;
font-size: 20px;
}
.chat-app .create-new-channel-window h3 {
width: 400px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
.chat-app .create-new-channel-window .text-center input {
width: 400px;
margin-top: 40px;
height: 50px;
padding-left: 15px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
}
.chat-app .create-new-channel-window .text-center textarea {
width: 400px;
margin: 20px;
height: 110px;
padding-left: 15px;
padding-top: 15px;
border: 1px solid rgb(204, 204, 204);
border-radius: 5px;
outline: none;
max-width: 400px;
max-height:200px;
}
.chat-app .create-new-channel-window button {
width: 400px;
margin-top:0px;
height: 50px;
font-size: 19px;
}
.chat-app .add-user-unit h3 {
width: 400px;
margin-left: auto;
margin-right: auto;
margin-top: 30px;
}
.chat-app .add-user-unit input {
width: 400px;
margin-top: 10px;
height: 50px;
padding-left: 15px;
border: 1px solid #ccc;
border-radius: 5px;
outline: none;
}
.chat-app .add-user-unit .checkbox-inline {
width: 50%;
margin-left: 25%;
margin-top: 20px;
padding-left: 25px;
border: none;
}
.chat-app .add-user-unit .checkbox-inline input {
width: 20px;
margin-top: 0;
margin-left: -25px;
border: none;
height: 20px;
}
.chat-app-close-btn {
display: block;
position: absolute;
right: 5px;
top: 5px;
}
.chat-app-button {
display: block;
position: fixed;
bottom: 20px;
right: 20px;
background: white;
border: none;
border-radius: 50%;
width: 50px;
height: 50px;
padding: 0;
z-index: 9999;
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.chat-app-button i {
margin-top: 3px;
font-size: 18px;
}
/* END OF CHAT APPLICATION */
/* COURSE PROGRAM SCHEDULER */
.course-prg-scheduler {
margin:15px !important;
margin-left:0 !important;
}
.course-prg-scheduler .panel-body {
height: 550px;
}
.course-prg-scheduler .tabs-container {
overflow-y: auto;
height: 550px;
}
.course-prg-scheduler .tabs-left {
margin-right: 10px;
border-right: 1px solid #dddddf;
padding: 20px 0 20px 10px !important;
min-height: 550px;
}
.course-prg-scheduler ul.tabs-left li {
border-radius: 5px 0 0 5px;
border: 1px solid #fff;
border-right-color: #dddddf;
position: relative;
right: -1px;
}
.course-prg-scheduler ul.tabs-left li.active, .course-prg-scheduler ul.tabs-left li:hover {
border: 1px solid #dddddf;
border-right-color: #fff;
}
.course-prg-scheduler .tab-content {
padding: 25px 10px 25px 40px;
}
.course-prg-scheduler ul.tabs-left li.active a {
color: #bc1e2d;
}
.course-prg-scheduler ul.tabs-left li a:hover {
background: none;
cursor: pointer;
}
.course-prg-scheduler .tab-content .info-header {
margin-bottom: 30px;
}
.course-prg-scheduler .tab-content .info-header .info-wrapper {
float:left;
margin-right:45px;
height: 50px;
line-height: 50px;
}
.course-prg-scheduler .tab-content .info-header .info-wrapper .user-name {
font-family:'robotobold';
font-size: 17px;
color: #444;
margin-left: 10px;
}
.course-prg-scheduler .tab-content .info-wrapper.info-wrapper_hours {
font-size: 17px;
color: #444;
}
.course-prg-scheduler .tab-content .info-wrapper.info-wrapper_hours .info-title {
font-family:'robotobold';
}
.course-prg-scheduler .tab-content .info-header .info-wrapper .btn {
margin-top:8px;
}
.course-prg-scheduler .tab-content .info-header .profile-pic {
width: 50px;
height: 50px;
border-radius: 100%;
margin-right:7px;
}
.course-prg-scheduler .tab-content .table-warning {
background-color: #dedede;
padding: 10px 15px;
border-radius: 2px;
font-size: 15px;
font-weight: normal;
color: #444;
display: inline-block;
margin: 0 auto 15px auto;
}
.course-prg-scheduler .tab-content .table-warning .icon {
color: #8e8e8e;
font-size: 20px;
float: left;
margin-right: 10px;
}
.course-prg-scheduler .tab-content .table-container {
max-height: 350px;
overflow-y: auto;
}
.course-prg-scheduler .tab-content table tr.headers td {
font-family:'robotobold';
font-size: 16px;
}
.course-prg-scheduler .tab-content table , .course-prg-scheduler .tab-content th, .course-prg-scheduler .tab-content td {
border: 1px solid black;
}
.course-prg-scheduler .tab-content table tr td:first-child {
font-size: 14px;
/*font-family:'robotobold';*/
width: 180px;
/*background-color:#f9f9f9;*/
}
.course-prg-scheduler .tab-content table td {
width: 100px;
height: 70px;
text-align:center;
}
.course-prg-scheduler .loader {
margin-top: 25px;
}
.course-prg-scheduler ul.legend {
margin-top: 15px;
}
.course-prg-scheduler ul.legend li {
border: none;
display: inline-block;
padding: 15px 10px;
}
.course-prg-scheduler ul.legend li .action-indicator {
margin-right: 5px;
}
.course-prg-scheduler .action-indicator {
border: 10px solid #eee;
border-radius: 10px;
display: inline-block;
height: 10px;
width: 10px;
vertical-align: middle;
}
.course-prg-scheduler .action-indicator.action-indicator_appropriate {
border-color: #8ac73e;
}
.course-prg-scheduler .action-indicator.action-indicator_busy{
border-color: #ed1b24;
}
.course-prg-scheduler .action-indicator.action-indicator_uncertain {
border-color: #f7941d;
}
.course-prg-scheduler .action-selector {
display: inline-block;
position: relative;
padding-right: 15px;
cursor: pointer;
right: -7px;
}
.course-prg-scheduler .action-selector:after {
content: ' ';
display: block;
position: absolute;
top: 50%;
right: 0;
margin-top: -2px;
width: 0;
height: 0;
border-style: solid;
border-width: 5px 5px 0 5px;
border-color: #808080 transparent transparent transparent;
}
.course-prg-scheduler .action-selector.readonly {
right: 0;
padding-right: 0;
cursor: default;
}
.course-prg-scheduler .action-selector.readonly:after {
display: none;
}
.course-prg-scheduler .action-selector .popover {
display: block;
top: 25px;
left: -19px;
height: 120px;
}
.course-prg-scheduler .action-selector .popover .popover-content {
padding: 0 0 10px;
}
.course-prg-scheduler .action-selector .popover ul.actions-selector-select li {
padding: 7px 17px;
border-bottom: 1px solid #dddddf;
}
.course-prg-scheduler .action-selector .popover ul.actions-selector-select li:hover {
background-color: #f9f9f9;
}
.course-prg-scheduler .action-selector ul.actions-selector-select li:last-child {
border-bottom: none;
}
/* END OF COURSE PROGRAM SCHEDULER */
/* Responsive: Portrait tablets and up */
@media screen and (min-width: 768px) {
/* Remove the padding we set earlier */
.header,
.marketing,
.footer {
padding-left: 0;
padding-right: 0;
}
/* Space out the masthead */
.header {
margin-bottom: 30px;
}
/* Remove the bottom border on the jumbotron for visual effect */
.jumbotron {
border-bottom: 0;
}
.sidebar {
z-index: 1;
position: absolute;
overflow-y: auto;
width: 250px;
height: 100%;
-webkit-box-shadow: 0 0 25px rgba(0,0,0,0.1);
-moz-box-shadow: 0 0 25px rgba(0,0,0,0.1);
box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
margin-left: auto;
}
.container {
max-width: 730px;
}
.manager-view {
height:100%;
}
.sidebar .sidebar-nav.navbar-collapse {
overflow-x: visible;
/*overflow-y: auto;*/
/*position: absolute;*/
width: 100%;
/*max-height: calc(50% - 139px);*/
}
.sidebar-container {
max-height: calc(100% - 120px); overflow-y: auto;
}
footer {
position: absolute;
bottom: 35px;
padding: 15px;
width:100%;
text-align:center;
}
footer span {
font-family:'robotobold';
color:#777;
}
}
@media (max-width: 767px) {
.manager-view {
width:100%;
}
ul.timeline:before {
left: 40px;
}
ul.timeline > li > .timeline-panel {
width: calc(100% - 90px);
width: -moz-calc(100% - 90px);
width: -webkit-calc(100% - 90px);
}
ul.timeline > li > .timeline-badge {
top: 16px;
left: 15px;
margin-left: 0;
}
ul.timeline > li > .timeline-panel {
float: right;
}
ul.timeline > li > .timeline-panel:before {
right: auto;
left: -15px;
border-right-width: 15px;
border-left-width: 0;
}
ul.timeline > li > .timeline-panel:after {
right: auto;
left: -14px;
border-right-width: 14px;
border-left-width: 0;
}
.sidebar {
width:100% !important;
}
.brand,
footer {
display:none;
}
.logo img {
width:200px;
margin-left:0;
}
.manager-view-content {
overflow:inherit;
}
body {
overflow:auto;
}
.sidebar-collapse-button {
display:none;
}
.right-sidebar {
display: none;
}
}
@media (max-width: 1350px) {
.personnel-info-container {
width:700px;
}
.personnel-info-right {
width:450px;
}
}
@media (max-width: 1000px) {
.personnel-info-container {
width:500px;
height:auto;
}
.personnel-info-left {
width:100%;
position:relative;
height:auto;
border:none;
}
.personnel-info-right {
width:100%;
position:relative;
height:auto;
}
.generic-profile-picture,
.personnel-info-left ul li:nth-child(1),
.personnel-info-left ul li:nth-child(2) {
text-align:center;
}
.generic-profile-picture img {
border-radius:100%;
}
}
@media (max-width: 560px) {
.personnel-info-container {
width: 350px;
}
}
@media (max-width: 991px) {
.dashboard .major-buttons a button {
margin-bottom:20px;
}
}
.tablescroll{
width: 100%;
overflow-x:auto;
overflow-y:visible;
padding-bottom:1px;
}
.tablescrollfixleft {
position:absolute;
left:0;
top:auto;
}
.tablescrollfixleft {
position:absolute;
right:0;
top:auto;
}
/* loading bar */
.loadingbarfullsize{
z-index:10001;
position:fixed;
width:100%;
height:100%;
top: 0;
left: 0;
background: url('/img/loading_spinner.gif') rgba(0, 0, 3, 0.2) no-repeat center center;
background-size: 100px 100px;
}
/* page transitions */
.slide {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
}
.slide.ng-enter,
.slide.ng-leave {
-webkit-transition: all 1s ease;
transition: all 1s ease;
}
.slide.ng-enter {
left: 100%;
}
.slide.ng-enter-active {
left: 0;
}
.slide.ng-leave {
left: 0;
}
.slide.ng-leave-active {
left: -100%;
}
/* end page transitions */
.move-to-bottom, .move-to-top, .move-to-bottom-modal, .move-to-top-modal {
margin-right: 10px !important;
}
/* file upload button */
.fileUpload {
position: relative;
overflow: hidden;
margin: 10px;
}
.fileUpload input.upload {
position: absolute;
top: 0;
right: 0;
margin: 0;
padding: 0;
font-size: 20px;
cursor: pointer;
opacity: 0;
filter: alpha(opacity=0);
}
/* end file upload */
.mid-h3 {
text-align: center;
margin-bottom: 20px;
color: #636363 ;
}
#toast-container {
margin-top: 90px;
}
.crud-mask {
width: 100%;
height: 100%;
background: #fff;
position: absolute;
top:43px; left:0;
z-index: 1000;
}
.body-mask {
width: 100%;
height: 100%;
background: #fff;
position: absolute;
top:0; left:0;
z-index: 1099;
}
/* for overflowing buttons not collapsing each other */
.bottom-margined{
margin-bottom: 0.75em;
}
|
_source/news/2018-01-28-unadkat-.html | InstantKhabar/_source | ---
title: "उनादकट ने भरी 11.50 करोड़ की उड़ान"
layout: item
category: ["sports"]
date: 2018-01-28T09:11:22.009Z
image: 1517150482008unadkat-.jpg
---
<h2>IPL की नीलामी में 431.70 करोड़ रुपये में बिके 169 खिलाड़ी</h2>
<p>नई दिल्ली: इंडियन प्रीमियर लीग (आईपीएल)-11 के लिए रविवार को बेंगलुरु में खिलाड़ियों की नीलामी के दूसरे दिन पांचवें राउंड की बोली के साथ ही दो दिन चली नीलामी खत्म हो गई. दुनिया भर के दिग्गज क्रिकेटरों की बोली पर चला यह नीलामी का मेला बहुत ही ज्यादा रोमांचक साबित हुआ, जहां सुपर स्टार खिलाड़ी औंधे मुंह गिरे, तो अनकैप्ड (अपने देश के लिए न खेले और अंडर-19 आदि क्रिकेटर) प्लेयर सहित कई अनजाने चेहरों ने मिलने वाली रकम से चौंका दिया. आठों फ्रेंचाइजी टीमों ने 169 खिलाड़ी खरीदे, जिसमें 113 भारतीय रहे, तो 56 विदेशी खिलाड़ी रहे. टीमों ने मिलकर कुल 431.70 करोड़ रुपये नीलामी के लिए खर्च किए. इंग्लैंड के बेन स्टोक्स और भारत के जयदेव उनादकट इस नीलामी के सबसे महंगे खिलाड़ी साबित हुए. इस नीलामी का सबसे बड़ा पहलू अनकैप्ड खिलाड़ियों को दिग्गजों से ज्यादा कीमत मिलना रहा, जो बताता है कि आईपीएल में खिलाड़ियों के चयन का पैमान बहुत ही मुश्किल हो चुका है.</p>
<p>अनकैप्बाड खिलाड़ियों में ही बारबडोस (विंडीज) के 22 साल के युवा जोफ्रा आर्चर 7.20 करोड़ की रकम झटककर सबसे बड़ा सरप्राइस साबित हुए, तो अनकैप्ड प्लेयर क्रुणाल पंड्या को मिली 8.80 लाख की रकम क्रिकेटप्रेमियों को चौंका गई. बहरहाल पिछले सेशन में 14.50 करोड़ रुपये झटकने वाले इंग्लैंड के ऑलराउंडर जहां इस बार 12.50 करोड़ रुपये हासिल कर सबसे महंगे खिलाड़ी बने, तो भारतीयों में यह कारनामा बंयहत्था तेज गेंदबाज जयदेव उनादकट ने किया, जिन्हें खरीदने के लिए राजस्थान रॉयल्स ने खरीदने के लिए 11.50 करोड़ रुपये चुकाए.</p>
<p>जहां युवराज सिंह और गौतम गंभीर जैसे बड़े नाम कीमत के मामले में औंधे मुंह गिरे, तो लोकेश राहुल और मनीष पांडे को 11-11 करोड़ रुपये मिले. वहीं, अफगानिस्तान के 19 साल के लेग स्पिनर राशिद खान को मिले 9.00 और सिर्फ 16 साल के ऑफ स्पिनर मुजीब जादरान को मिली 4.00 करोड़ की रकम भी आश्चर्य और चर्चा का विषय रही और अंडर-19 विश्व कप में खेल रहा यह युवा एकदम से सुर्खियों में आ गया है. </p>
<p>नीलामी के दूसरे दिन पंजाब का ऑस्ट्रेलिया के एंड्रयू टॉय को 7.20 करोड़ में खरीदना भी कुछ हद तक चौंकाने वाला रहा. वहीं विंडीज के स्टार बल्लेबाज क्रिस गेल को लेकर काफी चर्चा रही, लेकिन तीसरी बार उन पर लगी बोली में फ्रेंचाइजियों ने मिल-जुलकर गेल के इस आईपीएल में खेलने का रास्ता साफ कर कर दिया. वहीं 17 साल के संदीप लेमिछाने ने आईपीएल में चयनित होने वाले नेपाल का पहला खिलाड़ी बनकर इतिहास रच दिया. </p>
<p>इसके अलावा कुछ और बड़े नाम बिकने में नाकाम रहे. न्यूजीलैंड के बल्लेबाज मार्टिन गप्टिल, दक्षिण अफ्रीका के तेज गेंदबाज डेल स्टेन, ऑस्ट्रेलिया के बल्लेबाज शॉन मार्श, दक्षिण अफ्रीका के हाशिम अमला, इंग्लैंड के विशेषज्ञ इयोन मॉर्गन, श्रीलंका के लसिथ मलिंगा ऐसे बड़े नाम रहे, जिन्हें किसी ने नहीं खरीदा. भारतीय खिलाड़ियों में दोबारा लगी बोली में मुरली विजय और पार्थिव पटेल अपने लिए ग्राहक ढूंढने में कामयाब रहे, लेकिन ईशांत शर्मा के नाम दोबारा नीलामी में शामिल ही नहीं किया गया. वहीं अनकैप्ड खिलाड़ियों में रणजी ट्रॉफी में शानदार प्रदर्शन करने वाले रजनीश गुरबानी को कोई टीम न मिलना निराशाजनक रहा, तो मुंबई के लिए खेल चुके लेफ्टआर्म स्पिनर इकबाल अब्दुल्ला जैसे खिलाड़ियों का किसी भी टीम की पॉलिसी में फिट न बैठना भी थोड़ा समझ से परे रहा. </p>
<p>नीलामी के दूसरे दूसरे दिन भारतीय खिलाड़ियों की बात करें, तो दूसरे दिन के पहले राउंड में भारतीय अनकैप्ड खिलाड़ियों में राहुल चाहर को मुंबई इंडियंस ने 1.90 करोड़ रुपये में खरीदा, तो झारखंड के लेफ्टआर्म स्पिनर शाहबाज नदीम को डेयर डेविल्स ने 3.20 करोड़ में खरीदा. इनके अलावा सुबह के सत्र में कर्नाट के 29 साल के ऑलराउंडर कृष्णप्पा गौतम ने 6.20 करोड़ की रकम झटककर सभी को चौंका दिया. गौतम को राजस्थान रॉयल्स ने खरीदा.</p>
<p>इसके अलावा मुर्गन अश्विन को आरसीबी ने 2.20 करोड़ में खरीदा. इनके अलावा मनोज तिवारी ने पंजाब ने एक करोड़ में खरीदा, तो मनदीप सिंह को बेंगलोर ने 1.60 करोड़ में खरीदा. वहीं कुछ साल पहले अच्छी रकम पाने वाले दिल्ली के रणजी खिलाड़ी पवन नेगी को आरसीबी ने 1.00 करोड़ में राइट-टू-मैच के जरिए रिटेन कर लिया. पवन को मूल रूप से मुंबई इंडियंस ने खरीदा था. पवन ने पिछले सेशन में 16 विकेट लिए थे, तो वहीं उनका इकोनॉमिक रेट सिर्फ 6.12 का रहा था. </p>
<p>हाल ही में भारत के लिए टी-20 खेलने वाले ऑलराउंडर वॉशिंगटन सुंदर को आरसीबी ने 3.20 करोड़ रुपये में खरीदा. भारत के लिए तीन वनडे खेल चुके मनदीप सिंह को आरपीसी ने 1.40 करोड़ में खरीदा. इसके अलावा गुरकीरत सिंह को डेयर डेविल्स ने 75 लाख में खरीदा. इसके अलावा भारत के लिए खेल चुके तेज गेंदबाज ऋषि धवन को कोई खरीददार नहीं मिला, तो वहीं धवल कुलकर्णी को राजस्थान रॉयल्स ने राइट टू मैच से 75 लाख में खरीदा. पंजाब के लिए खेलने वाले तेज गेंदबाज संदीप शर्मा को हैदराबाद ने 3 करोड़ में खरीदा, दो मोहित शर्मा को 2.40 लाख में पंजाब ने रिटेन किया. तेज गेंदबाज विनय शर्मा को को केकेआर ने 1 करोड़ में खरीदा. इसके अलावा भारत के लिए दो टी-20 मैच खेल चुके युवा तेज गेंदबाज मोहम्मद सिराज को आरसीबी ने 2.60 करोड़ में खरीदा. दूसरे दिन सबसे ज्यादा चौंकाया बंयहत्था तेज गेंदबाज जयदेव उनादकत 11.50 करोड़ रुपये में बिके. दक्षिण अफ्रीका में खेले जाने वाली वनडे टीम में चुने गए तेज गेंदबाज शार्दुल ठाकुर को चेन्नई ने 2.60 करोड़ में खरीदा.</p>
<p>दूसरे राउंड में भारत के लिए खेल चुके बंयहत्था स्पिनर प्रज्ञान ओझा पर किसी ने बोली नहीं लगाई. इसी राउंड में अनकैप्ड ऑलराउंडरों के लिए लगी बोली में नोएजा के शिवम मावी को केकेआर ने 3.00 करोड़ रुपये में खरीदा, तो वहीं अभिषेक शर्मा को डेयर डेविल्स ने 55 लाख में खरीदा. </p>
<p>तीसरे राउंड की बोली में भारत के लिए खेल चुके वरुण एरॉन को किसी ने नहीं खरीदा. वहीं भारत के लिए खेल चुके बंयहत्था तेज गेंदबाज बैरिंदर सरन को किंग्स इलेवन पंजाब ने 2.20 करोड़ में खरीदा. वहीं कभी अंडर-19 स्टार रहे दिल्ली के उन्मुक्त चंद, तमिलनाडु के बाबा अपराजित को किसी ने नहीं खरीदा. उत्तर प्रदेश के आकशदीप नाथ को 1.00 करोड़ में पंजाब ने खरीदा. वहीं अनकैप्ड विकेटकीपरों में श्रीवत्स गोस्वामी को सनराइजर्स हैदराबाद ने 1.00 करोड़ में खरीदा. अंडर-19 विश्व कप टीम के सदस्य और चोटिल चल रहे तेज गेंदबाज इशान पोरल को भी किसी ने नहीं खरीदा. चोटिल होना शायद उन पर भारी पड़ गया. </p>
<p>चौथे राउंड में शनिवार को नहीं बिके खिलाड़ियों की दोबारा बोली लगी और इसमें क्रिस गेल और मार्टिन गप्टिल नहीं बिक सके, लेकिन मुरली विजय को चेन्नई ने उनके बेस प्राइस 2.00 करोड़ में बिक गए. इसी राउंड में पार्थिव पटेल को आरसीबी ने 1.70 करोड़ में खरीदा, तो ऑस्ट्रेलिया के तेज गेंदबाज मिशेल जॉनसन को केकेआर ने 2.00 करोड़ में खरीदा.</p>
<p>ऑस्ट्रेलिया के शॉन मार्श, न्यूजीलैंड के कोेरी एंडरसन और दक्षिण अफ्रीका के डेल स्टेन भी दोबारा लगाई बोली में नहीं बिक सके. वहीं न्यूजीलैंड के टिम साउदी को आरसीबी ने दोबारा लगी बोली में 1.00 करोड़ में खरीदा. अंडर-19 विश्व कप में खेल रहे स्पिनर अंकुल रॉय को मुंबई ने 20 लाख में खरीदा, तो यूपी के मुकुल डागर को पंजाब ने 20 लाख में खरीदा.</p>
<p>पांचवें राउंड में विंडीज के आतिशी बल्लेबाज क्रिस गेल पर लगा ग्रहण हट गया और तीसरी बार लगी बोली में किंग्स इलेवन पंजाब ने गेल को उनके बेस प्राइस दो करोड़ की रकम पर खरीद लिया. इसी राउंड में नेपाल के संदीप लेमिछाने ने इतिहास रच दिया. नेपाल के 17 साल के संदीप लेमिछाने आईपीएल में चयनित होने वाले आईपीएस के पहले खिलाड़ी बन गए.</p>
<p>विदेशी खिलाड़ियों में दूसरे दिन पहले राउंड में विंडीज के सलामी बल्लेबाज 26 साल के ऑलराउंडर एविन लेविस को मुंबई इंडियंस ने 3.80 करोड़ में खरीदा. चौंकाने वाली बात यह रही कि टी-20 के विशेषज्ञ और बेहतरीन बल्लेबाज इंग्लैंड के इयोन मॉर्गन और ऑस्ट्रेलिया के शॉन मार्श को किसी ने नहीं खरीदा. इसके अलावा ऑस्ट्रेलिया को डेनियल क्रिस्टियन 1.50 करोड़ में दिल्ली डेयर डेविल्स ने खरीदा था. सबसे चौंकाने वाली बात यह रही कि दो करोड़ के बेस प्राइस वाले न्यूजीलैंड के ऑलराउंडर कोरी एंडरसन को किसी ने नहीं खरीदा. ऑस्ट्रेलिया के लिए 21 वनडे खेल चुके नॉथन काउल्टर निले को आरसीबी ने 2.20 करोड़ में खरीदा, तो न्यूजीलैंड के तेज गेंदबाज ट्रेंट बोल्ट को डेयर डेविल्स ने 2.20 करोड़ में खरीदा. चौंकाने वाली बात यह रही कि दक्षिण अफ्रीका के अनुभवी सीमर डेल स्टेन पर किसी भी फ्रेंचाइजी ने बोली नहीं लगाई और वह नहीं बिक सके. </p>
<p>तीसरे राउंड में दक्षिण अफ्रीका के जेपी डुमिनी को मुंबई इंडियंस ने 1.00 करोड़ में खरीदा, तो ऑस्ट्रेलिया के लिए दो टी-20 मैच खेल चुके तेज गेंदबाज जैसन बेहरनडॉर्फ को 1.50 करोड़ में मुंबई इंडियंस ने खरीदा. वहीं पिछले सेशन में आरसीबी से 12 करोड़ रुपये पाने वाले इंग्लैंड के तेज गेंदबाज टायले मिल्स को इस बार किसी टीम ने नहीं खरीदा. दूसरे दिन भी सरप्राइज देखने को मिला, हालांकि यह साफ्रा आर्चर की तरह बड़ा नहीं था. यह सरप्राइज रहा इंग्लैंड के तेज गेंदबाज तेज गेंदबाज एंड्रयू टॉय, जिन्हें पंजाब ने 7.20 करोड़ में खरीदा. ट्रॉय ने पिछले सेशन में हैट्रिक बनाई थी. इसी राउंड में अनकैप्ड खिलाड़ियों में ऑस्ट्रेलिया के बंयहत्था तेज गेंदबाज बेन ड्वारशुइस को किंग्स इलेवन पंजाब ने 1.40 करोड़ में खरीदा.</p>
<p>इससे पहले नीलामी के पहले दिन शनिवार को 110 खिलाड़ियों की हुई नीलामी में 29 विदेशी सहित कुल 78 खिलाड़ियों की बिक्री हुई, तो वहीं क्रिस गेल और ऑस्ट्रेलिया के मिशेल जॉनसन और लसिथ मलिंगा सहित कुल 32 खिलाड़ी ऐसे रहे, जिन्हें किसी फ्रैंचाइजी ने नहीं खरीदा था. साथ ही, 16 खिलाड़ियों के लिए 'राइट-टू-मैच' कार्ड का इस्तेमाल फ्रैंचाइजी टीमों ने किया. इंग्लैंड के बेन स्टोक्स सबसे ज्यादा 12.50 रुपये हासिल करने वाले खिलाड़ बने और कुल मिलाकर सभी आठों टीमों ने 321.10 करोड़ रुपये अपने बजट से खर्च किए थे. </p> |
GUI/docs/api/UI/Run/package-summary.html | leokdawson/di-geva | <!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 Mon Oct 06 15:54:44 IST 2014 -->
<title>UI.Run (GUI specifications)</title>
<meta name="date" content="2014-10-06">
<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="UI.Run (GUI specifications)";
}
//-->
</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 class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.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-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="../../UI/package-summary.html">Prev Package</a></li>
<li><a href="../../UI/Run/JSci/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?UI/Run/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h1 title="Package" class="title">Package UI.Run</h1>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation">
<caption><span>Interface Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Interface</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAPaneManager.html" title="interface in UI.Run">GEVAPaneManager</a></td>
<td class="colLast">
<div class="block">Allow anything that inherits from GEVAPane to interact with the GEVARun
window in which the pane is shown</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamParser.Listener.html" title="interface in UI.Run">GEVAStreamParser.Listener</a><E></td>
<td class="colLast">
<div class="block">Listener interface which inheriting classes must extend, even if just
to an empty type, so that listeners can listen on the specific listener
for a given class</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamReader.Listener.html" title="interface in UI.Run">GEVAStreamReader.Listener</a></td>
<td class="colLast">
<div class="block">Listen to stream reading events</div>
</td>
</tr>
</tbody>
</table>
</li>
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAConfigurationStreamParser.html" title="class in UI.Run">GEVAConfigurationStreamParser</a></td>
<td class="colLast">
<div class="block">Parse lines that GEVA output about the configuration it is using</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAConfigurationStreamParser.Event.html" title="class in UI.Run">GEVAConfigurationStreamParser.Event</a></td>
<td class="colLast">
<div class="block">Store all the configuration details in one class.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAErrorStreamParser.html" title="class in UI.Run">GEVAErrorStreamParser</a></td>
<td class="colLast">
<div class="block">Parse lines from error out</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAErrorStreamParser.Event.html" title="class in UI.Run">GEVAErrorStreamParser.Event</a></td>
<td class="colLast">
<div class="block">Unique empty type for overloading</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGlobalStreamParser.html" title="class in UI.Run">GEVAGlobalStreamParser</a></td>
<td class="colLast">
<div class="block">Parse data that's globally useful for all other parsers.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGlobalStreamParser.Event.html" title="class in UI.Run">GEVAGlobalStreamParser.Event</a></td>
<td class="colLast">
<div class="block">Unique empty type for overloading</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGraphPane.html" title="class in UI.Run">GEVAGraphPane</a></td>
<td class="colLast">
<div class="block">Output pane displayed while running GEVA that shows graph information</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGraphPaneCategory.html" title="class in UI.Run">GEVAGraphPaneCategory</a></td>
<td class="colLast">
<div class="block">Store a grouping of GEVAGraphItems that relate to each other, usually in
their measurements in the graph.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGraphPaneConfig.html" title="class in UI.Run">GEVAGraphPaneConfig</a></td>
<td class="colLast">
<div class="block">Store all configuration details by name.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGraphPaneConfig.Categories.html" title="class in UI.Run">GEVAGraphPaneConfig.Categories</a></td>
<td class="colLast"> </td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGraphPaneItem.html" title="class in UI.Run">GEVAGraphPaneItem</a></td>
<td class="colLast">
<div class="block">Store the configuration properties of an item in the graph.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGraphStreamParser.html" title="class in UI.Run">GEVAGraphStreamParser</a></td>
<td class="colLast">
<div class="block">Parse data lines - these are lines containing GRAPH_DATA_BEGIN (Currently
(2008y08M11d) "#---Data---"), which marks the start of data, the line
immediately following GRAPH_DATA_BEGIN, which is taken as the labels for the
data, and then every line that follows that can be split into the same
number of parts as the label line, and where all parts are convertable to a
double</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAGraphStreamParser.Extension.html" title="class in UI.Run">GEVAGraphStreamParser.Extension</a></td>
<td class="colLast">
<div class="block">Extension.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVALSystemPane.html" title="class in UI.Run">GEVALSystemPane</a></td>
<td class="colLast">
<div class="block">Pane that shows final LSystem</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVALSystemStreamParser.html" title="class in UI.Run">GEVALSystemStreamParser</a></td>
<td class="colLast">
<div class="block">Parse lines that relate to LSystems</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVALSystemStreamParser.Event.html" title="class in UI.Run">GEVALSystemStreamParser.Event</a></td>
<td class="colLast">
<div class="block">LSystem parsed event</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAPane.html" title="class in UI.Run">GEVAPane</a></td>
<td class="colLast">
<div class="block">Base class for any panes that show up on the GEVARun window.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVARun.html" title="class in UI.Run">GEVARun</a></td>
<td class="colLast">
<div class="block">Run the GEVA process in a new window.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVARunning.html" title="class in UI.Run">GEVARunning</a></td>
<td class="colLast">
<div class="block">Keep track of all running GEVA instances.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStandardStreamParser.html" title="class in UI.Run">GEVAStandardStreamParser</a></td>
<td class="colLast">
<div class="block">Parse lines from standard out</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStandardStreamParser.Event.html" title="class in UI.Run">GEVAStandardStreamParser.Event</a></td>
<td class="colLast">
<div class="block">Unique empty type for overloading</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamParser.html" title="class in UI.Run">GEVAStreamParser</a><E extends <a href="../../UI/Run/GEVAStreamParser.Event.html" title="class in UI.Run">GEVAStreamParser.Event</a>></td>
<td class="colLast">
<div class="block">Base class from which all parsers are derived.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamParser.Event.html" title="class in UI.Run">GEVAStreamParser.Event</a></td>
<td class="colLast">
<div class="block">Base listen event class.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamParser.Extension.html" title="class in UI.Run">GEVAStreamParser.Extension</a></td>
<td class="colLast">
<div class="block">Base from which all extensions inherit</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamParser.LineEvent.html" title="class in UI.Run">GEVAStreamParser.LineEvent</a></td>
<td class="colLast">
<div class="block">Base listen event class, which simply gives the listener the line that
was (or wasn't, as the case may be when using this event) parsed</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamReader.html" title="class in UI.Run">GEVAStreamReader</a></td>
<td class="colLast">
<div class="block">A class dedicated to reading the output and error streams of an external
process (GEVA for example).</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../UI/Run/GEVAStreamReader.Event.html" title="class in UI.Run">GEVAStreamReader.Event</a></td>
<td class="colLast">
<div class="block">Event data for stream reading listeners</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../overview-summary.html">Overview</a></li>
<li class="navBarCell1Rev">Package</li>
<li>Class</li>
<li><a href="package-use.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-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="../../UI/package-summary.html">Prev Package</a></li>
<li><a href="../../UI/Run/JSci/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../index.html?UI/Run/package-summary.html" target="_top">Frames</a></li>
<li><a href="package-summary.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/schema/chapter-4.html | CAFM-Connect/CAFM-Connect | <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" type="text/css" href="../ifc-styles.css">
<link rel="stylesheet" type="text/css" href="../details-shim.css">
<script type="text/javascript" src="../details-shim.js"></script>
<title>Fundamental concepts and assumptions</title>
<style type="text/css">
body { counter-reset: index1 3 index2 0 index3 0 index4 -1 index5 0; }
</style>
</head>
<body>
<script type="text/javascript">
<!--
parent.index.location.replace("toc-4.html#");
//-->
</script>
<h1 class="num" id="scope">Fundamental concepts and assumptions</h1>
<p>This specification consists of a schema defining data types, along with common concepts indicating use of data types for particular scenarios. This chapter defines such common concepts, which are applied at entities having specific use. Such concepts also form the basis of model views, which are supplementary specifications that adapt the scope and rules of this schema for targeted domains within the building industry.</p>
<p>Each concept template defines a graph of entities and attributes, with constraints and parameters set for particular attributes and instance types. Various entities within this schema reference such concept templates and adapt them for particular use according to parameters.</p>
<blockquote class="example">
<p>EXAMPLE The 'Ports' concept template defines distribution system connectivity for mechanical, electrical, and plumbing systems; a pipe segment defines an application of the 'Ports' concept, having one port as an inlet and another as an outlet.</p>
</blockquote>
<details open="open"><summary>Concept templates</summary><table class="gridtable">
<tr><th>Template</th>
<th>CAFM-Connect</th>
</tr>
</table>
</details>
<p>
<details open="open"><summary>Partial templates in use</summary><table class="gridtable">
<tr><th>Template</th>
<th>CAFM-Connect</th>
</tr>
<tr><td>
<a href="../schema/templates/cc-concepts.html">CC concepts</a>
</td>
<td>X</td>
</tr>
<tr><td>
<a href="../schema/templates/cc_ifcclassification.html">CC_IfcClassification</a>
</td>
<td>X</td>
</tr>
<tr><td>
<a href="../schema/templates/cc_ifcproject.html">CC_IfcProject</a>
</td>
<td>X</td>
</tr>
<tr><td>
<a href="../schema/templates/cc_ifcprojectlibrary.html">CC_IfcProjectLibrary</a>
</td>
<td>X</td>
</tr>
<tr><td>
<a href="../schema/templates/cc_ifcpropertysettemplate.html">CC_IfcPropertySetTemplate</a>
</td>
<td>X</td>
</tr>
</table>
</details>
<p>
</p>
<p><a href="../link/chapter-4.html" target="_blank" ><img src="../img/permlink.png" style="border: 0px" title="Link to this page" alt="Link to this page"/> Link to this page</a></p>
</body>
</html>
|
lib/lucene-4.0.0/docs/queries/org/apache/lucene/queries/function/valuesource/class-use/IfFunction.html | dburgmann/fbRecommender | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_27) on Sat Oct 06 02:59:45 EDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<TITLE>
Uses of Class org.apache.lucene.queries.function.valuesource.IfFunction (Lucene 4.0.0 API)
</TITLE>
<META NAME="date" CONTENT="2012-10-06">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.lucene.queries.function.valuesource.IfFunction (Lucene 4.0.0 API)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../../../org/apache/lucene/queries/function/valuesource/IfFunction.html" title="class in org.apache.lucene.queries.function.valuesource"><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="../../../../../../../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/lucene/queries/function/valuesource//class-useIfFunction.html" target="_top"><B>FRAMES</B></A>
<A HREF="IfFunction.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.lucene.queries.function.valuesource.IfFunction</B></H2>
</CENTER>
No usage of org.apache.lucene.queries.function.valuesource.IfFunction
<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/lucene/queries/function/valuesource/IfFunction.html" title="class in org.apache.lucene.queries.function.valuesource"><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="../../../../../../../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/lucene/queries/function/valuesource//class-useIfFunction.html" target="_top"><B>FRAMES</B></A>
<A HREF="IfFunction.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>
<address>Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.</address>
<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>
</BODY>
</HTML>
|
src/Examples-Docs/ReadMe.html | pkirkaas/PkExtensions | <!DOCTYPE html>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=utf-8'/>
<link type='text/css' rel='stylesheet' href='MyStyleSheet.css'/>
<title>Suggested Mods</title>
</head>
<body>
<div class='title'>Suggested mods to standard Laravel Installation to use PkExtensions</div>
<h1>Examples</h1>
<p>See <tt>ExampleBase</tt>
<h1>composer.json</h1>
<pre>
"repositories": [{
"type": "git",
"url": "https://github.com/pkirkaas/PkExtensions.git"
} ],
"require": {
"php": ">=5.6.4",
"laravel/framework": "5.*",
"pkirkaas/PkExtensions": "dev-master",
//...
</pre>
<h1>laravel/app</h1>
<ul>
<li>laravel/app: add 'resources' directory, 'assets' & 'views' subdirs.
<li>laravel/app/resources/assets: img, js & sass dirs.
<li>laravel/app/resources/views: app.blade.php , & controller subdirs for views
<li>laravel/app: create "models" dir here, put models (including user)
<li>laravel/app: Copy 'References' here
<li>If using PkUser & Building Migration, delete the Laravel default <tt>database/migrations/...create_users...php</tt> class.
<li><tt><b>laravel/app/Console/Kernel.php</b></tt>: Add custom Artisan commands here. Example:
<pre>
use PkExtensions\Console\Commands\ClearAll;
use PkExtensions\Console\Commands\GenerateMigrations;
//...
protected $commands = [
GenerateMigrations::class,
ClearAll::class,
DestroyTables::class,
];
</pre>
<h1>laravel/routes</h1>
<p>web.php:
<pre>
Auth::routes();
Route::group(['middleware' => ['web']], function () {
Route::any('/', ['as'=>'home', 'uses'=>'IndexController@index']);
});
</pre>
<h1>laravel/config</h1>
<h2>app.php</h2>
<h3>Add the models you want to automatically build migrations</h3>
<p>If you want to use the PkExtensions artisan make migrations command, add the models:
<pre>
return [
'buildmodels' => [
'\\App\\Models\\User',
'\\App\\Models\\Contact',
],
</pre>
<h3>Additional Service Providers</h3>
<pre>
/** Add-Ons */
Collective\Html\HtmlServiceProvider::class,
Laravel\Socialite\SocialiteServiceProvider::class,
/*
* PkExtension Application Service Providers...
*/
PkExtensions\PkHtmlServiceProvider::class,
PkExtensions\PkValidatorServiceProvider::class,
</pre>
<h3>Additional Aliases</h3>
<pre>
#Extensions...
'Form' => Collective\Html\FormFacade::class,
'Html' => Collective\Html\HtmlFacade::class,
'PkForm' => PkExtensions\PkFormFacade::class,
'PkHtml' => PkExtensions\PkHtmlFacade::class,
'PkValidator' => PkExtensions\PkValidatorFacade::class,
</pre>
<h3>Etc</h3>
<pre>
'name' => 'Cool Site Name',
....
'timezone' => 'America/Los_Angeles',
....
</pre>
<h2>session.php</h2>
<p>Change to use DB:
<pre>
'driver' => env('SESSION_DRIVER', 'database'),
</pre>
<p>... and run: <tt> php artisan session:table </tt>
<h2>auth.php</h2>
<p>Set the path to th euser model:
<pre>
'providers' => [
'users' => [
'driver' => 'eloquent',
'model' => App\Models\User::class,
],
</pre>
<h2>View.php</h2>
<p>Add the additional view resource directories:
<pre>
'paths' => [
realpath(base_path('resources/views')),
realpath(base_path('app/resources/views')),
realpath(base_path('vendor/pkirkaas/PkExtensions/src/Extensions/resources/views')),
],
</pre>
<h1>laravel/public/index.php</h1>
<p>Modify to display errors (not in prod), & use pkdebug logging:
<pre>
ini_set("display_errors", 1);
error_reporting (E_ALL );
//....
require_once(__DIR__.'/../app/References/AppReferenceCollection.php');
$kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
setAppLog();
appLogReset(false);
$response = $kernel->handle(
$request = Illuminate\Http\Request::capture()
);
</pre>
</body>
</html>
|
ui/ng-ui/src/app/_metronic/partials/layout/extras/dropdown-inner/search-dropdown-inner/search-dropdown-inner.component.html | gen0cide/laforge | <div
class="quick-search quick-search-dropdown"
[ngClass]="{ 'quick-search-has-result': data?.length }"
id="kt_quick_search_dropdown"
>
<!--begin:Form-->
<form method="get" class="quick-search-form">
<div class="input-group">
<div class="input-group-prepend">
<span class="input-group-text">
<span
class="svg-icon svg-icon-lg"
[inlineSVG]="'./assets/media/svg/icons/General/Search.svg'"
></span>
</span>
</div>
<input
#searchInput
(keyup)="search($event)"
type="text"
class="form-control"
placeholder="Search..."
/>
<div
class="input-group-append"
[ngClass]="{ 'spinner spinner-sm spinner-primary': loading }"
>
<span class="input-group-text">
<i
(click)="clear($event)"
class="quick-search-close ki ki-close icon-sm text-muted"
[style.display]="showCloseButton() ? 'block' : 'none'"
></i>
</span>
</div>
</div>
</form>
<!--end::Form-->
<app-search-result [data]="data"></app-search-result>
</div>
|
affiliate.html | TheSanto/Murs |
html |
assets/css/login.css | immersedone/bms-git | /*
Project Name: Banksia Management System
Course: Programming Project 1
Theme Name: Login Page
Revision: v1.0
Authors: Adam Salek - S
Ryan Bargholz - S
Truc Minh Phan - S3545017
Description: Login Page using CodeIgniter & Bootstrap Frameworks.
*/
/************************************
*************************************
-------------------------
--- TABLE OF CONTENTS ---
-------------------------
__GLBL - Global Variables
__LGIN - Login
__CLFX - Clearfix
*************************************
************************************/
/* __GLBL - Global Variables */
* {
margin: 0;
}
body {
background: #f1f1f1;
}
/* __LGIN - Login */
.loginPnl {
width: 400px;
height: 375px;
margin: auto;
border: 1px solid black;
position: absolute;
top: 0;
left:0;
right: 0;
bottom: 0;
}
.loginPnl.forgot {
width: 400px;
height: 410px;
margin: auto;
border: 1px solid black;
position: absolute;
top: 0;
left:0;
right: 0;
bottom: 0;
}
.header {
background: #2f2f2f;
color: white;
padding: 10px 0;
text-align: center;
}
.justify {
text-align: justify;
}
img.rsp_img {
max-width:40px;
max-height:40px;
display:inline-block;
float: left;
}
.header h4 {
display: inline-block;
vertical-align: middle;
font-size: 26px;
font-weight: bold;
line-height: 20px;
}
.content {
background: white;
padding: 25px 0 0;
}
.content label {
display: block;
}
label[for=password] {
margin-top: 10px;
}
.content input {
width: 100%;
background: #f1f1f1;
margin: 5px auto;
outline: none;
box-shadow: none;
border: 1px solid silver;
font-size: 18px;
padding: 4px;
}
.content form > a {
margin-top: 7px;
}
.content input[type=submit] {
background: #5fbe2d;
color: white;
border-radius: 0;
font-weight: bold;
margin-top: 7px;
}
.content hr {
margin: 10px 0 15px;
}
.__flRight {
float: right;
}
/* __CLFX - Clearfix */
.cfx, .inner {
overflow: auto;
}
.cfx:after, .inner:after {
content: "";
display: table;
clear: both;
}
div.errors {
display:none;
position: absolute;
top: 315px;
width: 100%;
left: 0;
text-align: center;
color: white;
background: maroon;
padding: 20px;
} |
aquamacs/doc/Aquamacs Help/eshell/Writing-a-module.html | davidswelt/aquamacs-emacs | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta name="generator" content=
"HTML Tidy for Mac OS X (vers 31 October 2006 - Apple Inc. build 16.1), see www.w3.org" />
<title>Writing a module - Eshell: The Emacs Shell</title>
<meta http-equiv="Content-Type" content="text/html" />
<meta name="description" content="Eshell: The Emacs Shell" />
<meta name="generator" content="makeinfo 4.13" />
<link title="Top" rel="start" href="index.html#Top" />
<link rel="up" href="Extension-modules.html#Extension-modules"
title="Extension modules" />
<link rel="next" href="Module-testing.html#Module-testing" title=
"Module testing" />
<link href="http://www.gnu.org/software/texinfo/" rel=
"generator-home" title="Texinfo Homepage" /><!--
This manual is for Eshell, the Emacs shell.
Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
2007, 2008, 2009, 2010 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.3 or any later version published by the Free Software
Foundation; with no Invariant Sections, with the Front-Cover texts
being ``A GNU Manual'', and with the Back-Cover Texts as in (a)
below. A copy of the license is included in the section entitled
``GNU Free Documentation License''.
(a) The FSF's Back-Cover Text is: ``You have the freedom to copy
and modify this GNU manual. Buying copies from the FSF supports
it in developing GNU and promoting software freedom.''
-->
<meta http-equiv="Content-Style-Type" content="text/css" />
<style type="text/css">
/*<![CDATA[*/
<!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
-->
/*]]>*/
</style>
</head>
<body>
<div class="node">
<a name="Writing-a-module" id="Writing-a-module"></a>
<p>Next: <a rel="next" accesskey="n" href=
"Module-testing.html#Module-testing">Module testing</a>,
Up: <a rel="up" accesskey="u" href=
"Extension-modules.html#Extension-modules">Extension
modules</a></p>
<hr />
</div>
<h3 class="section">7.1 Writing a module</h3>
</body>
</html>
|
doc/html/struct__gsl__vector__char__view.html | pengumc/crobot | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<title>crobot: _gsl_vector_char_view Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/search.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css"/>
</head>
<body onload='searchBox.OnSelectItem(0);'>
<!-- Generated by Doxygen 1.7.3 -->
<script type="text/javascript"><!--
var searchBox = new SearchBox("searchBox", "search",false,'Search');
--></script>
<div id="top">
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">crobot</div>
</td>
</tr>
</tbody>
</table>
</div>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li class="current"><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="files.html"><span>Files</span></a></li>
<li id="searchli">
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Data Structures</span></a></li>
<li><a href="classes.html"><span>Data Structure Index</span></a></li>
</ul>
</div>
</div>
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
initNavTree('struct__gsl__vector__char__view.html','');
</script>
<div id="doc-content">
<div class="header">
<div class="summary">
<a href="#pub-attribs">Data Fields</a> </div>
<div class="headertitle">
<h1>_gsl_vector_char_view Struct Reference</h1> </div>
</div>
<div class="contents">
<!-- doxytag: class="_gsl_vector_char_view" --><table class="memberdecls">
<tr><td colspan="2"><h2><a name="pub-attribs"></a>
Data Fields</h2></td></tr>
<tr><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a6417ce3d327cd4342daa4d3997af3196"></a><!-- doxytag: member="_gsl_vector_char_view::vector" ref="a6417ce3d327cd4342daa4d3997af3196" args="" -->
<a class="el" href="structgsl__vector__char.html">gsl_vector_char</a> </td><td class="memItemRight" valign="bottom"><b>vector</b></td></tr>
</table>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li>include/gsl64/<a class="el" href="gsl__vector__char_8h_source.html">gsl_vector_char.h</a></li>
</ul>
</div>
</div>
<div id="nav-path" class="navpath">
<ul>
<li class="navelem"><a class="el" href="struct__gsl__vector__char__view.html">_gsl_vector_char_view</a> </li>
<li class="footer">Generated on Sat Mar 10 2012 00:03:56 for crobot by 
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.3 </li>
</ul>
</div>
<!--- window showing the filter options -->
<div id="MSearchSelectWindow"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
onkeydown="return searchBox.OnSearchSelectKey(event)">
<a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark"> </span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark"> </span>Data Structures</a></div>
<!-- iframe showing the search results (closed by default) -->
<div id="MSearchResultsWindow">
<iframe src="" frameborder="0"
name="MSearchResults" id="MSearchResults">
</iframe>
</div>
</body>
</html>
|
Curate/web-app/css/filterpane.css | PapenfussLab/PathOS | body {
padding-top: 20px;
padding-bottom: 60px;
}
/* Custom container */
.container {
margin: 0 auto;
max-width: 1000px;
}
.container > hr {
margin: 60px 0;
}
/* Main marketing message and sign up button */
.jumbotron {
margin: 80px 0;
text-align: center;
}
.jumbotron h1 {
font-size: 100px;
line-height: 1;
}
.jumbotron .lead {
font-size: 24px;
line-height: 1.25;
}
.jumbotron .btn {
font-size: 21px;
padding: 14px 24px;
}
/* Supporting marketing content */
.marketing {
margin: 60px 0;
}
.marketing p + h4 {
margin-top: 28px;
}
/* Customize the navbar links to be fill the entire space of the .navbar */
.navbar .navbar-inner {
padding: 0;
}
.navbar .nav {
margin: 0;
display: table;
width: 100%;
}
.navbar .nav li {
display: table-cell;
width: 1%;
float: none !important;
}
.navbar .nav li a {
font-weight: bold;
text-align: center;
border-left: 1px solid rgba(255,255,255,.75);
border-right: 1px solid rgba(0,0,0,.1);
}
.navbar .nav li:first-child a {
border-left: 0;
border-radius: 3px 0 0 3px;
}
.navbar .nav li:last-child a {
border-right: 0;
border-radius: 0 3px 3px 0;
}
.modal {
left: 40%;
width: 60%;
}
.paginateButtons a {
margin-left: 10px;
} |
MATLAB/Lib/matlab_bgl-4.0.1/libmbgl/boost1.36/libs/fusion/doc/html/fusion/functional/invocation/functions/invoke_proc.html | joshuaspence/ThesisCode | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>
invoke_procedure</title>
<link rel="stylesheet" href="../../../../../../../../doc/html/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.66.1">
<link rel="start" href="../../../../index.html" title="Chapter 1. Fusion 2.0">
<link rel="up" href="../functions.html" title="Functions">
<link rel="prev" href="invoke.html" title="invoke">
<link rel="next" href="invoke_fobj.html" title="
invoke_function_object">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../../../boost.png"></td>
<td align="center"><a href="../../../../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../../../libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="invoke.html"><img src="../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../functions.html"><img src="../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="invoke_fobj.html"><img src="../../../../../../../../doc/html/images/next.png" alt="Next"></a>
</div>
<div class="section" lang="en">
<div class="titlepage"><div><div><h5 class="title">
<a name="fusion.functional.invocation.functions.invoke_proc"></a><a href="invoke_proc.html" title="
invoke_procedure">
invoke_procedure</a></h5></div></div></div>
<a name="fusion.functional.invocation.functions.invoke_proc.description"></a><h6>
<a name="id658278"></a>
<a href="invoke_proc.html#fusion.functional.invocation.functions.invoke_proc.description">Description</a>
</h6>
<p>
Calls a <a href="../../concepts/callable.html" title=" Callable Object">Callable
Object</a> with the arguments from a <a href="../../../sequence.html" title="Sequence">Sequence</a>.
The result of the call is ignored.
</p>
<p>
The first template parameter can be specialized explicitly to avoid copying
and/or to control the const qualification of a function object.
</p>
<p>
For pointers to class members corresponding object can be specified as
a reference, pointer, or smart pointer. In case of the latter, a freestanding
<tt class="literal">get_pointer</tt> function must be defined (Boost provides
this function for <tt class="literal">std::auto_ptr</tt> and <a href="http://www.boost.org/libs/smart_ptr/shared_ptr.htm" target="_top"><tt class="computeroutput"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">shared_ptr</span></tt></a>).
</p>
<p>
The target function must not be a pointer to a member object (dereferencing
such a pointer without returning anything does not make sense, so it
isn't implemented).
</p>
<a name="fusion.functional.invocation.functions.invoke_proc.synopsis"></a><h6>
<a name="id658388"></a>
<a href="invoke_proc.html#fusion.functional.invocation.functions.invoke_proc.synopsis">Synopsis</a>
</h6>
<pre class="programlisting">
<span class="keyword">template</span><span class="special"><</span>
<span class="keyword">typename</span> <span class="identifier">Function</span><span class="special">,</span>
<span class="keyword">class</span> <span class="identifier">Sequence</span>
<span class="special">></span>
<span class="keyword">typename</span> <a href="../metafunctions/invoke_proc.html" title="
invoke_procedure"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">invoke_procedure</span></tt></a><span class="special"><</span><span class="identifier">Function</span><span class="special">,</span> <span class="identifier">Sequence</span><span class="special">>::</span><span class="identifier">type</span>
<span class="identifier">invoke_procedure</span><span class="special">(</span><span class="identifier">Function</span> <span class="identifier">f</span><span class="special">,</span> <span class="identifier">Sequence</span> <span class="special">&</span> <span class="identifier">s</span><span class="special">);</span>
<span class="keyword">template</span><span class="special"><</span>
<span class="keyword">typename</span> <span class="identifier">Function</span><span class="special">,</span>
<span class="keyword">class</span> <span class="identifier">Sequence</span>
<span class="special">></span>
<span class="keyword">typename</span> <a href="../metafunctions/invoke_proc.html" title="
invoke_procedure"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">invoke_procedure</span></tt></a><span class="special"><</span><span class="identifier">Function</span><span class="special">,</span> <span class="identifier">Sequence</span> <span class="keyword">const</span><span class="special">>::</span><span class="identifier">type</span>
<span class="identifier">invoke_procedure</span><span class="special">(</span><span class="identifier">Function</span> <span class="identifier">f</span><span class="special">,</span> <span class="identifier">Sequence</span> <span class="keyword">const</span> <span class="special">&</span> <span class="identifier">s</span><span class="special">);</span>
</pre>
<a name="fusion.functional.invocation.functions.invoke_proc.parameters"></a><h6>
<a name="id658767"></a>
<a href="invoke_proc.html#fusion.functional.invocation.functions.invoke_proc.parameters">Parameters</a>
</h6>
<div class="informaltable"><table class="table">
<colgroup>
<col>
<col>
<col>
</colgroup>
<thead><tr>
<th>
<p>
Parameter
</p>
</th>
<th>
<p>
Requirement
</p>
</th>
<th>
<p>
Description
</p>
</th>
</tr></thead>
<tbody>
<tr>
<td>
<p>
<tt class="computeroutput"><span class="identifier">f</span></tt>
</p>
</td>
<td>
<p>
Model of <a href="../../concepts/callable.html" title=" Callable Object">Callable
Object</a>
</p>
</td>
<td>
<p>
The function to call.
</p>
</td>
</tr>
<tr>
<td>
<p>
<tt class="computeroutput"><span class="identifier">s</span></tt>
</p>
</td>
<td>
<p>
Model of <a href="../../../sequence/concepts/forward_sequence.html" title="Forward
Sequence">Forward
Sequence</a>
</p>
</td>
<td>
<p>
The arguments.
</p>
</td>
</tr>
</tbody>
</table></div>
<a name="fusion.functional.invocation.functions.invoke_proc.expression_semantics"></a><h6>
<a name="id658927"></a>
<a href="invoke_proc.html#fusion.functional.invocation.functions.invoke_proc.expression_semantics">Expression
Semantics</a>
</h6>
<pre class="programlisting">
<span class="identifier">invoke_procedure</span><span class="special">(</span><span class="identifier">f</span><span class="special">,</span><span class="identifier">s</span><span class="special">);</span>
</pre>
<p>
<span class="bold"><b>Return type</b></span>: <tt class="computeroutput"><span class="keyword">void</span></tt>
</p>
<p>
<span class="bold"><b>Semantics</b></span>: Invokes <tt class="computeroutput"><span class="identifier">f</span></tt>
with the elements in <tt class="computeroutput"><span class="identifier">s</span></tt>
as arguments.
</p>
<p>
/functional/invocation/invoke_procedure.hpp>
</p>
<a name="fusion.functional.invocation.functions.invoke_proc.example"></a><h6>
<a name="id659055"></a>
<a href="invoke_proc.html#fusion.functional.invocation.functions.invoke_proc.example">Example</a>
</h6>
<pre class="programlisting">
<a href="../../../container/vector.html" title="vector"><tt class="computeroutput"><span class="identifier">vector</span></tt></a><span class="special"><</span><span class="keyword">int</span><span class="special">,</span><span class="keyword">int</span><span class="special">></span> <span class="identifier">v</span><span class="special">(</span><span class="number">1</span><span class="special">,</span><span class="number">2</span><span class="special">);</span>
<span class="keyword">using</span> <span class="keyword">namespace</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">lambda</span><span class="special">;</span>
<span class="identifier">invoke_procedure</span><span class="special">(</span><span class="identifier">_1</span> <span class="special">+=</span> <span class="identifier">_2</span><span class="special">,</span> <span class="identifier">v</span><span class="special">);</span>
<span class="identifier">assert</span><span class="special">(</span><a href="../../../sequence/intrinsic/functions/front.html" title="front"><tt class="computeroutput"><span class="identifier">front</span></tt></a><span class="special">(</span><span class="identifier">v</span><span class="special">)</span> <span class="special">==</span> <span class="number">3</span><span class="special">);</span>
</pre>
<a name="fusion.functional.invocation.functions.invoke_proc.see_also"></a><h6>
<a name="id659295"></a>
<a href="invoke_proc.html#fusion.functional.invocation.functions.invoke_proc.see_also">See
also</a>
</h6>
<div class="itemizedlist"><ul type="disc">
<li><a href="invoke.html" title="invoke"><tt class="computeroutput"><span class="identifier">invoke</span></tt></a></li>
<li><a href="invoke_fobj.html" title="
invoke_function_object"><tt class="computeroutput"><span class="identifier">invoke_function_object</span></tt></a></li>
<li><a href="../metafunctions/invoke_proc.html" title="
invoke_procedure"><tt class="computeroutput"><span class="identifier">result_of</span><span class="special">::</span><span class="identifier">invoke_procedure</span></tt></a></li>
<li><a href="../../adapters/fused_procedure.html" title="fused_procedure"><tt class="computeroutput"><span class="identifier">fused_procedure</span></tt></a></li>
</ul></div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2001-2007 Joel de Guzman, Dan Marsden, Tobias
Schwinger<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="invoke.html"><img src="../../../../../../../../doc/html/images/prev.png" alt="Prev"></a><a accesskey="u" href="../functions.html"><img src="../../../../../../../../doc/html/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../index.html"><img src="../../../../../../../../doc/html/images/home.png" alt="Home"></a><a accesskey="n" href="invoke_fobj.html"><img src="../../../../../../../../doc/html/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
RossFamilyTree/ppl/b/1/d15f5fe0c5b127625ca75ac491b.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 - RAINSFORD, Margaret</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>RAINSFORD, Margaret<sup><small></small></sup></h3>
<div id="summaryarea">
<table class="infolist">
<tr>
<td class="ColumnAttribute">Birth Name</td>
<td class="ColumnValue">
RAINSFORD, Margaret
</td>
</tr>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnValue">I3099</td>
</tr>
<tr>
<td class="ColumnAttribute">Gender</td>
<td class="ColumnValue">female</td>
</tr>
</table>
</div>
<div class="subsection" id="families">
<h4>Families</h4>
<table class="infolist">
<tr class="BeginFamily">
<td class="ColumnType"> </td>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue"><a href="../../../fam/0/f/d15f5fb9896c797fa7886fbbf0.html" title="Family of GROVES, Henry and RAINSFORD, Margaret">Family of GROVES, Henry and RAINSFORD, Margaret<span class="grampsid"> [F1008]</span></a></td>
</tr>
<tr class="BeginFamily">
<td class="ColumnType">Unknown</td>
<td class="ColumnAttribute">Partner</td>
<td class="ColumnValue">
<a href="../../../ppl/3/1/d15f5fe0c4a27430484a60d8013.html">GROVES, Henry<span class="grampsid"> [I3098]</span></a>
</td>
</tr>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute"> </td>
<td class="ColumnValue">
<table class="infolist eventlist">
<thead>
<tr>
<th class="ColumnEvent">Event</th>
<th class="ColumnDate">Date</th>
<th class="ColumnPlace">Place</th>
<th class="ColumnDescription">Description</th>
<th class="ColumnNotes">Notes</th>
<th class="ColumnSources">Sources</th>
</tr>
</thead>
<tbody>
<tr>
<td class="ColumnEvent">
<a href="../../../evt/1/0/d15f60c13f9767134372a839601.html" title="Status (Primary)">
Status (Primary)
<span class="grampsid"> [E21577]</span>
</a>
</td>
<td class="ColumnDate"> </td>
<td class="ColumnPlace"> </td>
<td class="ColumnDescription">
MARRIED
</td>
<td class="ColumnNotes">
<div>
</div>
</td>
<td class="ColumnSources">
</td>
</tr>
</tbody>
</table>
</td>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute">Children</td>
<td class="ColumnValue">
<ol>
<li>
<a href="../../../ppl/a/f/d15f5fb987dc70c587892326fa.html">GROVES, Margaret Mary<span class="grampsid"> [I0203]</span></a>
</li>
</ol>
</td>
</tr>
<tr>
<td class="ColumnType"> </td>
<td class="ColumnAttribute">Attributes</td>
<td class="ColumnValue">
<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">ECF49BCC03FD834AB1A74D0B83F8C4CACD01</td>
<td class="ColumnNotes"><div></div></td>
<td class="ColumnSources"> </td>
</tr>
</tbody>
</table>
</td>
</tr>
</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">56D84FB440AA884189F12DF03BBF93404891</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>
<ol>
<li class="thisperson">
RAINSFORD, Margaret
<ol class="spouselist">
<li class="spouse">
<a href="../../../ppl/3/1/d15f5fe0c4a27430484a60d8013.html">GROVES, Henry<span class="grampsid"> [I3098]</span></a>
<ol>
<li>
<a href="../../../ppl/a/f/d15f5fb987dc70c587892326fa.html">GROVES, Margaret Mary<span class="grampsid"> [I0203]</span></a>
</li>
</ol>
</li>
</ol>
</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:14<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
src/LaDanse/AngularBundle/Resources/public/ladanse/modules/events/directives/createEvent/createEvent.html | bderidder/ldm-guild-website | <!--
~ @license http://opensource.org/licenses/gpl-license.php GNU Public License
~ @link https://github.com/bderidder/ldm-guild-website
-->
<page-header title="Create New Event" url="#/events"></page-header>
<event-editor
editor-model="ctrl.editorModel"
callback="ctrl.callback"
simplified="false">
</event-editor>
|
Documentation/html/structklmFilter.html | velastin/UAndes | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen 1.8.11"/>
<title>My Project: klmFilter Struct Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="search/search.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="search/searchdata.js"></script>
<script type="text/javascript" src="search/search.js"></script>
<script type="text/javascript">
$(document).ready(function() { init_search(); });
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td id="projectalign" style="padding-left: 0.5em;">
<div id="projectname">My Project
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.11 -->
<script type="text/javascript">
var searchBox = new SearchBox("searchBox", "search",false,'Search');
</script>
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</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>
<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="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="#pub-attribs">Public Attributes</a> |
<a href="structklmFilter-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">klmFilter Struct Reference</div> </div>
</div><!--header-->
<div class="contents">
<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:ac0bb918220e5d4a7f5009ccfe2bb7f30"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ac0bb918220e5d4a7f5009ccfe2bb7f30"></a>
 </td><td class="memItemRight" valign="bottom"><b>klmFilter</b> (const cv::KalmanFilter &k, const cv::Rect &bb)</td></tr>
<tr class="separator:ac0bb918220e5d4a7f5009ccfe2bb7f30"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-attribs"></a>
Public Attributes</h2></td></tr>
<tr class="memitem:aebb55ec94d73eb9e6b9e55210142d18a"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aebb55ec94d73eb9e6b9e55210142d18a"></a>
cv::Rect </td><td class="memItemRight" valign="bottom"><b>bbox</b></td></tr>
<tr class="separator:aebb55ec94d73eb9e6b9e55210142d18a"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae9aa8e0a2c64c061896811a79c40c3e8"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae9aa8e0a2c64c061896811a79c40c3e8"></a>
cv::Mat </td><td class="memItemRight" valign="bottom"><b>state</b> = cv::Mat::zeros(10, 1, CV_32F)</td></tr>
<tr class="separator:ae9aa8e0a2c64c061896811a79c40c3e8"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a08d603b4224ea0f36807373cd69010d4"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a08d603b4224ea0f36807373cd69010d4"></a>
cv::Mat </td><td class="memItemRight" valign="bottom"><b>meas</b> = cv::Mat::zeros(10, 1, CV_32F)</td></tr>
<tr class="separator:a08d603b4224ea0f36807373cd69010d4"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ab372c3789bca8646e769a063cc13cd03"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ab372c3789bca8646e769a063cc13cd03"></a>
cv::KalmanFilter </td><td class="memItemRight" valign="bottom"><b>kf</b></td></tr>
<tr class="separator:ab372c3789bca8646e769a063cc13cd03"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a0e14d33fe07713b4d24a43f595ca413f"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a0e14d33fe07713b4d24a43f595ca413f"></a>
bool </td><td class="memItemRight" valign="bottom"><b>found</b> = false</td></tr>
<tr class="separator:a0e14d33fe07713b4d24a43f595ca413f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aed92ac043bda9f8c2ab1311c6ba04a64"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aed92ac043bda9f8c2ab1311c6ba04a64"></a>
int </td><td class="memItemRight" valign="bottom"><b>notFoundCount</b> = 0</td></tr>
<tr class="separator:aed92ac043bda9f8c2ab1311c6ba04a64"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a39a17bcf4b65ac7f4fd3bd32b8f2b901"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a39a17bcf4b65ac7f4fd3bd32b8f2b901"></a>
int </td><td class="memItemRight" valign="bottom"><b>numFrame</b> = 0</td></tr>
<tr class="separator:a39a17bcf4b65ac7f4fd3bd32b8f2b901"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ae2a590a68405dc065802a2b657f56a02"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae2a590a68405dc065802a2b657f56a02"></a>
int </td><td class="memItemRight" valign="bottom"><b>numFrame2</b></td></tr>
<tr class="separator:ae2a590a68405dc065802a2b657f56a02"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a7f8e0d58eeab1e388750ad5d7f5bd7b6"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a7f8e0d58eeab1e388750ad5d7f5bd7b6"></a>
int </td><td class="memItemRight" valign="bottom"><b>lastMeasureX</b> =0</td></tr>
<tr class="separator:a7f8e0d58eeab1e388750ad5d7f5bd7b6"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a56da6c3a67cd60286f11dc003e45b974"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a56da6c3a67cd60286f11dc003e45b974"></a>
int </td><td class="memItemRight" valign="bottom"><b>lastMeasureY</b> = 0</td></tr>
<tr class="separator:a56da6c3a67cd60286f11dc003e45b974"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a95fb7b045189a2822b17cebdfea5d681"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a95fb7b045189a2822b17cebdfea5d681"></a>
int </td><td class="memItemRight" valign="bottom"><b>lastMeasureX2</b> = 0</td></tr>
<tr class="separator:a95fb7b045189a2822b17cebdfea5d681"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:abc02ad4246d2a1e1a920e1874bc45c77"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="abc02ad4246d2a1e1a920e1874bc45c77"></a>
int </td><td class="memItemRight" valign="bottom"><b>lastMeasureY2</b> = 0</td></tr>
<tr class="separator:abc02ad4246d2a1e1a920e1874bc45c77"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<hr/>The documentation for this struct was generated from the following file:<ul>
<li><a class="el" href="BgsubTrack_8hpp_source.html">BgsubTrack.hpp</a></li>
</ul>
</div><!-- contents -->
<!-- start footer part -->
<hr class="footer"/><address class="footer"><small>
Generated 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>
|
aquamacs/doc/Aquamacs Help/woman/Log.html | davidswelt/aquamacs-emacs | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta name="generator" content=
"HTML Tidy for Mac OS X (vers 31 October 2006 - Apple Inc. build 16.1), see www.w3.org" />
<title>Log - WoMan: Browse Unix Manual Pages "W.O. (without)
Man"</title>
<meta http-equiv="Content-Type" content="text/html" />
<meta name="description" content=
"WoMan: Browse Unix Manual Pages "W.O. (without) Man"" />
<meta name="generator" content="makeinfo 4.13" />
<link title="Top" rel="start" href="index.html#Top" />
<link rel="prev" href="Customization.html#Customization" title=
"Customization" />
<link rel="next" href="Technical.html#Technical" title=
"Technical" />
<link href="http://www.gnu.org/software/texinfo/" rel=
"generator-home" title="Texinfo Homepage" /><!--
This file documents WoMan: A program to browse Unix manual pages `W.O.
(without) man'.
Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
2009, 2010 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this
document under the terms of the GNU Free Documentation License,
Version 1.3 or any later version published by the Free Software
Foundation; with no Invariant Sections, with the Front-Cover texts
being ``A GNU Manual,'' and with the Back-Cover Texts as in (a)
below. A copy of the license is included in the section entitled
``GNU Free Documentation License.''
(a) The FSF's Back-Cover Text is: ``You have the freedom to copy
and modify this GNU manual. Buying copies from the FSF supports
it in developing GNU and promoting software freedom.''
-->
<meta http-equiv="Content-Style-Type" content="text/css" />
<style type="text/css">
/*<![CDATA[*/
<!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
-->
/*]]>*/
</style>
</head>
<body>
<div class="node">
<a name="Log" id="Log"></a>
<p>Next: <a rel="next" accesskey="n" href=
"Technical.html#Technical">Technical</a>,
Previous: <a rel="previous" accesskey="p" href=
"Customization.html#Customization">Customization</a>,
Up: <a rel="up" accesskey="u" href=
"index.html#Top">Top</a></p>
<hr />
</div><!-- node-name, next, previous, up -->
<h2 class="chapter">6 The *WoMan-Log* Buffer</h2>
<p><a name="index-log-buffer-120" id=
"index-log-buffer-120"></a><a name="index-buffer_002c-log-121"
id="index-buffer_002c-log-121"></a> This is modeled on the Emacs
byte-compiler. It logs all files formatted by WoMan and the time
taken. If WoMan finds anything that it cannot handle then it
writes a warning to this buffer. If the variable
<code>woman-show-log</code> is non-<code>nil</code> (by default
it is <code>nil</code>) then WoMan automatically displays this
buffer. See <a href=
"Interface-Options.html#Interface-Options">Interface Options</a>.
Many WoMan warnings can be completely ignored, because they are
reporting the fact that WoMan has ignored requests that it is
correct for WoMan to ignore. In some future version this level of
paranoia may be reduced, but not until WoMan is deemed more
reliable. At present, all warnings should be treated with some
suspicion. Uninterpreted escape sequences are also logged (in
some cases).</p>
<p>By resetting the variable <code>woman-ignore</code> to
<code>nil</code> (by default it is <code>t</code>), uninterpreted
<code>roff</code> requests can optionally be left in the
formatted buffer to indicate precisely where they occurred. See
<a href="Interface-Options.html#Interface-Options">Interface
Options</a>.
<!-- =================================================================== --></p>
</body>
</html>
|
slider/install/assets/css/install.css | zuhdijung/soberkicks |
/**
* Nwdthemes Standalone Slider Revolution
*
* @package StandaloneRevslider
* @author Nwdthemes <mail@nwdthemes.com>
* @link http://nwdthemes.com/
* @copyright Copyright (c) 2015. Nwdthemes
* @license http://themeforest.net/licenses/terms/regular
*/
html, body { color: #444; background: #ddd; font-size: 13px; font-family: "Open Sans",sans-serif; }
body { padding: 20px; }
@font-face {font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.1.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
.header, .title, .nav, .block { padding: 15px; background: #fff; }
.header { margin-bottom: 20px; height: 34px; }
.header .version { float: right; line-height: 34px; height: 34px; margin-left: 20px }
.title h1 { font-size: 19px; font-weight: 300; line-height: 1.4em; color: #464646; margin:0; }
.nav { border-top: 1px solid #e5e5e5; }
.nav ul { list-style: none; margin: 0; padding: 0; }
.nav ul li { float: left; margin-right: 20px; }
.nav ul:after { visibility: hidden; display: block; font-size: 0; content: " "; clear: both; height: 0; }
.nav ul li a, .nav ul li span { height: 26px; line-height: 26px; color: #ffffff; text-decoration: none; padding: 0 10px; display: inline-block; font-size: 13px;}
.nav ul li .system { background: #f1c40f; }
.nav ul li .database { background: #3498db; }
.nav ul li .admin { background: #d35400; }
.nav ul li .inactive { opacity: 0.5; }
.nav ul li .done { opacity: 0.8; }
.nav ul li a:before, .nav ul li span:before {
display: inline-block;
font-family: "FontAwesome";
font-style: normal;
font-variant: normal;
font-weight: normal;
margin-right: 5px;
}
.nav ul li .system:before { content: '\f085'; }
.nav ul li .database:before { content: '\f1c0'; }
.nav ul li .admin:before { content: '\f007'; }
.block { margin-top: 20px; position: relative; padding-left: 80px; overflow: hidden; }
.block .icon { height: 100%; left: 0; padding: 20px 10px; position: absolute; top: 0; }
.block .icon.system { background: #f1c40f; }
.block .icon.database { background: #3498db; }
.block .icon.admin { background: #d35400; }
.block .icon.finish { background: #27ae60; }
.block .icon i { padding: 20px 10px; width: 25px; }
.block .icon i:before {
display: inline-block;
font-family: "FontAwesome";
font-style: normal;
font-variant: normal;
font-weight: normal;
font-size: 25px;
line-height: 1em;
color: #ffffff;
}
.block .icon.system i:before { content: '\f085'; }
.block .icon.database i:before { content: '\f1c0'; }
.block .icon.admin i:before { content: '\f007'; }
.block .icon.finish i:before { content: '\f11e'; }
.block .content { }
.right { float: right; }
ul.check { list-style: none; }
ul.check li:before {
display: inline-block;
font-family: "FontAwesome";
font-style: normal;
font-variant: normal;
font-weight: normal;
margin-right: 5px;
}
ul.check li.ok:before { color: #27ae60; content: '\f00c'; }
ul.check li.fail:before { color: #e74c3c; content: '\f00d'; }
.error { color: #e74c3c; }
h2 { font-size: 14px; font-weight: 600; line-height: 18px; }
input[type=text], input[type=password] {
line-height: 20px;
margin-top: 0;
vertical-align: middle;
background: none repeat scroll 0 0 #f1f1f1;
color: #444;
width: 25em;
border: 1px solid #ddd;
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07) inset;
outline: 0 none;
transition: border-color 0.05s ease-in-out 0s;
padding: 3px 5px;
}
a.button { height: 26px; line-height: 26px; color: #ffffff; text-decoration: none; padding: 0 10px; display: inline-block; font-size: 13px; border: 0; background-image: none; }
a.button:before {
display: inline-block;
font-family: "FontAwesome";
font-style: normal;
font-variant: normal;
font-weight: normal;
margin-right: 5px;
}
a.button.yes { background: #27ae60; }
a.button.yes:before { content: '\f00c'; }
dl dt {
clear: left;
float: left;
line-height: 22px;
padding: 2px 10px 2px 0;
width: 150px;
} |
RossFamilyTree/evt/2/1/d15f60140804fc034395f809512.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>Birth</h3>
<table class="infolist eventlist">
<tbody>
<tr>
<td class="ColumnAttribute">Gramps ID</td>
<td class="ColumnGRAMPSID">E8259</td>
</tr>
<tr>
<td class="ColumnAttribute">Date</td>
<td class="ColumnColumnDate">
1893
</td>
</tr>
<tr>
<td class="ColumnAttribute">Place</td>
<td class="ColumnColumnPlace">
<a href="../../../plc/e/3/d15f6013fca7b4fcc0d7d8d373e.html" title="">
</a>
</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/e/8/d15f60140764886950b5ddcba8e.html">
WILKINSON, Joseph
<span class="grampsid"> [I7780]</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:35<br />Created for <a href="../../../ppl/9/e/d15f5fb48902c4fc1b421d249e9.html">GAMMON, Francis</a>
</p>
<p id="copyright">
</p>
</div>
</body>
</html>
|
api/class-App.TogglTask.html | thaissa/jiber | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Class App\TogglTask</title>
<link rel="stylesheet" href="resources/style.css?e99947befd7bf673c6b43ff75e9e0f170c88a60e">
</head>
<body>
<div id="left">
<div id="menu">
<a href="index.html" title="Overview"><span>Overview</span></a>
<div id="groups">
<h3>Namespaces</h3>
<ul>
<li class="active">
<a href="namespace-App.html">
App<span></span>
</a>
<ul>
<li>
<a href="namespace-App.Console.html">
Console<span></span>
</a>
<ul>
<li>
<a href="namespace-App.Console.Commands.html">
Commands </a>
</li>
</ul></li>
<li>
<a href="namespace-App.Events.html">
Events </a>
</li>
<li>
<a href="namespace-App.Exceptions.html">
Exceptions </a>
</li>
<li>
<a href="namespace-App.Http.html">
Http<span></span>
</a>
<ul>
<li>
<a href="namespace-App.Http.Controllers.html">
Controllers<span></span>
</a>
<ul>
<li>
<a href="namespace-App.Http.Controllers.Auth.html">
Auth </a>
</li>
</ul></li>
<li>
<a href="namespace-App.Http.Middleware.html">
Middleware </a>
</li>
<li>
<a href="namespace-App.Http.Requests.html">
Requests </a>
</li>
</ul></li>
<li>
<a href="namespace-App.Jobs.html">
Jobs </a>
</li>
<li>
<a href="namespace-App.Providers.html">
Providers </a>
</li>
</ul></li>
</ul>
</div>
<hr>
<div id="elements">
<h3>Classes</h3>
<ul>
<li><a href="class-App.JiraSent.html">JiraSent</a></li>
<li><a href="class-App.RedmineSent.html">RedmineSent</a></li>
<li><a href="class-App.Setting.html">Setting</a></li>
<li><a href="class-App.Toggl.html">Toggl</a></li>
<li><a href="class-App.TogglClient.html">TogglClient</a></li>
<li><a href="class-App.TogglProject.html">TogglProject</a></li>
<li><a href="class-App.TogglReport.html">TogglReport</a></li>
<li class="active"><a href="class-App.TogglTask.html">TogglTask</a></li>
<li><a href="class-App.TogglTimeEntry.html">TogglTimeEntry</a></li>
<li><a href="class-App.TogglWorkspace.html">TogglWorkspace</a></li>
<li><a href="class-App.User.html">User</a></li>
</ul>
</div>
</div>
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<form id="search">
<input type="hidden" name="cx" value="">
<input type="hidden" name="ie" value="UTF-8">
<input type="text" name="q" class="text" placeholder="Search">
</form>
<div id="navigation">
<ul>
<li>
<a href="index.html" title="Overview"><span>Overview</span></a>
</li>
<li>
<a href="namespace-App.html" title="Summary of App"><span>Namespace</span></a>
</li>
<li class="active">
<span>Class</span> </li>
</ul>
<ul>
</ul>
<ul>
</ul>
</div>
<div id="content" class="class">
<h1>Class TogglTask</h1>
<div class="description">
<p>This model is extended by all Toggl's models</p>
</div>
<dl class="tree">
<dd style="padding-left:0px">
Illuminate\Database\Eloquent\Model
</dd>
<dd style="padding-left:30px">
<img src="resources/inherit.png" alt="Extended by">
<a href="class-App.Toggl.html"><span>App\Toggl</span></a>
</dd>
<dd style="padding-left:60px">
<img src="resources/inherit.png" alt="Extended by">
<b><span>App\TogglTask</span></b>
</dd>
</dl>
<div class="info">
<b>Namespace:</b> <a href="namespace-App.html">App</a><br>
<b>Located at</b> <a href="source-class-App.TogglTask.html#7-76" title="Go to source code">TogglTask.php</a>
<br>
</div>
<table class="summary methods" id="methods">
<caption>Methods summary</caption>
<tr data-order="workspace" id="_workspace">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_workspace">#</a>
<code><a href="source-class-App.TogglTask.html#9-15" title="Go to source code">workspace</a>( )</code>
<div class="description short">
<p>TogglTask belongs to TogglWorkspace</p>
</div>
<div class="description detailed hidden">
<p>TogglTask belongs to TogglWorkspace</p>
</div>
</div></td>
</tr>
<tr data-order="project" id="_project">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_project">#</a>
<code><a href="source-class-App.TogglTask.html#17-23" title="Go to source code">project</a>( )</code>
<div class="description short">
<p>TogglTask belongs to TogglProject</p>
</div>
<div class="description detailed hidden">
<p>TogglTask belongs to TogglProject</p>
</div>
</div></td>
</tr>
<tr data-order="getEstimatedAttribute" id="_getEstimatedAttribute">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_getEstimatedAttribute">#</a>
<code><a href="source-class-App.TogglTask.html#25-41" title="Go to source code">getEstimatedAttribute</a>( <span> <var>$seconds</var></span> )</code>
<div class="description short">
<p>Format Estimated attribute - H:M:S</p>
</div>
<div class="description detailed hidden">
<p>Format Estimated attribute - H:M:S</p>
</div>
</div></td>
</tr>
<tr data-order="getTrackedAttribute" id="_getTrackedAttribute">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_getTrackedAttribute">#</a>
<code><a href="source-class-App.TogglTask.html#43-59" title="Go to source code">getTrackedAttribute</a>( <span> <var>$seconds</var></span> )</code>
<div class="description short">
<p>Format Tracked attribute - H:M:S</p>
</div>
<div class="description detailed hidden">
<p>Format Tracked attribute - H:M:S</p>
</div>
</div></td>
</tr>
<tr data-order="getExceededAttribute" id="_getExceededAttribute">
<td class="attributes"><code>
public
</code>
</td>
<td class="name"><div>
<a class="anchor" href="#_getExceededAttribute">#</a>
<code><a href="source-class-App.TogglTask.html#61-75" title="Go to source code">getExceededAttribute</a>( )</code>
<div class="description short">
<p>Checks if it has been spent more time than estimated
- No estimated time, returns 'active' (gray row)
- No tracked time, returns 'warning' (pink row)
- More tracked time than Estimated, returns 'danger' (red row)
- More Estimated time than Tracked, returns 'success' (green row)</p>
</div>
<div class="description detailed hidden">
<p>Checks if it has been spent more time than estimated
- No estimated time, returns 'active' (gray row)
- No tracked time, returns 'warning' (pink row)
- More tracked time than Estimated, returns 'danger' (red row)
- More Estimated time than Tracked, returns 'success' (green row)</p>
</div>
</div></td>
</tr>
</table>
<table class="summary inherited">
<caption>Methods inherited from <a href="class-App.Toggl.html#methods">App\Toggl</a></caption>
<tr>
<td><code>
<a href="class-App.Toggl.html#_getAllByUserID">getAllByUserID()</a>,
<a href="class-App.Toggl.html#_getByName">getByName()</a>,
<a href="class-App.Toggl.html#_getByTogglID">getByTogglID()</a>
</code></td>
</tr>
</table>
</div>
<div id="footer">
API documentation generated by <a href="http://apigen.org">ApiGen</a>
</div>
</div>
</div>
<script src="resources/combined.js"></script>
<script src="elementlist.js"></script>
</body>
</html>
|
docs/coverage_reports/test_a_deleted_file_syncs_up/index.html | subsyncit/subsyncit |
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Coverage report</title>
<link rel="stylesheet" href="../style.css" type="text/css">
<script type="text/javascript" src="../jquery.min.js"></script>
<script type="text/javascript" src="../jquery.ba-throttle-debounce.min.js"></script>
<script type="text/javascript" src="../jquery.tablesorter.min.js"></script>
<script type="text/javascript" src="../jquery.hotkeys.js"></script>
<script type="text/javascript" src="../coverage_html.js"></script>
<script type="text/javascript">
jQuery(document).ready(coverage.index_ready);
</script>
</head>
<body class="indexfile">
<div id="header">
<div class="content">
<h1>Coverage report:
<span class="pc_cov">54%</span>
</h1>
<img id="keyboard_icon" src="../keybd_closed.png" alt="Show keyboard shortcuts" />
<form id="filter_container">
<input id="filter" type="text" value="" placeholder="filter..." />
</form>
</div>
</div>
<div class="help_panel">
<img id="panel_icon" src="../keybd_open.png" alt="Hide keyboard shortcuts" />
<p class="legend">Hot-keys on this page</p>
<div>
<p class="keyhelp">
<span class="key">n</span>
<span class="key">s</span>
<span class="key">m</span>
<span class="key">x</span>
<span class="key">b</span>
<span class="key">p</span>
<span class="key">c</span> change column sorting
</p>
</div>
</div>
<div id="index">
<table class="index">
<thead>
<tr class="tablehead" title="Click to sort">
<th class="name left headerSortDown shortkey_n">Module</th>
<th class="shortkey_s">statements</th>
<th class="shortkey_m">missing</th>
<th class="shortkey_x">excluded</th>
<th class="shortkey_b">branches</th>
<th class="shortkey_p">partial</th>
<th class="right shortkey_c">coverage</th>
</tr>
</thead>
<tfoot>
<tr class="total">
<td class="name left">Total</td>
<td>992</td>
<td>393</td>
<td>0</td>
<td>352</td>
<td>70</td>
<td class="right" data-ratio="731 1344">54%</td>
</tr>
</tfoot>
<tbody>
<tr class="file">
<td class="name left"><a href="subsyncit_py.html">subsyncit.py</a></td>
<td>992</td>
<td>393</td>
<td>0</td>
<td>352</td>
<td>70</td>
<td class="right" data-ratio="731 1344">54%</td>
</tr>
</tbody>
</table>
<p id="no_rows">
No items found using the specified filter.
</p>
</div>
<div id="footer">
<div class="content">
<p>
<a class="nav" href="https://coverage.readthedocs.io">coverage.py v4.4.1</a>,
</p>
</div>
</div>
</body>
</html>
|
ejercicios/tema4/buscaMinasConsolaGui/index.html | susomejias/susomejias.github.io | <!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>Buscaminas-JesúsMejiasLeiva</title>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script type="module" src="js/main.js" charset="UTF-8"></script>
<script type="module" src="js/gui.js" charset="UTF-8"></script>
<link
href="https://fonts.googleapis.com/css?family=Lato"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/estilos.min.css" />
<!--
Favicon
-->
<link
rel="apple-touch-icon"
sizes="180x180"
href="favicon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="favicon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="favicon/favicon-16x16.png"
/>
<link rel="manifest" href="favicon/site.webmanifest" />
<link
rel="mask-icon"
href="favicon/safari-pinned-tab.svg"
color="#5bbad5"
/>
<meta name="msapplication-TileColor" content="#da532c" />
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<noscript>
Por favor, comprueba que tu navegador es compatible con javascript, o bien
comprueba si lo tienes activado
</noscript>
<main>
<audio id="audio" autoplay loop>
<source
src="audio/John_Bartmann_-_08_-_Gameshow_Brazz.mp3"
type="audio/mpeg"
/>
Your browser does not support the audio element.
</audio>
<h1>Buscaminas js Jesús Mejías Leiva</h1>
<div id="containerActions">
<img
src="images/volumenOn.svg"
id="silenciarAudio"
alt="activar/desactivar audio"
/>
<img
src="images/answer.svg"
id="instrucciones"
alt="leer instrucciones"
/>
</div>
<div>
<div id="container">
<select name="nivel" id="elegirNivel">
<option value="Elige la dificultad">Elige la dificultad</option>
<option value="facil">Facil</option>
<option value="intermedio">Intermedio</option>
<option value="experto">Experto</option>
</select>
<div id="timer"></div>
</div>
<div id="containerTablero"></div>
</div>
<div id="tools"><span id="span"></span></div>
</main>
</body>
</html>
|
src/core/up/src/libcore/num/dec2flt/algorithm.rs.html | servo/doc.servo.org | <!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="Source to the Rust file `../src/libcore/num/dec2flt/algorithm.rs`.">
<meta name="keywords" content="rust, rustlang, rust-lang">
<title>algorithm.rs.html -- source</title>
<link rel="stylesheet" type="text/css" href="../../../../../../../rustdoc.css">
<link rel="stylesheet" type="text/css" href="../../../../../../../main.css">
<link rel="shortcut icon" href="https://doc.rust-lang.org/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='../../../../../../../core/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a>
</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 source"><pre class="line-numbers"><span id="1"> 1</span>
<span id="2"> 2</span>
<span id="3"> 3</span>
<span id="4"> 4</span>
<span id="5"> 5</span>
<span id="6"> 6</span>
<span id="7"> 7</span>
<span id="8"> 8</span>
<span id="9"> 9</span>
<span id="10"> 10</span>
<span id="11"> 11</span>
<span id="12"> 12</span>
<span id="13"> 13</span>
<span id="14"> 14</span>
<span id="15"> 15</span>
<span id="16"> 16</span>
<span id="17"> 17</span>
<span id="18"> 18</span>
<span id="19"> 19</span>
<span id="20"> 20</span>
<span id="21"> 21</span>
<span id="22"> 22</span>
<span id="23"> 23</span>
<span id="24"> 24</span>
<span id="25"> 25</span>
<span id="26"> 26</span>
<span id="27"> 27</span>
<span id="28"> 28</span>
<span id="29"> 29</span>
<span id="30"> 30</span>
<span id="31"> 31</span>
<span id="32"> 32</span>
<span id="33"> 33</span>
<span id="34"> 34</span>
<span id="35"> 35</span>
<span id="36"> 36</span>
<span id="37"> 37</span>
<span id="38"> 38</span>
<span id="39"> 39</span>
<span id="40"> 40</span>
<span id="41"> 41</span>
<span id="42"> 42</span>
<span id="43"> 43</span>
<span id="44"> 44</span>
<span id="45"> 45</span>
<span id="46"> 46</span>
<span id="47"> 47</span>
<span id="48"> 48</span>
<span id="49"> 49</span>
<span id="50"> 50</span>
<span id="51"> 51</span>
<span id="52"> 52</span>
<span id="53"> 53</span>
<span id="54"> 54</span>
<span id="55"> 55</span>
<span id="56"> 56</span>
<span id="57"> 57</span>
<span id="58"> 58</span>
<span id="59"> 59</span>
<span id="60"> 60</span>
<span id="61"> 61</span>
<span id="62"> 62</span>
<span id="63"> 63</span>
<span id="64"> 64</span>
<span id="65"> 65</span>
<span id="66"> 66</span>
<span id="67"> 67</span>
<span id="68"> 68</span>
<span id="69"> 69</span>
<span id="70"> 70</span>
<span id="71"> 71</span>
<span id="72"> 72</span>
<span id="73"> 73</span>
<span id="74"> 74</span>
<span id="75"> 75</span>
<span id="76"> 76</span>
<span id="77"> 77</span>
<span id="78"> 78</span>
<span id="79"> 79</span>
<span id="80"> 80</span>
<span id="81"> 81</span>
<span id="82"> 82</span>
<span id="83"> 83</span>
<span id="84"> 84</span>
<span id="85"> 85</span>
<span id="86"> 86</span>
<span id="87"> 87</span>
<span id="88"> 88</span>
<span id="89"> 89</span>
<span id="90"> 90</span>
<span id="91"> 91</span>
<span id="92"> 92</span>
<span id="93"> 93</span>
<span id="94"> 94</span>
<span id="95"> 95</span>
<span id="96"> 96</span>
<span id="97"> 97</span>
<span id="98"> 98</span>
<span id="99"> 99</span>
<span id="100">100</span>
<span id="101">101</span>
<span id="102">102</span>
<span id="103">103</span>
<span id="104">104</span>
<span id="105">105</span>
<span id="106">106</span>
<span id="107">107</span>
<span id="108">108</span>
<span id="109">109</span>
<span id="110">110</span>
<span id="111">111</span>
<span id="112">112</span>
<span id="113">113</span>
<span id="114">114</span>
<span id="115">115</span>
<span id="116">116</span>
<span id="117">117</span>
<span id="118">118</span>
<span id="119">119</span>
<span id="120">120</span>
<span id="121">121</span>
<span id="122">122</span>
<span id="123">123</span>
<span id="124">124</span>
<span id="125">125</span>
<span id="126">126</span>
<span id="127">127</span>
<span id="128">128</span>
<span id="129">129</span>
<span id="130">130</span>
<span id="131">131</span>
<span id="132">132</span>
<span id="133">133</span>
<span id="134">134</span>
<span id="135">135</span>
<span id="136">136</span>
<span id="137">137</span>
<span id="138">138</span>
<span id="139">139</span>
<span id="140">140</span>
<span id="141">141</span>
<span id="142">142</span>
<span id="143">143</span>
<span id="144">144</span>
<span id="145">145</span>
<span id="146">146</span>
<span id="147">147</span>
<span id="148">148</span>
<span id="149">149</span>
<span id="150">150</span>
<span id="151">151</span>
<span id="152">152</span>
<span id="153">153</span>
<span id="154">154</span>
<span id="155">155</span>
<span id="156">156</span>
<span id="157">157</span>
<span id="158">158</span>
<span id="159">159</span>
<span id="160">160</span>
<span id="161">161</span>
<span id="162">162</span>
<span id="163">163</span>
<span id="164">164</span>
<span id="165">165</span>
<span id="166">166</span>
<span id="167">167</span>
<span id="168">168</span>
<span id="169">169</span>
<span id="170">170</span>
<span id="171">171</span>
<span id="172">172</span>
<span id="173">173</span>
<span id="174">174</span>
<span id="175">175</span>
<span id="176">176</span>
<span id="177">177</span>
<span id="178">178</span>
<span id="179">179</span>
<span id="180">180</span>
<span id="181">181</span>
<span id="182">182</span>
<span id="183">183</span>
<span id="184">184</span>
<span id="185">185</span>
<span id="186">186</span>
<span id="187">187</span>
<span id="188">188</span>
<span id="189">189</span>
<span id="190">190</span>
<span id="191">191</span>
<span id="192">192</span>
<span id="193">193</span>
<span id="194">194</span>
<span id="195">195</span>
<span id="196">196</span>
<span id="197">197</span>
<span id="198">198</span>
<span id="199">199</span>
<span id="200">200</span>
<span id="201">201</span>
<span id="202">202</span>
<span id="203">203</span>
<span id="204">204</span>
<span id="205">205</span>
<span id="206">206</span>
<span id="207">207</span>
<span id="208">208</span>
<span id="209">209</span>
<span id="210">210</span>
<span id="211">211</span>
<span id="212">212</span>
<span id="213">213</span>
<span id="214">214</span>
<span id="215">215</span>
<span id="216">216</span>
<span id="217">217</span>
<span id="218">218</span>
<span id="219">219</span>
<span id="220">220</span>
<span id="221">221</span>
<span id="222">222</span>
<span id="223">223</span>
<span id="224">224</span>
<span id="225">225</span>
<span id="226">226</span>
<span id="227">227</span>
<span id="228">228</span>
<span id="229">229</span>
<span id="230">230</span>
<span id="231">231</span>
<span id="232">232</span>
<span id="233">233</span>
<span id="234">234</span>
<span id="235">235</span>
<span id="236">236</span>
<span id="237">237</span>
<span id="238">238</span>
<span id="239">239</span>
<span id="240">240</span>
<span id="241">241</span>
<span id="242">242</span>
<span id="243">243</span>
<span id="244">244</span>
<span id="245">245</span>
<span id="246">246</span>
<span id="247">247</span>
<span id="248">248</span>
<span id="249">249</span>
<span id="250">250</span>
<span id="251">251</span>
<span id="252">252</span>
<span id="253">253</span>
<span id="254">254</span>
<span id="255">255</span>
<span id="256">256</span>
<span id="257">257</span>
<span id="258">258</span>
<span id="259">259</span>
<span id="260">260</span>
<span id="261">261</span>
<span id="262">262</span>
<span id="263">263</span>
<span id="264">264</span>
<span id="265">265</span>
<span id="266">266</span>
<span id="267">267</span>
<span id="268">268</span>
<span id="269">269</span>
<span id="270">270</span>
<span id="271">271</span>
<span id="272">272</span>
<span id="273">273</span>
<span id="274">274</span>
<span id="275">275</span>
<span id="276">276</span>
<span id="277">277</span>
<span id="278">278</span>
<span id="279">279</span>
<span id="280">280</span>
<span id="281">281</span>
<span id="282">282</span>
<span id="283">283</span>
<span id="284">284</span>
<span id="285">285</span>
<span id="286">286</span>
<span id="287">287</span>
<span id="288">288</span>
<span id="289">289</span>
<span id="290">290</span>
<span id="291">291</span>
<span id="292">292</span>
<span id="293">293</span>
<span id="294">294</span>
<span id="295">295</span>
<span id="296">296</span>
<span id="297">297</span>
<span id="298">298</span>
<span id="299">299</span>
<span id="300">300</span>
<span id="301">301</span>
<span id="302">302</span>
<span id="303">303</span>
<span id="304">304</span>
<span id="305">305</span>
<span id="306">306</span>
<span id="307">307</span>
<span id="308">308</span>
<span id="309">309</span>
<span id="310">310</span>
<span id="311">311</span>
<span id="312">312</span>
<span id="313">313</span>
<span id="314">314</span>
<span id="315">315</span>
<span id="316">316</span>
<span id="317">317</span>
<span id="318">318</span>
<span id="319">319</span>
<span id="320">320</span>
<span id="321">321</span>
<span id="322">322</span>
<span id="323">323</span>
<span id="324">324</span>
<span id="325">325</span>
<span id="326">326</span>
<span id="327">327</span>
<span id="328">328</span>
<span id="329">329</span>
<span id="330">330</span>
<span id="331">331</span>
<span id="332">332</span>
<span id="333">333</span>
<span id="334">334</span>
<span id="335">335</span>
<span id="336">336</span>
<span id="337">337</span>
<span id="338">338</span>
<span id="339">339</span>
<span id="340">340</span>
<span id="341">341</span>
<span id="342">342</span>
<span id="343">343</span>
<span id="344">344</span>
<span id="345">345</span>
<span id="346">346</span>
<span id="347">347</span>
<span id="348">348</span>
<span id="349">349</span>
<span id="350">350</span>
<span id="351">351</span>
<span id="352">352</span>
<span id="353">353</span>
<span id="354">354</span>
<span id="355">355</span>
<span id="356">356</span>
<span id="357">357</span>
<span id="358">358</span>
<span id="359">359</span>
<span id="360">360</span>
<span id="361">361</span>
<span id="362">362</span>
<span id="363">363</span>
<span id="364">364</span>
<span id="365">365</span>
<span id="366">366</span>
<span id="367">367</span>
<span id="368">368</span>
<span id="369">369</span>
<span id="370">370</span>
<span id="371">371</span>
<span id="372">372</span>
<span id="373">373</span>
<span id="374">374</span>
<span id="375">375</span>
<span id="376">376</span>
<span id="377">377</span>
<span id="378">378</span>
<span id="379">379</span>
<span id="380">380</span>
<span id="381">381</span>
<span id="382">382</span>
<span id="383">383</span>
<span id="384">384</span>
<span id="385">385</span>
<span id="386">386</span>
<span id="387">387</span>
<span id="388">388</span>
<span id="389">389</span>
<span id="390">390</span>
<span id="391">391</span>
<span id="392">392</span>
<span id="393">393</span>
<span id="394">394</span>
<span id="395">395</span>
<span id="396">396</span>
<span id="397">397</span>
<span id="398">398</span>
<span id="399">399</span>
<span id="400">400</span>
<span id="401">401</span>
<span id="402">402</span>
<span id="403">403</span>
<span id="404">404</span>
<span id="405">405</span>
<span id="406">406</span>
<span id="407">407</span>
<span id="408">408</span>
<span id="409">409</span>
<span id="410">410</span>
<span id="411">411</span>
<span id="412">412</span>
<span id="413">413</span>
<span id="414">414</span>
<span id="415">415</span>
<span id="416">416</span>
<span id="417">417</span>
<span id="418">418</span>
<span id="419">419</span>
<span id="420">420</span>
<span id="421">421</span>
<span id="422">422</span>
<span id="423">423</span>
<span id="424">424</span>
<span id="425">425</span>
<span id="426">426</span>
</pre><pre class='rust '>
<span class='comment'>// Copyright 2015 The Rust Project Developers. See the COPYRIGHT</span>
<span class='comment'>// file at the top-level directory of this distribution and at</span>
<span class='comment'>// http://rust-lang.org/COPYRIGHT.</span>
<span class='comment'>//</span>
<span class='comment'>// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or</span>
<span class='comment'>// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license</span>
<span class='comment'>// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your</span>
<span class='comment'>// option. This file may not be copied, modified, or distributed</span>
<span class='comment'>// except according to those terms.</span>
<span class='doccomment'>//! The various algorithms from the paper.</span>
<span class='kw'>use</span> <span class='ident'>prelude</span>::<span class='ident'>v1</span>::<span class='op'>*</span>;
<span class='kw'>use</span> <span class='ident'>cmp</span>::<span class='ident'>min</span>;
<span class='kw'>use</span> <span class='ident'>cmp</span>::<span class='ident'>Ordering</span>::{<span class='ident'>Less</span>, <span class='ident'>Equal</span>, <span class='ident'>Greater</span>};
<span class='kw'>use</span> <span class='ident'>num</span>::<span class='ident'>diy_float</span>::<span class='ident'>Fp</span>;
<span class='kw'>use</span> <span class='ident'>num</span>::<span class='ident'>dec2flt</span>::<span class='ident'>table</span>;
<span class='kw'>use</span> <span class='ident'>num</span>::<span class='ident'>dec2flt</span>::<span class='ident'>rawfp</span>::{<span class='self'>self</span>, <span class='ident'>Unpacked</span>, <span class='ident'>RawFloat</span>, <span class='ident'>fp_to_float</span>, <span class='ident'>next_float</span>, <span class='ident'>prev_float</span>};
<span class='kw'>use</span> <span class='ident'>num</span>::<span class='ident'>dec2flt</span>::<span class='ident'>num</span>::{<span class='self'>self</span>, <span class='ident'>Big</span>};
<span class='doccomment'>/// Number of significand bits in Fp</span>
<span class='kw'>const</span> <span class='ident'>P</span>: <span class='ident'>u32</span> <span class='op'>=</span> <span class='number'>64</span>;
<span class='comment'>// We simply store the best approximation for *all* exponents, so the variable "h" and the</span>
<span class='comment'>// associated conditions can be omitted. This trades performance for a couple kilobytes of space.</span>
<span class='kw'>fn</span> <span class='ident'>power_of_ten</span>(<span class='ident'>e</span>: <span class='ident'>i16</span>) <span class='op'>-></span> <span class='ident'>Fp</span> {
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='ident'>e</span> <span class='op'>>=</span> <span class='ident'>table</span>::<span class='ident'>MIN_E</span>);
<span class='kw'>let</span> <span class='ident'>i</span> <span class='op'>=</span> <span class='ident'>e</span> <span class='op'>-</span> <span class='ident'>table</span>::<span class='ident'>MIN_E</span>;
<span class='kw'>let</span> <span class='ident'>sig</span> <span class='op'>=</span> <span class='ident'>table</span>::<span class='ident'>POWERS</span>.<span class='number'>0</span>[<span class='ident'>i</span> <span class='kw'>as</span> <span class='ident'>usize</span>];
<span class='kw'>let</span> <span class='ident'>exp</span> <span class='op'>=</span> <span class='ident'>table</span>::<span class='ident'>POWERS</span>.<span class='number'>1</span>[<span class='ident'>i</span> <span class='kw'>as</span> <span class='ident'>usize</span>];
<span class='ident'>Fp</span> { <span class='ident'>f</span>: <span class='ident'>sig</span>, <span class='ident'>e</span>: <span class='ident'>exp</span> }
}
<span class='comment'>// In most architectures, floating point operations have an explicit bit size, therefore the</span>
<span class='comment'>// precision of the computation is determined on a per-operation basis.</span>
<span class='attribute'>#[<span class='ident'>cfg</span>(<span class='ident'>any</span>(<span class='ident'>not</span>(<span class='ident'>target_arch</span><span class='op'>=</span><span class='string'>"x86"</span>), <span class='ident'>target_feature</span><span class='op'>=</span><span class='string'>"sse2"</span>))]</span>
<span class='kw'>mod</span> <span class='ident'>fpu_precision</span> {
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>set_precision</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span>() { }
}
<span class='comment'>// On x86, the x87 FPU is used for float operations if the SSE/SSE2 extensions are not available.</span>
<span class='comment'>// The x87 FPU operates with 80 bits of precision by default, which means that operations will</span>
<span class='comment'>// round to 80 bits causing double rounding to happen when values are eventually represented as</span>
<span class='comment'>// 32/64 bit float values. To overcome this, the FPU control word can be set so that the</span>
<span class='comment'>// computations are performed in the desired precision.</span>
<span class='attribute'>#[<span class='ident'>cfg</span>(<span class='ident'>all</span>(<span class='ident'>target_arch</span><span class='op'>=</span><span class='string'>"x86"</span>, <span class='ident'>not</span>(<span class='ident'>target_feature</span><span class='op'>=</span><span class='string'>"sse2"</span>)))]</span>
<span class='kw'>mod</span> <span class='ident'>fpu_precision</span> {
<span class='kw'>use</span> <span class='ident'>mem</span>::<span class='ident'>size_of</span>;
<span class='kw'>use</span> <span class='ident'>ops</span>::<span class='ident'>Drop</span>;
<span class='doccomment'>/// A structure used to preserve the original value of the FPU control word, so that it can be</span>
<span class='doccomment'>/// restored when the structure is dropped.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// The x87 FPU is a 16-bits register whose fields are as follows:</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// | 12-15 | 10-11 | 8-9 | 6-7 | 5 | 4 | 3 | 2 | 1 | 0 |</span>
<span class='doccomment'>/// |------:|------:|----:|----:|---:|---:|---:|---:|---:|---:|</span>
<span class='doccomment'>/// | | RC | PC | | PM | UM | OM | ZM | DM | IM |</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// The documentation for all of the fields is available in the IA-32 Architectures Software</span>
<span class='doccomment'>/// Developer's Manual (Volume 1).</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// The only field which is relevant for the following code is PC, Precision Control. This</span>
<span class='doccomment'>/// field determines the precision of the operations performed by the FPU. It can be set to:</span>
<span class='doccomment'>/// - 0b00, single precision i.e. 32-bits</span>
<span class='doccomment'>/// - 0b10, double precision i.e. 64-bits</span>
<span class='doccomment'>/// - 0b11, double extended precision i.e. 80-bits (default state)</span>
<span class='doccomment'>/// The 0b01 value is reserved and should not be used.</span>
<span class='kw'>pub</span> <span class='kw'>struct</span> <span class='ident'>FPUControlWord</span>(<span class='ident'>u16</span>);
<span class='kw'>fn</span> <span class='ident'>set_cw</span>(<span class='ident'>cw</span>: <span class='ident'>u16</span>) {
<span class='kw'>unsafe</span> { <span class='macro'>asm</span><span class='macro'>!</span>(<span class='string'>"fldcw $0"</span> :: <span class='string'>"m"</span> (<span class='ident'>cw</span>) :: <span class='string'>"volatile"</span>) }
}
<span class='doccomment'>/// Set the precision field of the FPU to `T` and return a `FPUControlWord`</span>
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>set_precision</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span>() <span class='op'>-></span> <span class='ident'>FPUControlWord</span> {
<span class='kw'>let</span> <span class='ident'>cw</span> <span class='op'>=</span> <span class='number'>0u16</span>;
<span class='comment'>// Compute the value for the Precision Control field that is appropriate for `T`.</span>
<span class='kw'>let</span> <span class='ident'>cw_precision</span> <span class='op'>=</span> <span class='kw'>match</span> <span class='ident'>size_of</span>::<span class='op'><</span><span class='ident'>T</span><span class='op'>></span>() {
<span class='number'>4</span> <span class='op'>=></span> <span class='number'>0x0000</span>, <span class='comment'>// 32 bits</span>
<span class='number'>8</span> <span class='op'>=></span> <span class='number'>0x0200</span>, <span class='comment'>// 64 bits</span>
_ <span class='op'>=></span> <span class='number'>0x0300</span>, <span class='comment'>// default, 80 bits</span>
};
<span class='comment'>// Get the original value of the control word to restore it later, when the</span>
<span class='comment'>// `FPUControlWord` structure is dropped</span>
<span class='kw'>unsafe</span> { <span class='macro'>asm</span><span class='macro'>!</span>(<span class='string'>"fnstcw $0"</span> : <span class='string'>"=*m"</span> (<span class='kw-2'>&</span><span class='ident'>cw</span>) ::: <span class='string'>"volatile"</span>) }
<span class='comment'>// Set the control word to the desired precision. This is achieved by masking away the old</span>
<span class='comment'>// precision (bits 8 and 9, 0x300) and replacing it with the precision flag computed above.</span>
<span class='ident'>set_cw</span>((<span class='ident'>cw</span> <span class='kw-2'>&</span> <span class='number'>0xFCFF</span>) <span class='op'>|</span> <span class='ident'>cw_precision</span>);
<span class='ident'>FPUControlWord</span>(<span class='ident'>cw</span>)
}
<span class='kw'>impl</span> <span class='ident'>Drop</span> <span class='kw'>for</span> <span class='ident'>FPUControlWord</span> {
<span class='kw'>fn</span> <span class='ident'>drop</span>(<span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='self'>self</span>) {
<span class='ident'>set_cw</span>(<span class='self'>self</span>.<span class='number'>0</span>)
}
}
}
<span class='doccomment'>/// The fast path of Bellerophon using machine-sized integers and floats.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// This is extracted into a separate function so that it can be attempted before constructing</span>
<span class='doccomment'>/// a bignum.</span>
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>fast_path</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>RawFloat</span><span class='op'>></span>(<span class='ident'>integral</span>: <span class='kw-2'>&</span>[<span class='ident'>u8</span>], <span class='ident'>fractional</span>: <span class='kw-2'>&</span>[<span class='ident'>u8</span>], <span class='ident'>e</span>: <span class='ident'>i64</span>) <span class='op'>-></span> <span class='prelude-ty'>Option</span><span class='op'><</span><span class='ident'>T</span><span class='op'>></span> {
<span class='kw'>let</span> <span class='ident'>num_digits</span> <span class='op'>=</span> <span class='ident'>integral</span>.<span class='ident'>len</span>() <span class='op'>+</span> <span class='ident'>fractional</span>.<span class='ident'>len</span>();
<span class='comment'>// log_10(f64::max_sig) ~ 15.95. We compare the exact value to max_sig near the end,</span>
<span class='comment'>// this is just a quick, cheap rejection (and also frees the rest of the code from</span>
<span class='comment'>// worrying about underflow).</span>
<span class='kw'>if</span> <span class='ident'>num_digits</span> <span class='op'>></span> <span class='number'>16</span> {
<span class='kw'>return</span> <span class='prelude-val'>None</span>;
}
<span class='kw'>if</span> <span class='ident'>e</span>.<span class='ident'>abs</span>() <span class='op'>>=</span> <span class='ident'>T</span>::<span class='ident'>ceil_log5_of_max_sig</span>() <span class='kw'>as</span> <span class='ident'>i64</span> {
<span class='kw'>return</span> <span class='prelude-val'>None</span>;
}
<span class='kw'>let</span> <span class='ident'>f</span> <span class='op'>=</span> <span class='ident'>num</span>::<span class='ident'>from_str_unchecked</span>(<span class='ident'>integral</span>.<span class='ident'>iter</span>().<span class='ident'>chain</span>(<span class='ident'>fractional</span>.<span class='ident'>iter</span>()));
<span class='kw'>if</span> <span class='ident'>f</span> <span class='op'>></span> <span class='ident'>T</span>::<span class='ident'>max_sig</span>() {
<span class='kw'>return</span> <span class='prelude-val'>None</span>;
}
<span class='comment'>// The fast path crucially depends on arithmetic being rounded to the correct number of bits</span>
<span class='comment'>// without any intermediate rounding. On x86 (without SSE or SSE2) this requires the precision</span>
<span class='comment'>// of the x87 FPU stack to be changed so that it directly rounds to 64/32 bit.</span>
<span class='comment'>// The `set_precision` function takes care of setting the precision on architectures which</span>
<span class='comment'>// require setting it by changing the global state (like the control word of the x87 FPU).</span>
<span class='kw'>let</span> <span class='ident'>_cw</span> <span class='op'>=</span> <span class='ident'>fpu_precision</span>::<span class='ident'>set_precision</span>::<span class='op'><</span><span class='ident'>T</span><span class='op'>></span>();
<span class='comment'>// The case e < 0 cannot be folded into the other branch. Negative powers result in</span>
<span class='comment'>// a repeating fractional part in binary, which are rounded, which causes real</span>
<span class='comment'>// (and occasionally quite significant!) errors in the final result.</span>
<span class='kw'>if</span> <span class='ident'>e</span> <span class='op'>>=</span> <span class='number'>0</span> {
<span class='prelude-val'>Some</span>(<span class='ident'>T</span>::<span class='ident'>from_int</span>(<span class='ident'>f</span>) <span class='op'>*</span> <span class='ident'>T</span>::<span class='ident'>short_fast_pow10</span>(<span class='ident'>e</span> <span class='kw'>as</span> <span class='ident'>usize</span>))
} <span class='kw'>else</span> {
<span class='prelude-val'>Some</span>(<span class='ident'>T</span>::<span class='ident'>from_int</span>(<span class='ident'>f</span>) <span class='op'>/</span> <span class='ident'>T</span>::<span class='ident'>short_fast_pow10</span>(<span class='ident'>e</span>.<span class='ident'>abs</span>() <span class='kw'>as</span> <span class='ident'>usize</span>))
}
}
<span class='doccomment'>/// Algorithm Bellerophon is trivial code justified by non-trivial numeric analysis.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// It rounds ``f`` to a float with 64 bit significand and multiplies it by the best approximation</span>
<span class='doccomment'>/// of `10^e` (in the same floating point format). This is often enough to get the correct result.</span>
<span class='doccomment'>/// However, when the result is close to halfway between two adjecent (ordinary) floats, the</span>
<span class='doccomment'>/// compound rounding error from multiplying two approximation means the result may be off by a</span>
<span class='doccomment'>/// few bits. When this happens, the iterative Algorithm R fixes things up.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// The hand-wavy "close to halfway" is made precise by the numeric analysis in the paper.</span>
<span class='doccomment'>/// In the words of Clinger:</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// > Slop, expressed in units of the least significant bit, is an inclusive bound for the error</span>
<span class='doccomment'>/// > accumulated during the floating point calculation of the approximation to f * 10^e. (Slop is</span>
<span class='doccomment'>/// > not a bound for the true error, but bounds the difference between the approximation z and</span>
<span class='doccomment'>/// > the best possible approximation that uses p bits of significand.)</span>
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>bellerophon</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>RawFloat</span><span class='op'>></span>(<span class='ident'>f</span>: <span class='kw-2'>&</span><span class='ident'>Big</span>, <span class='ident'>e</span>: <span class='ident'>i16</span>) <span class='op'>-></span> <span class='ident'>T</span> {
<span class='kw'>let</span> <span class='ident'>slop</span>;
<span class='kw'>if</span> <span class='ident'>f</span> <span class='op'><=</span> <span class='kw-2'>&</span><span class='ident'>Big</span>::<span class='ident'>from_u64</span>(<span class='ident'>T</span>::<span class='ident'>max_sig</span>()) {
<span class='comment'>// The cases abs(e) < log5(2^N) are in fast_path()</span>
<span class='ident'>slop</span> <span class='op'>=</span> <span class='kw'>if</span> <span class='ident'>e</span> <span class='op'>>=</span> <span class='number'>0</span> { <span class='number'>0</span> } <span class='kw'>else</span> { <span class='number'>3</span> };
} <span class='kw'>else</span> {
<span class='ident'>slop</span> <span class='op'>=</span> <span class='kw'>if</span> <span class='ident'>e</span> <span class='op'>>=</span> <span class='number'>0</span> { <span class='number'>1</span> } <span class='kw'>else</span> { <span class='number'>4</span> };
}
<span class='kw'>let</span> <span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>rawfp</span>::<span class='ident'>big_to_fp</span>(<span class='ident'>f</span>).<span class='ident'>mul</span>(<span class='kw-2'>&</span><span class='ident'>power_of_ten</span>(<span class='ident'>e</span>)).<span class='ident'>normalize</span>();
<span class='kw'>let</span> <span class='ident'>exp_p_n</span> <span class='op'>=</span> <span class='number'>1</span> <span class='op'><<</span> (<span class='ident'>P</span> <span class='op'>-</span> <span class='ident'>T</span>::<span class='ident'>sig_bits</span>() <span class='kw'>as</span> <span class='ident'>u32</span>);
<span class='kw'>let</span> <span class='ident'>lowbits</span>: <span class='ident'>i64</span> <span class='op'>=</span> (<span class='ident'>z</span>.<span class='ident'>f</span> <span class='op'>%</span> <span class='ident'>exp_p_n</span>) <span class='kw'>as</span> <span class='ident'>i64</span>;
<span class='comment'>// Is the slop large enough to make a difference when</span>
<span class='comment'>// rounding to n bits?</span>
<span class='kw'>if</span> (<span class='ident'>lowbits</span> <span class='op'>-</span> <span class='ident'>exp_p_n</span> <span class='kw'>as</span> <span class='ident'>i64</span> <span class='op'>/</span> <span class='number'>2</span>).<span class='ident'>abs</span>() <span class='op'><=</span> <span class='ident'>slop</span> {
<span class='ident'>algorithm_r</span>(<span class='ident'>f</span>, <span class='ident'>e</span>, <span class='ident'>fp_to_float</span>(<span class='ident'>z</span>))
} <span class='kw'>else</span> {
<span class='ident'>fp_to_float</span>(<span class='ident'>z</span>)
}
}
<span class='doccomment'>/// An iterative algorithm that improves a floating point approximation of `f * 10^e`.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// Each iteration gets one unit in the last place closer, which of course takes terribly long to</span>
<span class='doccomment'>/// converge if `z0` is even mildly off. Luckily, when used as fallback for Bellerophon, the</span>
<span class='doccomment'>/// starting approximation is off by at most one ULP.</span>
<span class='kw'>fn</span> <span class='ident'>algorithm_r</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>RawFloat</span><span class='op'>></span>(<span class='ident'>f</span>: <span class='kw-2'>&</span><span class='ident'>Big</span>, <span class='ident'>e</span>: <span class='ident'>i16</span>, <span class='ident'>z0</span>: <span class='ident'>T</span>) <span class='op'>-></span> <span class='ident'>T</span> {
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>z0</span>;
<span class='kw'>loop</span> {
<span class='kw'>let</span> <span class='ident'>raw</span> <span class='op'>=</span> <span class='ident'>z</span>.<span class='ident'>unpack</span>();
<span class='kw'>let</span> (<span class='ident'>m</span>, <span class='ident'>k</span>) <span class='op'>=</span> (<span class='ident'>raw</span>.<span class='ident'>sig</span>, <span class='ident'>raw</span>.<span class='ident'>k</span>);
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>x</span> <span class='op'>=</span> <span class='ident'>f</span>.<span class='ident'>clone</span>();
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>y</span> <span class='op'>=</span> <span class='ident'>Big</span>::<span class='ident'>from_u64</span>(<span class='ident'>m</span>);
<span class='comment'>// Find positive integers `x`, `y` such that `x / y` is exactly `(f * 10^e) / (m * 2^k)`.</span>
<span class='comment'>// This not only avoids dealing with the signs of `e` and `k`, we also eliminate the</span>
<span class='comment'>// power of two common to `10^e` and `2^k` to make the numbers smaller.</span>
<span class='ident'>make_ratio</span>(<span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>x</span>, <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>y</span>, <span class='ident'>e</span>, <span class='ident'>k</span>);
<span class='kw'>let</span> <span class='ident'>m_digits</span> <span class='op'>=</span> [(<span class='ident'>m</span> <span class='kw-2'>&</span> <span class='number'>0xFF_FF_FF_FF</span>) <span class='kw'>as</span> <span class='ident'>u32</span>, (<span class='ident'>m</span> <span class='op'>>></span> <span class='number'>32</span>) <span class='kw'>as</span> <span class='ident'>u32</span>];
<span class='comment'>// This is written a bit awkwardly because our bignums don't support</span>
<span class='comment'>// negative numbers, so we use the absolute value + sign information.</span>
<span class='comment'>// The multiplication with m_digits can't overflow. If `x` or `y` are large enough that</span>
<span class='comment'>// we need to worry about overflow, then they are also large enough that `make_ratio` has</span>
<span class='comment'>// reduced the fraction by a factor of 2^64 or more.</span>
<span class='kw'>let</span> (<span class='ident'>d2</span>, <span class='ident'>d_negative</span>) <span class='op'>=</span> <span class='kw'>if</span> <span class='ident'>x</span> <span class='op'>>=</span> <span class='ident'>y</span> {
<span class='comment'>// Don't need x any more, save a clone().</span>
<span class='ident'>x</span>.<span class='ident'>sub</span>(<span class='kw-2'>&</span><span class='ident'>y</span>).<span class='ident'>mul_pow2</span>(<span class='number'>1</span>).<span class='ident'>mul_digits</span>(<span class='kw-2'>&</span><span class='ident'>m_digits</span>);
(<span class='ident'>x</span>, <span class='bool-val'>false</span>)
} <span class='kw'>else</span> {
<span class='comment'>// Still need y - make a copy.</span>
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>y</span> <span class='op'>=</span> <span class='ident'>y</span>.<span class='ident'>clone</span>();
<span class='ident'>y</span>.<span class='ident'>sub</span>(<span class='kw-2'>&</span><span class='ident'>x</span>).<span class='ident'>mul_pow2</span>(<span class='number'>1</span>).<span class='ident'>mul_digits</span>(<span class='kw-2'>&</span><span class='ident'>m_digits</span>);
(<span class='ident'>y</span>, <span class='bool-val'>true</span>)
};
<span class='kw'>if</span> <span class='ident'>d2</span> <span class='op'><</span> <span class='ident'>y</span> {
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>d2_double</span> <span class='op'>=</span> <span class='ident'>d2</span>;
<span class='ident'>d2_double</span>.<span class='ident'>mul_pow2</span>(<span class='number'>1</span>);
<span class='kw'>if</span> <span class='ident'>m</span> <span class='op'>==</span> <span class='ident'>T</span>::<span class='ident'>min_sig</span>() <span class='op'>&&</span> <span class='ident'>d_negative</span> <span class='op'>&&</span> <span class='ident'>d2_double</span> <span class='op'>></span> <span class='ident'>y</span> {
<span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>prev_float</span>(<span class='ident'>z</span>);
} <span class='kw'>else</span> {
<span class='kw'>return</span> <span class='ident'>z</span>;
}
} <span class='kw'>else</span> <span class='kw'>if</span> <span class='ident'>d2</span> <span class='op'>==</span> <span class='ident'>y</span> {
<span class='kw'>if</span> <span class='ident'>m</span> <span class='op'>%</span> <span class='number'>2</span> <span class='op'>==</span> <span class='number'>0</span> {
<span class='kw'>if</span> <span class='ident'>m</span> <span class='op'>==</span> <span class='ident'>T</span>::<span class='ident'>min_sig</span>() <span class='op'>&&</span> <span class='ident'>d_negative</span> {
<span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>prev_float</span>(<span class='ident'>z</span>);
} <span class='kw'>else</span> {
<span class='kw'>return</span> <span class='ident'>z</span>;
}
} <span class='kw'>else</span> <span class='kw'>if</span> <span class='ident'>d_negative</span> {
<span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>prev_float</span>(<span class='ident'>z</span>);
} <span class='kw'>else</span> {
<span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>next_float</span>(<span class='ident'>z</span>);
}
} <span class='kw'>else</span> <span class='kw'>if</span> <span class='ident'>d_negative</span> {
<span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>prev_float</span>(<span class='ident'>z</span>);
} <span class='kw'>else</span> {
<span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>next_float</span>(<span class='ident'>z</span>);
}
}
}
<span class='doccomment'>/// Given `x = f` and `y = m` where `f` represent input decimal digits as usual and `m` is the</span>
<span class='doccomment'>/// significand of a floating point approximation, make the ratio `x / y` equal to</span>
<span class='doccomment'>/// `(f * 10^e) / (m * 2^k)`, possibly reduced by a power of two both have in common.</span>
<span class='kw'>fn</span> <span class='ident'>make_ratio</span>(<span class='ident'>x</span>: <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>Big</span>, <span class='ident'>y</span>: <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>Big</span>, <span class='ident'>e</span>: <span class='ident'>i16</span>, <span class='ident'>k</span>: <span class='ident'>i16</span>) {
<span class='kw'>let</span> (<span class='ident'>e_abs</span>, <span class='ident'>k_abs</span>) <span class='op'>=</span> (<span class='ident'>e</span>.<span class='ident'>abs</span>() <span class='kw'>as</span> <span class='ident'>usize</span>, <span class='ident'>k</span>.<span class='ident'>abs</span>() <span class='kw'>as</span> <span class='ident'>usize</span>);
<span class='kw'>if</span> <span class='ident'>e</span> <span class='op'>>=</span> <span class='number'>0</span> {
<span class='kw'>if</span> <span class='ident'>k</span> <span class='op'>>=</span> <span class='number'>0</span> {
<span class='comment'>// x = f * 10^e, y = m * 2^k, except that we reduce the fraction by some power of two.</span>
<span class='kw'>let</span> <span class='ident'>common</span> <span class='op'>=</span> <span class='ident'>min</span>(<span class='ident'>e_abs</span>, <span class='ident'>k_abs</span>);
<span class='ident'>x</span>.<span class='ident'>mul_pow5</span>(<span class='ident'>e_abs</span>).<span class='ident'>mul_pow2</span>(<span class='ident'>e_abs</span> <span class='op'>-</span> <span class='ident'>common</span>);
<span class='ident'>y</span>.<span class='ident'>mul_pow2</span>(<span class='ident'>k_abs</span> <span class='op'>-</span> <span class='ident'>common</span>);
} <span class='kw'>else</span> {
<span class='comment'>// x = f * 10^e * 2^abs(k), y = m</span>
<span class='comment'>// This can't overflow because it requires positive `e` and negative `k`, which can</span>
<span class='comment'>// only happen for values extremely close to 1, which means that `e` and `k` will be</span>
<span class='comment'>// comparatively tiny.</span>
<span class='ident'>x</span>.<span class='ident'>mul_pow5</span>(<span class='ident'>e_abs</span>).<span class='ident'>mul_pow2</span>(<span class='ident'>e_abs</span> <span class='op'>+</span> <span class='ident'>k_abs</span>);
}
} <span class='kw'>else</span> {
<span class='kw'>if</span> <span class='ident'>k</span> <span class='op'>>=</span> <span class='number'>0</span> {
<span class='comment'>// x = f, y = m * 10^abs(e) * 2^k</span>
<span class='comment'>// This can't overflow either, see above.</span>
<span class='ident'>y</span>.<span class='ident'>mul_pow5</span>(<span class='ident'>e_abs</span>).<span class='ident'>mul_pow2</span>(<span class='ident'>k_abs</span> <span class='op'>+</span> <span class='ident'>e_abs</span>);
} <span class='kw'>else</span> {
<span class='comment'>// x = f * 2^abs(k), y = m * 10^abs(e), again reducing by a common power of two.</span>
<span class='kw'>let</span> <span class='ident'>common</span> <span class='op'>=</span> <span class='ident'>min</span>(<span class='ident'>e_abs</span>, <span class='ident'>k_abs</span>);
<span class='ident'>x</span>.<span class='ident'>mul_pow2</span>(<span class='ident'>k_abs</span> <span class='op'>-</span> <span class='ident'>common</span>);
<span class='ident'>y</span>.<span class='ident'>mul_pow5</span>(<span class='ident'>e_abs</span>).<span class='ident'>mul_pow2</span>(<span class='ident'>e_abs</span> <span class='op'>-</span> <span class='ident'>common</span>);
}
}
}
<span class='doccomment'>/// Conceptually, Algorithm M is the simplest way to convert a decimal to a float.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// We form a ratio that is equal to `f * 10^e`, then throwing in powers of two until it gives</span>
<span class='doccomment'>/// a valid float significand. The binary exponent `k` is the number of times we multiplied</span>
<span class='doccomment'>/// numerator or denominator by two, i.e., at all times `f * 10^e` equals `(u / v) * 2^k`.</span>
<span class='doccomment'>/// When we have found out significand, we only need to round by inspecting the remainder of the</span>
<span class='doccomment'>/// division, which is done in helper functions further below.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// This algorithm is super slow, even with the optimization described in `quick_start()`.</span>
<span class='doccomment'>/// However, it's the simplest of the algorithms to adapt for overflow, underflow, and subnormal</span>
<span class='doccomment'>/// results. This implementation takes over when Bellerophon and Algorithm R are overwhelmed.</span>
<span class='doccomment'>/// Detecting underflow and overflow is easy: The ratio still isn't an in-range significand,</span>
<span class='doccomment'>/// yet the minimum/maximum exponent has been reached. In the case of overflow, we simply return</span>
<span class='doccomment'>/// infinity.</span>
<span class='doccomment'>///</span>
<span class='doccomment'>/// Handling underflow and subnormals is trickier. One big problem is that, with the minimum</span>
<span class='doccomment'>/// exponent, the ratio might still be too large for a significand. See underflow() for details.</span>
<span class='kw'>pub</span> <span class='kw'>fn</span> <span class='ident'>algorithm_m</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>RawFloat</span><span class='op'>></span>(<span class='ident'>f</span>: <span class='kw-2'>&</span><span class='ident'>Big</span>, <span class='ident'>e</span>: <span class='ident'>i16</span>) <span class='op'>-></span> <span class='ident'>T</span> {
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>u</span>;
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>v</span>;
<span class='kw'>let</span> <span class='ident'>e_abs</span> <span class='op'>=</span> <span class='ident'>e</span>.<span class='ident'>abs</span>() <span class='kw'>as</span> <span class='ident'>usize</span>;
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>k</span> <span class='op'>=</span> <span class='number'>0</span>;
<span class='kw'>if</span> <span class='ident'>e</span> <span class='op'><</span> <span class='number'>0</span> {
<span class='ident'>u</span> <span class='op'>=</span> <span class='ident'>f</span>.<span class='ident'>clone</span>();
<span class='ident'>v</span> <span class='op'>=</span> <span class='ident'>Big</span>::<span class='ident'>from_small</span>(<span class='number'>1</span>);
<span class='ident'>v</span>.<span class='ident'>mul_pow5</span>(<span class='ident'>e_abs</span>).<span class='ident'>mul_pow2</span>(<span class='ident'>e_abs</span>);
} <span class='kw'>else</span> {
<span class='comment'>// FIXME possible optimization: generalize big_to_fp so that we can do the equivalent of</span>
<span class='comment'>// fp_to_float(big_to_fp(u)) here, only without the double rounding.</span>
<span class='ident'>u</span> <span class='op'>=</span> <span class='ident'>f</span>.<span class='ident'>clone</span>();
<span class='ident'>u</span>.<span class='ident'>mul_pow5</span>(<span class='ident'>e_abs</span>).<span class='ident'>mul_pow2</span>(<span class='ident'>e_abs</span>);
<span class='ident'>v</span> <span class='op'>=</span> <span class='ident'>Big</span>::<span class='ident'>from_small</span>(<span class='number'>1</span>);
}
<span class='ident'>quick_start</span>::<span class='op'><</span><span class='ident'>T</span><span class='op'>></span>(<span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>u</span>, <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>v</span>, <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>k</span>);
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>rem</span> <span class='op'>=</span> <span class='ident'>Big</span>::<span class='ident'>from_small</span>(<span class='number'>0</span>);
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>x</span> <span class='op'>=</span> <span class='ident'>Big</span>::<span class='ident'>from_small</span>(<span class='number'>0</span>);
<span class='kw'>let</span> <span class='ident'>min_sig</span> <span class='op'>=</span> <span class='ident'>Big</span>::<span class='ident'>from_u64</span>(<span class='ident'>T</span>::<span class='ident'>min_sig</span>());
<span class='kw'>let</span> <span class='ident'>max_sig</span> <span class='op'>=</span> <span class='ident'>Big</span>::<span class='ident'>from_u64</span>(<span class='ident'>T</span>::<span class='ident'>max_sig</span>());
<span class='kw'>loop</span> {
<span class='ident'>u</span>.<span class='ident'>div_rem</span>(<span class='kw-2'>&</span><span class='ident'>v</span>, <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>x</span>, <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>rem</span>);
<span class='kw'>if</span> <span class='ident'>k</span> <span class='op'>==</span> <span class='ident'>T</span>::<span class='ident'>min_exp_int</span>() {
<span class='comment'>// We have to stop at the minimum exponent, if we wait until `k < T::min_exp_int()`,</span>
<span class='comment'>// then we'd be off by a factor of two. Unfortunately this means we have to special-</span>
<span class='comment'>// case normal numbers with the minimum exponent.</span>
<span class='comment'>// FIXME find a more elegant formulation, but run the `tiny-pow10` test to make sure</span>
<span class='comment'>// that it's actually correct!</span>
<span class='kw'>if</span> <span class='ident'>x</span> <span class='op'>>=</span> <span class='ident'>min_sig</span> <span class='op'>&&</span> <span class='ident'>x</span> <span class='op'><=</span> <span class='ident'>max_sig</span> {
<span class='kw'>break</span>;
}
<span class='kw'>return</span> <span class='ident'>underflow</span>(<span class='ident'>x</span>, <span class='ident'>v</span>, <span class='ident'>rem</span>);
}
<span class='kw'>if</span> <span class='ident'>k</span> <span class='op'>></span> <span class='ident'>T</span>::<span class='ident'>max_exp_int</span>() {
<span class='kw'>return</span> <span class='ident'>T</span>::<span class='ident'>infinity2</span>();
}
<span class='kw'>if</span> <span class='ident'>x</span> <span class='op'><</span> <span class='ident'>min_sig</span> {
<span class='ident'>u</span>.<span class='ident'>mul_pow2</span>(<span class='number'>1</span>);
<span class='ident'>k</span> <span class='op'>-=</span> <span class='number'>1</span>;
} <span class='kw'>else</span> <span class='kw'>if</span> <span class='ident'>x</span> <span class='op'>></span> <span class='ident'>max_sig</span> {
<span class='ident'>v</span>.<span class='ident'>mul_pow2</span>(<span class='number'>1</span>);
<span class='ident'>k</span> <span class='op'>+=</span> <span class='number'>1</span>;
} <span class='kw'>else</span> {
<span class='kw'>break</span>;
}
}
<span class='kw'>let</span> <span class='ident'>q</span> <span class='op'>=</span> <span class='ident'>num</span>::<span class='ident'>to_u64</span>(<span class='kw-2'>&</span><span class='ident'>x</span>);
<span class='kw'>let</span> <span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>rawfp</span>::<span class='ident'>encode_normal</span>(<span class='ident'>Unpacked</span>::<span class='ident'>new</span>(<span class='ident'>q</span>, <span class='ident'>k</span>));
<span class='ident'>round_by_remainder</span>(<span class='ident'>v</span>, <span class='ident'>rem</span>, <span class='ident'>q</span>, <span class='ident'>z</span>)
}
<span class='doccomment'>/// Skip over most AlgorithmM iterations by checking the bit length.</span>
<span class='kw'>fn</span> <span class='ident'>quick_start</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>RawFloat</span><span class='op'>></span>(<span class='ident'>u</span>: <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>Big</span>, <span class='ident'>v</span>: <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>Big</span>, <span class='ident'>k</span>: <span class='kw-2'>&</span><span class='kw-2'>mut</span> <span class='ident'>i16</span>) {
<span class='comment'>// The bit length is an estimate of the base two logarithm, and log(u / v) = log(u) - log(v).</span>
<span class='comment'>// The estimate is off by at most 1, but always an under-estimate, so the error on log(u)</span>
<span class='comment'>// and log(v) are of the same sign and cancel out (if both are large). Therefore the error</span>
<span class='comment'>// for log(u / v) is at most one as well.</span>
<span class='comment'>// The target ratio is one where u/v is in an in-range significand. Thus our termination</span>
<span class='comment'>// condition is log2(u / v) being the significand bits, plus/minus one.</span>
<span class='comment'>// FIXME Looking at the second bit could improve the estimate and avoid some more divisions.</span>
<span class='kw'>let</span> <span class='ident'>target_ratio</span> <span class='op'>=</span> <span class='ident'>T</span>::<span class='ident'>sig_bits</span>() <span class='kw'>as</span> <span class='ident'>i16</span>;
<span class='kw'>let</span> <span class='ident'>log2_u</span> <span class='op'>=</span> <span class='ident'>u</span>.<span class='ident'>bit_length</span>() <span class='kw'>as</span> <span class='ident'>i16</span>;
<span class='kw'>let</span> <span class='ident'>log2_v</span> <span class='op'>=</span> <span class='ident'>v</span>.<span class='ident'>bit_length</span>() <span class='kw'>as</span> <span class='ident'>i16</span>;
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>u_shift</span>: <span class='ident'>i16</span> <span class='op'>=</span> <span class='number'>0</span>;
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>v_shift</span>: <span class='ident'>i16</span> <span class='op'>=</span> <span class='number'>0</span>;
<span class='macro'>assert</span><span class='macro'>!</span>(<span class='op'>*</span><span class='ident'>k</span> <span class='op'>==</span> <span class='number'>0</span>);
<span class='kw'>loop</span> {
<span class='kw'>if</span> <span class='op'>*</span><span class='ident'>k</span> <span class='op'>==</span> <span class='ident'>T</span>::<span class='ident'>min_exp_int</span>() {
<span class='comment'>// Underflow or subnormal. Leave it to the main function.</span>
<span class='kw'>break</span>;
}
<span class='kw'>if</span> <span class='op'>*</span><span class='ident'>k</span> <span class='op'>==</span> <span class='ident'>T</span>::<span class='ident'>max_exp_int</span>() {
<span class='comment'>// Overflow. Leave it to the main function.</span>
<span class='kw'>break</span>;
}
<span class='kw'>let</span> <span class='ident'>log2_ratio</span> <span class='op'>=</span> (<span class='ident'>log2_u</span> <span class='op'>+</span> <span class='ident'>u_shift</span>) <span class='op'>-</span> (<span class='ident'>log2_v</span> <span class='op'>+</span> <span class='ident'>v_shift</span>);
<span class='kw'>if</span> <span class='ident'>log2_ratio</span> <span class='op'><</span> <span class='ident'>target_ratio</span> <span class='op'>-</span> <span class='number'>1</span> {
<span class='ident'>u_shift</span> <span class='op'>+=</span> <span class='number'>1</span>;
<span class='op'>*</span><span class='ident'>k</span> <span class='op'>-=</span> <span class='number'>1</span>;
} <span class='kw'>else</span> <span class='kw'>if</span> <span class='ident'>log2_ratio</span> <span class='op'>></span> <span class='ident'>target_ratio</span> <span class='op'>+</span> <span class='number'>1</span> {
<span class='ident'>v_shift</span> <span class='op'>+=</span> <span class='number'>1</span>;
<span class='op'>*</span><span class='ident'>k</span> <span class='op'>+=</span> <span class='number'>1</span>;
} <span class='kw'>else</span> {
<span class='kw'>break</span>;
}
}
<span class='ident'>u</span>.<span class='ident'>mul_pow2</span>(<span class='ident'>u_shift</span> <span class='kw'>as</span> <span class='ident'>usize</span>);
<span class='ident'>v</span>.<span class='ident'>mul_pow2</span>(<span class='ident'>v_shift</span> <span class='kw'>as</span> <span class='ident'>usize</span>);
}
<span class='kw'>fn</span> <span class='ident'>underflow</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>RawFloat</span><span class='op'>></span>(<span class='ident'>x</span>: <span class='ident'>Big</span>, <span class='ident'>v</span>: <span class='ident'>Big</span>, <span class='ident'>rem</span>: <span class='ident'>Big</span>) <span class='op'>-></span> <span class='ident'>T</span> {
<span class='kw'>if</span> <span class='ident'>x</span> <span class='op'><</span> <span class='ident'>Big</span>::<span class='ident'>from_u64</span>(<span class='ident'>T</span>::<span class='ident'>min_sig</span>()) {
<span class='kw'>let</span> <span class='ident'>q</span> <span class='op'>=</span> <span class='ident'>num</span>::<span class='ident'>to_u64</span>(<span class='kw-2'>&</span><span class='ident'>x</span>);
<span class='kw'>let</span> <span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>rawfp</span>::<span class='ident'>encode_subnormal</span>(<span class='ident'>q</span>);
<span class='kw'>return</span> <span class='ident'>round_by_remainder</span>(<span class='ident'>v</span>, <span class='ident'>rem</span>, <span class='ident'>q</span>, <span class='ident'>z</span>);
}
<span class='comment'>// Ratio isn't an in-range significand with the minimum exponent, so we need to round off</span>
<span class='comment'>// excess bits and adjust the exponent accordingly. The real value now looks like this:</span>
<span class='comment'>//</span>
<span class='comment'>// x lsb</span>
<span class='comment'>// /--------------\/</span>
<span class='comment'>// 1010101010101010.10101010101010 * 2^k</span>
<span class='comment'>// \-----/\-------/ \------------/</span>
<span class='comment'>// q trunc. (represented by rem)</span>
<span class='comment'>//</span>
<span class='comment'>// Therefore, when the rounded-off bits are != 0.5 ULP, they decide the rounding</span>
<span class='comment'>// on their own. When they are equal and the remainder is non-zero, the value still</span>
<span class='comment'>// needs to be rounded up. Only when the rounded off bits are 1/2 and the remainer</span>
<span class='comment'>// is zero, we have a half-to-even situation.</span>
<span class='kw'>let</span> <span class='ident'>bits</span> <span class='op'>=</span> <span class='ident'>x</span>.<span class='ident'>bit_length</span>();
<span class='kw'>let</span> <span class='ident'>lsb</span> <span class='op'>=</span> <span class='ident'>bits</span> <span class='op'>-</span> <span class='ident'>T</span>::<span class='ident'>sig_bits</span>() <span class='kw'>as</span> <span class='ident'>usize</span>;
<span class='kw'>let</span> <span class='ident'>q</span> <span class='op'>=</span> <span class='ident'>num</span>::<span class='ident'>get_bits</span>(<span class='kw-2'>&</span><span class='ident'>x</span>, <span class='ident'>lsb</span>, <span class='ident'>bits</span>);
<span class='kw'>let</span> <span class='ident'>k</span> <span class='op'>=</span> <span class='ident'>T</span>::<span class='ident'>min_exp_int</span>() <span class='op'>+</span> <span class='ident'>lsb</span> <span class='kw'>as</span> <span class='ident'>i16</span>;
<span class='kw'>let</span> <span class='ident'>z</span> <span class='op'>=</span> <span class='ident'>rawfp</span>::<span class='ident'>encode_normal</span>(<span class='ident'>Unpacked</span>::<span class='ident'>new</span>(<span class='ident'>q</span>, <span class='ident'>k</span>));
<span class='kw'>let</span> <span class='ident'>q_even</span> <span class='op'>=</span> <span class='ident'>q</span> <span class='op'>%</span> <span class='number'>2</span> <span class='op'>==</span> <span class='number'>0</span>;
<span class='kw'>match</span> <span class='ident'>num</span>::<span class='ident'>compare_with_half_ulp</span>(<span class='kw-2'>&</span><span class='ident'>x</span>, <span class='ident'>lsb</span>) {
<span class='ident'>Greater</span> <span class='op'>=></span> <span class='ident'>next_float</span>(<span class='ident'>z</span>),
<span class='ident'>Less</span> <span class='op'>=></span> <span class='ident'>z</span>,
<span class='ident'>Equal</span> <span class='kw'>if</span> <span class='ident'>rem</span>.<span class='ident'>is_zero</span>() <span class='op'>&&</span> <span class='ident'>q_even</span> <span class='op'>=></span> <span class='ident'>z</span>,
<span class='ident'>Equal</span> <span class='op'>=></span> <span class='ident'>next_float</span>(<span class='ident'>z</span>),
}
}
<span class='doccomment'>/// Ordinary round-to-even, obfuscated by having to round based on the remainder of a division.</span>
<span class='kw'>fn</span> <span class='ident'>round_by_remainder</span><span class='op'><</span><span class='ident'>T</span>: <span class='ident'>RawFloat</span><span class='op'>></span>(<span class='ident'>v</span>: <span class='ident'>Big</span>, <span class='ident'>r</span>: <span class='ident'>Big</span>, <span class='ident'>q</span>: <span class='ident'>u64</span>, <span class='ident'>z</span>: <span class='ident'>T</span>) <span class='op'>-></span> <span class='ident'>T</span> {
<span class='kw'>let</span> <span class='kw-2'>mut</span> <span class='ident'>v_minus_r</span> <span class='op'>=</span> <span class='ident'>v</span>;
<span class='ident'>v_minus_r</span>.<span class='ident'>sub</span>(<span class='kw-2'>&</span><span class='ident'>r</span>);
<span class='kw'>if</span> <span class='ident'>r</span> <span class='op'><</span> <span class='ident'>v_minus_r</span> {
<span class='ident'>z</span>
} <span class='kw'>else</span> <span class='kw'>if</span> <span class='ident'>r</span> <span class='op'>></span> <span class='ident'>v_minus_r</span> {
<span class='ident'>next_float</span>(<span class='ident'>z</span>)
} <span class='kw'>else</span> <span class='kw'>if</span> <span class='ident'>q</span> <span class='op'>%</span> <span class='number'>2</span> <span class='op'>==</span> <span class='number'>0</span> {
<span class='ident'>z</span>
} <span class='kw'>else</span> {
<span class='ident'>next_float</span>(<span class='ident'>z</span>)
}
}
</pre>
</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 = "core";
window.playgroundUrl = "https://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> |
dom/tests/mochitest/dom-level1-core/test_hc_characterdataindexsizeerrsubstringoffsetgreater.html | tmhorne/celtx | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater</title>
<link href="http://www.w3.org/StyleSheets/activity-home.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
<script type="text/javascript" src="/MochiKit/packed.js"></script><script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script><script type="text/javascript" src="DOMTestCase.js"></script><script type="text/javascript" src="exclusions.js"></script><script type="text/javascript">
// expose test function names
function exposeTestFunctionNames()
{
return ['hc_characterdataindexsizeerrsubstringoffsetgreater'];
}
var docsLoaded = -1000000;
var builder = null;
//
// This function is called by the testing framework before
// running the test suite.
//
// If there are no configuration exceptions, asynchronous
// document loading is started. Otherwise, the status
// is set to complete and the exception is immediately
// raised when entering the body of the test.
//
function setUpPage() {
setUpPageStatus = 'running';
try {
//
// creates test document builder, may throw exception
//
builder = createConfiguredBuilder();
docsLoaded = 0;
var docRef = null;
if (typeof(this.doc) != 'undefined') {
docRef = this.doc;
}
docsLoaded += preload(docRef, "doc", "hc_staff");
if (docsLoaded == 1) {
setUpPage = 'complete';
}
} catch(ex) {
catchInitializationError(builder, ex);
setUpPage = 'complete';
}
}
//
// This method is called on the completion of
// each asychronous load started in setUpTests.
//
// When every synchronous loaded document has completed,
// the page status is changed which allows the
// body of the test to be executed.
function loadComplete() {
if (++docsLoaded == 1) {
setUpPageStatus = 'complete';
runJSUnitTests();
markTodos();
SimpleTest.finish();
}
}
var docName = 'hc_characterdataindexsizeerrsubstringoffsetgreater';
window.doc = window;
SimpleTest.waitForExplicitFinish();
addLoadEvent(setUpPage);
function testFails (test) {
if (!test.result) {
test.todo = true;
return true;
}
return false;
}
function markTodos() {
if (todoTests[docName]) {
// mark the failures as todos
var failures = filter(testFails, SimpleTest._tests);
// shouldn't be 0 failures
todo(SimpleTest._tests != 0 && failures == 0, "test marked todo should fail somewhere");
}
}
function runJSUnitTests() {
builder = createConfiguredBuilder();
try {
forEach(exposeTestFunctionNames(),
function (testName) {
window[testName]();
}
);
} catch (ex) {
ok(false, "Test threw exception: " + ex);
}
}
/**
*
The "substringData(offset,count)" method raises an
INDEX_SIZE_ERR DOMException if the specified offset
is greater than the number of characters in the string.
Retrieve the character data of the last child of the
first employee and invoke its "substringData(offset,count)
method with offset=40 and count=3. It should raise the
desired exception since the offsets value is greater
than the length.
* @author Curt Arnold
* @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-258A00AF')/constant[@name='INDEX_SIZE_ERR'])
* @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-6531BCCF
* @see http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#xpointer(id('ID-6531BCCF')/raises/exception[@name='DOMException']/descr/p[substring-before(.,':')='INDEX_SIZE_ERR'])
* @see http://www.w3.org/Bugs/Public/show_bug.cgi?id=249
*/
function hc_characterdataindexsizeerrsubstringoffsetgreater() {
var success;
if(checkInitialization(builder, "hc_characterdataindexsizeerrsubstringoffsetgreater") != null) return;
var doc;
var elementList;
var nameNode;
var child;
var badString;
var docRef = null;
if (typeof(this.doc) != 'undefined') {
docRef = this.doc;
}
doc = load(docRef, "doc", "hc_staff");
elementList = doc.getElementsByTagName("acronym");
nameNode = elementList.item(0);
child = nameNode.firstChild;
{
success = false;
try {
badString = child.substringData(40,3);
}
catch(ex) {
success = (typeof(ex.code) != 'undefined' && ex.code == 1);
}
assertTrue("throw_INDEX_SIZE_ERR",success);
}
}
</script>
</head>
<body>
<h2>Test http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_characterdataindexsizeerrsubstringoffsetgreater</h2>
<p></p>
<p>
Copyright (c) 2001-2004 World Wide Web Consortium,
(Massachusetts Institute of Technology, European Research Consortium
for Informatics and Mathematics, Keio University). All
Rights Reserved. This work is distributed under the <a href="http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231">W3C(r) Software License</a> 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.
</p>
<iframe name="doc" src="files/hc_staff.html"></iframe>
<br>
</body>
</html>
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.