path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
QMOLEDEV/gtk+-3.2.1/tests/css/parser/declarations-invalid-07.ref.css
chriskmanx/qmole
* { color: rgb(0,255,0); }
tests/wpt/web-platform-tests/webrtc/RTCPeerConnection-getStats.https.html
paulrouget/servo
<!doctype html> <meta charset=utf-8> <title>RTCPeerConnection.prototype.getStats</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="RTCPeerConnection-helper.js"></script> <script src="dictionary-helper.js"></script> <script src="RTCStats-helper.js"></script> <script> 'use strict'; // Test is based on the following editor draft: // webrtc-pc 20171130 // webrtc-stats 20171122 // The following helper function is called from RTCPeerConnection-helper.js // getTrackFromUserMedia // The following helper function is called from RTCStats-helper.js // validateStatsReport // assert_stats_report_has_stats // The following helper function is called from RTCPeerConnection-helper.js // exchangeIceCandidates // doSignalingHandshake /* 8.2. getStats 1. Let selectorArg be the method's first argument. 2. Let connection be the RTCPeerConnection object on which the method was invoked. 3. If selectorArg is null, let selector be null. 4. If selectorArg is a MediaStreamTrack let selector be an RTCRtpSender or RTCRtpReceiver on connection which track member matches selectorArg. If no such sender or receiver exists, or if more than one sender or receiver fit this criteria, return a promise rejected with a newly created InvalidAccessError. 5. Let p be a new promise. 6. Run the following steps in parallel: 1. Gather the stats indicated by selector according to the stats selection algorithm. 2. Resolve p with the resulting RTCStatsReport object, containing the gathered stats. */ promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return pc.getStats(); }, 'getStats() with no argument should succeed'); promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return pc.getStats(null); }, 'getStats(null) should succeed'); /* 8.2. getStats 4. If selectorArg is a MediaStreamTrack let selector be an RTCRtpSender or RTCRtpReceiver on connection which track member matches selectorArg. If no such sender or receiver exists, or if more than one sender or receiver fit this criteria, return a promise rejected with a newly created InvalidAccessError. */ promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return getTrackFromUserMedia('audio') .then(([track, mediaStream]) => { return promise_rejects(t, 'InvalidAccessError', pc.getStats(track)); }); }, 'getStats() with track not added to connection should reject with InvalidAccessError'); promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return getTrackFromUserMedia('audio') .then(([track, mediaStream]) => { pc.addTrack(track, mediaStream); return pc.getStats(track); }); }, 'getStats() with track added via addTrack should succeed'); promise_test(async t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); const stream = await navigator.mediaDevices.getUserMedia({audio: true}); t.add_cleanup(() => stream.getTracks().forEach(track => track.stop())); const [track] = stream.getTracks(); pc.addTransceiver(track); return pc.getStats(track); }, 'getStats() with track added via addTransceiver should succeed'); promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return getTrackFromUserMedia('audio') .then(([track, mediaStream]) => { // addTransceiver allows adding same track multiple times const transceiver1 = pc.addTransceiver(track); const transceiver2 = pc.addTransceiver(track); assert_not_equals(transceiver1, transceiver2); assert_not_equals(transceiver1.sender, transceiver2.sender); assert_equals(transceiver1.sender.track, transceiver2.sender.track); return promise_rejects(t, 'InvalidAccessError', pc.getStats(track)); }); }, `getStats() with track associated with more than one sender should reject with InvalidAccessError`); promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); const transceiver1 = pc.addTransceiver('audio'); // Create another transceiver that resends what // is being received, kind of like echo const transceiver2 = pc.addTransceiver(transceiver1.receiver.track); assert_equals(transceiver1.receiver.track, transceiver2.sender.track); return promise_rejects(t, 'InvalidAccessError', pc.getStats(transceiver1.receiver.track)); }, 'getStats() with track associated with both sender and receiver should reject with InvalidAccessError'); /* 8.5. The stats selection algorithm 2. If selector is null, gather stats for the whole connection, add them to result, return result, and abort these steps. */ promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return pc.getStats() .then(statsReport => { validateStatsReport(statsReport); assert_stats_report_has_stats(statsReport, ['peer-connection']); }); }, 'getStats() with no argument should return stats report containing peer-connection stats on an empty PC'); promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return getTrackFromUserMedia('audio') .then(([track, mediaStream]) => { pc.addTrack(track, mediaStream); return pc.getStats(); }) .then(statsReport => { validateStatsReport(statsReport); assert_stats_report_has_stats(statsReport, ['peer-connection']); assert_stats_report_has_stats(statsReport, ['outbound-rtp']); }); }, 'getStats() with no argument should return stats report containing peer-connection stats and outbound-track-stats'); promise_test(t => { const pc = new RTCPeerConnection(); t.add_cleanup(() => pc.close()); return getTrackFromUserMedia('audio') .then(([track, mediaStream]) => { pc.addTrack(track); return pc.getStats(); }) .then(statsReport => { validateStatsReport(statsReport); assert_stats_report_has_stats(statsReport, ['peer-connection']); assert_stats_report_has_stats(statsReport, ['outbound-rtp']); }); }, 'getStats() with no argument should return stats for no-stream tracks'); /* 8.5. The stats selection algorithm 3. If selector is an RTCRtpSender, gather stats for and add the following objects to result: - All RTCOutboundRTPStreamStats objects corresponding to selector. - All stats objects referenced directly or indirectly by the RTCOutboundRTPStreamStats objects added. */ promise_test(async t => { const pc = createPeerConnectionWithCleanup(t); const pc2 = createPeerConnectionWithCleanup(t); let [track, mediaStream] = await getTrackFromUserMedia('audio'); pc.addTrack(track, mediaStream); coupleIceCandidates(pc, pc2); await doSignalingHandshake(pc, pc2); await listenToIceConnected(pc); const stats = await pc.getStats(track); validateStatsReport(stats); assert_stats_report_has_stats(stats, ['outbound-rtp']); }, `getStats() on track associated with RtpSender should return stats report containing outbound-rtp stats`); /* 8.5. The stats selection algorithm 4. If selector is an RTCRtpReceiver, gather stats for and add the following objects to result: - All RTCInboundRTPStreamStats objects corresponding to selector. - All stats objects referenced directly or indirectly by the RTCInboundRTPStreamStats added. */ promise_test(async t => { const pc = createPeerConnectionWithCleanup(t); const pc2 = createPeerConnectionWithCleanup(t); let [track, mediaStream] = await getTrackFromUserMedia('audio'); pc.addTrack(track, mediaStream); coupleIceCandidates(pc, pc2); await doSignalingHandshake(pc, pc2); // Wait for unmute if the track is not already unmuted. // According to spec, it should be muted when being created, but this // is not what this test is testing, so allow it to be unmuted. if (pc2.getReceivers()[0].track.muted) { await new Promise(resolve => { pc2.getReceivers()[0].track.addEventListener('unmute', resolve); }); } const stats = await pc2.getStats(track); validateStatsReport(stats); assert_stats_report_has_stats(stats, ['inbound-rtp']); }, `getStats() on track associated with RtpReceiver should return stats report containing inbound-rtp stats`); /* 8.6 Mandatory To Implement Stats An implementation MUST support generating statistics of the following types when the corresponding objects exist on a PeerConnection, with the attributes that are listed when they are valid for that object. */ const mandatoryStats = [ "codec", "inbound-rtp", "outbound-rtp", "remote-inbound-rtp", "remote-outbound-rtp", "peer-connection", "data-channel", "stream", "track", "transport", "candidate-pair", "local-candidate", "remote-candidate", "certificate" ]; async_test(t => { const pc1 = new RTCPeerConnection(); t.add_cleanup(() => pc1.close()); const pc2 = new RTCPeerConnection(); t.add_cleanup(() => pc2.close()); const dataChannel = pc1.createDataChannel('test-channel'); return getNoiseStream({ audio: true, video: true }) .then(t.step_func(mediaStream => { const tracks = mediaStream.getTracks(); const [audioTrack] = mediaStream.getAudioTracks(); const [videoTrack] = mediaStream.getVideoTracks(); for (const track of mediaStream.getTracks()) { t.add_cleanup(() => track.stop()); pc1.addTrack(track, mediaStream); } const testStatsReport = (pc, statsReport) => { validateStatsReport(statsReport); assert_stats_report_has_stats(statsReport, mandatoryStats); const dataChannelStats = findStatsFromReport(statsReport, stats => { return stats.type === 'data-channel' && stats.dataChannelIdentifier === dataChannel.id; }, 'Expect data channel stats to be found'); assert_equals(dataChannelStats.label, 'test-channel'); const audioTrackStats = findStatsFromReport(statsReport, stats => { return stats.type === 'track' && stats.trackIdentifier === audioTrack.id; }, 'Expect audio track stats to be found'); assert_equals(audioTrackStats.kind, 'audio'); const videoTrackStats = findStatsFromReport(statsReport, stats => { return stats.type === 'track' && stats.trackIdentifier === videoTrack.id; }, 'Expect video track stats to be found'); assert_equals(videoTrackStats.kind, 'video'); const mediaStreamStats = findStatsFromReport(statsReport, stats => { return stats.type === 'stream' && stats.streamIdentifier === mediaStream.id; }, 'Expect media stream stats to be found'); assert_true(mediaStreamStats.trackIds.include(audioTrackStats.id)); assert_true(mediaStreamStats.trackIds.include(videoTrackStats.id)); } const onConnected = t.step_func(() => { // Wait a while for the peer connections to collect stats t.step_timeout(() => { Promise.all([ pc1.getStats() .then(statsReport => testStatsReport(pc1, statsReport)), pc2.getStats() .then(statsReport => testStatsReport(pc2, statsReport)) ]) .then(t.step_func_done()) .catch(t.step_func(err => { assert_unreached(`test failed with error: ${err}`); })); }, 200) }) let onTrackCount = 0 let onDataChannelCalled = false pc2.addEventListener('track', t.step_func(() => { onTrackCount++; if (onTrackCount === 2 && onDataChannelCalled) { onConnected(); } })); pc2.addEventListener('datachannel', t.step_func(() => { onDataChannelCalled = true; if (onTrackCount === 2) { onConnected(); } })); coupleIceCandidates(pc1, pc2); doSignalingHandshake(pc1, pc2); })) .catch(t.step_func(err => { assert_unreached(`test failed with error: ${err}`); })); }, `getStats() with connected peer connections having tracks and data channel should return all mandatory to implement stats`); </script>
B2G/gecko/docshell/base/crashtests/432114-1.html
wilebeast/FireFox-OS
<html> <head> <title>Bug - Crash [@ PL_DHashTableOperate] with DOMNodeInserted event listener removing window and frameset contenteditable</title> </head> <body> <iframe id="content" src="data:text/html;charset=utf-8,%3Cscript%3E%0Awindow.addEventListener%28%27DOMNodeInserted%27%2C%20function%28%29%20%7Bwindow.frameElement.parentNode.removeChild%28window.frameElement%29%3B%7D%2C%20true%29%3B%0A%3C/script%3E%0A%3Cframeset%20contenteditable%3D%22true%22%3E"></iframe> </body> </html>
src/java/org/jivesoftware/openfire/audit/package.html
derek-wang/ca.rides.openfire
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> </head> <body> <p>Service that records XMPP traffic.</p> </body> </html>
samples/MoreToolbarSample.html
onecrayon/onyx
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title>MoreToolbar Sample</title> <!-- --> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"> <!-- --> <script src="../../../enyo/enyo.js" type="text/javascript"></script> <script src="../../layout/package.js" type="text/javascript"></script> <script src="../../onyx/package.js" type="text/javascript"></script> <!-- --> <link href="sample.css" rel="stylesheet"> <script src="MoreToolbarSample.js" type="text/javascript"></script> <!-- --> </head> <body> <script type="text/javascript"> new onyx.sample.MoreToolbarSample({classes: "enyo-unselectable"}).write(); </script> </body> </html>
thirdparty/hbase-1.1.1.2.3.0.0-2557/docs/xref-test/org/apache/hadoop/hbase/regionserver/KeyValueScanFixture.html
scalingdata/Impala
<!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>KeyValueScanFixture xref</title> <link type="text/css" rel="stylesheet" href="../../../../../stylesheet.css" /> </head> <body> <div id="overview"><a href="../../../../../../testapidocs/org/apache/hadoop/hbase/regionserver/KeyValueScanFixture.html">View Javadoc</a></div><pre> <a class="jxr_linenumber" name="1" href="#1">1</a> <em class="jxr_comment">/*</em> <a class="jxr_linenumber" name="2" href="#2">2</a> <em class="jxr_comment"> *</em> <a class="jxr_linenumber" name="3" href="#3">3</a> <em class="jxr_comment"> * Licensed to the Apache Software Foundation (ASF) under one</em> <a class="jxr_linenumber" name="4" href="#4">4</a> <em class="jxr_comment"> * or more contributor license agreements. See the NOTICE file</em> <a class="jxr_linenumber" name="5" href="#5">5</a> <em class="jxr_comment"> * distributed with this work for additional information</em> <a class="jxr_linenumber" name="6" href="#6">6</a> <em class="jxr_comment"> * regarding copyright ownership. The ASF licenses this file</em> <a class="jxr_linenumber" name="7" href="#7">7</a> <em class="jxr_comment"> * to you under the Apache License, Version 2.0 (the</em> <a class="jxr_linenumber" name="8" href="#8">8</a> <em class="jxr_comment"> * "License"); you may not use this file except in compliance</em> <a class="jxr_linenumber" name="9" href="#9">9</a> <em class="jxr_comment"> * with the License. You may obtain a copy of the License at</em> <a class="jxr_linenumber" name="10" href="#10">10</a> <em class="jxr_comment"> *</em> <a class="jxr_linenumber" name="11" href="#11">11</a> <em class="jxr_comment"> * <a href="http://www.apache.org/licenses/LICENSE-2.0" target="alexandria_uri">http://www.apache.org/licenses/LICENSE-2.0</a></em> <a class="jxr_linenumber" name="12" href="#12">12</a> <em class="jxr_comment"> *</em> <a class="jxr_linenumber" name="13" href="#13">13</a> <em class="jxr_comment"> * Unless required by applicable law or agreed to in writing, software</em> <a class="jxr_linenumber" name="14" href="#14">14</a> <em class="jxr_comment"> * distributed under the License is distributed on an "AS IS" BASIS,</em> <a class="jxr_linenumber" name="15" href="#15">15</a> <em class="jxr_comment"> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</em> <a class="jxr_linenumber" name="16" href="#16">16</a> <em class="jxr_comment"> * See the License for the specific language governing permissions and</em> <a class="jxr_linenumber" name="17" href="#17">17</a> <em class="jxr_comment"> * limitations under the License.</em> <a class="jxr_linenumber" name="18" href="#18">18</a> <em class="jxr_comment"> */</em> <a class="jxr_linenumber" name="19" href="#19">19</a> <a class="jxr_linenumber" name="20" href="#20">20</a> <strong class="jxr_keyword">package</strong> org.apache.hadoop.hbase.regionserver; <a class="jxr_linenumber" name="21" href="#21">21</a> <a class="jxr_linenumber" name="22" href="#22">22</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.regionserver.KeyValueScanner; <a class="jxr_linenumber" name="23" href="#23">23</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.util.CollectionBackedScanner; <a class="jxr_linenumber" name="24" href="#24">24</a> <strong class="jxr_keyword">import</strong> org.apache.hadoop.hbase.KeyValue; <a class="jxr_linenumber" name="25" href="#25">25</a> <a class="jxr_linenumber" name="26" href="#26">26</a> <strong class="jxr_keyword">import</strong> java.util.ArrayList; <a class="jxr_linenumber" name="27" href="#27">27</a> <strong class="jxr_keyword">import</strong> java.util.List; <a class="jxr_linenumber" name="28" href="#28">28</a> <a class="jxr_linenumber" name="29" href="#29">29</a> <em class="jxr_javadoccomment">/**</em> <a class="jxr_linenumber" name="30" href="#30">30</a> <em class="jxr_javadoccomment"> * A fixture that implements and presents a KeyValueScanner.</em> <a class="jxr_linenumber" name="31" href="#31">31</a> <em class="jxr_javadoccomment"> * It takes a list of key/values which is then sorted according</em> <a class="jxr_linenumber" name="32" href="#32">32</a> <em class="jxr_javadoccomment"> * to the provided comparator, and then the whole thing pretends</em> <a class="jxr_linenumber" name="33" href="#33">33</a> <em class="jxr_javadoccomment"> * to be a store file scanner.</em> <a class="jxr_linenumber" name="34" href="#34">34</a> <em class="jxr_javadoccomment"> */</em> <a class="jxr_linenumber" name="35" href="#35">35</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">class</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/KeyValueScanFixture.html">KeyValueScanFixture</a> <strong class="jxr_keyword">extends</strong> CollectionBackedScanner { <a class="jxr_linenumber" name="36" href="#36">36</a> <strong class="jxr_keyword">public</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/KeyValueScanFixture.html">KeyValueScanFixture</a>(KeyValue.KVComparator comparator, <a class="jxr_linenumber" name="37" href="#37">37</a> KeyValue... incData) { <a class="jxr_linenumber" name="38" href="#38">38</a> <strong class="jxr_keyword">super</strong>(comparator, incData); <a class="jxr_linenumber" name="39" href="#39">39</a> } <a class="jxr_linenumber" name="40" href="#40">40</a> <a class="jxr_linenumber" name="41" href="#41">41</a> <strong class="jxr_keyword">public</strong> <strong class="jxr_keyword">static</strong> List&lt;KeyValueScanner&gt; scanFixture(KeyValue[] ... kvArrays) { <a class="jxr_linenumber" name="42" href="#42">42</a> ArrayList&lt;KeyValueScanner&gt; scanners = <strong class="jxr_keyword">new</strong> ArrayList&lt;KeyValueScanner&gt;(); <a class="jxr_linenumber" name="43" href="#43">43</a> <strong class="jxr_keyword">for</strong> (KeyValue [] kvs : kvArrays) { <a class="jxr_linenumber" name="44" href="#44">44</a> scanners.add(<strong class="jxr_keyword">new</strong> <a href="../../../../../org/apache/hadoop/hbase/regionserver/KeyValueScanFixture.html">KeyValueScanFixture</a>(KeyValue.COMPARATOR, kvs)); <a class="jxr_linenumber" name="45" href="#45">45</a> } <a class="jxr_linenumber" name="46" href="#46">46</a> <strong class="jxr_keyword">return</strong> scanners; <a class="jxr_linenumber" name="47" href="#47">47</a> } <a class="jxr_linenumber" name="48" href="#48">48</a> } </pre> <hr/><div id="footer">This page was automatically generated by <a href="http://maven.apache.org/">Maven</a></div></body> </html>
openstack_dashboard/dashboards/admin/volumes/templates/volumes/migrate_volume.html
openstack/horizon
{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Migrate Volume" %}{% endblock %} {% block main %} {% include 'admin/volumes/_migrate_volume.html' %} {% endblock %}
docs/api/zh/math/Cylindrical.html
donmccurdy/three.js
<!DOCTYPE html> <html lang="zh"> <head> <meta charset="utf-8" /> <base href="../../../" /> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> <h1>圆柱坐标([name])</h1> <p class="desc"> 一个点的[link:https://en.wikipedia.org/wiki/Cylindrical_coordinate_system cylindrical coordinates](圆柱坐标)。 </p> <h2>构造器(Constructor)</h2> <h3>[name]( [param:Float radius], [param:Float theta], [param:Float y] )</h3> <p> [page:Float radius] - 从原点到x-z平面上一点的距离 默认值为 *1.0*.<br /> [page:Float theta] - 在x-z平面内的逆时针角度,以z轴正方向的计算弧度。默认值为0。<br /> [page:Float y] - x-z平面以上的高度 默认值为 *0*. </p> <h2>属性(Properties)</h2> <h3>[property:Float radius]</h3> <h3>[property:Float theta]</h3> <h3>[property:Float y]</h3> <h2>Methods</h2> <h3>[method:Cylindrical clone]()</h3> <p> 返回一个与当前拥有相同 [page:.radius radius], [page:.theta theta] 和 [page:.y y] 属性的圆柱坐标。 </p> <h3>[method:this copy]( [param:Cylindrical other] )</h3> <p> 将传入的圆柱坐标对象的 [page:.radius radius], [page:.theta theta] 和 [page:.y y] 属性赋给当前对象。 </p> <h3>[method:this set]( [param:Float radius], [param:Float theta], [param:Float y] )</h3> <p>设置该对象的 [page:.radius radius], [page:.theta theta] 和 [page:.y y] 属性。</p> <h3>[method:this setFromVector3]( [param:Vector3 vec3] )</h3> <p> 从 [page:Vector3 Vector3] 中取x,y,z,并调用setFromCartesianCoords来设置圆柱坐标的 [page:.radius radius]、[page:.theta theta] 和 [page:.y y] 的属性值。 </p> <h3>[method:this setFromCartesianCoords]( [param:Float x], [param:Float y], [param:Float z] )</h3> <p> 使用笛卡尔坐标来设置该圆柱坐标中 [page:.radius radius], [page:.theta theta] 以及 [page:.y y] 的属性值。 </p> <h2>源码(Source)</h2> <p> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </p> </body> </html>
012/bin/coverage/jasmine-override.js.html
v0lkan/efficient-javascript
<!doctype html> <html> <head> <title>Code coverage report for ./jasmine-override.js</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta http-equiv="content-language" content="en-gb"> <link rel='stylesheet' href='../prettify.css'> <style type='text/css'> body, html { margin:0; padding: 0; } body { font-family: "Helvetic Neue", Helvetica,Arial; font-size: 10pt; } div.header, div.footer { background: #eee; padding: 1em; } div.header { z-index: 100; position: fixed; top: 0; border-bottom: 1px solid #666; width: 100%; } div.footer { border-top: 1px solid #666; } div.body { margin-top: 10em; } div.meta { font-size: 90%; text-align: center; } h1, h2, h3 { font-weight: normal; } h1 { font-size: 12pt; } h2 { font-size: 10pt; } pre { font-family: consolas, menlo, monaco, monospace; margin: 0; padding: 0; line-height: 14px; font-size: 14px; } div.path { font-size: 110%; } div.path a:link, div.path a:visited { color: #000; } table.coverage { border-collapse: collapse; margin:0; padding: 0 } table.coverage td { margin: 0; padding: 0; color: #111; vertical-align: top; } table.coverage td.line-count { width: 50px; text-align: right; padding-right: 5px; } table.coverage td.line-coverage { color: #777 !important; text-align: right; border-left: 1px solid #666; border-right: 1px solid #666; } table.coverage td.text { } table.coverage td span.cline-any { display: inline-block; padding: 0 5px; width: 40px; } table.coverage td span.cline-neutral { background: #eee; } table.coverage td span.cline-yes { background: #b5d592; color: #999; } table.coverage td span.cline-no { background: #fc8c84; } .cstat-yes { color: #111; } .cstat-no { background: #fc8c84; color: #111; } .fstat-no { background: #ffc520; color: #111 !important; } .cbranch-no { background: yellow !important; color: #111; } .missing-if-branch { display: inline-block; margin-right: 10px; position: relative; padding: 0 4px; background: black; color: yellow; xtext-decoration: line-through; } .missing-if-branch .typ { color: inherit !important; } .entity, .metric { font-weight: bold; } .metric { display: inline-block; border: 1px solid #333; padding: 0.3em; background: white; } .metric small { font-size: 80%; font-weight: normal; color: #666; } div.coverage-summary table { border-collapse: collapse; margin: 3em; font-size: 110%; } div.coverage-summary td, div.coverage-summary table th { margin: 0; padding: 0.25em 1em; border-top: 1px solid #666; border-bottom: 1px solid #666; } div.coverage-summary th { text-align: left; border: 1px solid #666; background: #eee; font-weight: normal; } div.coverage-summary th.file { border-right: none !important; } div.coverage-summary th.pic { border-left: none !important; text-align: right; } div.coverage-summary th.pct { border-right: none !important; } div.coverage-summary th.abs { border-left: none !important; text-align: right; } div.coverage-summary td.pct { text-align: right; border-left: 1px solid #666; } div.coverage-summary td.abs { text-align: right; font-size: 90%; color: #444; border-right: 1px solid #666; } div.coverage-summary td.file { text-align: right; border-left: 1px solid #666; white-space: nowrap; } div.coverage-summary td.pic { min-width: 120px !important; } div.coverage-summary a:link { text-decoration: none; color: #000; } div.coverage-summary a:visited { text-decoration: none; color: #333; } div.coverage-summary a:hover { text-decoration: underline; } div.coverage-summary tfoot td { border-top: 1px solid #666; } div.coverage-summary .yui3-datatable-sort-indicator, div.coverage-summary .dummy-sort-indicator { height: 10px; width: 7px; display: inline-block; margin-left: 0.5em; } div.coverage-summary .yui3-datatable-sort-indicator { background: url("http://yui.yahooapis.com/3.6.0/build/datatable-sort/assets/skins/sam/sort-arrow-sprite.png") no-repeat scroll 0 0 transparent; } div.coverage-summary .yui3-datatable-sorted .yui3-datatable-sort-indicator { background-position: 0 -20px; } div.coverage-summary .yui3-datatable-sorted-desc .yui3-datatable-sort-indicator { background-position: 0 -10px; } .high { background: #b5d592 !important; } .medium { background: #ffe87c !important; } .low { background: #fc8c84 !important; } span.cover-fill, span.cover-empty { display:inline-block; border:1px solid #444; background: white; height: 12px; } span.cover-fill { background: #ccc; border-right: 1px solid #444; } span.cover-empty { background: white; border-left: none; } span.cover-full { border-right: none !important; } pre.prettyprint { border: none !important; padding: 0 !important; margin: 0 !important; } .com { color: #999 !important; } </style> </head> <body> <div class='header high'> <h1>Code coverage report for <span class='entity'>./jasmine-override.js</span></h1> <h2> Statements: <span class='metric'>90.48% <small>(19 / 21)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; Branches: <span class='metric'>83.33% <small>(5 / 6)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; Functions: <span class='metric'>100% <small>(2 / 2)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; Lines: <span class='metric'>90.48% <small>(19 / 21)</small></span> &nbsp;&nbsp;&nbsp;&nbsp; </h2> <div class="path"><a href="../index.html">All files</a> &#187; <a href="index.html">./</a> &#187; jasmine-override.js</div> </div> <div class='body'> <pre><table class="coverage"> <tr><td class="line-count">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 31 32 33 34 35 36 37 38 39 40 41 42 43 44</td><td class="line-coverage"><span class="cline-any cline-yes">1</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">1</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">1</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-yes">10</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">10</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-no">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">2</span> <span class="cline-any cline-yes">2</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">3</span> <span class="cline-any cline-yes">2</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">5</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-neutral">&nbsp;</span> <span class="cline-any cline-yes">1</span> <span class="cline-any cline-yes">1</span> <span class="cline-any cline-neutral">&nbsp;</span></td><td class="text"><pre class="prettyprint lang-js">var theList = [ 'views/ToDoView', 'views/PageView' ]; &nbsp; var theCache = {}; &nbsp; &nbsp; &nbsp; window.define = function(items, factory) { var currentDefinition = theList.shift(); &nbsp; var i, len, item; &nbsp; var args = []; &nbsp; for (i = 0, len = items.length; i &lt; len; i++) { item = items[i]; &nbsp; switch (item) { case 'backbone': args.push(window.Backbone); break; <span class="branch-1 cbranch-no" title="branch not covered" > case 'jquery':</span> <span class="cstat-no" title="statement not covered" > args.push(window.jQuery);</span> <span class="cstat-no" title="statement not covered" > break;</span> case 'underscore': args.push(window._); break; default: if (theCache[item]) { args.push(theCache[item]); } } } &nbsp; theCache[currentDefinition] = factory.apply(null, args); &nbsp; return {}; }; &nbsp; window.require = function(name) { return theCache[name]; }</pre></td></tr> </table></pre> </div> <div class='footer'> <div class='meta'>Generated by <a href='http://istanbul-js.org' target='_blank'>istanbul</a> at Tue Mar 19 2013 14:27:55 GMT-0700 (PDT)</div> </div> </body> <script src="../prettify.js"></script> <script src="http://yui.yahooapis.com/3.6.0/build/yui/yui-min.js"></script> <script> YUI().use('datatable', function (Y) { var formatters = { pct: function (o) { o.className += o.record.get('classes')[o.column.key]; try { return o.value.toFixed(2) + '%'; } catch (ex) { return o.value + '%'; } }, html: function (o) { o.className += o.record.get('classes')[o.column.key]; return o.record.get(o.column.key + '_html'); } }, defaultFormatter = function (o) { o.className += o.record.get('classes')[o.column.key]; return o.value; }; function getColumns(theadNode) { var colNodes = theadNode.all('tr th'), cols = [], col; colNodes.each(function (colNode) { col = { key: colNode.getAttribute('data-col'), label: colNode.get('innerHTML') || ' ', sortable: !colNode.getAttribute('data-nosort'), className: colNode.getAttribute('class'), type: colNode.getAttribute('data-type'), allowHTML: colNode.getAttribute('data-html') === 'true' || colNode.getAttribute('data-fmt') === 'html' }; col.formatter = formatters[colNode.getAttribute('data-fmt')] || defaultFormatter; cols.push(col); }); return cols; } function getRowData(trNode, cols) { var tdNodes = trNode.all('td'), i, row = { classes: {} }, node, name; for (i = 0; i < cols.length; i += 1) { name = cols[i].key; node = tdNodes.item(i); row[name] = node.getAttribute('data-value') || node.get('innerHTML'); row[name + '_html'] = node.get('innerHTML'); row.classes[name] = node.getAttribute('class'); //Y.log('Name: ' + name + '; Value: ' + row[name]); if (cols[i].type === 'number') { row[name] = row[name] * 1; } } //Y.log(row); return row; } function getData(tbodyNode, cols) { var data = []; tbodyNode.all('tr').each(function (trNode) { data.push(getRowData(trNode, cols)); }); return data; } function replaceTable(node) { if (!node) { return; } var cols = getColumns(node.one('thead')), data = getData(node.one('tbody'), cols), table, parent = node.get('parentNode'); table = new Y.DataTable({ columns: cols, data: data, sortBy: 'file' }); parent.set('innerHTML', ''); table.render(parent); } Y.on('domready', function () { replaceTable(Y.one('div.coverage-summary table')); if (typeof prettyPrint === 'function') { prettyPrint(); } }); }); </script> </html>
node_modules/nod-validate/examples/04-configurations.html
diztinct-tim/ESL
<!doctype html> <html> <head> <meta charset='utf-8'> <title>Configurations</title> <link href='styles.css' rel='stylesheet'> <script src='../nod.js'></script> <style> .bravo-class { background: yellow; } .bravo-message-class { background: forestgreen; color: white; } .bummer-class { background: orange; } .bummer-message-class { background: purple; color: yellow; } </style> </head> <body> <div> <input class='foo'> </div> <div> <input class='bar'> </div> <button class='submit-btn'>submit button</button> <script> var myNod = nod(); myNod.configure({ // Let's remove the delay on showing error messages. delay: 0, // Adding a custom success message (will be shown for every // field). successMessage: 'Bravo!', // Adding our own classes. successClass: 'bravo-class', successMessageClass: 'bravo-message-class', errorClass: 'bummer-class', errorMessageClass: 'bummer-message-class', // Let's make nod disable the submit button if there are errors submit: '.submit-btn', disableSubmit: true, // We can also set a `tap` function, which listens in when // elements are being checked. Open your console and type in // stuff. tap: function (element, validate, result) { console.log({ element: element, validate: validate, result: result, value: element.value }); } }); myNod.add([{ selector: '.foo', validate: 'contains:hello', errorMessage: 'a "hello" must be in there somewhere...' }, { selector: '.bar', validate: 'same-as:.foo', errorMessage: 'Has to be the same as above' }]); </script> </body> </html>
example/index.html
who/candy
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Candy - Chats are not dead yet</title> <link rel="shortcut icon" href="../res/img/favicon.png" type="image/gif" /> <link rel="stylesheet" type="text/css" href="../res/default.css" /> <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script> <script type="text/javascript" src="../libs.min.js"></script> <script type="text/javascript" src="../candy.min.js"></script> <script type="text/javascript"> $(document).ready(function() { Candy.init('http-bind/', { core: { // only set this to true if developing / debugging errors debug: false, // autojoin is a *required* parameter if you don't have a plugin (e.g. roomPanel) for it // true // -> fetch info from server (NOTE: does only work with openfire server) // ['test@conference.example.com'] // -> array of rooms to join after connecting autojoin: true }, view: { assets: '../res/' } }); Candy.Core.connect(); /** * Thanks for trying Candy! * * If you need more information, please see here: * - Setup instructions & config params: http://candy-chat.github.io/candy/#setup * - FAQ & more: https://github.com/candy-chat/candy/wiki * * Mailinglist for questions: * - http://groups.google.com/group/candy-chat * * Github issues for bugs: * - https://github.com/candy-chat/candy/issues */ }); </script> </head> <body> <div id="candy"></div> </body> </html>
ajax/libs/bootswatch/4.1.3/lux/bootstrap.css
sashberd/cdnjs
/*! * Bootswatch v4.1.3 * Homepage: https://bootswatch.com * Copyright 2012-2018 Thomas Park * Licensed under MIT * Based on Bootstrap */ /*! * Bootstrap v4.1.3 (https://getbootstrap.com/) * Copyright 2011-2018 The Bootstrap Authors * Copyright 2011-2018 Twitter, Inc. * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) */ @import url("https://fonts.googleapis.com/css?family=Nunito+Sans:400,600"); :root { --blue: #007bff; --indigo: #6610f2; --purple: #6f42c1; --pink: #e83e8c; --red: #d9534f; --orange: #fd7e14; --yellow: #f0ad4e; --green: #4BBF73; --teal: #20c997; --cyan: #1F9BCF; --white: #fff; --gray: #919aa1; --gray-dark: #343a40; --primary: #1a1a1a; --secondary: #fff; --success: #4BBF73; --info: #1F9BCF; --warning: #f0ad4e; --danger: #d9534f; --light: #fff; --dark: #343a40; --breakpoint-xs: 0; --breakpoint-sm: 576px; --breakpoint-md: 768px; --breakpoint-lg: 992px; --breakpoint-xl: 1200px; --font-family-sans-serif: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } *, *::before, *::after { -webkit-box-sizing: border-box; box-sizing: border-box; } html { font-family: sans-serif; line-height: 1.15; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; -ms-overflow-style: scrollbar; -webkit-tap-highlight-color: transparent; } @-ms-viewport { width: device-width; } article, aside, figcaption, figure, footer, header, hgroup, main, nav, section { display: block; } body { margin: 0; font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-size: 0.875rem; font-weight: 400; line-height: 1.5; color: #919aa1; text-align: left; background-color: #fff; } [tabindex="-1"]:focus { outline: 0 !important; } hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; overflow: visible; } h1, h2, h3, h4, h5, h6 { margin-top: 0; margin-bottom: 0.5rem; } p { margin-top: 0; margin-bottom: 1rem; } abbr[title], abbr[data-original-title] { text-decoration: underline; -webkit-text-decoration: underline dotted; text-decoration: underline dotted; cursor: help; border-bottom: 0; } address { margin-bottom: 1rem; font-style: normal; line-height: inherit; } ol, ul, dl { margin-top: 0; margin-bottom: 1rem; } ol ol, ul ul, ol ul, ul ol { margin-bottom: 0; } dt { font-weight: 700; } dd { margin-bottom: .5rem; margin-left: 0; } blockquote { margin: 0 0 1rem; } dfn { font-style: italic; } b, strong { font-weight: bolder; } small { font-size: 80%; } sub, sup { position: relative; font-size: 75%; line-height: 0; vertical-align: baseline; } sub { bottom: -.25em; } sup { top: -.5em; } a { color: #1a1a1a; text-decoration: none; background-color: transparent; -webkit-text-decoration-skip: objects; } a:hover { color: black; text-decoration: underline; } a:not([href]):not([tabindex]) { color: inherit; text-decoration: none; } a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus { color: inherit; text-decoration: none; } a:not([href]):not([tabindex]):focus { outline: 0; } pre, code, kbd, samp { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; font-size: 1em; } pre { margin-top: 0; margin-bottom: 1rem; overflow: auto; -ms-overflow-style: scrollbar; } figure { margin: 0 0 1rem; } img { vertical-align: middle; border-style: none; } svg { overflow: hidden; vertical-align: middle; } table { border-collapse: collapse; } caption { padding-top: 0.75rem; padding-bottom: 0.75rem; color: #919aa1; text-align: left; caption-side: bottom; } th { text-align: inherit; } label { display: inline-block; margin-bottom: 0.5rem; } button { border-radius: 0; } button:focus { outline: 1px dotted; outline: 5px auto -webkit-focus-ring-color; } input, button, select, optgroup, textarea { margin: 0; font-family: inherit; font-size: inherit; line-height: inherit; } button, input { overflow: visible; } button, select { text-transform: none; } button, html [type="button"], [type="reset"], [type="submit"] { -webkit-appearance: button; } button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner { padding: 0; border-style: none; } input[type="radio"], input[type="checkbox"] { -webkit-box-sizing: border-box; box-sizing: border-box; padding: 0; } input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"] { -webkit-appearance: listbox; } textarea { overflow: auto; resize: vertical; } fieldset { min-width: 0; padding: 0; margin: 0; border: 0; } legend { display: block; width: 100%; max-width: 100%; padding: 0; margin-bottom: .5rem; font-size: 1.5rem; line-height: inherit; color: inherit; white-space: normal; } progress { vertical-align: baseline; } [type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; } [type="search"] { outline-offset: -2px; -webkit-appearance: none; } [type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration { -webkit-appearance: none; } ::-webkit-file-upload-button { font: inherit; -webkit-appearance: button; } output { display: inline-block; } summary { display: list-item; cursor: pointer; } template { display: none; } [hidden] { display: none !important; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { margin-bottom: 0.5rem; font-family: inherit; font-weight: 600; line-height: 1.2; color: #1a1a1a; } h1, .h1 { font-size: 2rem; } h2, .h2 { font-size: 1.75rem; } h3, .h3 { font-size: 1.5rem; } h4, .h4 { font-size: 1.25rem; } h5, .h5 { font-size: 1rem; } h6, .h6 { font-size: 0.75rem; } .lead { font-size: 1.09375rem; font-weight: 300; } .display-1 { font-size: 6rem; font-weight: 300; line-height: 1.2; } .display-2 { font-size: 5.5rem; font-weight: 300; line-height: 1.2; } .display-3 { font-size: 4.5rem; font-weight: 300; line-height: 1.2; } .display-4 { font-size: 3.5rem; font-weight: 300; line-height: 1.2; } hr { margin-top: 1rem; margin-bottom: 1rem; border: 0; border-top: 1px solid rgba(0, 0, 0, 0.1); } small, .small { font-size: 80%; font-weight: 400; } mark, .mark { padding: 0.2em; background-color: #fcf8e3; } .list-unstyled { padding-left: 0; list-style: none; } .list-inline { padding-left: 0; list-style: none; } .list-inline-item { display: inline-block; } .list-inline-item:not(:last-child) { margin-right: 0.5rem; } .initialism { font-size: 90%; text-transform: uppercase; } .blockquote { margin-bottom: 1rem; font-size: 1.09375rem; } .blockquote-footer { display: block; font-size: 80%; color: #919aa1; } .blockquote-footer::before { content: "\2014 \00A0"; } .img-fluid { max-width: 100%; height: auto; } .img-thumbnail { padding: 0.25rem; background-color: #fff; border: 1px solid #eceeef; border-radius: 0; max-width: 100%; height: auto; } .figure { display: inline-block; } .figure-img { margin-bottom: 0.5rem; line-height: 1; } .figure-caption { font-size: 90%; color: #919aa1; } code { font-size: 87.5%; color: #e83e8c; word-break: break-word; } a > code { color: inherit; } kbd { padding: 0.2rem 0.4rem; font-size: 87.5%; color: #fff; background-color: #1a1a1a; border-radius: 0; } kbd kbd { padding: 0; font-size: 100%; font-weight: 700; } pre { display: block; font-size: 87.5%; color: #1a1a1a; } pre code { font-size: inherit; color: inherit; word-break: normal; } .pre-scrollable { max-height: 340px; overflow-y: scroll; } .container { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } @media (min-width: 576px) { .container { max-width: 540px; } } @media (min-width: 768px) { .container { max-width: 720px; } } @media (min-width: 992px) { .container { max-width: 960px; } } @media (min-width: 1200px) { .container { max-width: 1140px; } } .container-fluid { width: 100%; padding-right: 15px; padding-left: 15px; margin-right: auto; margin-left: auto; } .row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -15px; margin-left: -15px; } .no-gutters { margin-right: 0; margin-left: 0; } .no-gutters > .col, .no-gutters > [class*="col-"] { padding-right: 0; padding-left: 0; } .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto { position: relative; width: 100%; min-height: 1px; padding-right: 15px; padding-left: 15px; } .col { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .col-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none; } .col-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333%; } .col-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667%; } .col-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .col-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333%; } .col-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667%; } .col-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .col-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333%; } .col-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667%; } .col-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .col-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333%; } .col-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667%; } .col-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .order-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; } .order-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13; } .order-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; } .order-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } .order-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .order-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; } .order-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; } .order-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; } .order-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6; } .order-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; } .order-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; } .order-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9; } .order-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10; } .order-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11; } .order-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12; } .offset-1 { margin-left: 8.3333333333%; } .offset-2 { margin-left: 16.6666666667%; } .offset-3 { margin-left: 25%; } .offset-4 { margin-left: 33.3333333333%; } .offset-5 { margin-left: 41.6666666667%; } .offset-6 { margin-left: 50%; } .offset-7 { margin-left: 58.3333333333%; } .offset-8 { margin-left: 66.6666666667%; } .offset-9 { margin-left: 75%; } .offset-10 { margin-left: 83.3333333333%; } .offset-11 { margin-left: 91.6666666667%; } @media (min-width: 576px) { .col-sm { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .col-sm-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none; } .col-sm-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333%; } .col-sm-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667%; } .col-sm-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .col-sm-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333%; } .col-sm-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667%; } .col-sm-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .col-sm-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333%; } .col-sm-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667%; } .col-sm-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .col-sm-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333%; } .col-sm-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667%; } .col-sm-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .order-sm-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; } .order-sm-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13; } .order-sm-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; } .order-sm-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } .order-sm-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .order-sm-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; } .order-sm-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; } .order-sm-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; } .order-sm-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6; } .order-sm-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; } .order-sm-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; } .order-sm-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9; } .order-sm-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10; } .order-sm-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11; } .order-sm-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12; } .offset-sm-0 { margin-left: 0; } .offset-sm-1 { margin-left: 8.3333333333%; } .offset-sm-2 { margin-left: 16.6666666667%; } .offset-sm-3 { margin-left: 25%; } .offset-sm-4 { margin-left: 33.3333333333%; } .offset-sm-5 { margin-left: 41.6666666667%; } .offset-sm-6 { margin-left: 50%; } .offset-sm-7 { margin-left: 58.3333333333%; } .offset-sm-8 { margin-left: 66.6666666667%; } .offset-sm-9 { margin-left: 75%; } .offset-sm-10 { margin-left: 83.3333333333%; } .offset-sm-11 { margin-left: 91.6666666667%; } } @media (min-width: 768px) { .col-md { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .col-md-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none; } .col-md-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333%; } .col-md-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667%; } .col-md-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .col-md-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333%; } .col-md-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667%; } .col-md-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .col-md-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333%; } .col-md-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667%; } .col-md-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .col-md-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333%; } .col-md-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667%; } .col-md-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .order-md-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; } .order-md-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13; } .order-md-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; } .order-md-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } .order-md-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .order-md-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; } .order-md-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; } .order-md-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; } .order-md-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6; } .order-md-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; } .order-md-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; } .order-md-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9; } .order-md-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10; } .order-md-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11; } .order-md-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12; } .offset-md-0 { margin-left: 0; } .offset-md-1 { margin-left: 8.3333333333%; } .offset-md-2 { margin-left: 16.6666666667%; } .offset-md-3 { margin-left: 25%; } .offset-md-4 { margin-left: 33.3333333333%; } .offset-md-5 { margin-left: 41.6666666667%; } .offset-md-6 { margin-left: 50%; } .offset-md-7 { margin-left: 58.3333333333%; } .offset-md-8 { margin-left: 66.6666666667%; } .offset-md-9 { margin-left: 75%; } .offset-md-10 { margin-left: 83.3333333333%; } .offset-md-11 { margin-left: 91.6666666667%; } } @media (min-width: 992px) { .col-lg { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .col-lg-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none; } .col-lg-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333%; } .col-lg-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667%; } .col-lg-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .col-lg-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333%; } .col-lg-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667%; } .col-lg-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .col-lg-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333%; } .col-lg-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667%; } .col-lg-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .col-lg-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333%; } .col-lg-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667%; } .col-lg-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .order-lg-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; } .order-lg-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13; } .order-lg-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; } .order-lg-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } .order-lg-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .order-lg-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; } .order-lg-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; } .order-lg-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; } .order-lg-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6; } .order-lg-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; } .order-lg-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; } .order-lg-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9; } .order-lg-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10; } .order-lg-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11; } .order-lg-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12; } .offset-lg-0 { margin-left: 0; } .offset-lg-1 { margin-left: 8.3333333333%; } .offset-lg-2 { margin-left: 16.6666666667%; } .offset-lg-3 { margin-left: 25%; } .offset-lg-4 { margin-left: 33.3333333333%; } .offset-lg-5 { margin-left: 41.6666666667%; } .offset-lg-6 { margin-left: 50%; } .offset-lg-7 { margin-left: 58.3333333333%; } .offset-lg-8 { margin-left: 66.6666666667%; } .offset-lg-9 { margin-left: 75%; } .offset-lg-10 { margin-left: 83.3333333333%; } .offset-lg-11 { margin-left: 91.6666666667%; } } @media (min-width: 1200px) { .col-xl { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; max-width: 100%; } .col-xl-auto { -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; width: auto; max-width: none; } .col-xl-1 { -webkit-box-flex: 0; -ms-flex: 0 0 8.3333333333%; flex: 0 0 8.3333333333%; max-width: 8.3333333333%; } .col-xl-2 { -webkit-box-flex: 0; -ms-flex: 0 0 16.6666666667%; flex: 0 0 16.6666666667%; max-width: 16.6666666667%; } .col-xl-3 { -webkit-box-flex: 0; -ms-flex: 0 0 25%; flex: 0 0 25%; max-width: 25%; } .col-xl-4 { -webkit-box-flex: 0; -ms-flex: 0 0 33.3333333333%; flex: 0 0 33.3333333333%; max-width: 33.3333333333%; } .col-xl-5 { -webkit-box-flex: 0; -ms-flex: 0 0 41.6666666667%; flex: 0 0 41.6666666667%; max-width: 41.6666666667%; } .col-xl-6 { -webkit-box-flex: 0; -ms-flex: 0 0 50%; flex: 0 0 50%; max-width: 50%; } .col-xl-7 { -webkit-box-flex: 0; -ms-flex: 0 0 58.3333333333%; flex: 0 0 58.3333333333%; max-width: 58.3333333333%; } .col-xl-8 { -webkit-box-flex: 0; -ms-flex: 0 0 66.6666666667%; flex: 0 0 66.6666666667%; max-width: 66.6666666667%; } .col-xl-9 { -webkit-box-flex: 0; -ms-flex: 0 0 75%; flex: 0 0 75%; max-width: 75%; } .col-xl-10 { -webkit-box-flex: 0; -ms-flex: 0 0 83.3333333333%; flex: 0 0 83.3333333333%; max-width: 83.3333333333%; } .col-xl-11 { -webkit-box-flex: 0; -ms-flex: 0 0 91.6666666667%; flex: 0 0 91.6666666667%; max-width: 91.6666666667%; } .col-xl-12 { -webkit-box-flex: 0; -ms-flex: 0 0 100%; flex: 0 0 100%; max-width: 100%; } .order-xl-first { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; } .order-xl-last { -webkit-box-ordinal-group: 14; -ms-flex-order: 13; order: 13; } .order-xl-0 { -webkit-box-ordinal-group: 1; -ms-flex-order: 0; order: 0; } .order-xl-1 { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; } .order-xl-2 { -webkit-box-ordinal-group: 3; -ms-flex-order: 2; order: 2; } .order-xl-3 { -webkit-box-ordinal-group: 4; -ms-flex-order: 3; order: 3; } .order-xl-4 { -webkit-box-ordinal-group: 5; -ms-flex-order: 4; order: 4; } .order-xl-5 { -webkit-box-ordinal-group: 6; -ms-flex-order: 5; order: 5; } .order-xl-6 { -webkit-box-ordinal-group: 7; -ms-flex-order: 6; order: 6; } .order-xl-7 { -webkit-box-ordinal-group: 8; -ms-flex-order: 7; order: 7; } .order-xl-8 { -webkit-box-ordinal-group: 9; -ms-flex-order: 8; order: 8; } .order-xl-9 { -webkit-box-ordinal-group: 10; -ms-flex-order: 9; order: 9; } .order-xl-10 { -webkit-box-ordinal-group: 11; -ms-flex-order: 10; order: 10; } .order-xl-11 { -webkit-box-ordinal-group: 12; -ms-flex-order: 11; order: 11; } .order-xl-12 { -webkit-box-ordinal-group: 13; -ms-flex-order: 12; order: 12; } .offset-xl-0 { margin-left: 0; } .offset-xl-1 { margin-left: 8.3333333333%; } .offset-xl-2 { margin-left: 16.6666666667%; } .offset-xl-3 { margin-left: 25%; } .offset-xl-4 { margin-left: 33.3333333333%; } .offset-xl-5 { margin-left: 41.6666666667%; } .offset-xl-6 { margin-left: 50%; } .offset-xl-7 { margin-left: 58.3333333333%; } .offset-xl-8 { margin-left: 66.6666666667%; } .offset-xl-9 { margin-left: 75%; } .offset-xl-10 { margin-left: 83.3333333333%; } .offset-xl-11 { margin-left: 91.6666666667%; } } .table { width: 100%; margin-bottom: 1rem; background-color: transparent; } .table th, .table td { padding: 0.75rem; vertical-align: top; border-top: 1px solid rgba(0, 0, 0, 0.05); } .table thead th { vertical-align: bottom; border-bottom: 2px solid rgba(0, 0, 0, 0.05); } .table tbody + tbody { border-top: 2px solid rgba(0, 0, 0, 0.05); } .table .table { background-color: #fff; } .table-sm th, .table-sm td { padding: 0.3rem; } .table-bordered { border: 1px solid rgba(0, 0, 0, 0.05); } .table-bordered th, .table-bordered td { border: 1px solid rgba(0, 0, 0, 0.05); } .table-bordered thead th, .table-bordered thead td { border-bottom-width: 2px; } .table-borderless th, .table-borderless td, .table-borderless thead th, .table-borderless tbody + tbody { border: 0; } .table-striped tbody tr:nth-of-type(odd) { background-color: rgba(0, 0, 0, 0.05); } .table-hover tbody tr:hover { background-color: rgba(0, 0, 0, 0.075); } .table-primary, .table-primary > th, .table-primary > td { background-color: #bfbfbf; } .table-hover .table-primary:hover { background-color: #b2b2b2; } .table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th { background-color: #b2b2b2; } .table-secondary, .table-secondary > th, .table-secondary > td { background-color: white; } .table-hover .table-secondary:hover { background-color: #f2f2f2; } .table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th { background-color: #f2f2f2; } .table-success, .table-success > th, .table-success > td { background-color: #cdedd8; } .table-hover .table-success:hover { background-color: #bae6c9; } .table-hover .table-success:hover > td, .table-hover .table-success:hover > th { background-color: #bae6c9; } .table-info, .table-info > th, .table-info > td { background-color: #c0e3f2; } .table-hover .table-info:hover { background-color: #abdaee; } .table-hover .table-info:hover > td, .table-hover .table-info:hover > th { background-color: #abdaee; } .table-warning, .table-warning > th, .table-warning > td { background-color: #fbe8cd; } .table-hover .table-warning:hover { background-color: #f9ddb5; } .table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th { background-color: #f9ddb5; } .table-danger, .table-danger > th, .table-danger > td { background-color: #f4cfce; } .table-hover .table-danger:hover { background-color: #efbbb9; } .table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th { background-color: #efbbb9; } .table-light, .table-light > th, .table-light > td { background-color: white; } .table-hover .table-light:hover { background-color: #f2f2f2; } .table-hover .table-light:hover > td, .table-hover .table-light:hover > th { background-color: #f2f2f2; } .table-dark, .table-dark > th, .table-dark > td { background-color: #c6c8ca; } .table-hover .table-dark:hover { background-color: #b9bbbe; } .table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th { background-color: #b9bbbe; } .table-active, .table-active > th, .table-active > td { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover { background-color: rgba(0, 0, 0, 0.075); } .table-hover .table-active:hover > td, .table-hover .table-active:hover > th { background-color: rgba(0, 0, 0, 0.075); } .table .thead-dark th { color: #fff; background-color: #1a1a1a; border-color: #2d2d2d; } .table .thead-light th { color: #55595c; background-color: #f7f7f9; border-color: rgba(0, 0, 0, 0.05); } .table-dark { color: #fff; background-color: #1a1a1a; } .table-dark th, .table-dark td, .table-dark thead th { border-color: #2d2d2d; } .table-dark.table-bordered { border: 0; } .table-dark.table-striped tbody tr:nth-of-type(odd) { background-color: rgba(255, 255, 255, 0.05); } .table-dark.table-hover tbody tr:hover { background-color: rgba(255, 255, 255, 0.075); } @media (max-width: 575.98px) { .table-responsive-sm { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .table-responsive-sm > .table-bordered { border: 0; } } @media (max-width: 767.98px) { .table-responsive-md { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .table-responsive-md > .table-bordered { border: 0; } } @media (max-width: 991.98px) { .table-responsive-lg { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .table-responsive-lg > .table-bordered { border: 0; } } @media (max-width: 1199.98px) { .table-responsive-xl { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .table-responsive-xl > .table-bordered { border: 0; } } .table-responsive { display: block; width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; -ms-overflow-style: -ms-autohiding-scrollbar; } .table-responsive > .table-bordered { border: 0; } .form-control { display: block; width: 100%; height: calc(2.8125rem + 0); padding: 0.75rem 2rem; font-size: 0.875rem; line-height: 1.5rem; color: #55595c; background-color: #f7f7f9; background-clip: padding-box; border: 0 solid #ced4da; border-radius: 0; -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media screen and (prefers-reduced-motion: reduce) { .form-control { -webkit-transition: none; transition: none; } } .form-control::-ms-expand { background-color: transparent; border: 0; } .form-control:focus { color: #55595c; background-color: #f7f7f9; border-color: #5a5a5a; outline: 0; -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .form-control::-webkit-input-placeholder { color: #919aa1; opacity: 1; } .form-control:-ms-input-placeholder { color: #919aa1; opacity: 1; } .form-control::-ms-input-placeholder { color: #919aa1; opacity: 1; } .form-control::placeholder { color: #919aa1; opacity: 1; } .form-control:disabled, .form-control[readonly] { background-color: #eceeef; opacity: 1; } select.form-control:focus::-ms-value { color: #55595c; background-color: #f7f7f9; } .form-control-file, .form-control-range { display: block; width: 100%; } .col-form-label { padding-top: calc(0.75rem + 0); padding-bottom: calc(0.75rem + 0); margin-bottom: 0; font-size: inherit; line-height: 1.5rem; } .col-form-label-lg { padding-top: calc(2rem + 0); padding-bottom: calc(2rem + 0); font-size: 1.09375rem; line-height: 1.5; } .col-form-label-sm { padding-top: calc(0.5rem + 0); padding-bottom: calc(0.5rem + 0); font-size: 0.765625rem; line-height: 1.5; } .form-control-plaintext { display: block; width: 100%; padding-top: 0.75rem; padding-bottom: 0.75rem; margin-bottom: 0; line-height: 1.5rem; color: #919aa1; background-color: transparent; border: solid transparent; border-width: 0 0; } .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg { padding-right: 0; padding-left: 0; } .form-control-sm { height: calc(2.1484375rem + 0); padding: 0.5rem 1rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0; } .form-control-lg { height: calc(5.640625rem + 0); padding: 2rem 3rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0; } select.form-control[size], select.form-control[multiple] { height: auto; } textarea.form-control { height: auto; } .form-group { margin-bottom: 1rem; } .form-text { display: block; margin-top: 0.25rem; } .form-row { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; margin-right: -5px; margin-left: -5px; } .form-row > .col, .form-row > [class*="col-"] { padding-right: 5px; padding-left: 5px; } .form-check { position: relative; display: block; padding-left: 1.25rem; } .form-check-input { position: absolute; margin-top: 0.3rem; margin-left: -1.25rem; } .form-check-input:disabled ~ .form-check-label { color: #919aa1; } .form-check-label { margin-bottom: 0; } .form-check-inline { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding-left: 0; margin-right: 0.75rem; } .form-check-inline .form-check-input { position: static; margin-top: 0; margin-right: 0.3125rem; margin-left: 0; } .valid-feedback { display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: #4BBF73; } .valid-tooltip { position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: .1rem; font-size: 0.765625rem; line-height: 1.5; color: #fff; background-color: rgba(75, 191, 115, 0.9); border-radius: 0; } .was-validated .form-control:valid, .form-control.is-valid, .was-validated .custom-select:valid, .custom-select.is-valid { border-color: #4BBF73; } .was-validated .form-control:valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .custom-select.is-valid:focus { border-color: #4BBF73; -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.25); box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.25); } .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip { display: block; } .was-validated .form-control-file:valid ~ .valid-feedback, .was-validated .form-control-file:valid ~ .valid-tooltip, .form-control-file.is-valid ~ .valid-feedback, .form-control-file.is-valid ~ .valid-tooltip { display: block; } .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label { color: #4BBF73; } .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip { display: block; } .was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label { color: #4BBF73; } .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before { background-color: #a9e0bc; } .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip { display: block; } .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before { background-color: #71cc90; } .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before { -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(75, 191, 115, 0.25); box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(75, 191, 115, 0.25); } .was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label { border-color: #4BBF73; } .was-validated .custom-file-input:valid ~ .custom-file-label::after, .custom-file-input.is-valid ~ .custom-file-label::after { border-color: inherit; } .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip { display: block; } .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label { -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.25); box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.25); } .invalid-feedback { display: none; width: 100%; margin-top: 0.25rem; font-size: 80%; color: #d9534f; } .invalid-tooltip { position: absolute; top: 100%; z-index: 5; display: none; max-width: 100%; padding: 0.25rem 0.5rem; margin-top: .1rem; font-size: 0.765625rem; line-height: 1.5; color: #fff; background-color: rgba(217, 83, 79, 0.9); border-radius: 0; } .was-validated .form-control:invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .custom-select.is-invalid { border-color: #d9534f; } .was-validated .form-control:invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus { border-color: #d9534f; -webkit-box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25); box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25); } .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip { display: block; } .was-validated .form-control-file:invalid ~ .invalid-feedback, .was-validated .form-control-file:invalid ~ .invalid-tooltip, .form-control-file.is-invalid ~ .invalid-feedback, .form-control-file.is-invalid ~ .invalid-tooltip { display: block; } .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label { color: #d9534f; } .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip { display: block; } .was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label { color: #d9534f; } .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before { background-color: #f0b9b8; } .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip { display: block; } .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before { background-color: #e27c79; } .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before { -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(217, 83, 79, 0.25); box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(217, 83, 79, 0.25); } .was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label { border-color: #d9534f; } .was-validated .custom-file-input:invalid ~ .custom-file-label::after, .custom-file-input.is-invalid ~ .custom-file-label::after { border-color: inherit; } .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip { display: block; } .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label { -webkit-box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25); box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.25); } .form-inline { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .form-inline .form-check { width: 100%; } @media (min-width: 576px) { .form-inline label { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; margin-bottom: 0; } .form-inline .form-group { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; margin-bottom: 0; } .form-inline .form-control { display: inline-block; width: auto; vertical-align: middle; } .form-inline .form-control-plaintext { display: inline-block; } .form-inline .input-group, .form-inline .custom-select { width: auto; } .form-inline .form-check { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; width: auto; padding-left: 0; } .form-inline .form-check-input { position: relative; margin-top: 0; margin-right: 0.25rem; margin-left: 0; } .form-inline .custom-control { -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .form-inline .custom-control-label { margin-bottom: 0; } } .btn { display: inline-block; font-weight: 600; text-align: center; white-space: nowrap; vertical-align: middle; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; border: 0 solid transparent; padding: 0.75rem 2rem; font-size: 0.875rem; line-height: 1.5rem; border-radius: 0; -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media screen and (prefers-reduced-motion: reduce) { .btn { -webkit-transition: none; transition: none; } } .btn:hover, .btn:focus { text-decoration: none; } .btn:focus, .btn.focus { outline: 0; -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .btn.disabled, .btn:disabled { opacity: 0.65; } .btn:not(:disabled):not(.disabled) { cursor: pointer; } a.btn.disabled, fieldset:disabled a.btn { pointer-events: none; } .btn-primary { color: #fff; background-color: #1a1a1a; border-color: #1a1a1a; } .btn-primary:hover { color: #fff; background-color: #070707; border-color: #010000; } .btn-primary:focus, .btn-primary.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); } .btn-primary.disabled, .btn-primary:disabled { color: #fff; background-color: #1a1a1a; border-color: #1a1a1a; } .btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active, .show > .btn-primary.dropdown-toggle { color: #fff; background-color: #010000; border-color: black; } .btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-primary.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); } .btn-secondary { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-secondary:hover { color: #1a1a1a; background-color: #ececec; border-color: #e6e5e5; } .btn-secondary:focus, .btn-secondary.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-secondary.disabled, .btn-secondary:disabled { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .show > .btn-secondary.dropdown-toggle { color: #1a1a1a; background-color: #e6e5e5; border-color: #dfdfdf; } .btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-secondary.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-success { color: #fff; background-color: #4BBF73; border-color: #4BBF73; } .btn-success:hover { color: #fff; background-color: #3ca861; border-color: #389f5c; } .btn-success:focus, .btn-success.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); } .btn-success.disabled, .btn-success:disabled { color: #fff; background-color: #4BBF73; border-color: #4BBF73; } .btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active, .show > .btn-success.dropdown-toggle { color: #fff; background-color: #389f5c; border-color: #359556; } .btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus, .show > .btn-success.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); } .btn-info { color: #fff; background-color: #1F9BCF; border-color: #1F9BCF; } .btn-info:hover { color: #fff; background-color: #1a82ae; border-color: #187aa3; } .btn-info:focus, .btn-info.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); } .btn-info.disabled, .btn-info:disabled { color: #fff; background-color: #1F9BCF; border-color: #1F9BCF; } .btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active, .show > .btn-info.dropdown-toggle { color: #fff; background-color: #187aa3; border-color: #177198; } .btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus, .show > .btn-info.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); } .btn-warning { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-warning:hover { color: #fff; background-color: #ed9d2b; border-color: #ec971f; } .btn-warning:focus, .btn-warning.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); } .btn-warning.disabled, .btn-warning:disabled { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active, .show > .btn-warning.dropdown-toggle { color: #fff; background-color: #ec971f; border-color: #ea9214; } .btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-warning.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); } .btn-danger { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-danger:hover { color: #fff; background-color: #d23430; border-color: #c9302c; } .btn-danger:focus, .btn-danger.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); } .btn-danger.disabled, .btn-danger:disabled { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active, .show > .btn-danger.dropdown-toggle { color: #fff; background-color: #c9302c; border-color: #bf2e29; } .btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-danger.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); } .btn-light { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-light:hover { color: #1a1a1a; background-color: #ececec; border-color: #e6e5e5; } .btn-light:focus, .btn-light.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-light.disabled, .btn-light:disabled { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active, .show > .btn-light.dropdown-toggle { color: #1a1a1a; background-color: #e6e5e5; border-color: #dfdfdf; } .btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus, .show > .btn-light.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-dark { color: #fff; background-color: #343a40; border-color: #343a40; } .btn-dark:hover { color: #fff; background-color: #23272b; border-color: #1d2124; } .btn-dark:focus, .btn-dark.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } .btn-dark.disabled, .btn-dark:disabled { color: #fff; background-color: #343a40; border-color: #343a40; } .btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active, .show > .btn-dark.dropdown-toggle { color: #fff; background-color: #1d2124; border-color: #171a1d; } .btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-dark.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } .btn-outline-primary { color: #1a1a1a; background-color: transparent; background-image: none; border-color: #1a1a1a; } .btn-outline-primary:hover { color: #fff; background-color: #1a1a1a; border-color: #1a1a1a; } .btn-outline-primary:focus, .btn-outline-primary.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); } .btn-outline-primary.disabled, .btn-outline-primary:disabled { color: #1a1a1a; background-color: transparent; } .btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active, .show > .btn-outline-primary.dropdown-toggle { color: #fff; background-color: #1a1a1a; border-color: #1a1a1a; } .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-primary.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.5); } .btn-outline-secondary { color: #fff; background-color: transparent; background-image: none; border-color: #fff; } .btn-outline-secondary:hover { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-outline-secondary:focus, .btn-outline-secondary.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-outline-secondary.disabled, .btn-outline-secondary:disabled { color: #fff; background-color: transparent; } .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .btn-outline-secondary.dropdown-toggle { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-outline-success { color: #4BBF73; background-color: transparent; background-image: none; border-color: #4BBF73; } .btn-outline-success:hover { color: #fff; background-color: #4BBF73; border-color: #4BBF73; } .btn-outline-success:focus, .btn-outline-success.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); } .btn-outline-success.disabled, .btn-outline-success:disabled { color: #4BBF73; background-color: transparent; } .btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active, .show > .btn-outline-success.dropdown-toggle { color: #fff; background-color: #4BBF73; border-color: #4BBF73; } .btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-success.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); box-shadow: 0 0 0 0.2rem rgba(75, 191, 115, 0.5); } .btn-outline-info { color: #1F9BCF; background-color: transparent; background-image: none; border-color: #1F9BCF; } .btn-outline-info:hover { color: #fff; background-color: #1F9BCF; border-color: #1F9BCF; } .btn-outline-info:focus, .btn-outline-info.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); } .btn-outline-info.disabled, .btn-outline-info:disabled { color: #1F9BCF; background-color: transparent; } .btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active, .show > .btn-outline-info.dropdown-toggle { color: #fff; background-color: #1F9BCF; border-color: #1F9BCF; } .btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-info.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); box-shadow: 0 0 0 0.2rem rgba(31, 155, 207, 0.5); } .btn-outline-warning { color: #f0ad4e; background-color: transparent; background-image: none; border-color: #f0ad4e; } .btn-outline-warning:hover { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-outline-warning:focus, .btn-outline-warning.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); } .btn-outline-warning.disabled, .btn-outline-warning:disabled { color: #f0ad4e; background-color: transparent; } .btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active, .show > .btn-outline-warning.dropdown-toggle { color: #fff; background-color: #f0ad4e; border-color: #f0ad4e; } .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-warning.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); box-shadow: 0 0 0 0.2rem rgba(240, 173, 78, 0.5); } .btn-outline-danger { color: #d9534f; background-color: transparent; background-image: none; border-color: #d9534f; } .btn-outline-danger:hover { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-outline-danger:focus, .btn-outline-danger.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); } .btn-outline-danger.disabled, .btn-outline-danger:disabled { color: #d9534f; background-color: transparent; } .btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active, .show > .btn-outline-danger.dropdown-toggle { color: #fff; background-color: #d9534f; border-color: #d9534f; } .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-danger.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); box-shadow: 0 0 0 0.2rem rgba(217, 83, 79, 0.5); } .btn-outline-light { color: #fff; background-color: transparent; background-image: none; border-color: #fff; } .btn-outline-light:hover { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-outline-light:focus, .btn-outline-light.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-outline-light.disabled, .btn-outline-light:disabled { color: #fff; background-color: transparent; } .btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active, .show > .btn-outline-light.dropdown-toggle { color: #1a1a1a; background-color: #fff; border-color: #fff; } .btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-light.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.5); } .btn-outline-dark { color: #343a40; background-color: transparent; background-image: none; border-color: #343a40; } .btn-outline-dark:hover { color: #fff; background-color: #343a40; border-color: #343a40; } .btn-outline-dark:focus, .btn-outline-dark.focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } .btn-outline-dark.disabled, .btn-outline-dark:disabled { color: #343a40; background-color: transparent; } .btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active, .show > .btn-outline-dark.dropdown-toggle { color: #fff; background-color: #343a40; border-color: #343a40; } .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .btn-outline-dark.dropdown-toggle:focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); } .btn-link { font-weight: 400; color: #1a1a1a; background-color: transparent; } .btn-link:hover { color: black; text-decoration: underline; background-color: transparent; border-color: transparent; } .btn-link:focus, .btn-link.focus { text-decoration: underline; border-color: transparent; -webkit-box-shadow: none; box-shadow: none; } .btn-link:disabled, .btn-link.disabled { color: #919aa1; pointer-events: none; } .btn-lg, .btn-group-lg > .btn { padding: 2rem 3rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0; } .btn-sm, .btn-group-sm > .btn { padding: 0.5rem 1rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0; } .btn-block { display: block; width: 100%; } .btn-block + .btn-block { margin-top: 0.5rem; } input[type="submit"].btn-block, input[type="reset"].btn-block, input[type="button"].btn-block { width: 100%; } .fade { -webkit-transition: opacity 0.15s linear; transition: opacity 0.15s linear; } @media screen and (prefers-reduced-motion: reduce) { .fade { -webkit-transition: none; transition: none; } } .fade:not(.show) { opacity: 0; } .collapse:not(.show) { display: none; } .collapsing { position: relative; height: 0; overflow: hidden; -webkit-transition: height 0.35s ease; transition: height 0.35s ease; } @media screen and (prefers-reduced-motion: reduce) { .collapsing { -webkit-transition: none; transition: none; } } .dropup, .dropright, .dropdown, .dropleft { position: relative; } .dropdown-toggle::after { display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid; border-right: 0.3em solid transparent; border-bottom: 0; border-left: 0.3em solid transparent; } .dropdown-toggle:empty::after { margin-left: 0; } .dropdown-menu { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 10rem; padding: 0.5rem 0; margin: 0.125rem 0 0; font-size: 0.875rem; color: #919aa1; text-align: left; list-style: none; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 0; } .dropdown-menu-right { right: 0; left: auto; } .dropup .dropdown-menu { top: auto; bottom: 100%; margin-top: 0; margin-bottom: 0.125rem; } .dropup .dropdown-toggle::after { display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0; border-right: 0.3em solid transparent; border-bottom: 0.3em solid; border-left: 0.3em solid transparent; } .dropup .dropdown-toggle:empty::after { margin-left: 0; } .dropright .dropdown-menu { top: 0; right: auto; left: 100%; margin-top: 0; margin-left: 0.125rem; } .dropright .dropdown-toggle::after { display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid transparent; border-right: 0; border-bottom: 0.3em solid transparent; border-left: 0.3em solid; } .dropright .dropdown-toggle:empty::after { margin-left: 0; } .dropright .dropdown-toggle::after { vertical-align: 0; } .dropleft .dropdown-menu { top: 0; right: 100%; left: auto; margin-top: 0; margin-right: 0.125rem; } .dropleft .dropdown-toggle::after { display: inline-block; width: 0; height: 0; margin-left: 0.255em; vertical-align: 0.255em; content: ""; } .dropleft .dropdown-toggle::after { display: none; } .dropleft .dropdown-toggle::before { display: inline-block; width: 0; height: 0; margin-right: 0.255em; vertical-align: 0.255em; content: ""; border-top: 0.3em solid transparent; border-right: 0.3em solid; border-bottom: 0.3em solid transparent; } .dropleft .dropdown-toggle:empty::after { margin-left: 0; } .dropleft .dropdown-toggle::before { vertical-align: 0; } .dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] { right: auto; bottom: auto; } .dropdown-divider { height: 0; margin: 0.5rem 0; overflow: hidden; border-top: 1px solid #f7f7f9; } .dropdown-item { display: block; width: 100%; padding: 0.25rem 1.5rem; clear: both; font-weight: 400; color: #1a1a1a; text-align: inherit; white-space: nowrap; background-color: transparent; border: 0; } .dropdown-item:hover, .dropdown-item:focus { color: #0d0d0d; text-decoration: none; background-color: #f8f9fa; } .dropdown-item.active, .dropdown-item:active { color: #fff; text-decoration: none; background-color: #1a1a1a; } .dropdown-item.disabled, .dropdown-item:disabled { color: #919aa1; background-color: transparent; } .dropdown-menu.show { display: block; } .dropdown-header { display: block; padding: 0.5rem 1.5rem; margin-bottom: 0; font-size: 0.765625rem; color: #919aa1; white-space: nowrap; } .dropdown-item-text { display: block; padding: 0.25rem 1.5rem; color: #1a1a1a; } .btn-group, .btn-group-vertical { position: relative; display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; vertical-align: middle; } .btn-group > .btn, .btn-group-vertical > .btn { position: relative; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; } .btn-group > .btn:hover, .btn-group-vertical > .btn:hover { z-index: 1; } .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active { z-index: 1; } .btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group { margin-left: 0; } .btn-toolbar { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .btn-toolbar .input-group { width: auto; } .btn-group > .btn:first-child { margin-left: 0; } .btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .btn-group:not(:last-child) > .btn { border-top-right-radius: 0; border-bottom-right-radius: 0; } .btn-group > .btn:not(:first-child), .btn-group > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-bottom-left-radius: 0; } .dropdown-toggle-split { padding-right: 1.5rem; padding-left: 1.5rem; } .dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropright .dropdown-toggle-split::after { margin-left: 0; } .dropleft .dropdown-toggle-split::before { margin-right: 0; } .btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split { padding-right: 0.75rem; padding-left: 0.75rem; } .btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split { padding-right: 2.25rem; padding-left: 2.25rem; } .btn-group-vertical { -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; } .btn-group-vertical .btn, .btn-group-vertical .btn-group { width: 100%; } .btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group { margin-top: 0; margin-left: 0; } .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .btn-group:not(:last-child) > .btn { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .btn-group:not(:first-child) > .btn { border-top-left-radius: 0; border-top-right-radius: 0; } .btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn { margin-bottom: 0; } .btn-group-toggle > .btn input[type="radio"], .btn-group-toggle > .btn input[type="checkbox"], .btn-group-toggle > .btn-group > .btn input[type="radio"], .btn-group-toggle > .btn-group > .btn input[type="checkbox"] { position: absolute; clip: rect(0, 0, 0, 0); pointer-events: none; } .input-group { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: stretch; -ms-flex-align: stretch; align-items: stretch; width: 100%; } .input-group > .form-control, .input-group > .custom-select, .input-group > .custom-file { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; width: 1%; margin-bottom: 0; } .input-group > .form-control + .form-control, .input-group > .form-control + .custom-select, .input-group > .form-control + .custom-file, .input-group > .custom-select + .form-control, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .custom-file, .input-group > .custom-file + .form-control, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .custom-file { margin-left: 0; } .input-group > .form-control:focus, .input-group > .custom-select:focus, .input-group > .custom-file .custom-file-input:focus ~ .custom-file-label { z-index: 3; } .input-group > .custom-file .custom-file-input:focus { z-index: 4; } .input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group > .form-control:not(:first-child), .input-group > .custom-select:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group > .custom-file { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::after { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group > .custom-file:not(:first-child) .custom-file-label { border-top-left-radius: 0; border-bottom-left-radius: 0; } .input-group-prepend, .input-group-append { display: -webkit-box; display: -ms-flexbox; display: flex; } .input-group-prepend .btn, .input-group-append .btn { position: relative; z-index: 2; } .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .input-group-text, .input-group-append .input-group-text + .btn { margin-left: 0; } .input-group-prepend { margin-right: 0; } .input-group-append { margin-left: 0; } .input-group-text { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; padding: 0.75rem 2rem; margin-bottom: 0; font-size: 0.875rem; font-weight: 400; line-height: 1.5rem; color: #55595c; text-align: center; white-space: nowrap; background-color: #eceeef; border: 0 solid #ced4da; border-radius: 0; } .input-group-text input[type="radio"], .input-group-text input[type="checkbox"] { margin-top: 0; } .input-group-lg > .form-control, .input-group-lg > .input-group-prepend > .input-group-text, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-append > .btn { height: calc(5.640625rem + 0); padding: 2rem 3rem; font-size: 1.09375rem; line-height: 1.5; border-radius: 0; } .input-group-sm > .form-control, .input-group-sm > .input-group-prepend > .input-group-text, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-append > .btn { height: calc(2.1484375rem + 0); padding: 0.5rem 1rem; font-size: 0.765625rem; line-height: 1.5; border-radius: 0; } .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text, .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child) { border-top-right-radius: 0; border-bottom-right-radius: 0; } .input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) { border-top-left-radius: 0; border-bottom-left-radius: 0; } .custom-control { position: relative; display: block; min-height: 1.3125rem; padding-left: 1.5rem; } .custom-control-inline { display: -webkit-inline-box; display: -ms-inline-flexbox; display: inline-flex; margin-right: 1rem; } .custom-control-input { position: absolute; z-index: -1; opacity: 0; } .custom-control-input:checked ~ .custom-control-label::before { color: #fff; background-color: #1a1a1a; } .custom-control-input:focus ~ .custom-control-label::before { -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(26, 26, 26, 0.25); box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .custom-control-input:active ~ .custom-control-label::before { color: #fff; background-color: #737373; } .custom-control-input:disabled ~ .custom-control-label { color: #919aa1; } .custom-control-input:disabled ~ .custom-control-label::before { background-color: #f7f7f9; } .custom-control-label { position: relative; margin-bottom: 0; } .custom-control-label::before { position: absolute; top: 0.15625rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; pointer-events: none; content: ""; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background-color: #eceeef; } .custom-control-label::after { position: absolute; top: 0.15625rem; left: -1.5rem; display: block; width: 1rem; height: 1rem; content: ""; background-repeat: no-repeat; background-position: center center; background-size: 50% 50%; } .custom-checkbox .custom-control-label::before { border-radius: 0; } .custom-checkbox .custom-control-input:checked ~ .custom-control-label::before { background-color: #1a1a1a; } .custom-checkbox .custom-control-input:checked ~ .custom-control-label::after { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E"); } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before { background-color: #1a1a1a; } .custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E"); } .custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(26, 26, 26, 0.5); } .custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before { background-color: rgba(26, 26, 26, 0.5); } .custom-radio .custom-control-label::before { border-radius: 50%; } .custom-radio .custom-control-input:checked ~ .custom-control-label::before { background-color: #1a1a1a; } .custom-radio .custom-control-input:checked ~ .custom-control-label::after { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E"); } .custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before { background-color: rgba(26, 26, 26, 0.5); } .custom-select { display: inline-block; width: 100%; height: calc(2.8125rem + 0); padding: 0.375rem 1.75rem 0.375rem 0.75rem; line-height: 1.5; color: #55595c; vertical-align: middle; background: #f7f7f9 url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right 0.75rem center; background-size: 8px 10px; border: 0 solid #ced4da; border-radius: 0; -webkit-appearance: none; -moz-appearance: none; appearance: none; } .custom-select:focus { border-color: #5a5a5a; outline: 0; -webkit-box-shadow: 0 0 0 0.2rem rgba(90, 90, 90, 0.5); box-shadow: 0 0 0 0.2rem rgba(90, 90, 90, 0.5); } .custom-select:focus::-ms-value { color: #55595c; background-color: #f7f7f9; } .custom-select[multiple], .custom-select[size]:not([size="1"]) { height: auto; padding-right: 0.75rem; background-image: none; } .custom-select:disabled { color: #919aa1; background-color: #f7f7f9; } .custom-select::-ms-expand { opacity: 0; } .custom-select-sm { height: calc(2.1484375rem + 0); padding-top: 0.375rem; padding-bottom: 0.375rem; font-size: 75%; } .custom-select-lg { height: calc(5.640625rem + 0); padding-top: 0.375rem; padding-bottom: 0.375rem; font-size: 125%; } .custom-file { position: relative; display: inline-block; width: 100%; height: calc(2.8125rem + 0); margin-bottom: 0; } .custom-file-input { position: relative; z-index: 2; width: 100%; height: calc(2.8125rem + 0); margin: 0; opacity: 0; } .custom-file-input:focus ~ .custom-file-label { border-color: #5a5a5a; -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .custom-file-input:focus ~ .custom-file-label::after { border-color: #5a5a5a; } .custom-file-input:disabled ~ .custom-file-label { background-color: #eceeef; } .custom-file-input:lang(en) ~ .custom-file-label::after { content: "Browse"; } .custom-file-label { position: absolute; top: 0; right: 0; left: 0; z-index: 1; height: calc(2.8125rem + 0); padding: 0.75rem 2rem; line-height: 1.5; color: #55595c; background-color: #f7f7f9; border: 0 solid #ced4da; border-radius: 0; } .custom-file-label::after { position: absolute; top: 0; right: 0; bottom: 0; z-index: 3; display: block; height: 2.8125rem; padding: 0.75rem 2rem; line-height: 1.5; color: #55595c; content: "Browse"; background-color: #eceeef; border-left: 0 solid #ced4da; border-radius: 0 0 0 0; } .custom-range { width: 100%; padding-left: 0; background-color: transparent; -webkit-appearance: none; -moz-appearance: none; appearance: none; } .custom-range:focus { outline: none; } .custom-range:focus::-webkit-slider-thumb { -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(26, 26, 26, 0.25); box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .custom-range:focus::-moz-range-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .custom-range:focus::-ms-thumb { box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .custom-range::-moz-focus-outer { border: 0; } .custom-range::-webkit-slider-thumb { width: 1rem; height: 1rem; margin-top: -0.25rem; background-color: #1a1a1a; border: 0; border-radius: 1rem; -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -webkit-appearance: none; appearance: none; } @media screen and (prefers-reduced-motion: reduce) { .custom-range::-webkit-slider-thumb { -webkit-transition: none; transition: none; } } .custom-range::-webkit-slider-thumb:active { background-color: #737373; } .custom-range::-webkit-slider-runnable-track { width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: #eceeef; border-color: transparent; border-radius: 1rem; } .custom-range::-moz-range-thumb { width: 1rem; height: 1rem; background-color: #1a1a1a; border: 0; border-radius: 1rem; -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; -moz-appearance: none; appearance: none; } @media screen and (prefers-reduced-motion: reduce) { .custom-range::-moz-range-thumb { -webkit-transition: none; transition: none; } } .custom-range::-moz-range-thumb:active { background-color: #737373; } .custom-range::-moz-range-track { width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: #eceeef; border-color: transparent; border-radius: 1rem; } .custom-range::-ms-thumb { width: 1rem; height: 1rem; margin-top: 0; margin-right: 0.2rem; margin-left: 0.2rem; background-color: #1a1a1a; border: 0; border-radius: 1rem; -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; appearance: none; } @media screen and (prefers-reduced-motion: reduce) { .custom-range::-ms-thumb { -webkit-transition: none; transition: none; } } .custom-range::-ms-thumb:active { background-color: #737373; } .custom-range::-ms-track { width: 100%; height: 0.5rem; color: transparent; cursor: pointer; background-color: transparent; border-color: transparent; border-width: 0.5rem; } .custom-range::-ms-fill-lower { background-color: #eceeef; border-radius: 1rem; } .custom-range::-ms-fill-upper { margin-right: 15px; background-color: #eceeef; border-radius: 1rem; } .custom-control-label::before, .custom-file-label, .custom-select { -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; } @media screen and (prefers-reduced-motion: reduce) { .custom-control-label::before, .custom-file-label, .custom-select { -webkit-transition: none; transition: none; } } .nav { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding-left: 0; margin-bottom: 0; list-style: none; } .nav-link { display: block; padding: 0.5rem 1rem; } .nav-link:hover, .nav-link:focus { text-decoration: none; } .nav-link.disabled { color: #919aa1; } .nav-tabs { border-bottom: 1px solid #eceeef; } .nav-tabs .nav-item { margin-bottom: -1px; } .nav-tabs .nav-link { border: 1px solid transparent; border-top-left-radius: 0; border-top-right-radius: 0; } .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus { border-color: #f7f7f9 #f7f7f9 #eceeef; } .nav-tabs .nav-link.disabled { color: #919aa1; background-color: transparent; border-color: transparent; } .nav-tabs .nav-link.active, .nav-tabs .nav-item.show .nav-link { color: #55595c; background-color: #fff; border-color: #eceeef #eceeef #fff; } .nav-tabs .dropdown-menu { margin-top: -1px; border-top-left-radius: 0; border-top-right-radius: 0; } .nav-pills .nav-link { border-radius: 0; } .nav-pills .nav-link.active, .nav-pills .show > .nav-link { color: #fff; background-color: #1a1a1a; } .nav-fill .nav-item { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; text-align: center; } .nav-justified .nav-item { -ms-flex-preferred-size: 0; flex-basis: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; text-align: center; } .tab-content > .tab-pane { display: none; } .tab-content > .active { display: block; } .navbar { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 1.5rem 1rem; } .navbar > .container, .navbar > .container-fluid { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; } .navbar-brand { display: inline-block; padding-top: 0.3359375rem; padding-bottom: 0.3359375rem; margin-right: 1rem; font-size: 1.09375rem; line-height: inherit; white-space: nowrap; } .navbar-brand:hover, .navbar-brand:focus { text-decoration: none; } .navbar-nav { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0; list-style: none; } .navbar-nav .nav-link { padding-right: 0; padding-left: 0; } .navbar-nav .dropdown-menu { position: static; float: none; } .navbar-text { display: inline-block; padding-top: 0.5rem; padding-bottom: 0.5rem; } .navbar-collapse { -ms-flex-preferred-size: 100%; flex-basis: 100%; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; -webkit-box-align: center; -ms-flex-align: center; align-items: center; } .navbar-toggler { padding: 0.25rem 0.75rem; font-size: 1.09375rem; line-height: 1; background-color: transparent; border: 1px solid transparent; border-radius: 0; } .navbar-toggler:hover, .navbar-toggler:focus { text-decoration: none; } .navbar-toggler:not(:disabled):not(.disabled) { cursor: pointer; } .navbar-toggler-icon { display: inline-block; width: 1.5em; height: 1.5em; vertical-align: middle; content: ""; background: no-repeat center center; background-size: 100% 100%; } @media (max-width: 575.98px) { .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid { padding-right: 0; padding-left: 0; } } @media (min-width: 576px) { .navbar-expand-sm { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-sm .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-sm .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-sm .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .navbar-expand-sm .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-sm .navbar-toggler { display: none; } } @media (max-width: 767.98px) { .navbar-expand-md > .container, .navbar-expand-md > .container-fluid { padding-right: 0; padding-left: 0; } } @media (min-width: 768px) { .navbar-expand-md { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-md .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-md .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-md .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-md > .container, .navbar-expand-md > .container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .navbar-expand-md .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-md .navbar-toggler { display: none; } } @media (max-width: 991.98px) { .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid { padding-right: 0; padding-left: 0; } } @media (min-width: 992px) { .navbar-expand-lg { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-lg .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-lg .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-lg .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .navbar-expand-lg .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-lg .navbar-toggler { display: none; } } @media (max-width: 1199.98px) { .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid { padding-right: 0; padding-left: 0; } } @media (min-width: 1200px) { .navbar-expand-xl { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand-xl .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand-xl .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand-xl .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .navbar-expand-xl .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand-xl .navbar-toggler { display: none; } } .navbar-expand { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row nowrap; flex-flow: row nowrap; -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; } .navbar-expand > .container, .navbar-expand > .container-fluid { padding-right: 0; padding-left: 0; } .navbar-expand .navbar-nav { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-direction: row; flex-direction: row; } .navbar-expand .navbar-nav .dropdown-menu { position: absolute; } .navbar-expand .navbar-nav .nav-link { padding-right: 0.5rem; padding-left: 0.5rem; } .navbar-expand > .container, .navbar-expand > .container-fluid { -ms-flex-wrap: nowrap; flex-wrap: nowrap; } .navbar-expand .navbar-collapse { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; -ms-flex-preferred-size: auto; flex-basis: auto; } .navbar-expand .navbar-toggler { display: none; } .navbar-light .navbar-brand { color: #1a1a1a; } .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus { color: #1a1a1a; } .navbar-light .navbar-nav .nav-link { color: rgba(0, 0, 0, 0.3); } .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus { color: #1a1a1a; } .navbar-light .navbar-nav .nav-link.disabled { color: rgba(0, 0, 0, 0.3); } .navbar-light .navbar-nav .show > .nav-link, .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .nav-link.active { color: #1a1a1a; } .navbar-light .navbar-toggler { color: rgba(0, 0, 0, 0.3); border-color: rgba(0, 0, 0, 0.1); } .navbar-light .navbar-toggler-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.3)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } .navbar-light .navbar-text { color: rgba(0, 0, 0, 0.3); } .navbar-light .navbar-text a { color: #1a1a1a; } .navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus { color: #1a1a1a; } .navbar-dark .navbar-brand { color: #fff; } .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus { color: #fff; } .navbar-dark .navbar-nav .nav-link { color: rgba(255, 255, 255, 0.5); } .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus { color: #fff; } .navbar-dark .navbar-nav .nav-link.disabled { color: rgba(255, 255, 255, 0.25); } .navbar-dark .navbar-nav .show > .nav-link, .navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .nav-link.active { color: #fff; } .navbar-dark .navbar-toggler { color: rgba(255, 255, 255, 0.5); border-color: rgba(255, 255, 255, 0.1); } .navbar-dark .navbar-toggler-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E"); } .navbar-dark .navbar-text { color: rgba(255, 255, 255, 0.5); } .navbar-dark .navbar-text a { color: #fff; } .navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus { color: #fff; } .card { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; min-width: 0; word-wrap: break-word; background-color: #fff; background-clip: border-box; border: 1px solid rgba(0, 0, 0, 0.125); border-radius: 0; } .card > hr { margin-right: 0; margin-left: 0; } .card > .list-group:first-child .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .card > .list-group:last-child .list-group-item:last-child { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .card-body { -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1.25rem; } .card-title { margin-bottom: 0.75rem; } .card-subtitle { margin-top: -0.375rem; margin-bottom: 0; } .card-text:last-child { margin-bottom: 0; } .card-link:hover { text-decoration: none; } .card-link + .card-link { margin-left: 1.25rem; } .card-header { padding: 0.75rem 1.25rem; margin-bottom: 0; background-color: rgba(0, 0, 0, 0.03); border-bottom: 1px solid rgba(0, 0, 0, 0.125); } .card-header:first-child { border-radius: calc(0 - 1px) calc(0 - 1px) 0 0; } .card-header + .list-group .list-group-item:first-child { border-top: 0; } .card-footer { padding: 0.75rem 1.25rem; background-color: rgba(0, 0, 0, 0.03); border-top: 1px solid rgba(0, 0, 0, 0.125); } .card-footer:last-child { border-radius: 0 0 calc(0 - 1px) calc(0 - 1px); } .card-header-tabs { margin-right: -0.625rem; margin-bottom: -0.75rem; margin-left: -0.625rem; border-bottom: 0; } .card-header-pills { margin-right: -0.625rem; margin-left: -0.625rem; } .card-img-overlay { position: absolute; top: 0; right: 0; bottom: 0; left: 0; padding: 1.25rem; } .card-img { width: 100%; border-radius: calc(0 - 1px); } .card-img-top { width: 100%; border-top-left-radius: calc(0 - 1px); border-top-right-radius: calc(0 - 1px); } .card-img-bottom { width: 100%; border-bottom-right-radius: calc(0 - 1px); border-bottom-left-radius: calc(0 - 1px); } .card-deck { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .card-deck .card { margin-bottom: 15px; } @media (min-width: 576px) { .card-deck { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; margin-right: -15px; margin-left: -15px; } .card-deck .card { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; margin-right: 15px; margin-bottom: 0; margin-left: 15px; } } .card-group { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; } .card-group > .card { margin-bottom: 15px; } @media (min-width: 576px) { .card-group { -webkit-box-orient: horizontal; -webkit-box-direction: normal; -ms-flex-flow: row wrap; flex-flow: row wrap; } .card-group > .card { -webkit-box-flex: 1; -ms-flex: 1 0 0%; flex: 1 0 0%; margin-bottom: 0; } .card-group > .card + .card { margin-left: 0; border-left: 0; } .card-group > .card:first-child { border-top-right-radius: 0; border-bottom-right-radius: 0; } .card-group > .card:first-child .card-img-top, .card-group > .card:first-child .card-header { border-top-right-radius: 0; } .card-group > .card:first-child .card-img-bottom, .card-group > .card:first-child .card-footer { border-bottom-right-radius: 0; } .card-group > .card:last-child { border-top-left-radius: 0; border-bottom-left-radius: 0; } .card-group > .card:last-child .card-img-top, .card-group > .card:last-child .card-header { border-top-left-radius: 0; } .card-group > .card:last-child .card-img-bottom, .card-group > .card:last-child .card-footer { border-bottom-left-radius: 0; } .card-group > .card:only-child { border-radius: 0; } .card-group > .card:only-child .card-img-top, .card-group > .card:only-child .card-header { border-top-left-radius: 0; border-top-right-radius: 0; } .card-group > .card:only-child .card-img-bottom, .card-group > .card:only-child .card-footer { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .card-group > .card:not(:first-child):not(:last-child):not(:only-child) { border-radius: 0; } .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer { border-radius: 0; } } .card-columns .card { margin-bottom: 0.75rem; } @media (min-width: 576px) { .card-columns { -webkit-column-count: 3; column-count: 3; -webkit-column-gap: 1.25rem; column-gap: 1.25rem; orphans: 1; widows: 1; } .card-columns .card { display: inline-block; width: 100%; } } .accordion .card:not(:first-of-type):not(:last-of-type) { border-bottom: 0; border-radius: 0; } .accordion .card:not(:first-of-type) .card-header:first-child { border-radius: 0; } .accordion .card:first-of-type { border-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .accordion .card:last-of-type { border-top-left-radius: 0; border-top-right-radius: 0; } .breadcrumb { display: -webkit-box; display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; padding: 0.75rem 1rem; margin-bottom: 1rem; list-style: none; background-color: transparent; border-radius: 0; } .breadcrumb-item + .breadcrumb-item { padding-left: 0.5rem; } .breadcrumb-item + .breadcrumb-item::before { display: inline-block; padding-right: 0.5rem; color: #919aa1; content: "/"; } .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: underline; } .breadcrumb-item + .breadcrumb-item:hover::before { text-decoration: none; } .breadcrumb-item.active { color: #919aa1; } .pagination { display: -webkit-box; display: -ms-flexbox; display: flex; padding-left: 0; list-style: none; border-radius: 0; } .page-link { position: relative; display: block; padding: 0.5rem 0.75rem; margin-left: -1px; line-height: 1.25; color: #1a1a1a; background-color: #fff; border: 1px solid transparent; } .page-link:hover { z-index: 2; color: black; text-decoration: none; background-color: #f7f7f9; border-color: transparent; } .page-link:focus { z-index: 2; outline: 0; -webkit-box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); box-shadow: 0 0 0 0.2rem rgba(26, 26, 26, 0.25); } .page-link:not(:disabled):not(.disabled) { cursor: pointer; } .page-item:first-child .page-link { margin-left: 0; border-top-left-radius: 0; border-bottom-left-radius: 0; } .page-item:last-child .page-link { border-top-right-radius: 0; border-bottom-right-radius: 0; } .page-item.active .page-link { z-index: 1; color: #fff; background-color: #1a1a1a; border-color: #1a1a1a; } .page-item.disabled .page-link { color: #919aa1; pointer-events: none; cursor: auto; background-color: #fff; border-color: transparent; } .pagination-lg .page-link { padding: 0.75rem 1.5rem; font-size: 1.09375rem; line-height: 1.5; } .pagination-lg .page-item:first-child .page-link { border-top-left-radius: 0; border-bottom-left-radius: 0; } .pagination-lg .page-item:last-child .page-link { border-top-right-radius: 0; border-bottom-right-radius: 0; } .pagination-sm .page-link { padding: 0.25rem 0.5rem; font-size: 0.765625rem; line-height: 1.5; } .pagination-sm .page-item:first-child .page-link { border-top-left-radius: 0; border-bottom-left-radius: 0; } .pagination-sm .page-item:last-child .page-link { border-top-right-radius: 0; border-bottom-right-radius: 0; } .badge { display: inline-block; padding: 0.25em 0.4em; font-size: 75%; font-weight: 700; line-height: 1; text-align: center; white-space: nowrap; vertical-align: baseline; border-radius: 0; } .badge:empty { display: none; } .btn .badge { position: relative; top: -1px; } .badge-pill { padding-right: 0.6em; padding-left: 0.6em; border-radius: 10rem; } .badge-primary { color: #fff; background-color: #1a1a1a; } .badge-primary[href]:hover, .badge-primary[href]:focus { color: #fff; text-decoration: none; background-color: #010000; } .badge-secondary { color: #1a1a1a; background-color: #fff; } .badge-secondary[href]:hover, .badge-secondary[href]:focus { color: #1a1a1a; text-decoration: none; background-color: #e6e5e5; } .badge-success { color: #fff; background-color: #4BBF73; } .badge-success[href]:hover, .badge-success[href]:focus { color: #fff; text-decoration: none; background-color: #389f5c; } .badge-info { color: #fff; background-color: #1F9BCF; } .badge-info[href]:hover, .badge-info[href]:focus { color: #fff; text-decoration: none; background-color: #187aa3; } .badge-warning { color: #fff; background-color: #f0ad4e; } .badge-warning[href]:hover, .badge-warning[href]:focus { color: #fff; text-decoration: none; background-color: #ec971f; } .badge-danger { color: #fff; background-color: #d9534f; } .badge-danger[href]:hover, .badge-danger[href]:focus { color: #fff; text-decoration: none; background-color: #c9302c; } .badge-light { color: #1a1a1a; background-color: #fff; } .badge-light[href]:hover, .badge-light[href]:focus { color: #1a1a1a; text-decoration: none; background-color: #e6e5e5; } .badge-dark { color: #fff; background-color: #343a40; } .badge-dark[href]:hover, .badge-dark[href]:focus { color: #fff; text-decoration: none; background-color: #1d2124; } .jumbotron { padding: 2rem 1rem; margin-bottom: 2rem; background-color: #f7f7f9; border-radius: 0; } @media (min-width: 576px) { .jumbotron { padding: 4rem 2rem; } } .jumbotron-fluid { padding-right: 0; padding-left: 0; border-radius: 0; } .alert { position: relative; padding: 0.75rem 1.25rem; margin-bottom: 1rem; border: 1px solid transparent; border-radius: 0; } .alert-heading { color: inherit; } .alert-link { font-weight: 700; } .alert-dismissible { padding-right: 3.8125rem; } .alert-dismissible .close { position: absolute; top: 0; right: 0; padding: 0.75rem 1.25rem; color: inherit; } .alert-primary { color: #0e0e0e; background-color: #d1d1d1; border-color: #bfbfbf; } .alert-primary hr { border-top-color: #b2b2b2; } .alert-primary .alert-link { color: black; } .alert-secondary { color: #858585; background-color: white; border-color: white; } .alert-secondary hr { border-top-color: #f2f2f2; } .alert-secondary .alert-link { color: #6c6b6b; } .alert-success { color: #27633c; background-color: #dbf2e3; border-color: #cdedd8; } .alert-success hr { border-top-color: #bae6c9; } .alert-success .alert-link { color: #193e26; } .alert-info { color: #10516c; background-color: #d2ebf5; border-color: #c0e3f2; } .alert-info hr { border-top-color: #abdaee; } .alert-info .alert-link { color: #093040; } .alert-warning { color: #7d5a29; background-color: #fcefdc; border-color: #fbe8cd; } .alert-warning hr { border-top-color: #f9ddb5; } .alert-warning .alert-link { color: #573e1c; } .alert-danger { color: #712b29; background-color: #f7dddc; border-color: #f4cfce; } .alert-danger hr { border-top-color: #efbbb9; } .alert-danger .alert-link { color: #4c1d1b; } .alert-light { color: #858585; background-color: white; border-color: white; } .alert-light hr { border-top-color: #f2f2f2; } .alert-light .alert-link { color: #6c6b6b; } .alert-dark { color: #1b1e21; background-color: #d6d8d9; border-color: #c6c8ca; } .alert-dark hr { border-top-color: #b9bbbe; } .alert-dark .alert-link { color: #040505; } @-webkit-keyframes progress-bar-stripes { from { background-position: 1rem 0; } to { background-position: 0 0; } } @keyframes progress-bar-stripes { from { background-position: 1rem 0; } to { background-position: 0 0; } } .progress { display: -webkit-box; display: -ms-flexbox; display: flex; height: 1rem; overflow: hidden; font-size: 0.65625rem; background-color: #f7f7f9; border-radius: 0; } .progress-bar { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; color: #fff; text-align: center; white-space: nowrap; background-color: #1a1a1a; -webkit-transition: width 0.6s ease; transition: width 0.6s ease; } @media screen and (prefers-reduced-motion: reduce) { .progress-bar { -webkit-transition: none; transition: none; } } .progress-bar-striped { background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); background-size: 1rem 1rem; } .progress-bar-animated { -webkit-animation: progress-bar-stripes 1s linear infinite; animation: progress-bar-stripes 1s linear infinite; } .media { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; } .media-body { -webkit-box-flex: 1; -ms-flex: 1; flex: 1; } .list-group { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; padding-left: 0; margin-bottom: 0; } .list-group-item-action { width: 100%; color: #55595c; text-align: inherit; } .list-group-item-action:hover, .list-group-item-action:focus { color: #55595c; text-decoration: none; background-color: #f8f9fa; } .list-group-item-action:active { color: #919aa1; background-color: #f7f7f9; } .list-group-item { position: relative; display: block; padding: 0.75rem 1.25rem; margin-bottom: -1px; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.125); } .list-group-item:first-child { border-top-left-radius: 0; border-top-right-radius: 0; } .list-group-item:last-child { margin-bottom: 0; border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .list-group-item:hover, .list-group-item:focus { z-index: 1; text-decoration: none; } .list-group-item.disabled, .list-group-item:disabled { color: #919aa1; background-color: #fff; } .list-group-item.active { z-index: 2; color: #fff; background-color: #1a1a1a; border-color: #1a1a1a; } .list-group-flush .list-group-item { border-right: 0; border-left: 0; border-radius: 0; } .list-group-flush:first-child .list-group-item:first-child { border-top: 0; } .list-group-flush:last-child .list-group-item:last-child { border-bottom: 0; } .list-group-item-primary { color: #0e0e0e; background-color: #bfbfbf; } .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus { color: #0e0e0e; background-color: #b2b2b2; } .list-group-item-primary.list-group-item-action.active { color: #fff; background-color: #0e0e0e; border-color: #0e0e0e; } .list-group-item-secondary { color: #858585; background-color: white; } .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus { color: #858585; background-color: #f2f2f2; } .list-group-item-secondary.list-group-item-action.active { color: #fff; background-color: #858585; border-color: #858585; } .list-group-item-success { color: #27633c; background-color: #cdedd8; } .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus { color: #27633c; background-color: #bae6c9; } .list-group-item-success.list-group-item-action.active { color: #fff; background-color: #27633c; border-color: #27633c; } .list-group-item-info { color: #10516c; background-color: #c0e3f2; } .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus { color: #10516c; background-color: #abdaee; } .list-group-item-info.list-group-item-action.active { color: #fff; background-color: #10516c; border-color: #10516c; } .list-group-item-warning { color: #7d5a29; background-color: #fbe8cd; } .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus { color: #7d5a29; background-color: #f9ddb5; } .list-group-item-warning.list-group-item-action.active { color: #fff; background-color: #7d5a29; border-color: #7d5a29; } .list-group-item-danger { color: #712b29; background-color: #f4cfce; } .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus { color: #712b29; background-color: #efbbb9; } .list-group-item-danger.list-group-item-action.active { color: #fff; background-color: #712b29; border-color: #712b29; } .list-group-item-light { color: #858585; background-color: white; } .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus { color: #858585; background-color: #f2f2f2; } .list-group-item-light.list-group-item-action.active { color: #fff; background-color: #858585; border-color: #858585; } .list-group-item-dark { color: #1b1e21; background-color: #c6c8ca; } .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus { color: #1b1e21; background-color: #b9bbbe; } .list-group-item-dark.list-group-item-action.active { color: #fff; background-color: #1b1e21; border-color: #1b1e21; } .close { float: right; font-size: 1.3125rem; font-weight: 700; line-height: 1; color: #000; text-shadow: 0 1px 0 #fff; opacity: .5; } .close:not(:disabled):not(.disabled) { cursor: pointer; } .close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus { color: #000; text-decoration: none; opacity: .75; } button.close { padding: 0; background-color: transparent; border: 0; -webkit-appearance: none; } .modal-open { overflow: hidden; } .modal-open .modal { overflow-x: hidden; overflow-y: auto; } .modal { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1050; display: none; overflow: hidden; outline: 0; } .modal-dialog { position: relative; width: auto; margin: 0.5rem; pointer-events: none; } .modal.fade .modal-dialog { -webkit-transition: -webkit-transform 0.3s ease-out; transition: -webkit-transform 0.3s ease-out; transition: transform 0.3s ease-out; transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out; -webkit-transform: translate(0, -25%); transform: translate(0, -25%); } @media screen and (prefers-reduced-motion: reduce) { .modal.fade .modal-dialog { -webkit-transition: none; transition: none; } } .modal.show .modal-dialog { -webkit-transform: translate(0, 0); transform: translate(0, 0); } .modal-dialog-centered { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; min-height: calc(100% - (0.5rem * 2)); } .modal-dialog-centered::before { display: block; height: calc(100vh - (0.5rem * 2)); content: ""; } .modal-content { position: relative; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-orient: vertical; -webkit-box-direction: normal; -ms-flex-direction: column; flex-direction: column; width: 100%; pointer-events: auto; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0; outline: 0; } .modal-backdrop { position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 1040; background-color: #000; } .modal-backdrop.fade { opacity: 0; } .modal-backdrop.show { opacity: 0.5; } .modal-header { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; padding: 1rem; border-bottom: 1px solid #f7f7f9; border-top-left-radius: 0; border-top-right-radius: 0; } .modal-header .close { padding: 1rem; margin: -1rem -1rem -1rem auto; } .modal-title { margin-bottom: 0; line-height: 1.5; } .modal-body { position: relative; -webkit-box-flex: 1; -ms-flex: 1 1 auto; flex: 1 1 auto; padding: 1rem; } .modal-footer { display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; padding: 1rem; border-top: 1px solid #f7f7f9; } .modal-footer > :not(:first-child) { margin-left: .25rem; } .modal-footer > :not(:last-child) { margin-right: .25rem; } .modal-scrollbar-measure { position: absolute; top: -9999px; width: 50px; height: 50px; overflow: scroll; } @media (min-width: 576px) { .modal-dialog { max-width: 500px; margin: 1.75rem auto; } .modal-dialog-centered { min-height: calc(100% - (1.75rem * 2)); } .modal-dialog-centered::before { height: calc(100vh - (1.75rem * 2)); } .modal-sm { max-width: 300px; } } @media (min-width: 992px) { .modal-lg { max-width: 800px; } } .tooltip { position: absolute; z-index: 1070; display: block; margin: 0; font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-style: normal; font-weight: 400; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.765625rem; word-wrap: break-word; opacity: 0; } .tooltip.show { opacity: 0.9; } .tooltip .arrow { position: absolute; display: block; width: 0.8rem; height: 0.4rem; } .tooltip .arrow::before { position: absolute; content: ""; border-color: transparent; border-style: solid; } .bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] { padding: 0.4rem 0; } .bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow { bottom: 0; } .bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before { top: 0; border-width: 0.4rem 0.4rem 0; border-top-color: #000; } .bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] { padding: 0 0.4rem; } .bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow { left: 0; width: 0.4rem; height: 0.8rem; } .bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before { right: 0; border-width: 0.4rem 0.4rem 0.4rem 0; border-right-color: #000; } .bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] { padding: 0.4rem 0; } .bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow { top: 0; } .bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before { bottom: 0; border-width: 0 0.4rem 0.4rem; border-bottom-color: #000; } .bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] { padding: 0 0.4rem; } .bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow { right: 0; width: 0.4rem; height: 0.8rem; } .bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before { left: 0; border-width: 0.4rem 0 0.4rem 0.4rem; border-left-color: #000; } .tooltip-inner { max-width: 200px; padding: 0.25rem 0.5rem; color: #fff; text-align: center; background-color: #000; border-radius: 0; } .popover { position: absolute; top: 0; left: 0; z-index: 1060; display: block; max-width: 276px; font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-style: normal; font-weight: 400; line-height: 1.5; text-align: left; text-align: start; text-decoration: none; text-shadow: none; text-transform: none; letter-spacing: normal; word-break: normal; word-spacing: normal; white-space: normal; line-break: auto; font-size: 0.765625rem; word-wrap: break-word; background-color: #fff; background-clip: padding-box; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 0; } .popover .arrow { position: absolute; display: block; width: 1rem; height: 0.5rem; margin: 0 0; } .popover .arrow::before, .popover .arrow::after { position: absolute; display: block; content: ""; border-color: transparent; border-style: solid; } .bs-popover-top, .bs-popover-auto[x-placement^="top"] { margin-bottom: 0.5rem; } .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow { bottom: calc((0.5rem + 1px) * -1); } .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before, .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { border-width: 0.5rem 0.5rem 0; } .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before { bottom: 0; border-top-color: rgba(0, 0, 0, 0.25); } .bs-popover-top .arrow::after, .bs-popover-auto[x-placement^="top"] .arrow::after { bottom: 1px; border-top-color: #fff; } .bs-popover-right, .bs-popover-auto[x-placement^="right"] { margin-left: 0.5rem; } .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow { left: calc((0.5rem + 1px) * -1); width: 0.5rem; height: 1rem; margin: 0 0; } .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before, .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { border-width: 0.5rem 0.5rem 0.5rem 0; } .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before { left: 0; border-right-color: rgba(0, 0, 0, 0.25); } .bs-popover-right .arrow::after, .bs-popover-auto[x-placement^="right"] .arrow::after { left: 1px; border-right-color: #fff; } .bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] { margin-top: 0.5rem; } .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow { top: calc((0.5rem + 1px) * -1); } .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before, .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { border-width: 0 0.5rem 0.5rem 0.5rem; } .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before { top: 0; border-bottom-color: rgba(0, 0, 0, 0.25); } .bs-popover-bottom .arrow::after, .bs-popover-auto[x-placement^="bottom"] .arrow::after { top: 1px; border-bottom-color: #fff; } .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before { position: absolute; top: 0; left: 50%; display: block; width: 1rem; margin-left: -0.5rem; content: ""; border-bottom: 1px solid #f7f7f7; } .bs-popover-left, .bs-popover-auto[x-placement^="left"] { margin-right: 0.5rem; } .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow { right: calc((0.5rem + 1px) * -1); width: 0.5rem; height: 1rem; margin: 0 0; } .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before, .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { border-width: 0.5rem 0 0.5rem 0.5rem; } .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before { right: 0; border-left-color: rgba(0, 0, 0, 0.25); } .bs-popover-left .arrow::after, .bs-popover-auto[x-placement^="left"] .arrow::after { right: 1px; border-left-color: #fff; } .popover-header { padding: 0.5rem 0.75rem; margin-bottom: 0; font-size: 0.875rem; color: #1a1a1a; background-color: #f7f7f7; border-bottom: 1px solid #ebebeb; border-top-left-radius: calc(0 - 1px); border-top-right-radius: calc(0 - 1px); } .popover-header:empty { display: none; } .popover-body { padding: 0.5rem 0.75rem; color: #919aa1; } .carousel { position: relative; } .carousel-inner { position: relative; width: 100%; overflow: hidden; } .carousel-item { position: relative; display: none; -webkit-box-align: center; -ms-flex-align: center; align-items: center; width: 100%; -webkit-backface-visibility: hidden; backface-visibility: hidden; -webkit-perspective: 1000px; perspective: 1000px; } .carousel-item.active, .carousel-item-next, .carousel-item-prev { display: block; -webkit-transition: -webkit-transform 0.6s ease; transition: -webkit-transform 0.6s ease; transition: transform 0.6s ease; transition: transform 0.6s ease, -webkit-transform 0.6s ease; } @media screen and (prefers-reduced-motion: reduce) { .carousel-item.active, .carousel-item-next, .carousel-item-prev { -webkit-transition: none; transition: none; } } .carousel-item-next, .carousel-item-prev { position: absolute; top: 0; } .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right { -webkit-transform: translateX(0); transform: translateX(0); } @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .carousel-item-next, .active.carousel-item-right { -webkit-transform: translateX(100%); transform: translateX(100%); } @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { .carousel-item-next, .active.carousel-item-right { -webkit-transform: translate3d(100%, 0, 0); transform: translate3d(100%, 0, 0); } } .carousel-item-prev, .active.carousel-item-left { -webkit-transform: translateX(-100%); transform: translateX(-100%); } @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { .carousel-item-prev, .active.carousel-item-left { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); } } .carousel-fade .carousel-item { opacity: 0; -webkit-transition-duration: .6s; transition-duration: .6s; -webkit-transition-property: opacity; transition-property: opacity; } .carousel-fade .carousel-item.active, .carousel-fade .carousel-item-next.carousel-item-left, .carousel-fade .carousel-item-prev.carousel-item-right { opacity: 1; } .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-right { opacity: 0; } .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev { -webkit-transform: translateX(0); transform: translateX(0); } @supports ((-webkit-transform-style: preserve-3d) or (transform-style: preserve-3d)) { .carousel-fade .carousel-item-next, .carousel-fade .carousel-item-prev, .carousel-fade .carousel-item.active, .carousel-fade .active.carousel-item-left, .carousel-fade .active.carousel-item-prev { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); } } .carousel-control-prev, .carousel-control-next { position: absolute; top: 0; bottom: 0; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; width: 15%; color: #fff; text-align: center; opacity: 0.5; } .carousel-control-prev:hover, .carousel-control-prev:focus, .carousel-control-next:hover, .carousel-control-next:focus { color: #fff; text-decoration: none; outline: 0; opacity: .9; } .carousel-control-prev { left: 0; } .carousel-control-next { right: 0; } .carousel-control-prev-icon, .carousel-control-next-icon { display: inline-block; width: 20px; height: 20px; background: transparent no-repeat center center; background-size: 100% 100%; } .carousel-control-prev-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); } .carousel-control-next-icon { background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); } .carousel-indicators { position: absolute; right: 0; bottom: 10px; left: 0; z-index: 15; display: -webkit-box; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; padding-left: 0; margin-right: 15%; margin-left: 15%; list-style: none; } .carousel-indicators li { position: relative; -webkit-box-flex: 0; -ms-flex: 0 1 auto; flex: 0 1 auto; width: 30px; height: 3px; margin-right: 3px; margin-left: 3px; text-indent: -999px; cursor: pointer; background-color: rgba(255, 255, 255, 0.5); } .carousel-indicators li::before { position: absolute; top: -10px; left: 0; display: inline-block; width: 100%; height: 10px; content: ""; } .carousel-indicators li::after { position: absolute; bottom: -10px; left: 0; display: inline-block; width: 100%; height: 10px; content: ""; } .carousel-indicators .active { background-color: #fff; } .carousel-caption { position: absolute; right: 15%; bottom: 20px; left: 15%; z-index: 10; padding-top: 20px; padding-bottom: 20px; color: #fff; text-align: center; } .align-baseline { vertical-align: baseline !important; } .align-top { vertical-align: top !important; } .align-middle { vertical-align: middle !important; } .align-bottom { vertical-align: bottom !important; } .align-text-bottom { vertical-align: text-bottom !important; } .align-text-top { vertical-align: text-top !important; } .bg-primary { background-color: #1a1a1a !important; } a.bg-primary:hover, a.bg-primary:focus, button.bg-primary:hover, button.bg-primary:focus { background-color: #010000 !important; } .bg-secondary { background-color: #fff !important; } a.bg-secondary:hover, a.bg-secondary:focus, button.bg-secondary:hover, button.bg-secondary:focus { background-color: #e6e5e5 !important; } .bg-success { background-color: #4BBF73 !important; } a.bg-success:hover, a.bg-success:focus, button.bg-success:hover, button.bg-success:focus { background-color: #389f5c !important; } .bg-info { background-color: #1F9BCF !important; } a.bg-info:hover, a.bg-info:focus, button.bg-info:hover, button.bg-info:focus { background-color: #187aa3 !important; } .bg-warning { background-color: #f0ad4e !important; } a.bg-warning:hover, a.bg-warning:focus, button.bg-warning:hover, button.bg-warning:focus { background-color: #ec971f !important; } .bg-danger { background-color: #d9534f !important; } a.bg-danger:hover, a.bg-danger:focus, button.bg-danger:hover, button.bg-danger:focus { background-color: #c9302c !important; } .bg-light { background-color: #fff !important; } a.bg-light:hover, a.bg-light:focus, button.bg-light:hover, button.bg-light:focus { background-color: #e6e5e5 !important; } .bg-dark { background-color: #343a40 !important; } a.bg-dark:hover, a.bg-dark:focus, button.bg-dark:hover, button.bg-dark:focus { background-color: #1d2124 !important; } .bg-white { background-color: #fff !important; } .bg-transparent { background-color: transparent !important; } .border { border: 1px solid #eceeef !important; } .border-top { border-top: 1px solid #eceeef !important; } .border-right { border-right: 1px solid #eceeef !important; } .border-bottom { border-bottom: 1px solid #eceeef !important; } .border-left { border-left: 1px solid #eceeef !important; } .border-0 { border: 0 !important; } .border-top-0 { border-top: 0 !important; } .border-right-0 { border-right: 0 !important; } .border-bottom-0 { border-bottom: 0 !important; } .border-left-0 { border-left: 0 !important; } .border-primary { border-color: #1a1a1a !important; } .border-secondary { border-color: #fff !important; } .border-success { border-color: #4BBF73 !important; } .border-info { border-color: #1F9BCF !important; } .border-warning { border-color: #f0ad4e !important; } .border-danger { border-color: #d9534f !important; } .border-light { border-color: #fff !important; } .border-dark { border-color: #343a40 !important; } .border-white { border-color: #fff !important; } .rounded { border-radius: 0 !important; } .rounded-top { border-top-left-radius: 0 !important; border-top-right-radius: 0 !important; } .rounded-right { border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; } .rounded-bottom { border-bottom-right-radius: 0 !important; border-bottom-left-radius: 0 !important; } .rounded-left { border-top-left-radius: 0 !important; border-bottom-left-radius: 0 !important; } .rounded-circle { border-radius: 50% !important; } .rounded-0 { border-radius: 0 !important; } .clearfix::after { display: block; clear: both; content: ""; } .d-none { display: none !important; } .d-inline { display: inline !important; } .d-inline-block { display: inline-block !important; } .d-block { display: block !important; } .d-table { display: table !important; } .d-table-row { display: table-row !important; } .d-table-cell { display: table-cell !important; } .d-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } @media (min-width: 576px) { .d-sm-none { display: none !important; } .d-sm-inline { display: inline !important; } .d-sm-inline-block { display: inline-block !important; } .d-sm-block { display: block !important; } .d-sm-table { display: table !important; } .d-sm-table-row { display: table-row !important; } .d-sm-table-cell { display: table-cell !important; } .d-sm-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-sm-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } } @media (min-width: 768px) { .d-md-none { display: none !important; } .d-md-inline { display: inline !important; } .d-md-inline-block { display: inline-block !important; } .d-md-block { display: block !important; } .d-md-table { display: table !important; } .d-md-table-row { display: table-row !important; } .d-md-table-cell { display: table-cell !important; } .d-md-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-md-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } } @media (min-width: 992px) { .d-lg-none { display: none !important; } .d-lg-inline { display: inline !important; } .d-lg-inline-block { display: inline-block !important; } .d-lg-block { display: block !important; } .d-lg-table { display: table !important; } .d-lg-table-row { display: table-row !important; } .d-lg-table-cell { display: table-cell !important; } .d-lg-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-lg-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } } @media (min-width: 1200px) { .d-xl-none { display: none !important; } .d-xl-inline { display: inline !important; } .d-xl-inline-block { display: inline-block !important; } .d-xl-block { display: block !important; } .d-xl-table { display: table !important; } .d-xl-table-row { display: table-row !important; } .d-xl-table-cell { display: table-cell !important; } .d-xl-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-xl-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } } @media print { .d-print-none { display: none !important; } .d-print-inline { display: inline !important; } .d-print-inline-block { display: inline-block !important; } .d-print-block { display: block !important; } .d-print-table { display: table !important; } .d-print-table-row { display: table-row !important; } .d-print-table-cell { display: table-cell !important; } .d-print-flex { display: -webkit-box !important; display: -ms-flexbox !important; display: flex !important; } .d-print-inline-flex { display: -webkit-inline-box !important; display: -ms-inline-flexbox !important; display: inline-flex !important; } } .embed-responsive { position: relative; display: block; width: 100%; padding: 0; overflow: hidden; } .embed-responsive::before { display: block; content: ""; } .embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video { position: absolute; top: 0; bottom: 0; left: 0; width: 100%; height: 100%; border: 0; } .embed-responsive-21by9::before { padding-top: 42.8571428571%; } .embed-responsive-16by9::before { padding-top: 56.25%; } .embed-responsive-4by3::before { padding-top: 75%; } .embed-responsive-1by1::before { padding-top: 100%; } .flex-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .flex-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .justify-content-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .align-items-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } @media (min-width: 576px) { .flex-sm-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-sm-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-sm-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-sm-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-sm-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-sm-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-sm-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .flex-sm-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-sm-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-sm-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-sm-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-sm-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .justify-content-sm-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-sm-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-sm-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-sm-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-sm-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .align-items-sm-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-sm-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-sm-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-sm-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-sm-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-sm-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-sm-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-sm-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-sm-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-sm-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-sm-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-sm-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-sm-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-sm-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-sm-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-sm-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-sm-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } } @media (min-width: 768px) { .flex-md-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-md-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-md-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-md-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-md-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-md-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-md-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .flex-md-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-md-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-md-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-md-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-md-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .justify-content-md-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-md-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-md-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-md-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-md-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .align-items-md-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-md-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-md-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-md-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-md-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-md-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-md-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-md-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-md-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-md-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-md-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-md-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-md-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-md-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-md-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-md-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-md-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } } @media (min-width: 992px) { .flex-lg-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-lg-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-lg-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-lg-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-lg-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-lg-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-lg-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .flex-lg-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-lg-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-lg-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-lg-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-lg-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .justify-content-lg-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-lg-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-lg-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-lg-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-lg-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .align-items-lg-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-lg-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-lg-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-lg-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-lg-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-lg-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-lg-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-lg-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-lg-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-lg-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-lg-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-lg-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-lg-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-lg-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-lg-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-lg-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-lg-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } } @media (min-width: 1200px) { .flex-xl-row { -webkit-box-orient: horizontal !important; -webkit-box-direction: normal !important; -ms-flex-direction: row !important; flex-direction: row !important; } .flex-xl-column { -webkit-box-orient: vertical !important; -webkit-box-direction: normal !important; -ms-flex-direction: column !important; flex-direction: column !important; } .flex-xl-row-reverse { -webkit-box-orient: horizontal !important; -webkit-box-direction: reverse !important; -ms-flex-direction: row-reverse !important; flex-direction: row-reverse !important; } .flex-xl-column-reverse { -webkit-box-orient: vertical !important; -webkit-box-direction: reverse !important; -ms-flex-direction: column-reverse !important; flex-direction: column-reverse !important; } .flex-xl-wrap { -ms-flex-wrap: wrap !important; flex-wrap: wrap !important; } .flex-xl-nowrap { -ms-flex-wrap: nowrap !important; flex-wrap: nowrap !important; } .flex-xl-wrap-reverse { -ms-flex-wrap: wrap-reverse !important; flex-wrap: wrap-reverse !important; } .flex-xl-fill { -webkit-box-flex: 1 !important; -ms-flex: 1 1 auto !important; flex: 1 1 auto !important; } .flex-xl-grow-0 { -webkit-box-flex: 0 !important; -ms-flex-positive: 0 !important; flex-grow: 0 !important; } .flex-xl-grow-1 { -webkit-box-flex: 1 !important; -ms-flex-positive: 1 !important; flex-grow: 1 !important; } .flex-xl-shrink-0 { -ms-flex-negative: 0 !important; flex-shrink: 0 !important; } .flex-xl-shrink-1 { -ms-flex-negative: 1 !important; flex-shrink: 1 !important; } .justify-content-xl-start { -webkit-box-pack: start !important; -ms-flex-pack: start !important; justify-content: flex-start !important; } .justify-content-xl-end { -webkit-box-pack: end !important; -ms-flex-pack: end !important; justify-content: flex-end !important; } .justify-content-xl-center { -webkit-box-pack: center !important; -ms-flex-pack: center !important; justify-content: center !important; } .justify-content-xl-between { -webkit-box-pack: justify !important; -ms-flex-pack: justify !important; justify-content: space-between !important; } .justify-content-xl-around { -ms-flex-pack: distribute !important; justify-content: space-around !important; } .align-items-xl-start { -webkit-box-align: start !important; -ms-flex-align: start !important; align-items: flex-start !important; } .align-items-xl-end { -webkit-box-align: end !important; -ms-flex-align: end !important; align-items: flex-end !important; } .align-items-xl-center { -webkit-box-align: center !important; -ms-flex-align: center !important; align-items: center !important; } .align-items-xl-baseline { -webkit-box-align: baseline !important; -ms-flex-align: baseline !important; align-items: baseline !important; } .align-items-xl-stretch { -webkit-box-align: stretch !important; -ms-flex-align: stretch !important; align-items: stretch !important; } .align-content-xl-start { -ms-flex-line-pack: start !important; align-content: flex-start !important; } .align-content-xl-end { -ms-flex-line-pack: end !important; align-content: flex-end !important; } .align-content-xl-center { -ms-flex-line-pack: center !important; align-content: center !important; } .align-content-xl-between { -ms-flex-line-pack: justify !important; align-content: space-between !important; } .align-content-xl-around { -ms-flex-line-pack: distribute !important; align-content: space-around !important; } .align-content-xl-stretch { -ms-flex-line-pack: stretch !important; align-content: stretch !important; } .align-self-xl-auto { -ms-flex-item-align: auto !important; align-self: auto !important; } .align-self-xl-start { -ms-flex-item-align: start !important; align-self: flex-start !important; } .align-self-xl-end { -ms-flex-item-align: end !important; align-self: flex-end !important; } .align-self-xl-center { -ms-flex-item-align: center !important; align-self: center !important; } .align-self-xl-baseline { -ms-flex-item-align: baseline !important; align-self: baseline !important; } .align-self-xl-stretch { -ms-flex-item-align: stretch !important; align-self: stretch !important; } } .float-left { float: left !important; } .float-right { float: right !important; } .float-none { float: none !important; } @media (min-width: 576px) { .float-sm-left { float: left !important; } .float-sm-right { float: right !important; } .float-sm-none { float: none !important; } } @media (min-width: 768px) { .float-md-left { float: left !important; } .float-md-right { float: right !important; } .float-md-none { float: none !important; } } @media (min-width: 992px) { .float-lg-left { float: left !important; } .float-lg-right { float: right !important; } .float-lg-none { float: none !important; } } @media (min-width: 1200px) { .float-xl-left { float: left !important; } .float-xl-right { float: right !important; } .float-xl-none { float: none !important; } } .position-static { position: static !important; } .position-relative { position: relative !important; } .position-absolute { position: absolute !important; } .position-fixed { position: fixed !important; } .position-sticky { position: -webkit-sticky !important; position: sticky !important; } .fixed-top { position: fixed; top: 0; right: 0; left: 0; z-index: 1030; } .fixed-bottom { position: fixed; right: 0; bottom: 0; left: 0; z-index: 1030; } @supports ((position: -webkit-sticky) or (position: sticky)) { .sticky-top { position: -webkit-sticky; position: sticky; top: 0; z-index: 1020; } } .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; } .sr-only-focusable:active, .sr-only-focusable:focus { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; } .shadow-sm { -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; } .shadow { -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; } .shadow-lg { -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; } .shadow-none { -webkit-box-shadow: none !important; box-shadow: none !important; } .w-25 { width: 25% !important; } .w-50 { width: 50% !important; } .w-75 { width: 75% !important; } .w-100 { width: 100% !important; } .w-auto { width: auto !important; } .h-25 { height: 25% !important; } .h-50 { height: 50% !important; } .h-75 { height: 75% !important; } .h-100 { height: 100% !important; } .h-auto { height: auto !important; } .mw-100 { max-width: 100% !important; } .mh-100 { max-height: 100% !important; } .m-0 { margin: 0 !important; } .mt-0, .my-0 { margin-top: 0 !important; } .mr-0, .mx-0 { margin-right: 0 !important; } .mb-0, .my-0 { margin-bottom: 0 !important; } .ml-0, .mx-0 { margin-left: 0 !important; } .m-1 { margin: 0.25rem !important; } .mt-1, .my-1 { margin-top: 0.25rem !important; } .mr-1, .mx-1 { margin-right: 0.25rem !important; } .mb-1, .my-1 { margin-bottom: 0.25rem !important; } .ml-1, .mx-1 { margin-left: 0.25rem !important; } .m-2 { margin: 0.5rem !important; } .mt-2, .my-2 { margin-top: 0.5rem !important; } .mr-2, .mx-2 { margin-right: 0.5rem !important; } .mb-2, .my-2 { margin-bottom: 0.5rem !important; } .ml-2, .mx-2 { margin-left: 0.5rem !important; } .m-3 { margin: 1rem !important; } .mt-3, .my-3 { margin-top: 1rem !important; } .mr-3, .mx-3 { margin-right: 1rem !important; } .mb-3, .my-3 { margin-bottom: 1rem !important; } .ml-3, .mx-3 { margin-left: 1rem !important; } .m-4 { margin: 1.5rem !important; } .mt-4, .my-4 { margin-top: 1.5rem !important; } .mr-4, .mx-4 { margin-right: 1.5rem !important; } .mb-4, .my-4 { margin-bottom: 1.5rem !important; } .ml-4, .mx-4 { margin-left: 1.5rem !important; } .m-5 { margin: 3rem !important; } .mt-5, .my-5 { margin-top: 3rem !important; } .mr-5, .mx-5 { margin-right: 3rem !important; } .mb-5, .my-5 { margin-bottom: 3rem !important; } .ml-5, .mx-5 { margin-left: 3rem !important; } .p-0 { padding: 0 !important; } .pt-0, .py-0 { padding-top: 0 !important; } .pr-0, .px-0 { padding-right: 0 !important; } .pb-0, .py-0 { padding-bottom: 0 !important; } .pl-0, .px-0 { padding-left: 0 !important; } .p-1 { padding: 0.25rem !important; } .pt-1, .py-1 { padding-top: 0.25rem !important; } .pr-1, .px-1 { padding-right: 0.25rem !important; } .pb-1, .py-1 { padding-bottom: 0.25rem !important; } .pl-1, .px-1 { padding-left: 0.25rem !important; } .p-2 { padding: 0.5rem !important; } .pt-2, .py-2 { padding-top: 0.5rem !important; } .pr-2, .px-2 { padding-right: 0.5rem !important; } .pb-2, .py-2 { padding-bottom: 0.5rem !important; } .pl-2, .px-2 { padding-left: 0.5rem !important; } .p-3 { padding: 1rem !important; } .pt-3, .py-3 { padding-top: 1rem !important; } .pr-3, .px-3 { padding-right: 1rem !important; } .pb-3, .py-3 { padding-bottom: 1rem !important; } .pl-3, .px-3 { padding-left: 1rem !important; } .p-4 { padding: 1.5rem !important; } .pt-4, .py-4 { padding-top: 1.5rem !important; } .pr-4, .px-4 { padding-right: 1.5rem !important; } .pb-4, .py-4 { padding-bottom: 1.5rem !important; } .pl-4, .px-4 { padding-left: 1.5rem !important; } .p-5 { padding: 3rem !important; } .pt-5, .py-5 { padding-top: 3rem !important; } .pr-5, .px-5 { padding-right: 3rem !important; } .pb-5, .py-5 { padding-bottom: 3rem !important; } .pl-5, .px-5 { padding-left: 3rem !important; } .m-auto { margin: auto !important; } .mt-auto, .my-auto { margin-top: auto !important; } .mr-auto, .mx-auto { margin-right: auto !important; } .mb-auto, .my-auto { margin-bottom: auto !important; } .ml-auto, .mx-auto { margin-left: auto !important; } @media (min-width: 576px) { .m-sm-0 { margin: 0 !important; } .mt-sm-0, .my-sm-0 { margin-top: 0 !important; } .mr-sm-0, .mx-sm-0 { margin-right: 0 !important; } .mb-sm-0, .my-sm-0 { margin-bottom: 0 !important; } .ml-sm-0, .mx-sm-0 { margin-left: 0 !important; } .m-sm-1 { margin: 0.25rem !important; } .mt-sm-1, .my-sm-1 { margin-top: 0.25rem !important; } .mr-sm-1, .mx-sm-1 { margin-right: 0.25rem !important; } .mb-sm-1, .my-sm-1 { margin-bottom: 0.25rem !important; } .ml-sm-1, .mx-sm-1 { margin-left: 0.25rem !important; } .m-sm-2 { margin: 0.5rem !important; } .mt-sm-2, .my-sm-2 { margin-top: 0.5rem !important; } .mr-sm-2, .mx-sm-2 { margin-right: 0.5rem !important; } .mb-sm-2, .my-sm-2 { margin-bottom: 0.5rem !important; } .ml-sm-2, .mx-sm-2 { margin-left: 0.5rem !important; } .m-sm-3 { margin: 1rem !important; } .mt-sm-3, .my-sm-3 { margin-top: 1rem !important; } .mr-sm-3, .mx-sm-3 { margin-right: 1rem !important; } .mb-sm-3, .my-sm-3 { margin-bottom: 1rem !important; } .ml-sm-3, .mx-sm-3 { margin-left: 1rem !important; } .m-sm-4 { margin: 1.5rem !important; } .mt-sm-4, .my-sm-4 { margin-top: 1.5rem !important; } .mr-sm-4, .mx-sm-4 { margin-right: 1.5rem !important; } .mb-sm-4, .my-sm-4 { margin-bottom: 1.5rem !important; } .ml-sm-4, .mx-sm-4 { margin-left: 1.5rem !important; } .m-sm-5 { margin: 3rem !important; } .mt-sm-5, .my-sm-5 { margin-top: 3rem !important; } .mr-sm-5, .mx-sm-5 { margin-right: 3rem !important; } .mb-sm-5, .my-sm-5 { margin-bottom: 3rem !important; } .ml-sm-5, .mx-sm-5 { margin-left: 3rem !important; } .p-sm-0 { padding: 0 !important; } .pt-sm-0, .py-sm-0 { padding-top: 0 !important; } .pr-sm-0, .px-sm-0 { padding-right: 0 !important; } .pb-sm-0, .py-sm-0 { padding-bottom: 0 !important; } .pl-sm-0, .px-sm-0 { padding-left: 0 !important; } .p-sm-1 { padding: 0.25rem !important; } .pt-sm-1, .py-sm-1 { padding-top: 0.25rem !important; } .pr-sm-1, .px-sm-1 { padding-right: 0.25rem !important; } .pb-sm-1, .py-sm-1 { padding-bottom: 0.25rem !important; } .pl-sm-1, .px-sm-1 { padding-left: 0.25rem !important; } .p-sm-2 { padding: 0.5rem !important; } .pt-sm-2, .py-sm-2 { padding-top: 0.5rem !important; } .pr-sm-2, .px-sm-2 { padding-right: 0.5rem !important; } .pb-sm-2, .py-sm-2 { padding-bottom: 0.5rem !important; } .pl-sm-2, .px-sm-2 { padding-left: 0.5rem !important; } .p-sm-3 { padding: 1rem !important; } .pt-sm-3, .py-sm-3 { padding-top: 1rem !important; } .pr-sm-3, .px-sm-3 { padding-right: 1rem !important; } .pb-sm-3, .py-sm-3 { padding-bottom: 1rem !important; } .pl-sm-3, .px-sm-3 { padding-left: 1rem !important; } .p-sm-4 { padding: 1.5rem !important; } .pt-sm-4, .py-sm-4 { padding-top: 1.5rem !important; } .pr-sm-4, .px-sm-4 { padding-right: 1.5rem !important; } .pb-sm-4, .py-sm-4 { padding-bottom: 1.5rem !important; } .pl-sm-4, .px-sm-4 { padding-left: 1.5rem !important; } .p-sm-5 { padding: 3rem !important; } .pt-sm-5, .py-sm-5 { padding-top: 3rem !important; } .pr-sm-5, .px-sm-5 { padding-right: 3rem !important; } .pb-sm-5, .py-sm-5 { padding-bottom: 3rem !important; } .pl-sm-5, .px-sm-5 { padding-left: 3rem !important; } .m-sm-auto { margin: auto !important; } .mt-sm-auto, .my-sm-auto { margin-top: auto !important; } .mr-sm-auto, .mx-sm-auto { margin-right: auto !important; } .mb-sm-auto, .my-sm-auto { margin-bottom: auto !important; } .ml-sm-auto, .mx-sm-auto { margin-left: auto !important; } } @media (min-width: 768px) { .m-md-0 { margin: 0 !important; } .mt-md-0, .my-md-0 { margin-top: 0 !important; } .mr-md-0, .mx-md-0 { margin-right: 0 !important; } .mb-md-0, .my-md-0 { margin-bottom: 0 !important; } .ml-md-0, .mx-md-0 { margin-left: 0 !important; } .m-md-1 { margin: 0.25rem !important; } .mt-md-1, .my-md-1 { margin-top: 0.25rem !important; } .mr-md-1, .mx-md-1 { margin-right: 0.25rem !important; } .mb-md-1, .my-md-1 { margin-bottom: 0.25rem !important; } .ml-md-1, .mx-md-1 { margin-left: 0.25rem !important; } .m-md-2 { margin: 0.5rem !important; } .mt-md-2, .my-md-2 { margin-top: 0.5rem !important; } .mr-md-2, .mx-md-2 { margin-right: 0.5rem !important; } .mb-md-2, .my-md-2 { margin-bottom: 0.5rem !important; } .ml-md-2, .mx-md-2 { margin-left: 0.5rem !important; } .m-md-3 { margin: 1rem !important; } .mt-md-3, .my-md-3 { margin-top: 1rem !important; } .mr-md-3, .mx-md-3 { margin-right: 1rem !important; } .mb-md-3, .my-md-3 { margin-bottom: 1rem !important; } .ml-md-3, .mx-md-3 { margin-left: 1rem !important; } .m-md-4 { margin: 1.5rem !important; } .mt-md-4, .my-md-4 { margin-top: 1.5rem !important; } .mr-md-4, .mx-md-4 { margin-right: 1.5rem !important; } .mb-md-4, .my-md-4 { margin-bottom: 1.5rem !important; } .ml-md-4, .mx-md-4 { margin-left: 1.5rem !important; } .m-md-5 { margin: 3rem !important; } .mt-md-5, .my-md-5 { margin-top: 3rem !important; } .mr-md-5, .mx-md-5 { margin-right: 3rem !important; } .mb-md-5, .my-md-5 { margin-bottom: 3rem !important; } .ml-md-5, .mx-md-5 { margin-left: 3rem !important; } .p-md-0 { padding: 0 !important; } .pt-md-0, .py-md-0 { padding-top: 0 !important; } .pr-md-0, .px-md-0 { padding-right: 0 !important; } .pb-md-0, .py-md-0 { padding-bottom: 0 !important; } .pl-md-0, .px-md-0 { padding-left: 0 !important; } .p-md-1 { padding: 0.25rem !important; } .pt-md-1, .py-md-1 { padding-top: 0.25rem !important; } .pr-md-1, .px-md-1 { padding-right: 0.25rem !important; } .pb-md-1, .py-md-1 { padding-bottom: 0.25rem !important; } .pl-md-1, .px-md-1 { padding-left: 0.25rem !important; } .p-md-2 { padding: 0.5rem !important; } .pt-md-2, .py-md-2 { padding-top: 0.5rem !important; } .pr-md-2, .px-md-2 { padding-right: 0.5rem !important; } .pb-md-2, .py-md-2 { padding-bottom: 0.5rem !important; } .pl-md-2, .px-md-2 { padding-left: 0.5rem !important; } .p-md-3 { padding: 1rem !important; } .pt-md-3, .py-md-3 { padding-top: 1rem !important; } .pr-md-3, .px-md-3 { padding-right: 1rem !important; } .pb-md-3, .py-md-3 { padding-bottom: 1rem !important; } .pl-md-3, .px-md-3 { padding-left: 1rem !important; } .p-md-4 { padding: 1.5rem !important; } .pt-md-4, .py-md-4 { padding-top: 1.5rem !important; } .pr-md-4, .px-md-4 { padding-right: 1.5rem !important; } .pb-md-4, .py-md-4 { padding-bottom: 1.5rem !important; } .pl-md-4, .px-md-4 { padding-left: 1.5rem !important; } .p-md-5 { padding: 3rem !important; } .pt-md-5, .py-md-5 { padding-top: 3rem !important; } .pr-md-5, .px-md-5 { padding-right: 3rem !important; } .pb-md-5, .py-md-5 { padding-bottom: 3rem !important; } .pl-md-5, .px-md-5 { padding-left: 3rem !important; } .m-md-auto { margin: auto !important; } .mt-md-auto, .my-md-auto { margin-top: auto !important; } .mr-md-auto, .mx-md-auto { margin-right: auto !important; } .mb-md-auto, .my-md-auto { margin-bottom: auto !important; } .ml-md-auto, .mx-md-auto { margin-left: auto !important; } } @media (min-width: 992px) { .m-lg-0 { margin: 0 !important; } .mt-lg-0, .my-lg-0 { margin-top: 0 !important; } .mr-lg-0, .mx-lg-0 { margin-right: 0 !important; } .mb-lg-0, .my-lg-0 { margin-bottom: 0 !important; } .ml-lg-0, .mx-lg-0 { margin-left: 0 !important; } .m-lg-1 { margin: 0.25rem !important; } .mt-lg-1, .my-lg-1 { margin-top: 0.25rem !important; } .mr-lg-1, .mx-lg-1 { margin-right: 0.25rem !important; } .mb-lg-1, .my-lg-1 { margin-bottom: 0.25rem !important; } .ml-lg-1, .mx-lg-1 { margin-left: 0.25rem !important; } .m-lg-2 { margin: 0.5rem !important; } .mt-lg-2, .my-lg-2 { margin-top: 0.5rem !important; } .mr-lg-2, .mx-lg-2 { margin-right: 0.5rem !important; } .mb-lg-2, .my-lg-2 { margin-bottom: 0.5rem !important; } .ml-lg-2, .mx-lg-2 { margin-left: 0.5rem !important; } .m-lg-3 { margin: 1rem !important; } .mt-lg-3, .my-lg-3 { margin-top: 1rem !important; } .mr-lg-3, .mx-lg-3 { margin-right: 1rem !important; } .mb-lg-3, .my-lg-3 { margin-bottom: 1rem !important; } .ml-lg-3, .mx-lg-3 { margin-left: 1rem !important; } .m-lg-4 { margin: 1.5rem !important; } .mt-lg-4, .my-lg-4 { margin-top: 1.5rem !important; } .mr-lg-4, .mx-lg-4 { margin-right: 1.5rem !important; } .mb-lg-4, .my-lg-4 { margin-bottom: 1.5rem !important; } .ml-lg-4, .mx-lg-4 { margin-left: 1.5rem !important; } .m-lg-5 { margin: 3rem !important; } .mt-lg-5, .my-lg-5 { margin-top: 3rem !important; } .mr-lg-5, .mx-lg-5 { margin-right: 3rem !important; } .mb-lg-5, .my-lg-5 { margin-bottom: 3rem !important; } .ml-lg-5, .mx-lg-5 { margin-left: 3rem !important; } .p-lg-0 { padding: 0 !important; } .pt-lg-0, .py-lg-0 { padding-top: 0 !important; } .pr-lg-0, .px-lg-0 { padding-right: 0 !important; } .pb-lg-0, .py-lg-0 { padding-bottom: 0 !important; } .pl-lg-0, .px-lg-0 { padding-left: 0 !important; } .p-lg-1 { padding: 0.25rem !important; } .pt-lg-1, .py-lg-1 { padding-top: 0.25rem !important; } .pr-lg-1, .px-lg-1 { padding-right: 0.25rem !important; } .pb-lg-1, .py-lg-1 { padding-bottom: 0.25rem !important; } .pl-lg-1, .px-lg-1 { padding-left: 0.25rem !important; } .p-lg-2 { padding: 0.5rem !important; } .pt-lg-2, .py-lg-2 { padding-top: 0.5rem !important; } .pr-lg-2, .px-lg-2 { padding-right: 0.5rem !important; } .pb-lg-2, .py-lg-2 { padding-bottom: 0.5rem !important; } .pl-lg-2, .px-lg-2 { padding-left: 0.5rem !important; } .p-lg-3 { padding: 1rem !important; } .pt-lg-3, .py-lg-3 { padding-top: 1rem !important; } .pr-lg-3, .px-lg-3 { padding-right: 1rem !important; } .pb-lg-3, .py-lg-3 { padding-bottom: 1rem !important; } .pl-lg-3, .px-lg-3 { padding-left: 1rem !important; } .p-lg-4 { padding: 1.5rem !important; } .pt-lg-4, .py-lg-4 { padding-top: 1.5rem !important; } .pr-lg-4, .px-lg-4 { padding-right: 1.5rem !important; } .pb-lg-4, .py-lg-4 { padding-bottom: 1.5rem !important; } .pl-lg-4, .px-lg-4 { padding-left: 1.5rem !important; } .p-lg-5 { padding: 3rem !important; } .pt-lg-5, .py-lg-5 { padding-top: 3rem !important; } .pr-lg-5, .px-lg-5 { padding-right: 3rem !important; } .pb-lg-5, .py-lg-5 { padding-bottom: 3rem !important; } .pl-lg-5, .px-lg-5 { padding-left: 3rem !important; } .m-lg-auto { margin: auto !important; } .mt-lg-auto, .my-lg-auto { margin-top: auto !important; } .mr-lg-auto, .mx-lg-auto { margin-right: auto !important; } .mb-lg-auto, .my-lg-auto { margin-bottom: auto !important; } .ml-lg-auto, .mx-lg-auto { margin-left: auto !important; } } @media (min-width: 1200px) { .m-xl-0 { margin: 0 !important; } .mt-xl-0, .my-xl-0 { margin-top: 0 !important; } .mr-xl-0, .mx-xl-0 { margin-right: 0 !important; } .mb-xl-0, .my-xl-0 { margin-bottom: 0 !important; } .ml-xl-0, .mx-xl-0 { margin-left: 0 !important; } .m-xl-1 { margin: 0.25rem !important; } .mt-xl-1, .my-xl-1 { margin-top: 0.25rem !important; } .mr-xl-1, .mx-xl-1 { margin-right: 0.25rem !important; } .mb-xl-1, .my-xl-1 { margin-bottom: 0.25rem !important; } .ml-xl-1, .mx-xl-1 { margin-left: 0.25rem !important; } .m-xl-2 { margin: 0.5rem !important; } .mt-xl-2, .my-xl-2 { margin-top: 0.5rem !important; } .mr-xl-2, .mx-xl-2 { margin-right: 0.5rem !important; } .mb-xl-2, .my-xl-2 { margin-bottom: 0.5rem !important; } .ml-xl-2, .mx-xl-2 { margin-left: 0.5rem !important; } .m-xl-3 { margin: 1rem !important; } .mt-xl-3, .my-xl-3 { margin-top: 1rem !important; } .mr-xl-3, .mx-xl-3 { margin-right: 1rem !important; } .mb-xl-3, .my-xl-3 { margin-bottom: 1rem !important; } .ml-xl-3, .mx-xl-3 { margin-left: 1rem !important; } .m-xl-4 { margin: 1.5rem !important; } .mt-xl-4, .my-xl-4 { margin-top: 1.5rem !important; } .mr-xl-4, .mx-xl-4 { margin-right: 1.5rem !important; } .mb-xl-4, .my-xl-4 { margin-bottom: 1.5rem !important; } .ml-xl-4, .mx-xl-4 { margin-left: 1.5rem !important; } .m-xl-5 { margin: 3rem !important; } .mt-xl-5, .my-xl-5 { margin-top: 3rem !important; } .mr-xl-5, .mx-xl-5 { margin-right: 3rem !important; } .mb-xl-5, .my-xl-5 { margin-bottom: 3rem !important; } .ml-xl-5, .mx-xl-5 { margin-left: 3rem !important; } .p-xl-0 { padding: 0 !important; } .pt-xl-0, .py-xl-0 { padding-top: 0 !important; } .pr-xl-0, .px-xl-0 { padding-right: 0 !important; } .pb-xl-0, .py-xl-0 { padding-bottom: 0 !important; } .pl-xl-0, .px-xl-0 { padding-left: 0 !important; } .p-xl-1 { padding: 0.25rem !important; } .pt-xl-1, .py-xl-1 { padding-top: 0.25rem !important; } .pr-xl-1, .px-xl-1 { padding-right: 0.25rem !important; } .pb-xl-1, .py-xl-1 { padding-bottom: 0.25rem !important; } .pl-xl-1, .px-xl-1 { padding-left: 0.25rem !important; } .p-xl-2 { padding: 0.5rem !important; } .pt-xl-2, .py-xl-2 { padding-top: 0.5rem !important; } .pr-xl-2, .px-xl-2 { padding-right: 0.5rem !important; } .pb-xl-2, .py-xl-2 { padding-bottom: 0.5rem !important; } .pl-xl-2, .px-xl-2 { padding-left: 0.5rem !important; } .p-xl-3 { padding: 1rem !important; } .pt-xl-3, .py-xl-3 { padding-top: 1rem !important; } .pr-xl-3, .px-xl-3 { padding-right: 1rem !important; } .pb-xl-3, .py-xl-3 { padding-bottom: 1rem !important; } .pl-xl-3, .px-xl-3 { padding-left: 1rem !important; } .p-xl-4 { padding: 1.5rem !important; } .pt-xl-4, .py-xl-4 { padding-top: 1.5rem !important; } .pr-xl-4, .px-xl-4 { padding-right: 1.5rem !important; } .pb-xl-4, .py-xl-4 { padding-bottom: 1.5rem !important; } .pl-xl-4, .px-xl-4 { padding-left: 1.5rem !important; } .p-xl-5 { padding: 3rem !important; } .pt-xl-5, .py-xl-5 { padding-top: 3rem !important; } .pr-xl-5, .px-xl-5 { padding-right: 3rem !important; } .pb-xl-5, .py-xl-5 { padding-bottom: 3rem !important; } .pl-xl-5, .px-xl-5 { padding-left: 3rem !important; } .m-xl-auto { margin: auto !important; } .mt-xl-auto, .my-xl-auto { margin-top: auto !important; } .mr-xl-auto, .mx-xl-auto { margin-right: auto !important; } .mb-xl-auto, .my-xl-auto { margin-bottom: auto !important; } .ml-xl-auto, .mx-xl-auto { margin-left: auto !important; } } .text-monospace { font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; } .text-justify { text-align: justify !important; } .text-nowrap { white-space: nowrap !important; } .text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } @media (min-width: 576px) { .text-sm-left { text-align: left !important; } .text-sm-right { text-align: right !important; } .text-sm-center { text-align: center !important; } } @media (min-width: 768px) { .text-md-left { text-align: left !important; } .text-md-right { text-align: right !important; } .text-md-center { text-align: center !important; } } @media (min-width: 992px) { .text-lg-left { text-align: left !important; } .text-lg-right { text-align: right !important; } .text-lg-center { text-align: center !important; } } @media (min-width: 1200px) { .text-xl-left { text-align: left !important; } .text-xl-right { text-align: right !important; } .text-xl-center { text-align: center !important; } } .text-lowercase { text-transform: lowercase !important; } .text-uppercase { text-transform: uppercase !important; } .text-capitalize { text-transform: capitalize !important; } .font-weight-light { font-weight: 300 !important; } .font-weight-normal { font-weight: 400 !important; } .font-weight-bold { font-weight: 700 !important; } .font-italic { font-style: italic !important; } .text-white { color: #fff !important; } .text-primary { color: #1a1a1a !important; } a.text-primary:hover, a.text-primary:focus { color: #010000 !important; } .text-secondary { color: #fff !important; } a.text-secondary:hover, a.text-secondary:focus { color: #e6e5e5 !important; } .text-success { color: #4BBF73 !important; } a.text-success:hover, a.text-success:focus { color: #389f5c !important; } .text-info { color: #1F9BCF !important; } a.text-info:hover, a.text-info:focus { color: #187aa3 !important; } .text-warning { color: #f0ad4e !important; } a.text-warning:hover, a.text-warning:focus { color: #ec971f !important; } .text-danger { color: #d9534f !important; } a.text-danger:hover, a.text-danger:focus { color: #c9302c !important; } .text-light { color: #fff !important; } a.text-light:hover, a.text-light:focus { color: #e6e5e5 !important; } .text-dark { color: #343a40 !important; } a.text-dark:hover, a.text-dark:focus { color: #1d2124 !important; } .text-body { color: #919aa1 !important; } .text-muted { color: #919aa1 !important; } .text-black-50 { color: rgba(0, 0, 0, 0.5) !important; } .text-white-50 { color: rgba(255, 255, 255, 0.5) !important; } .text-hide { font: 0/0 a; color: transparent; text-shadow: none; background-color: transparent; border: 0; } .visible { visibility: visible !important; } .invisible { visibility: hidden !important; } @media print { *, *::before, *::after { text-shadow: none !important; -webkit-box-shadow: none !important; box-shadow: none !important; } a:not(.btn) { text-decoration: underline; } abbr[title]::after { content: " (" attr(title) ")"; } pre { white-space: pre-wrap !important; } pre, blockquote { border: 1px solid #adb5bd; page-break-inside: avoid; } thead { display: table-header-group; } tr, img { page-break-inside: avoid; } p, h2, h3 { orphans: 3; widows: 3; } h2, h3 { page-break-after: avoid; } @page { size: a3; } body { min-width: 992px !important; } .container { min-width: 992px !important; } .navbar { display: none; } .badge { border: 1px solid #000; } .table { border-collapse: collapse !important; } .table td, .table th { background-color: #fff !important; } .table-bordered th, .table-bordered td { border: 1px solid #eceeef !important; } .table-dark { color: inherit; } .table-dark th, .table-dark td, .table-dark thead th, .table-dark tbody + tbody { border-color: rgba(0, 0, 0, 0.05); } .table .thead-dark th { color: inherit; border-color: rgba(0, 0, 0, 0.05); } } .navbar { font-size: 0.765625rem; text-transform: uppercase; font-weight: 600; } .navbar-nav .nav-link { padding-top: .715rem; padding-bottom: .715rem; } .navbar-brand { margin-right: 2rem; } .bg-primary { background-color: #1a1a1a !important; } .bg-light { border: 1px solid rgba(0, 0, 0, 0.1); } .bg-light.navbar-fixed-top { border-width: 0 0 1px 0; } .bg-light.navbar-bottom-top { border-width: 1px 0 0 0; } .nav-item { margin-right: 2rem; } .btn { font-size: 0.765625rem; text-transform: uppercase; } .btn-sm, .btn-group-sm > .btn { font-size: 10px; } .btn-warning, .btn-warning:hover, .btn-warning:not([disabled]):not(.disabled):active, .btn-warning:focus { color: #fff; } .btn-outline-secondary { border-color: #919aa1; color: #919aa1; } .btn-outline-secondary:not([disabled]):not(.disabled):hover, .btn-outline-secondary:not([disabled]):not(.disabled):focus, .btn-outline-secondary:not([disabled]):not(.disabled):active { background-color: #ced4da; border-color: #ced4da; color: #fff; } .btn-outline-secondary:not([disabled]):not(.disabled):focus { -webkit-box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5); box-shadow: 0 0 0 0.2rem rgba(206, 212, 218, 0.5); } [class*="btn-outline-"] { border-width: 2px; } .border-secondary { border: 1px solid #ced4da !important; } body { font-weight: 200; letter-spacing: 1px; } h1, h2, h3, h4, h5, h6 { text-transform: uppercase; letter-spacing: 3px; } .text-secondary { color: #919aa1 !important; } th { font-size: 0.765625rem; text-transform: uppercase; } .table th, .table td { padding: 1.5rem; } .table-sm th, .table-sm td { padding: 0.75rem; } .dropdown-menu { font-size: 0.765625rem; text-transform: none; } .list-group-item h1, .list-group-item h2, .list-group-item h3, .list-group-item h4, .list-group-item h5, .list-group-item h6, .list-group-item .h1, .list-group-item .h2, .list-group-item .h3, .list-group-item .h4, .list-group-item .h5, .list-group-item .h6 { color: inherit; } .card-title, .card-header { color: inherit; }
test/static-server/at-rule-case-2--remove.css
bezoerb/penthouse
@page :first { font-size: 120%; } @page :left { margin: 2in 3in; }
index.html
pascalbetz/pascalbetz.github.io
--- layout: default title: Home --- <div class="posts"> {% for post in paginator.posts %} <div class="post"> <h1 class="post-title"> <a href="{{ post.url }}"> {{ post.title }} </a> </h1> <span class="post-date">{{ post.date | date_to_string }}</span> {{ post.content }} </div> {% endfor %} </div> <div class="pagination"> {% if paginator.next_page %} <a class="pagination-item older" href="{{ site.baseurl }}/page{{paginator.next_page}}">Older</a> {% else %} <span class="pagination-item older">Older</span> {% endif %} {% if paginator.previous_page %} {% if paginator.page == 2 %} <a class="pagination-item newer" href="{{ site.baseurl }}/">Newer</a> {% else %} <a class="pagination-item newer" href="{{ site.baseurl }}/page{{paginator.previous_page}}">Newer</a> {% endif %} {% else %} <span class="pagination-item newer">Newer</span> {% endif %} </div>
plugins/perl/xchat2-perl.html
xchataqua/xchat
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>X-Chat 2 Perl Interface</title> <meta http-equiv="content-type" content="text/html; charset=utf-8" /> <link rev="made" href="mailto:khisanth@miyu.hopto.org" /> <style type="text/css"> .branch { list-style: none; } li code { padding-right: 0.5em; } .example { width: 98%; padding: 0.5em; float: left; font-family: monospace; } .example .line_number { float: left; text-align: right; margin-right: 10px; padding-right: 5px; border-right: 1px solid white; } .example .content { float: left; } .example .content pre { margin: 0; } td > table { margin: 0.5em; border-collapse: collapse; } td > table td { border: 1px solid black; } .synComment { color: rgb(135,206,235); } .synPreProc { color: rgb(205,92,92); } .synError { } .synConstant { color: #ffa0a0; } .synSpecial { color: rgb(255,222,173); } .synIgnore { color: rgb(102,102,102); } .synNormal { color: rgb(255,255,255); background-color: rgb(51,51,51); } .synType { color: rgb(189,183,107); } .synIdentifier { color: rgb(152,251,152); } .synTodo { color: rgb(255,69,0); background-color: rgb(238,238,0); } .synStatement { color: rgb(240,230,140); } </style> </head> <body style="background-color: white"> <table border="0" width="100%" cellspacing="0" cellpadding="3"> <tr><td class="block" style="background-color: #cccccc" valign="middle"> <big><strong><span class="block">&nbsp;X-Chat 2 Perl Interface</span></strong></big> </td></tr> </table> <!-- INDEX BEGIN --> <div> <p><a name="__index__"></a></p> <ul> <li><a href="#x_chat_2_perl_interface">X-Chat 2 Perl Interface</a></li> <li class="branch"> <ul> <li><a href="#introduction">Introduction</a></li> <li><a href="#constants">Constants</a></li> <li class="branch"> <ul> <li><a href="#priorities">Priorities</a></li> <li><a href="#return_values">Return values</a></li> <li class="branch"> <ul> <li><a href="#timer_and_fd_hooks">Timer and fd hooks</a></li> </ul> </li> <li><a href="#hook_fd_flags">hook_fd flags</a></li> </ul> </li> <li><a href="#functions">Functions</a></li> <li class="branch"> <ul> <li><a href="#xchat_register"><code>Xchat::register( $name, $version, [$description,[$callback]] )</code></a></li> <li><a href="#xchat_hook_server"><code>Xchat::hook_server( $message, $callback, [\%options] )</code></a></li> <li><a href="#xchat_hook_command"><code>Xchat::hook_command( $command, $callback, [\%options] )</code></a></li> <li><a href="#xchat_hook_print"><code>Xchat::hook_print( $event,$callback, [\%options] )</code></a></li> <li><a href="#xchat_hook_timer"><code>Xchat::hook_timer( $timeout,$callback, [\%options | $data] )</code></a></li> <li><a href="#xchat_hook_fd"><code>Xchat::hook_fd( $handle, $callback, [ \%options ] )</code></a></li> <li class="branch"> <ul> <li><a href="#when_callbacks_are_invoked">When callbacks are invoked</a></li> <li><a href="#callback_arguments">Callback Arguments</a></li> <li><a href="#callback_return_values">Callback return values</a></li> <li><a href="#miscellaneous_hook_related_information">Miscellaneous Hook Related Information</a></li> </ul> </li> <li><a href="#xchat_unhook"><code>Xchat::unhook( $hook )</code></a></li> <li><a href="#xchat_print"><code>Xchat::print( $text | \@lines, [$channel,[$server]] )</code></a></li> <li><a href="#xchat_printf"><code>Xchat::printf( $format, LIST )</code></a></li> <li><a href="#xchat_command"><code>Xchat::command( $command | \@commands, [$channel,[$server]] )</code></a></li> <li><a href="#xchat_commandf"><code>Xchat::commandf( $format, LIST )</code></a></li> <li><a href="#xchat_find_context"><code>Xchat::find_context( [$channel, [$server]] )</code></a></li> <li><a href="#xchat_get_context"><code>Xchat::get_context()</code></a></li> <li><a href="#xchat_set_context"><code>Xchat::set_context( $context | $channel,[$server] )</code></a></li> <li><a href="#xchat_get_info"><code>Xchat::get_info( $id )</code></a></li> <li><a href="#xchat_get_prefs"><code>Xchat::get_prefs( $name )</code></a></li> <li><a href="#xchat_emit_print"><code>Xchat::emit_print( $event, LIST )</code></a></li> <li><a href="#xchat_send_modes"><code>Xchat::send_modes( $target | \@targets, $sign, $mode, [ $modes_per_line ] )</code></a></li> <li><a href="#xchat_nickcmp"><code>Xchat::nickcmp( $nick1, $nick2 )</code></a></li> <li><a href="#xchat_get_list"><code>Xchat::get_list( $name )</code></a></li> <li><a href="#xchat_user_info"><code>Xchat::user_info( [$nick] )</code></a></li> <li><a href="#xchat_context_info"><code>Xchat::context_info( [$context] )</code></a></li> <li><a href="#xchat_strip_code"><code>Xchat::strip_code( $string )</code></a></li> </ul> </li> <li><a href="#examples">Examples</a></li> <li class="branch"> <ul> <li><a href="#asynchronous_dns_resolution_with_hook_fd">Asynchronous DNS resolution with hook_fd</a></li> </ul> </li> <li><a href="#contact_information">Contact Information</a></li> </ul> </li> </ul> <hr /> </div> <!-- INDEX END --> <p> </p> <h1><a name="x_chat_2_perl_interface" />X-Chat 2 Perl Interface</h1> <p> </p> <h2><a name="introduction" />Introduction</h2> <p>This is the new Perl interface for X-Chat 2. However, due to changes in xchat's plugin code you will need xchat 2.0.8 or above to load this. Scripts written using the old interface will continue to work. If there are any problems, questions, comments or suggestions please email them to the address on the bottom of this page.</p> <p> </p> <h2><a name="constants" />Constants</h2> <p> </p> <h3><a name="priorities" />Priorities</h3> <ul> <li><strong><code>Xchat::PRI_HIGHEST</code></strong> </li> <li><strong><code>Xchat::PRI_HIGH</code></strong> </li> <li><strong><code>Xchat::PRI_NORM</code></strong> </li> <li><strong><code>Xchat::PRI_LOW</code></strong> </li> <li><strong><code>Xchat::PRI_LOWEST</code></strong> </li> </ul> <p> </p> <h3><a name="return_values" />Return values</h3> <ul> <li><strong><code>Xchat::EAT_NONE</code> - pass the event along</strong> </li> <li><strong><code>Xchat::EAT_XCHAT</code> - don't let xchat see this event</strong> </li> <li><strong><code>Xchat::EAT_PLUGIN</code> - don't let other scripts and plugins see this event but xchat will still see it</strong> </li> <li><strong><code>Xchat::EAT_ALL</code> - don't let anything else see this event</strong> </li> </ul> <p> </p> <h4><a name="timer_and_fd_hooks" />Timer and fd hooks</h4> <ul> <li><strong><code>Xchat::KEEP</code> - keep the timer going or hook watching the handle</strong> </li> <li><strong><code>Xchat::REMOVE</code> - remove the timer or hook watching the handle</strong> </li> </ul> <p> </p> <h3><a name="hook_fd_flags" />hook_fd flags</h3> <ul> <li><strong><code>Xchat::FD_READ</code> - invoke the callback when the handle is ready for reading</strong> </li> <li><strong><code>Xchat::FD_WRITE</code> - invoke the callback when the handle is ready for writing</strong> </li> <li><strong><code>Xchat::FD_EXCEPTION</code> - invoke the callback if an exception occurs</strong> </li> <li><strong><code>Xchat::FD_NOTSOCKET</code> - indicate that the handle being hooked is not a socket</strong> </li> </ul> <p> </p> <h2><a name="functions" />Functions</h2> <p> </p> <h3><a name="xchat_register" /><code>Xchat::register( $name, $version, [$description,[$callback]] )</code></h3> <ul> <li><strong><code>$name</code> - The name of this script</strong> </li> <li><strong><code>$version</code> - This script's version</strong> </li> <li><strong><code>$description</code> - A description for this script</strong> </li> <li><strong><code>$callback</code> - This is a function that will be called when the is script unloaded. This can be either a reference to a function or an anonymous sub reference.</strong> </li> </ul> <p>This is the first thing to call in every script.</p> <p> </p> <h3><a name="xchat_hook_server" /><code>Xchat::hook_server( $message, $callback, [\%options] )</code></h3> <p> </p> <h3><a name="xchat_hook_command" /><code>Xchat::hook_command( $command, $callback, [\%options] )</code></h3> <p> </p> <h3><a name="xchat_hook_print" /><code>Xchat::hook_print( $event,$callback, [\%options] )</code></h3> <p> </p> <h3><a name="xchat_hook_timer" /><code>Xchat::hook_timer( $timeout,$callback, [\%options | $data] )</code></h3> <p> </p> <h3><a name="xchat_hook_fd" /><code>Xchat::hook_fd( $handle, $callback, [ \%options ] )</code></h3> <p>These functions can be to intercept various events. hook_server can be used to intercept any incoming message from the IRC server. hook_command can be used to intercept any command, if the command doesn't currently exist then a new one is created. hook_print can be used to intercept any of the events listed in Setttings-&gt;Advanced-&gt;Text Events hook_timer can be used to create a new timer</p> <ul> <li><strong><code>$message</code> - server message to hook such as PRIVMSG</strong> </li> <li><strong><code>$command</code> - command to intercept, without the leading /</strong> </li> <li><strong><code>$event</code> - one of the events listed in Settings-&gt;Advanced-&gt;Text Events</strong> </li> <li><strong><code>$timeout</code> - timeout in milliseconds</strong> </li> <li><strong><code>$handle</code> - the I/O handle you want to monitor with hook_fd. This must be something that has a fileno. See perldoc -f fileno or <a href="http://perldoc.perl.org/functions/fileno.html">fileno</a></strong> </li> <li><strong><code>$callback</code> - callback function, this is called whenever the hooked event is trigged, the following are the conditions that will trigger the different hooks. This can be either a reference to a function or an anonymous sub reference.</strong> </li> <li><strong>\%options - a hash reference containing addional options for the hooks</strong> </li> </ul> <p>Valid keys for \%options:</p> <table border="1"> <tr> <td>data</td> <td>Additional data that is to be associated with the<br /> hook. For timer hooks this value can be provided either as<br /> <code>Xchat::hook_timer( $timeout, $cb,{data=&gt;$data})</code><br /> or <code>Xchat::hook_timer( $timeout, $cb, $data )</code>.<br /> However, this means that hook_timer cannot be provided<br /> with a hash reference containing data as a key.<br /> example:<br /> my $options = { data =&gt; [@arrayOfStuff] };<br /> Xchat::hook_timer( $timeout, $cb, $options );<br /> <br /> In this example, the timer's data will be<br /> [@arrayOfStuff] and not { data =&gt; [@arrayOfStuff] }<br /> <br /> This key is valid for all of the hook functions.<br /> <br /> Default is undef.<br /> </td> </tr> <tr> <td>priority</td> <td>Sets the priority for the hook.<br /> It can be set to one of the <code>Xchat::PRI_*</code> constants.<br /> <br /> This key only applies to server, command and print hooks.<br /> <br /> Default is <code>Xchat::PRI_NORM</code>. </td> </tr> <tr> <td>help_text</td> <td>Text displayed for /help $command.<br /> <br /> This key only applies to command hooks.<br /> <br /> Default is "". </td> </tr> <tr> <td>flags</td> <td>Specify the flags for a fd hook.<br /> <br /> See <a href="#hook_fd_flags">hook fd flags</a> section for valid values.<br /> <br /> On Windows if the handle is a pipe you specify<br /> Xchat::FD_NOTSOCKET in addition to any other flags you might be using.<br /> <br /> This key only applies to fd hooks.<br /> Default is Xchat::FD_READ </td> </tr></table><p> </p> <h4><a name="when_callbacks_are_invoked" />When callbacks are invoked</h4> <p>Each of the hooks will be triggered at different times depending on the type of hook.</p> <table border="1"> <tr style="background-color: #dddddd"> <td>Hook Type</td> <td>When the callback will be invoked</td> </tr> <tr> <td>server hooks</td> <td>a <code>$message</code> message is received from the server </td> </tr> <tr> <td>command hooks</td> <td>the <code>$command</code> command is executed, either by the user or from a script </td> </tr> <tr> <td>print hooks</td> <td>X-Chat is about to print the message for the <code>$event</code> event </td> </tr> <tr> <td>timer hooks</td> <td>called every <code>$timeout</code> milliseconds (1000 millisecond is 1 second)<br /> the callback will be executed in the same context where the hook_timer was called, if the context no longer exists then it will execute in a random context </td> </tr> <tr> <td>fd hooks</td> <td>depends on the flags that were passed to hook_fd<br /> See <a href="#hook_fd_flags">hook_fd flags</a> section. </td> </tr> </table><p>The value return from these hook functions can be passed to <code>Xchat::unhook</code> to remove the hook.</p> <p> </p> <h4><a name="callback_arguments" />Callback Arguments</h4> <p>All callback functions will receive their arguments in <code>@_</code> like every other Perl subroutine.</p> <p> Server and command callbacks<br /> <br /> <code>$_[0]</code> - array reference containing the IRC message or command and arguments broken into words<br /> example:<br /> /command arg1 arg2 arg3<br /> <code>$_[0][0]</code> - command<br /> <code>$_[0][1]</code> - arg1<br /> <code>$_[0][2]</code> - arg2<br /> <code>$_[0][3]</code> - arg3<br /> <br /> <code>$_[1]</code> - array reference containing the Nth word to the last word<br /> example:<br /> /command arg1 arg2 arg3<br /> <code>$_[1][0]</code> - command arg1 arg2 arg3<br /> <code>$_[1][1]</code> - arg1 arg2 arg3<br /> <code>$_[1][2]</code> - arg2 arg3<br /> <code>$_[1][3]</code> - arg3<br /> <br /> <code>$_[2]</code> - the data that was passed to the hook function<br /> <br /> Print callbacks<br /> <br /> <code>$_[0]</code> - array reference containing the values for the text event see Settings-&gt;Advanced-&gt;Text Events<br /> <code>$_[1]</code> - the data that was passed to the hook function<br /> <br /> Timer callbacks<br /> <br /> <code>$_[0]</code> - the data that was passed to the hook function<br /> <br />fd callbacks<br /> <br /> <code>$_[0]</code> - the handle that was passed to hook_fd<br /> <code>$_[1]</code> - flags indicating why the callback was called<br /> <code>$_[2]</code> - the data that was passed to the hook function<br /> </p><p> </p> <h4><a name="callback_return_values" />Callback return values</h4> <p>All server, command and print callbacks should return one of the <code>Xchat::EAT_*</code> constants. Timer callbacks can return Xchat::REMOVE to remove the timer or Xchat::KEEP to keep it going</p> <p> </p> <h4><a name="miscellaneous_hook_related_information" />Miscellaneous Hook Related Information</h4> <p>For server hooks, if <code>$message</code> is &quot;RAW LINE&quot; then <code>$cb</code> will be called for every IRC message than X-Chat receives.</p> <p>For command hooks if <code>$command</code> is &quot;&quot; then <code>$cb</code> will be called for messages entered by the user that is not a command.</p> <p>For print hooks besides those events listed in Settings-&gt;Advanced-&gt;Text Events, these additional events can be used.</p> <table border="1"> <tr style="background-color: #dddddd"> <td>Event</td> <td>Description</td> </tr> <tr> <td>"Open Context"</td> <td>a new context is created</td> </tr> <tr> <td>"Close Context"</td> <td>a context has been close</td> </tr> <tr> <td>"Focus Tab"</td> <td>when a tab is brought to the front</td> </tr> <tr> <td>"Focus Window"</td> <td>when a top level window is focused or the main tab window is focused by the window manager </td> </tr> <tr> <td>"DCC Chat Text"</td> <td>when text from a DCC Chat arrives. <code>$_[0]</code> will have these values<br /> <br /> <code>$_[0][0]</code> - Address<br /> <code>$_[0][1]</code> - Port<br /> <code>$_[0][2]</code> - Nick<br /> <code>$_[0][3]</code> - Message<br /> </td> </tr> <tr> <td>"Key Press"</td> <td>used for intercepting key presses<br /> $_[0][0] - key value<br /> $_[0][1] - state bitfield, 1 - shift, 4 - control, 8 - alt<br /> $_[0][2] - string version of the key which might be empty for unprintable keys<br /> $_[0][3] - length of the string in $_[0][2]<br /> </td> </tr> </table><p> </p> <h3><a name="xchat_unhook" /><code>Xchat::unhook( $hook )</code></h3> <ul> <li><strong><code>$hook</code> - the hook that was previously returned by one of the <code>Xchat::hook_*</code> functions</strong> </li> </ul> <p>This function is used to removed a hook previously added with one of the <code>Xchat::hook_*</code> functions</p> <p>It returns the data that was passed to the <code>Xchat::hook_*</code> function when the hook was added</p> <p> </p> <h3><a name="xchat_print" /><code>Xchat::print( $text | \@lines, [$channel,[$server]] )</code></h3> <ul> <li><strong><code>$text</code> - the text to print</strong> </li> <li><strong><code>\@lines</code> - array reference containing lines of text to be printed all the elements will be joined together before printing</strong> </li> <li><strong><code>$channel</code> - channel or tab with the given name where <code>$text</code> will be printed</strong> </li> <li><strong><code>$server</code> - specifies that the text will be printed in a channel or tab that is associated with <code>$server</code></strong> </li> </ul> <p>The first argument can either be a string or an array reference of strings. Either or both of <code>$channel</code> and <code>$server</code> can be undef.</p> <p>If called as <code>Xchat::print( $text )</code>, it will always return true. If called with either the channel or the channel and the server specified then it will return true if a context is found and false otherwise. The text will not be printed if the context is not found. The meaning of setting <code>$channel</code> or <code>$server</code> to undef is the same as <a href="#xchat_find_context">find_context</a>.</p> <p> </p> <h3><a name="xchat_printf" /><code>Xchat::printf( $format, LIST )</code></h3> <ul> <li><strong><code>$format</code> - a format string, see &quot;perldoc -f <a href="http://perldoc.perl.org/functions/sprintf.html">sprintf</a>&quot; for further detail</strong> </li> <li><strong>LIST - list of values for the format fields</strong> </li> </ul> <p> </p> <h3><a name="xchat_command" /><code>Xchat::command( $command | \@commands, [$channel,[$server]] )</code></h3> <ul> <li><strong><code>$command</code> - the command to execute, without the leading /</strong> </li> <li><strong><code>\@commands</code> - array reference containing a list of commands to execute</strong> </li> <li><strong><code>$channel</code> - channel or tab with the given name where <code>$command</code> will be executed</strong> </li> <li><strong><code>$server</code> - specifies that the command will be executed in a channel or tab that is associated with <code>$server</code></strong> </li> </ul> <p>The first argument can either be a string or an array reference of strings. Either or both of <code>$channel</code> and <code>$server</code> can be undef.</p> <p>If called as <code>Xchat::command( $command )</code>, it will always return true. If called with either the channel or the channel and the server specified then it will return true if a context is found and false otherwise. The command will not be executed if the context is not found. The meaning of setting <code>$channel</code> or <code>$server</code> to undef is the same as find_context.</p> <p> </p> <h3><a name="xchat_commandf" /><code>Xchat::commandf( $format, LIST )</code></h3> <ul> <li><strong><code>$format</code> - a format string, see &quot;perldoc -f <a href="http://perldoc.perl.org/functions/sprintf.html">sprintf</a>&quot; for further detail</strong> </li> <li><strong>LIST - list of values for the format fields</strong> </li> </ul> <p> </p> <h3><a name="xchat_find_context" /><code>Xchat::find_context( [$channel, [$server]] )</code></h3> <ul> <li><strong><code>$channel</code> - name of a channel</strong> </li> <li><strong><code>$server</code> - name of a server</strong> </li> </ul> <p>Either or both of <code>$channel</code> and $server can be undef. Calling <code>Xchat::find_context()</code> is the same as calling <code>Xchat::find_context( undef, undef)</code> and <code>Xchat::find_context( $channel )</code> is the same as <code>Xchat::find_context( $channel, undef )</code>.</p> <p>If <code>$server</code> is undef, find any channel named $channel. If <code>$channel</code> is undef, find the front most window or tab named <code>$server</code>.If both $channel and <code>$server</code> are undef, find the currently focused tab or window.</p> <p>Return the context found for one of the above situations or undef if such a context cannot be found.</p> <p> </p> <h3><a name="xchat_get_context" /><code>Xchat::get_context()</code></h3> <p>Returns the current context.</p> <p> </p> <h3><a name="xchat_set_context" /><code>Xchat::set_context( $context | $channel,[$server] )</code></h3> <ul> <li><strong><code>$context</code> - context value as returned from <a href="#xchat_get_context">get_context</a>,<a href="#xchat_find_context">find_context</a> or one of the fields in the list of hashrefs returned by list_get</strong> </li> <li><strong><code>$channel</code> - name of a channel you want to switch context to</strong> </li> <li><strong><code>$server</code> - name of a server you want to switch context to</strong> </li> </ul> <p>See <a href="#xchat_find_context">find_context</a> for more details on <code>$channel</code> and <code>$server</code>.</p> <p>Returns true on success, false on failure</p> <p> </p> <h3><a name="xchat_get_info" /><code>Xchat::get_info( $id )</code></h3> <ul> <li><strong><code>$id</code> - one of the following case sensitive values</strong> </li> </ul> <table border="1"> <tr style="background-color: #dddddd"> <td>ID</td> <td>Return value</td> <td>Associated Command(s)</td> </tr> <tr> <td>away</td> <td>away reason or undef if you are not away</td> <td>AWAY, BACK</td> </tr> <tr> <td>channel</td> <td>current channel name</td> <td>SETTAB</td> </tr> <tr> <td>charset</td> <td>character-set used in the current context</td> <td>CHARSET</td> </tr> <tr> <td>event_text &lt;Event Name&gt;</td> <td>text event format string for &lt;Event name&gt;<br /> Example: <div class="example synNormal"><div class='line_number'> <div>1</div> </div> <div class='content'><pre><span class="synStatement">my</span> <span class="synIdentifier">$channel_msg_format</span> = Xchat::get_info( <span class="synStatement">&quot;</span><span class="synConstant">event_text Channel Message</span><span class="synStatement">&quot;</span> ); </pre></div> </div> </td> <td></td> </tr> <tr> <td>host</td> <td>real hostname of the current server</td> <td></td> </tr><tr> <td>id</td> <td>connection id</td> <td></td> </tr><tr> <td>inputbox</td> <td>contents of the inputbox</td> <td>SETTEXT</td> </tr><tr> <td>libdirfs</td> <td>the system wide directory where xchat will look for plugins. this string is in the same encoding as the local file system</td> <td></td> </tr><tr> <td>modes</td> <td>the current channels modes or undef if not known</td> <td>MODE</td> </tr><tr> <td>network</td> <td>current network name or undef, this value is taken from the Network List</td> <td></td> </tr><tr> <td>nick</td> <td>current nick</td> <td>NICK</td> </tr><tr> <td>nickserv</td> <td>nickserv password for this network or undef, this value is taken from the Network List</td> <td></td> </tr><tr> <td>server</td> <td>current server name <br /> (what the server claims to be) undef if not connected </td> <td></td> </tr><tr> <td>state_cursor</td> <td>current inputbox cursor position in characters</td> <td>SETCURSOR</td> </tr><tr> <td>topic</td> <td>current channel topic</td> <td>TOPIC</td> </tr><tr> <td>version</td> <td>xchat version number</td> <td></td> </tr><tr> <td>win_status</td> <td>status of the xchat window, possible values are "active", "hidden" and "normal"</td> <td>GUI</td> </tr><tr> <td>win_ptr</td> <td>native window pointer, GtkWindow * on Unix, HWND on Win32.<br /> On Unix if you have the Glib module installed you can use my $window = Glib::Object->new_from_pointer( Xchat::get_info( "win_ptr" ) ); to get a Gtk2::Window object.<br /> Additionally when you have detached tabs, each of the windows will return a different win_ptr for the different Gtk2::Window objects.<br /> See <a href="http://xchat.cvs.sourceforge.net/viewvc/xchat/xchat2/plugins/perl/char_count.pl?view=markup">char_count.pl</a> for a longer example of a script that uses this to show how many characters you currently have in your input box. </td> <td></td> </tr> <tr> <td>gtkwin_ptr</td> <td>similar to win_ptr except it will always be a GtkWindow *</td> <td></td> </tr> <tr> <td>xchatdir</td> <td>xchat config directory encoded in UTF-8<br /> examples:<br /> /home/user/.xchat2<br /> C:\Documents and Settings\user\Application Data\X-Chat 2 </td> <td></td> </tr><tr> <td>xchatdirfs</td> <td>same as xchatdir except encoded in the locale file system encoding</td> <td></td> </tr> </table><p>This function is used to retrieve certain information about the current context. If there is an associated command then that command can be used to change the value for a particular ID.</p><p> </p> <h3><a name="xchat_get_prefs" /><code>Xchat::get_prefs( $name )</code></h3> <ul> <li><strong><code>$name</code> - name of a X-Chat setting (available through the /set command)</strong> </li> </ul> <p>This function provides a way to retrieve X-Chat's setting information.</p> <p>Returns <code>undef</code> if there is no setting called called <code>$name</code>.</p> <p> </p> <h3><a name="xchat_emit_print" /><code>Xchat::emit_print( $event, LIST )</code></h3> <ul> <li><strong><code>$event</code> - name from the Event column in Settings-&gt;Advanced-&gt;Text Events</strong> </li> <li><strong>LIST - this depends on the Description column on the bottom of Settings-&gt;Advanced-&gt;Text Events</strong> </li> </ul> <p>This functions is used to generate one of the events listed under Settings-&gt;Advanced-&gt;Text Events</p> <p>Note: when using this function you MUST return Xchat::EAT_ALL otherwise you will end up with duplicate events. One is the original and the second is the one you emit.</p> <p>Returns true on success, false on failure</p> <p> </p> <h3><a name="xchat_send_modes" /><code>Xchat::send_modes( $target | \@targets, $sign, $mode, [ $modes_per_line ] )</code></h3> <ul> <li><strong><code>$target</code> - a single nick to set the mode on</strong> </li> <li><strong><code>\@targets</code> - an array reference of the nicks to set the mode on</strong> </li> <li><strong><code>$sign</code> - the mode sign, either '+' or '-'</strong> </li> <li><strong><code>$mode</code> - the mode character such as 'o' and 'v', this can only be one character long</strong> </li> <li><strong><code>$modes_per_line</code> - an optional argument maximum number of modes to send per at once, pass 0 use the current server's maximum (default)</strong> </li> </ul> <p>Send multiple mode changes for the current channel. It may send multiple MODE lines if the request doesn't fit on one.</p> <p>Example:</p> <div class="example synNormal"><div class='line_number'> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> <div>10</div> <div>11</div> <div>12</div> <div>13</div> <div>14</div> </div> <div class='content'><pre><span class="synStatement">use strict</span>; <span class="synStatement">use </span>warning; <span class="synStatement">use </span>Xchat <span class="synStatement">qw(</span><span class="synConstant">:all</span><span class="synStatement">)</span>; hook_command( <span class="synStatement">&quot;</span><span class="synConstant">MODES</span><span class="synStatement">&quot;</span>, <span class="synStatement">sub </span>{ <span class="synStatement">my</span> (<span class="synStatement">undef</span>, <span class="synIdentifier">$who</span>, <span class="synIdentifier">$sign</span>, <span class="synIdentifier">$mode</span>) = <span class="synIdentifier">@{$_[</span><span class="synConstant">0</span><span class="synIdentifier">]}</span>; <span class="synStatement">my</span> <span class="synIdentifier">@targets</span> = <span class="synStatement">split</span> <span class="synStatement">/</span><span class="synConstant">,</span><span class="synStatement">/</span>, <span class="synIdentifier">$who</span>; <span class="synStatement">if</span>( <span class="synIdentifier">@targets</span> &gt; <span class="synConstant">1</span> ) { send_modes( \<span class="synIdentifier">@targets</span>, <span class="synIdentifier">$sign</span>, <span class="synIdentifier">$mode</span>, <span class="synConstant">1</span> ); } <span class="synStatement">else</span> { send_modes( <span class="synIdentifier">$who</span>, <span class="synIdentifier">$sign</span>, <span class="synIdentifier">$mode</span> ); } <span class="synStatement">return</span> EAT_XCHAT; }); </pre></div> </div><p> </p> <h3><a name="xchat_nickcmp" /><code>Xchat::nickcmp( $nick1, $nick2 )</code></h3> <ul> <li><strong><code>$nick1, $nick2</code> - the two nicks or channel names that are to be compared</strong> </li> </ul> <p>The comparsion is based on the current server. Either a <a href="http://www.ietf.org/rfc/rfc1459.txt" class="rfc">RFC1459</a> compliant string compare or plain ascii will be using depending on the server. The comparison is case insensitive.</p> <p>Returns a number less than, equal to or greater than zero if <code>$nick1</code> is found respectively, to be less than, to match, or be greater than <code>$nick2</code>.</p> <p> </p> <h3><a name="xchat_get_list" /><code>Xchat::get_list( $name )</code></h3> <ul> <li><strong><code>$name</code> - name of the list, one of the following: &quot;channels&quot;, &quot;dcc&quot;, &quot;ignore&quot;, &quot;notify&quot;, &quot;users&quot;</strong> </li> </ul> <p>This function will return a list of hash references. The hash references will have different keys depend on the list. An empty list is returned if there is no such list.</p> <p>"channels" - list of channels, querys and their server</p><table border="1"> <tr style="background-color: #dddddd"> <td>Key</td> <td>Description</td> </tr> <tr> <td>channel</td> <td>tab name</td> </tr> <tr> <td>chantypes</td> <td>channel types supported by the server, typically "#&amp;"</td> </tr> <tr> <td>context</td> <td>can be used with set_context</td> </tr> <tr> <td>flags</td> <td>Server Bits:<br /> 0 - Connected<br /> 1 - Connecting<br /> 2 - Away<br /> 3 - EndOfMotd(Login complete)<br /> 4 - Has WHOX<br /> 5 - Has IDMSG (FreeNode)<br /> <br /> <p>The following correspond to the /chanopt command</p> 6 - Hide Join/Part Message (text_hidejoinpart)<br /> 7 - unused (was for color paste)<br /> 8 - Beep on message (alert_beep)<br /> 9 - Blink Tray (alert_tray)<br /> 10 - Blink Task Bar (alert_taskbar)<br /> <p>Example of checking if the current context has Hide Join/Part messages set:</p> <div class="example synNormal"><div class='line_number'> <div>1</div> <div>2</div> <div>3</div> </div> <div class='content'><pre><span class="synStatement">if</span>( Xchat::context_info-&gt;{flags} &amp; (<span class="synConstant">1</span> &lt;&lt; <span class="synConstant">6</span>) ) { Xchat::<span class="synStatement">print</span>( <span class="synStatement">&quot;</span><span class="synConstant">Hide Join/Part messages is enabled</span><span class="synStatement">&quot;</span> ); } </pre></div> </div> </td> </tr> <tr> <td>id</td> <td>Unique server ID </td> </tr> <tr> <td>lag</td> <td>lag in milliseconds</td> </tr> <tr> <td>maxmodes</td> <td>Maximum modes per line</td> </tr> <tr> <td>network</td> <td>network name to which this channel belongs</td> </tr> <tr> <td>nickprefixes</td> <td>Nickname prefixes e.g. "+@"</td> </tr> <tr> <td>nickmodes</td> <td>Nickname mode chars e.g. "vo"</td> </tr> <tr> <td>queue</td> <td>number of bytes in the send queue</td> </tr> <tr> <td>server</td> <td>server name to which this channel belongs</td> </tr> <tr> <td>type</td> <td>the type of this context<br /> 1 - server<br /> 2 - channel<br /> 3 - dialog<br /> 4 - notices<br /> 5 - server notices<br /> </td> </tr> <tr> <td>users</td> <td>Number of users in this channel</td> </tr> </table><p>"dcc" - list of DCC file transfers</p> <table border="1"> <tr style="background-color: #dddddd"> <td>Key</td> <td>Value</td> </tr> <tr> <td>address32</td> <td>address of the remote user(ipv4 address)</td> </tr> <tr> <td>cps</td> <td>bytes per second(speed)</td> </tr> <tr> <td>destfile</td> <td>destination full pathname</td> </tr> <tr> <td>file</td> <td>file name</td> </tr> <tr> <td>nick</td> <td>nick of the person this DCC connection is connected to</td> </tr> <tr> <td>port</td> <td>TCP port number</td> </tr> <tr> <td>pos</td> <td>bytes sent/received</td> </tr> <tr> <td>poshigh</td> <td>bytes sent/received, high order 32 bits</td> </tr> <tr> <td>resume</td> <td>point at which this file was resumed<br /> (zero if it was not resumed) </td> </tr> <tr> <td>resumehigh</td> <td>point at which this file was resumed, high order 32 bits<br /> </td> </tr> <tr> <td>size</td> <td>file size in bytes low order 32 bits</td> </tr> <tr> <td>sizehigh</td> <td>file size in bytes, high order 32 bits (when the files is > 4GB)</td> </tr> <tr> <td>status</td> <td>DCC Status:<br /> 0 - queued<br /> 1 - active<br /> 2 - failed<br /> 3 - done<br /> 4 - connecting<br /> 5 - aborted </td> </tr> <tr> <td>type</td> <td>DCC Type:<br /> 0 - send<br /> 1 - receive<br /> 2 - chatrecv<br /> 3 - chatsend </td> </tr></table><p>"ignore" - current ignore list</p> <table border="1"> <tr style="background-color: #dddddd"> <td>Key</td> <td>Value</td> </tr> <tr> <td>mask</td> <td>ignore mask. e.g: *!*@*.aol.com</td> </tr> <tr> <td>flags</td> <td>Bit field of flags.<br /> 0 - private<br /> 1 - notice<br /> 2 - channel<br /> 3 - ctcp<br /> 4 - invite<br /> 5 - unignore<br /> 6 - nosave<br /> 7 - dcc<br /> </td> </tr></table><p>"notify" - list of people on notify</p> <table border="1"> <tr style="background-color: #dddddd"> <td>Key</td> <td>Value</td> </tr> <tr> <td>networks</td> <td>comma separated list of networks where you will be notfified about this user's online/offline status or undef if you will be notificed on every network you are connected to</td> </tr> <tr> <td>nick</td> <td>nickname</td> </tr> <tr> <td>flags</td> <td>0 = is online</td> </tr> <tr> <td>on</td> <td>time when user came online</td> </tr> <tr> <td>off</td> <td>time when user went offline</td> </tr> <tr> <td>seen</td> <td>time when user was last verified still online</td> </tr> </table><p>the values indexed by on, off and seen can be passed to localtime and gmtime, see perldoc -f <a href="http://perldoc.perl.org/functions/localtime.html">localtime</a> and perldoc -f <a href="http://perldoc.perl.org/functions/gmtime.html">gmtime</a> for more detail</p><p>"users" - list of users in the current channel</p> <table border="1"> <tr style="background-color: #dddddd"> <td>Key</td> <td>Value</td> </tr> <tr> <td>away</td> <td>away status(boolean)</td> </tr> <tr> <td>lasttalk</td> <td>last time a user was seen talking, this is the an epoch time(number of seconds since a certain date, that date depends on the OS)</td> </tr> <tr> <td>nick</td> <td>nick name</td> </tr> <tr> <td>host</td> <td>host name in the form: user@host or undef if not known</td> </tr> <tr> <td>prefix</td> <td>prefix character, .e.g: @ or +</td> </tr> <tr> <td>realname</td> <td>Real name or undef</td> </tr> <tr> <td>selected</td> <td>selected status in the user list, only works when retrieving the user list of the focused tab. You can use the /USELECT command to select the nicks</td> </tr> </table><p>"networks" - list of networks and the associated settings from network list</p> <table border="1"> <tr style="background-color: #dddddd"> <td>Key</td> <td>Value</td> </tr> <tr> <td>autojoins</td> <td>An object with the following methods:<br /> <table> <tr> <td>Method</td> <td>Description</td> </tr> <tr> <td>channels()</td> <td>returns a list of this networks' autojoin channels in list context, a count of the number autojoin channels in scalar context</td> </tr> <tr> <td>keys()</td> <td>returns a list of the keys to go with the channels, the order is the same as the channels, if a channel doesn't have a key, '' will be returned in it's place</td> </tr> <tr> <td>pairs()</td> <td>a combination of channels() and keys(), returns a list of (channels, keys) pairs. This can be assigned to a hash for a mapping from channel to key.</td> </tr> <tr> <td>as_hash()</td> <td>return the pairs as a hash reference</td> </tr> <tr> <td>as_string()</td> <td>the original string that was used to construct this autojoin object, this can be used with the JOIN command to join all the channels in the autojoin list</td> </tr> <tr> <td>as_array()</td> <td>return an array reference of hash references consisting of the keys "channel" and "key"</td> </tr> <tr> <td>as_bool()</td> <td>returns true if the network has autojoins and false otherwise</td> </tr> </table> </td> </tr> <tr> <td>connect_commands</td> <td>An array reference containing the connect commands for a network. An empty array if there aren't any</td> </tr> <tr> <td>encoding</td> <td>the encoding for the network</td> </tr> <tr> <td>flags</td> <td> a hash reference corresponding to the checkboxes in the network edit window <table> <tr> <td>allow_invalid</td> <td>true if "Accept invalid SSL certificate" is checked</td> </tr> <tr> <td>autoconnect</td> <td>true if "Auto connect to this network at startup" is checked</td> </tr> <tr> <td>cycle</td> <td>true if "Connect to selected server only" is <strong>NOT</strong> checked</td> </tr> <tr> <td>use_global</td> <td>true if "Use global user information" is checked</td> </tr> <tr> <td>use_proxy</td> <td>true if "Bypass proxy server" is <strong>NOT</strong> checked</td> </tr> <tr> <td>use_ssl</td> <td>true if "Use SSL for all the servers on this network" is checked</td> </tr> </table> </td> </tr> <tr> <td>irc_nick1</td> <td>Corresponds with the "Nick name" field in the network edit window</td> </tr> <tr> <td>irc_nick2</td> <td>Corresponds with the "Second choice" field in the network edit window</td> </tr> <tr> <td>irc_real_name</td> <td>Corresponds with the "Real name" field in the network edit window</td> </tr> <tr> <td>irc_user_name</td> <td>Corresponds with the "User name" field in the network edit window</td> </tr> <tr> <td>network</td> <td>Name of the network</td> </tr> <tr> <td>nickserv_password</td> <td>Corresponds with the "Nickserv password" field in the network edit window</td> </tr> <tr> <td>selected</td> <td>Index into the list of servers in the "servers" key, this is used if the "cycle" flag is false</td> </tr> <tr> <td>server_password</td> <td>Corresponds with the "Server password" field in the network edit window</td> </tr> <tr> <td>servers</td> <td>An array reference of hash references with a "host" and "port" key. If a port is not specified then 6667 will be used.</td> </tr> </table><p> </p> <h3><a name="xchat_user_info" /><code>Xchat::user_info( [$nick] )</code></h3> <ul> <li><strong><code>$nick</code> - the nick to look for, if this is not given your own nick will be used as default</strong> </li> </ul> <p>This function is mainly intended to be used as a shortcut for when you need to retrieve some information about only one user in a channel. Otherwise it is better to use <a href="#xchat_get_list">get_list</a>. If <code>$nick</code> is found a hash reference containing the same keys as those in the &quot;users&quot; list of <a href="#xchat_get_list">get_list</a> is returned otherwise undef is returned. Since it relies on <a href="#xchat_get_list">get_list</a> this function can only be used in a channel context.</p> <p> </p> <h3><a name="xchat_context_info" /><code>Xchat::context_info( [$context] )</code></h3> <ul> <li><strong><code>$context</code> - context returned from <a href="#xchat_get_context">get_context</a>, <a href="#xchat_find_context">find_context</a> and <a href="#xchat_get_list">get_list</a>, this is the context that you want infomation about. If this is omitted, it will default to current context.</strong> </li> </ul> <p>This function will return the information normally retrieved with <a href="#xchat_get_info">get_info</a>, except this is for the context that is passed in. The information will be returned in the form of a hash. The keys of the hash are the <code>$id</code> you would normally supply to <a href="#xchat_get_info">get_info</a> as well as all the keys that are valid for the items in the &quot;channels&quot; list from <a href="#xchat_get_list">get_list</a>. Use of this function is more efficient than calling get_list( &quot;channels&quot; ) and searching through the result.</p> <p>Example:</p> <div class="example synNormal"><div class='line_number'> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> <div>10</div> <div>11</div> </div> <div class='content'><pre><span class="synStatement">use strict</span>; <span class="synStatement">use warnings</span>; <span class="synStatement">use </span>Xchat <span class="synStatement">qw(</span><span class="synConstant">:all</span><span class="synStatement">)</span>; <span class="synComment"># imports all the functions documented on this page</span> register( <span class="synStatement">&quot;</span><span class="synConstant">User Count</span><span class="synStatement">&quot;</span>, <span class="synStatement">&quot;</span><span class="synConstant">0.1</span><span class="synStatement">&quot;</span>, <span class="synStatement">&quot;</span><span class="synConstant">Print out the number of users on the current channel</span><span class="synStatement">&quot;</span> ); hook_command( <span class="synStatement">&quot;</span><span class="synConstant">UCOUNT</span><span class="synStatement">&quot;</span>, \<span class="synIdentifier">&amp;display_count</span> ); <span class="synStatement">sub </span><span class="synIdentifier">display_count </span>{ prnt <span class="synStatement">&quot;</span><span class="synConstant">There are </span><span class="synStatement">&quot;</span> . context_info()-&gt;{users} . <span class="synStatement">&quot;</span><span class="synConstant"> users in this channel.</span><span class="synStatement">&quot;</span>; <span class="synStatement">return</span> EAT_XCHAT; } </pre></div> </div><p> </p> <h3><a name="xchat_strip_code" /><code>Xchat::strip_code( $string )</code></h3> <ul> <li><strong><code>$string</code> - string to remove codes from</strong> </li> </ul> <p>This function will remove bold, color, beep, reset, reverse and underline codes from <code>$string</code>. It will also remove ANSI escape codes which might get used by certain terminal based clients. If it is called in void context <code>$string</code> will be modified otherwise a modified copy of <code>$string</code> is returned.</p> <p> </p> <h2><a name="examples" />Examples</h2> <p> </p> <h3><a name="asynchronous_dns_resolution_with_hook_fd" />Asynchronous DNS resolution with hook_fd</h3> <div class="example synNormal"><div class='line_number'> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> <div>6</div> <div>7</div> <div>8</div> <div>9</div> <div>10</div> <div>11</div> <div>12</div> <div>13</div> <div>14</div> <div>15</div> <div>16</div> <div>17</div> <div>18</div> <div>19</div> <div>20</div> <div>21</div> <div>22</div> <div>23</div> <div>24</div> <div>25</div> <div>26</div> <div>27</div> <div>28</div> <div>29</div> <div>30</div> <div>31</div> <div>32</div> <div>33</div> <div>34</div> <div>35</div> </div> <div class='content'><pre><span class="synStatement">use strict</span>; <span class="synStatement">use warnings</span>; <span class="synStatement">use </span>Xchat <span class="synStatement">qw(</span><span class="synConstant">:all</span><span class="synStatement">)</span>; <span class="synStatement">use </span>Net::DNS; hook_command( <span class="synStatement">&quot;</span><span class="synConstant">BGDNS</span><span class="synStatement">&quot;</span>, <span class="synStatement">sub </span>{ <span class="synStatement">my</span> <span class="synIdentifier">$host</span> = <span class="synIdentifier">$_[</span><span class="synConstant">0</span><span class="synIdentifier">][</span><span class="synConstant">1</span><span class="synIdentifier">]</span>; <span class="synStatement">my</span> <span class="synIdentifier">$resolver</span> = Net::DNS::Resolver-&gt;new; <span class="synStatement">my</span> <span class="synIdentifier">$sock</span> = <span class="synIdentifier">$resolver-&gt;bgsend</span>( <span class="synIdentifier">$host</span> ); hook_fd( <span class="synIdentifier">$sock</span>, <span class="synStatement">sub </span>{ <span class="synStatement">my</span> <span class="synIdentifier">$ready_sock</span> = <span class="synIdentifier">$_[</span><span class="synConstant">0</span><span class="synIdentifier">]</span>; <span class="synStatement">my</span> <span class="synIdentifier">$packet</span> = <span class="synIdentifier">$resolver-&gt;bgread</span>( <span class="synIdentifier">$ready_sock</span> ); <span class="synStatement">if</span>( <span class="synIdentifier">$packet-&gt;authority</span> &amp;&amp; (<span class="synStatement">my</span> <span class="synIdentifier">@answers</span> = <span class="synIdentifier">$packet-&gt;answer</span> ) ) { <span class="synStatement">if</span>( <span class="synIdentifier">@answers</span> ) { prnt <span class="synStatement">&quot;</span><span class="synIdentifier">$host</span><span class="synConstant">:</span><span class="synStatement">&quot;</span>; <span class="synStatement">my</span> <span class="synIdentifier">$padding</span> = <span class="synStatement">&quot;</span><span class="synConstant"> </span><span class="synStatement">&quot;</span> x (<span class="synStatement">length</span>( <span class="synIdentifier">$host</span> ) + <span class="synConstant">2</span>); <span class="synStatement">for</span> <span class="synStatement">my</span> <span class="synIdentifier">$answer</span> ( <span class="synIdentifier">@answers</span> ) { prnt <span class="synIdentifier">$padding</span> . <span class="synIdentifier">$answer-&gt;rdatastr</span> . <span class="synStatement">'</span><span class="synConstant"> </span><span class="synStatement">'</span> . <span class="synIdentifier">$answer-&gt;type</span>; } } } <span class="synStatement">else</span> { prnt <span class="synStatement">&quot;</span><span class="synConstant">Unable to resolve </span><span class="synIdentifier">$host</span><span class="synStatement">&quot;</span>; } <span class="synStatement">return</span> REMOVE; }, { <span class="synConstant">flags</span> =&gt; FD_READ, }); <span class="synStatement">return</span> EAT_XCHAT; }); </pre></div> </div> <p> </p> <h2><a name="contact_information" />Contact Information</h2> <p>Contact Lian Wan Situ at &lt;atmcmnky [at] yahoo.com&gt; for questions, comments and corrections about this page or the Perl plugin itself. You can also find me in #xchat on FreeNode under the nick Khisanth.</p> <table border="0" width="100%" cellspacing="0" cellpadding="3"> <tr><td class="block" style="background-color: #cccccc" valign="middle"> <big><strong><span class="block">&nbsp;X-Chat 2 Perl Interface</span></strong></big> </td></tr> </table> </body> </html>
xebium/Maven-ant-plugin/FitNesseRoot/files/selenium/testsuite.html
manoharanRajesh/testTools
<?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 content="text/html; charset=UTF-8" http-equiv="content-type" /> <title>Test Suite</title> </head> <body> <table id="suiteTable" cellpadding="1" cellspacing="1" border="1" class="selenium"><tbody> <tr><td><b>Test Suite</b></td></tr> <tr><td><a href="testcase.html">testcase</a></td></tr> </tbody></table> </body> </html>
wp-content/plugins/webevo/php/jpgraph/docportal/chunkhtml/example_src/matrix_ex05.html
AchrafLansari/WebEvo
<div style="font-weight: bold;margin-left:15px;">matrix_ex05.php</div><link rel="stylesheet" href="../phphl.css" type="text/css"><div class="hl-main"><table class="hl-table" width="100%"><tr><td class="hl-gutter" align="right" valign="top"><pre>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 31 </pre></td><td class="hl-main" valign="top"><pre><span class="hl-inlinetags">&lt;?php</span><span class="hl-code"> </span><span class="hl-reserved">require_once</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">../jpgraph.php</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-reserved">require_once</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">../jpgraph_matrix.php</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$data</span><span class="hl-code"> = </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-code"> </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">0</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">5</span><span class="hl-code">,</span><span class="hl-number">6</span><span class="hl-code">,</span><span class="hl-number">7</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">10</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">10</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">7</span><span class="hl-code">,</span><span class="hl-number">6</span><span class="hl-code">,</span><span class="hl-number">5</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">0</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">0</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">5</span><span class="hl-code">,</span><span class="hl-number">6</span><span class="hl-code">,</span><span class="hl-number">7</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">10</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">10</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">17</span><span class="hl-code">,</span><span class="hl-number">6</span><span class="hl-code">,</span><span class="hl-number">5</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">0</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">0</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">7</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">10</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">7</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">10</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">10</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">5</span><span class="hl-code">,</span><span class="hl-number">7</span><span class="hl-code">,</span><span class="hl-number">6</span><span class="hl-code">,</span><span class="hl-number">5</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">12</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">0</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-reserved">array</span><span class="hl-brackets">(</span><span class="hl-number">10</span><span class="hl-code">,</span><span class="hl-number">9</span><span class="hl-code">,</span><span class="hl-number">8</span><span class="hl-code">,</span><span class="hl-number">7</span><span class="hl-code">,</span><span class="hl-number">6</span><span class="hl-code">,</span><span class="hl-number">5</span><span class="hl-code">,</span><span class="hl-number">4</span><span class="hl-code">,</span><span class="hl-number">3</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-code">,</span><span class="hl-number">1</span><span class="hl-code">,</span><span class="hl-number">0</span><span class="hl-brackets">)</span><span class="hl-code">, </span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$width</span><span class="hl-code">=</span><span class="hl-number">400</span><span class="hl-code">; </span><span class="hl-var">$height</span><span class="hl-code">=</span><span class="hl-number">350</span><span class="hl-code">; </span><span class="hl-var">$graph</span><span class="hl-code"> = </span><span class="hl-reserved">new</span><span class="hl-code"> </span><span class="hl-identifier">MatrixGraph</span><span class="hl-brackets">(</span><span class="hl-var">$width</span><span class="hl-code">,</span><span class="hl-var">$height</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$graph</span><span class="hl-code">-&gt;</span><span class="hl-identifier">title</span><span class="hl-code">-&gt;</span><span class="hl-identifier">Set</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">Using a circular module type</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$graph</span><span class="hl-code">-&gt;</span><span class="hl-identifier">title</span><span class="hl-code">-&gt;</span><span class="hl-identifier">SetFont</span><span class="hl-brackets">(</span><span class="hl-identifier">FF_ARIAL</span><span class="hl-code">,</span><span class="hl-identifier">FS_BOLD</span><span class="hl-code">,</span><span class="hl-number">14</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$mp</span><span class="hl-code"> = </span><span class="hl-reserved">new</span><span class="hl-code"> </span><span class="hl-identifier">MatrixPlot</span><span class="hl-brackets">(</span><span class="hl-var">$data</span><span class="hl-code">,</span><span class="hl-number">2</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$mp</span><span class="hl-code">-&gt;</span><span class="hl-identifier">SetSize</span><span class="hl-brackets">(</span><span class="hl-number">0</span><span class="hl-number">.85</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$mp</span><span class="hl-code">-&gt;</span><span class="hl-identifier">SetModuleType</span><span class="hl-brackets">(</span><span class="hl-number">1</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$mp</span><span class="hl-code">-&gt;</span><span class="hl-identifier">SetBackgroundColor</span><span class="hl-brackets">(</span><span class="hl-quotes">'</span><span class="hl-string">teal:1.8</span><span class="hl-quotes">'</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$mp</span><span class="hl-code">-&gt;</span><span class="hl-identifier">SetCenterPos</span><span class="hl-brackets">(</span><span class="hl-number">0</span><span class="hl-number">.5</span><span class="hl-code">,</span><span class="hl-number">0</span><span class="hl-number">.45</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$mp</span><span class="hl-code">-&gt;</span><span class="hl-identifier">SetLegendLayout</span><span class="hl-brackets">(</span><span class="hl-number">1</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$graph</span><span class="hl-code">-&gt;</span><span class="hl-identifier">Add</span><span class="hl-brackets">(</span><span class="hl-var">$mp</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-var">$graph</span><span class="hl-code">-&gt;</span><span class="hl-identifier">Stroke</span><span class="hl-brackets">(</span><span class="hl-brackets">)</span><span class="hl-code">; </span><span class="hl-inlinetags">?&gt;</span></pre></td></tr></table></div>
out/production/ConsoleParser/commons-collections4-4.0/apidocs/org/apache/commons/collections4/functors/class-use/PredicateTransformer.html
icl7126/PlayConsoleSQL-parser
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Class org.apache.commons.collections4.functors.PredicateTransformer (Apache Commons Collections 4.0 API)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.commons.collections4.functors.PredicateTransformer (Apache Commons Collections 4.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/collections4/functors/PredicateTransformer.html" title="class in org.apache.commons.collections4.functors">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/collections4/functors/class-use/PredicateTransformer.html" target="_top">Frames</a></li> <li><a href="PredicateTransformer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.commons.collections4.functors.PredicateTransformer" class="title">Uses of Class<br>org.apache.commons.collections4.functors.PredicateTransformer</h2> </div> <div class="classUseContainer">No usage of org.apache.commons.collections4.functors.PredicateTransformer</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/collections4/functors/PredicateTransformer.html" title="class in org.apache.commons.collections4.functors">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/collections4/functors/class-use/PredicateTransformer.html" target="_top">Frames</a></li> <li><a href="PredicateTransformer.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2001&#x2013;2013 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
javadoc/models/creatures/class-use/EcouteurDeCreature.html
PiRSquared17/asd-tower-defense
<!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_16) on Thu Jul 22 17:19:23 CEST 2010 --> <TITLE> Uses of Interface models.creatures.EcouteurDeCreature </TITLE> <META NAME="date" CONTENT="2010-07-22"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface models.creatures.EcouteurDeCreature"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?models/creatures/\class-useEcouteurDeCreature.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="EcouteurDeCreature.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Interface<br>models.creatures.EcouteurDeCreature</B></H2> </CENTER> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Packages that use <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures">EcouteurDeCreature</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#models.creatures"><B>models.creatures</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><A HREF="#models.jeu"><B>models.jeu</B></A></TD> <TD>&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <A NAME="models.creatures"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures">EcouteurDeCreature</A> in <A HREF="../../../models/creatures/package-summary.html">models.creatures</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Methods in <A HREF="../../../models/creatures/package-summary.html">models.creatures</A> with parameters of type <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures">EcouteurDeCreature</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>Creature.</B><B><A HREF="../../../models/creatures/Creature.html#ajouterEcouteurDeCreature(models.creatures.EcouteurDeCreature)">ajouterEcouteurDeCreature</A></B>(<A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures">EcouteurDeCreature</A>&nbsp;edc)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Permet d'ajouter un ecouteur de la creature</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B>GestionnaireCreatures.</B><B><A HREF="../../../models/creatures/GestionnaireCreatures.html#lancerVague(models.creatures.VagueDeCreatures, models.joueurs.Joueur, models.joueurs.Equipe, models.creatures.EcouteurDeVague, models.creatures.EcouteurDeCreature)">lancerVague</A></B>(<A HREF="../../../models/creatures/VagueDeCreatures.html" title="class in models.creatures">VagueDeCreatures</A>&nbsp;vague, <A HREF="../../../models/joueurs/Joueur.html" title="class in models.joueurs">Joueur</A>&nbsp;lanceur, <A HREF="../../../models/joueurs/Equipe.html" title="class in models.joueurs">Equipe</A>&nbsp;equipeCiblee, <A HREF="../../../models/creatures/EcouteurDeVague.html" title="interface in models.creatures">EcouteurDeVague</A>&nbsp;edv, <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures">EcouteurDeCreature</A>&nbsp;edc)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Permet de lancer la vague de creature sur le terrain</TD> </TR> </TABLE> &nbsp; <P> <A NAME="models.jeu"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> Uses of <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures">EcouteurDeCreature</A> in <A HREF="../../../models/jeu/package-summary.html">models.jeu</A></FONT></TH> </TR> </TABLE> &nbsp; <P> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left" COLSPAN="2">Classes in <A HREF="../../../models/jeu/package-summary.html">models.jeu</A> that implement <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures">EcouteurDeCreature</A></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../models/jeu/Jeu.html" title="class in models.jeu">Jeu</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;C'est la classe principale du jeu (Moteur) Elle encapsule tous les éléments du jeu.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../models/jeu/Jeu_Client.html" title="class in models.jeu">Jeu_Client</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Classe de représentation d'un client pouvant se connecter à un serveur de jeu.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../models/jeu/Jeu_Serveur.html" title="class in models.jeu">Jeu_Serveur</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Classe de gestion du moteur de jeu réseau.</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;class</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../models/jeu/Jeu_Solo.html" title="class in models.jeu">Jeu_Solo</A></B></CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../models/creatures/EcouteurDeCreature.html" title="interface in models.creatures"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?models/creatures/\class-useEcouteurDeCreature.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="EcouteurDeCreature.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
web-platform-tests/tests/html/semantics/document-metadata/the-base-element/base_href_specified.sub.html
cr/fxos-certsuite
<!DOCTYPE html> <meta charset="utf-8"> <title>HTML Test: base_href_specified</title> <link rel="author" title="Intel" href="http://www.intel.com/"> <link rel="help" href="http://www.w3.org/html/wg/drafts/html/CR/document-metadata.html#the-base-element"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <base id="base" href="http://{{domains[www]}}:{{ports[http][0]}}"> <div id="log"></div> <img id="test" src="test.ico" style="display:none"> <script> var testElement; var baseElement; setup(function() { testElement = document.getElementById("test"); baseElement = document.getElementById("base"); }); test(function() { assert_equals(baseElement.href, "http://{{domains[www]}}:{{ports[http][0]}}/", "The href attribute of the base element is incorrect."); }, "The href attribute of the base element is specified"); test(function() { assert_equals(testElement.src, "http://{{domains[www]}}:{{ports[http][0]}}/test.ico", "The src attribute of the img element is incorrect."); }, "The src attribute of the img element must relative to the href attribute of the base element"); </script>
layout/reftests/bugs/368247-1-ref.html
Yukarumya/Yukarum-Redfoxes
<!DOCTYPE HTML> <html> <style type="text/css"> div { width: 64px; height: 64px; border: 64px solid blue; } </style> <body> <div style="height: 0; border-bottom: 0; border-top-left-radius: 64px; border-top-right-radius: 64px;"></div> <div style="height: 64px; border-width: 0 64px;"></div> <div style="height: 0; border-top: 0; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px;"></div> </body> </html>
layout/reftests/bugs/495385-1-ref.html
Yukarumya/Yukarum-Redfoxes
<!DOCTYPE HTML> <html> <body style="border:1px solid black;"> &nbsp;&nbsp;Hello<br> &nbsp;&nbsp;Hello<br> <br> Hello </body> </html>
docs/userguide/sources-asciidoc/src/main/asciidoc/stylesheets/foundation-potion.css
RestComm/jss7
/*! normalize.css v2.1.2 | MIT License | git.io/normalize */ /* ========================================================================== HTML5 display definitions ========================================================================== */ /** Correct `block` display not defined in IE 8/9. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } /** Correct `inline-block` display not defined in IE 8/9. */ audio, canvas, video { display: inline-block; } /** Prevent modern browsers from displaying `audio` without controls. Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** Address `[hidden]` styling not present in IE 8/9. Hide the `template` element in IE, Safari, and Firefox < 22. */ [hidden], template { display: none; } script { display: none !important; } /* ========================================================================== Base ========================================================================== */ /** 1. Set default font family to sans-serif. 2. Prevent iOS text size adjust after orientation change, without disabling user zoom. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** Remove default margin. */ body { margin: 0; } /* ========================================================================== Links ========================================================================== */ /** Remove the gray background color from active links in IE 10. */ a { background: transparent; } /** Address `outline` inconsistency between Chrome and other browsers. */ a:focus { outline: thin dotted; } /** Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* ========================================================================== Typography ========================================================================== */ /** Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; } /** Address styling not present in IE 8/9, Safari 5, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome. */ b, strong { font-weight: bold; } /** Address styling not present in Safari 5 and Chrome. */ dfn { font-style: italic; } /** Address differences between Firefox and other browsers. */ hr { -moz-box-sizing: content-box; box-sizing: content-box; height: 0; } /** Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** Correct font family set oddly in Safari 5 and Chrome. */ code, kbd, pre, samp { font-family: monospace, serif; font-size: 1em; } /** Improve readability of pre-formatted text in all browsers. */ pre { white-space: pre-wrap; } /** Set consistent quote types. */ q { quotes: "\201C" "\201D" "\2018" "\2019"; } /** Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* ========================================================================== Embedded content ========================================================================== */ /** Remove border when inside `a` element in IE 8/9. */ img { border: 0; } /** Correct overflow displayed oddly in IE 9. */ svg:not(:root) { overflow: hidden; } /* ========================================================================== Figures ========================================================================== */ /** Address margin not present in IE 8/9 and Safari 5. */ figure { margin: 0; } /* ========================================================================== Forms ========================================================================== */ /** Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** 1. Correct `color` not being inherited in IE 8/9. 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** 1. Correct font family not being inherited in all browsers. 2. Correct font size not being inherited in all browsers. 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome. */ button, input, select, textarea { font-family: inherit; /* 1 */ font-size: 100%; /* 2 */ margin: 0; /* 3 */ } /** Address Firefox 4+ setting `line-height` on `input` using `!important` in the UA stylesheet. */ button, input { line-height: normal; } /** Address inconsistent `text-transform` inheritance for `button` and `select`. All other form control elements do not inherit `text-transform` values. Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+. Correct `select` style inheritance in Firefox 4+ and Opera. */ button, select { text-transform: none; } /** 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls. 2. Correct inability to style clickable `input` types in iOS. 3. Improve usability and consistency of cursor style between image-type `input` and others. */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** 1. Address box sizing set to `content-box` in IE 8/9. 2. Remove excess padding in IE 8/9. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome. 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome (include `-moz` to future-proof). */ input[type="search"] { -webkit-appearance: textfield; /* 1 */ -moz-box-sizing: content-box; -webkit-box-sizing: content-box; /* 2 */ box-sizing: content-box; } /** Remove inner padding and search cancel button in Safari 5 and Chrome on OS X. */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** 1. Remove default vertical scrollbar in IE 8/9. 2. Improve readability and alignment in all browsers. */ textarea { overflow: auto; /* 1 */ vertical-align: top; /* 2 */ } /* ========================================================================== Tables ========================================================================== */ /** Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } meta.foundation-mq-small { font-family: "only screen and (min-width: 768px)"; width: 768px; } meta.foundation-mq-medium { font-family: "only screen and (min-width:1280px)"; width: 1280px; } meta.foundation-mq-large { font-family: "only screen and (min-width:1440px)"; width: 1440px; } *, *:before, *:after { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; } html, body { font-size: 100%; } body { background: white; color: #222222; padding: 0; margin: 0; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; line-height: 1; position: relative; cursor: auto; } a:hover { cursor: pointer; } img, object, embed { max-width: 100%; height: auto; } object, embed { height: 100%; } img { -ms-interpolation-mode: bicubic; } #map_canvas img, #map_canvas embed, #map_canvas object, .map_canvas img, .map_canvas embed, .map_canvas object { max-width: none !important; } .left { float: left !important; } .right { float: right !important; } .text-left { text-align: left !important; } .text-right { text-align: right !important; } .text-center { text-align: center !important; } .text-justify { text-align: justify !important; } .hide { display: none; } .antialiased, body { -webkit-font-smoothing: antialiased; } img { display: inline-block; vertical-align: middle; } textarea { height: auto; min-height: 50px; } select { width: 100%; } object, svg { display: inline-block; vertical-align: middle; } .center { margin-left: auto; margin-right: auto; } .spread { width: 100%; } p.lead, .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { font-size: 1.21875em; line-height: 1.6; } .subheader, .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { line-height: 1.4; color: #980050; font-weight: 300; margin-top: 0.2em; margin-bottom: 0.5em; } /* Typography resets */ div, dl, dt, dd, ul, ol, li, h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6, pre, form, p, blockquote, th, td { margin: 0; padding: 0; direction: ltr; } /* Default Link Styles */ a { color: #b1005d; text-decoration: none; line-height: inherit; } a:hover, a:focus { color: #640035; } a img { border: none; } /* Default paragraph styles */ p { font-family: inherit; font-weight: normal; font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; text-rendering: optimizeLegibility; } p aside { font-size: 0.875em; line-height: 1.35; font-style: italic; } /* Default header styles */ h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; font-weight: normal; font-style: normal; color: #333333; text-rendering: optimizeLegibility; margin-top: 1em; margin-bottom: 0.5em; line-height: 1.2125em; } h1 small, h2 small, h3 small, #toctitle small, .sidebarblock > .content > .title small, h4 small, h5 small, h6 small { font-size: 60%; color: gray; line-height: 0; } h1 { font-size: 2.125em; } h2 { font-size: 1.6875em; } h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.375em; } h4 { font-size: 1.125em; } h5 { font-size: 1.125em; } h6 { font-size: 1em; } hr { border: dotted #cccccc; border-width: 1px 0 0; clear: both; margin: 1.25em 0 1.1875em; height: 0; } /* Helpful Typography Defaults */ em, i { font-style: italic; line-height: inherit; } strong, b { font-weight: bold; line-height: inherit; } small { font-size: 60%; line-height: inherit; } code { font-family: Consolas, "Liberation Mono", Courier, monospace; font-weight: bold; color: #320348; } /* Lists */ ul, ol, dl { font-size: 1em; line-height: 1.6; margin-bottom: 1.25em; list-style-position: outside; font-family: inherit; } ul, ol { margin-left: 1.5em; } ul.no-bullet, ol.no-bullet { margin-left: 1.5em; } /* Unordered Lists */ ul li ul, ul li ol { margin-left: 1.25em; margin-bottom: 0; font-size: 1em; /* Override nested font-size change */ } ul.square li ul, ul.circle li ul, ul.disc li ul { list-style: inherit; } ul.square { list-style-type: square; } ul.circle { list-style-type: circle; } ul.disc { list-style-type: disc; } ul.no-bullet { list-style: none; } /* Ordered Lists */ ol li ul, ol li ol { margin-left: 1.25em; margin-bottom: 0; } /* Definition Lists */ dl dt { margin-bottom: 0.3125em; font-weight: bold; } dl dd { margin-bottom: 1.25em; } /* Abbreviations */ abbr, acronym { text-transform: uppercase; font-size: 90%; color: #555555; border-bottom: 1px dotted #dddddd; cursor: help; } abbr { text-transform: none; } /* Blockquotes */ blockquote { margin: 0 0 1.25em; padding: 0.5625em 1.25em 0 1.1875em; border-left: 1px solid #efefef; } blockquote cite { display: block; font-size: 0.8125em; color: #5e5e5e; } blockquote cite:before { content: "\2014 \0020"; } blockquote cite a, blockquote cite a:visited { color: #5e5e5e; } blockquote, blockquote p { line-height: 1.6; color: #777777; } /* Microformats */ .vcard { display: inline-block; margin: 0 0 1.25em 0; border: 1px solid #dddddd; padding: 0.625em 0.75em; } .vcard li { margin: 0; display: block; } .vcard .fn { font-weight: bold; font-size: 0.9375em; } .vevent .summary { font-weight: bold; } .vevent abbr { cursor: auto; text-decoration: none; font-weight: bold; border: none; padding: 0 0.0625em; } @media only screen and (min-width: 768px) { h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; } h1 { font-size: 2.75em; } h2 { font-size: 2.3125em; } h3, #toctitle, .sidebarblock > .content > .title { font-size: 1.6875em; } h4 { font-size: 1.4375em; } } /* Tables */ table { background: white; margin-bottom: 1.25em; border: solid 1px #dddddd; } table thead, table tfoot { background: whitesmoke; font-weight: normal; } table thead tr th, table thead tr td, table tfoot tr th, table tfoot tr td { padding: 0.5em 0.625em 0.625em; font-size: inherit; color: #333333; text-align: left; } table tr th, table tr td { padding: 0.5625em 0.625em; font-size: inherit; color: #555555; } table tr.even, table tr.alt, table tr:nth-of-type(even) { background: #f9f9f9; } table thead tr th, table tfoot tr th, table tbody tr td, table tr td, table tfoot tr td { display: table-cell; line-height: 1.4; } body { tab-size: 4; } h1, h2, h3, #toctitle, .sidebarblock > .content > .title, h4, h5, h6 { line-height: 1.4; } .clearfix:before, .clearfix:after, .float-group:before, .float-group:after { content: " "; display: table; } .clearfix:after, .float-group:after { clear: both; } *:not(pre) > code { font-size: inherit; font-style: normal !important; letter-spacing: 0; padding: 0; line-height: inherit; } pre, pre > code { line-height: 1.4; color: black; font-family: monospace, serif; font-weight: normal; } .keyseq { color: #888888; } kbd { font-family: Consolas, "Liberation Mono", Courier, monospace; display: inline-block; color: #555555; font-size: 0.65em; line-height: 1.45; background-color: #f7f7f7; border: 1px solid #ccc; -webkit-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2), 0 0 0 0.1em white inset; margin: 0 0.15em; padding: 0.2em 0.5em; vertical-align: middle; position: relative; top: -0.1em; white-space: nowrap; } .keyseq kbd:first-child { margin-left: 0; } .keyseq kbd:last-child { margin-right: 0; } .menuseq, .menu { color: #3b3b3b; } b.button:before, b.button:after { position: relative; top: -1px; font-weight: normal; } b.button:before { content: "["; padding: 0 3px 0 2px; } b.button:after { content: "]"; padding: 0 2px 0 3px; } #header, #content, #footnotes, #footer { width: 100%; margin-left: auto; margin-right: auto; margin-top: 0; margin-bottom: 0; max-width: 62.5em; *zoom: 1; position: relative; padding-left: 0.9375em; padding-right: 0.9375em; } #header:before, #header:after, #content:before, #content:after, #footnotes:before, #footnotes:after, #footer:before, #footer:after { content: " "; display: table; } #header:after, #content:after, #footnotes:after, #footer:after { clear: both; } #content { margin-top: 1.25em; } #content:before { content: none; } #header > h1:first-child { color: #b1005d; margin-top: 2.25rem; margin-bottom: 0; } #header > h1:first-child + #toc { margin-top: 8px; border-top: 1px dotted #cccccc; } #header > h1:only-child, body.toc2 #header > h1:nth-last-child(2) { border-bottom: 1px dotted #cccccc; padding-bottom: 8px; } #header .details { border-bottom: 1px dotted #cccccc; line-height: 1.45; padding-top: 0.25em; padding-bottom: 0.25em; padding-left: 0.25em; color: #5e5e5e; display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-flow: row wrap; -webkit-flex-flow: row wrap; flex-flow: row wrap; } #header .details span:first-child { margin-left: -0.125em; } #header .details span.email a { color: #777777; } #header .details br { display: none; } #header .details br + span:before { content: "\00a0\2013\00a0"; } #header .details br + span.author:before { content: "\00a0\22c5\00a0"; color: #777777; } #header .details br + span#revremark:before { content: "\00a0|\00a0"; } #header #revnumber { text-transform: capitalize; } #header #revnumber:after { content: "\00a0"; } #content > h1:first-child:not([class]) { color: #b1005d; border-bottom: 1px dotted #cccccc; padding-bottom: 8px; margin-top: 0; padding-top: 1rem; margin-bottom: 1.25rem; } #toc { border-bottom: 1px solid #cccccc; padding-bottom: 0.5em; } #toc > ul { margin-left: 0.125em; } #toc ul.sectlevel0 > li > a { font-style: italic; } #toc ul.sectlevel0 ul.sectlevel1 { margin: 0.5em 0; } #toc ul { font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; list-style-type: none; } #toc li { line-height: 1.3334; margin-top: 0.3334em; } #toc a { text-decoration: none; } #toc a:active { text-decoration: underline; } #toctitle { color: #980050; font-size: 1.2em; } @media only screen and (min-width: 768px) { #toctitle { font-size: 1.375em; } body.toc2 { padding-left: 15em; padding-right: 0; } #toc.toc2 { margin-top: 0 !important; background-color: #f2f2f2; position: fixed; width: 15em; left: 0; top: 0; border-right: 1px solid #cccccc; border-top-width: 0 !important; border-bottom-width: 0 !important; z-index: 1000; padding: 1.25em 1em; height: 100%; overflow: auto; } #toc.toc2 #toctitle { margin-top: 0; margin-bottom: 0.8rem; font-size: 1.2em; } #toc.toc2 > ul { font-size: 0.9em; margin-bottom: 0; } #toc.toc2 ul ul { margin-left: 0; padding-left: 1em; } #toc.toc2 ul.sectlevel0 ul.sectlevel1 { padding-left: 0; margin-top: 0.5em; margin-bottom: 0.5em; } body.toc2.toc-right { padding-left: 0; padding-right: 15em; } body.toc2.toc-right #toc.toc2 { border-right-width: 0; border-left: 1px solid #cccccc; left: auto; right: 0; } } @media only screen and (min-width: 1280px) { body.toc2 { padding-left: 20em; padding-right: 0; } #toc.toc2 { width: 20em; } #toc.toc2 #toctitle { font-size: 1.375em; } #toc.toc2 > ul { font-size: 0.95em; } #toc.toc2 ul ul { padding-left: 1.25em; } body.toc2.toc-right { padding-left: 0; padding-right: 20em; } } #content #toc { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; } #content #toc > :first-child { margin-top: 0; } #content #toc > :last-child { margin-bottom: 0; } #footer { max-width: 100%; background-color: #272727; padding: 1.25em; } #footer-text { color: #bcbcbc; line-height: 1.44; } .sect1 { padding-bottom: 0.625em; } @media only screen and (min-width: 768px) { .sect1 { padding-bottom: 1.25em; } } .sect1 + .sect1 { border-top: 1px solid #cccccc; } #content h1 > a.anchor, h2 > a.anchor, h3 > a.anchor, #toctitle > a.anchor, .sidebarblock > .content > .title > a.anchor, h4 > a.anchor, h5 > a.anchor, h6 > a.anchor { position: absolute; z-index: 1001; width: 1.5ex; margin-left: -1.5ex; display: block; text-decoration: none !important; visibility: hidden; text-align: center; font-weight: normal; } #content h1 > a.anchor:before, h2 > a.anchor:before, h3 > a.anchor:before, #toctitle > a.anchor:before, .sidebarblock > .content > .title > a.anchor:before, h4 > a.anchor:before, h5 > a.anchor:before, h6 > a.anchor:before { content: "\00A7"; font-size: 0.85em; display: block; padding-top: 0.1em; } #content h1:hover > a.anchor, #content h1 > a.anchor:hover, h2:hover > a.anchor, h2 > a.anchor:hover, h3:hover > a.anchor, #toctitle:hover > a.anchor, .sidebarblock > .content > .title:hover > a.anchor, h3 > a.anchor:hover, #toctitle > a.anchor:hover, .sidebarblock > .content > .title > a.anchor:hover, h4:hover > a.anchor, h4 > a.anchor:hover, h5:hover > a.anchor, h5 > a.anchor:hover, h6:hover > a.anchor, h6 > a.anchor:hover { visibility: visible; } #content h1 > a.link, h2 > a.link, h3 > a.link, #toctitle > a.link, .sidebarblock > .content > .title > a.link, h4 > a.link, h5 > a.link, h6 > a.link { color: #333333; text-decoration: none; } #content h1 > a.link:hover, h2 > a.link:hover, h3 > a.link:hover, #toctitle > a.link:hover, .sidebarblock > .content > .title > a.link:hover, h4 > a.link:hover, h5 > a.link:hover, h6 > a.link:hover { color: #262626; } .audioblock, .imageblock, .literalblock, .listingblock, .stemblock, .videoblock { margin-bottom: 1.25em; } .admonitionblock td.content > .title, .audioblock > .title, .exampleblock > .title, .imageblock > .title, .listingblock > .title, .literalblock > .title, .stemblock > .title, .openblock > .title, .paragraph > .title, .quoteblock > .title, table.tableblock > .title, .verseblock > .title, .videoblock > .title, .dlist > .title, .olist > .title, .ulist > .title, .qlist > .title, .hdlist > .title { text-rendering: optimizeLegibility; text-align: left; } table.tableblock > caption.title { white-space: nowrap; overflow: visible; max-width: 0; } .paragraph.lead > p, #preamble > .sectionbody > .paragraph:first-of-type p { color: #b1005d; } table.tableblock #preamble > .sectionbody > .paragraph:first-of-type p { font-size: inherit; } .admonitionblock > table { border-collapse: separate; border: 0; background: none; width: 100%; } .admonitionblock > table td.icon { text-align: center; width: 80px; } .admonitionblock > table td.icon img { max-width: none; } .admonitionblock > table td.icon .title { font-weight: bold; font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif; text-transform: uppercase; } .admonitionblock > table td.content { padding-left: 1.125em; padding-right: 1.25em; border-left: 1px dotted #cccccc; color: #5e5e5e; } .admonitionblock > table td.content > :last-child > :last-child { margin-bottom: 0; } .exampleblock > .content { border-style: solid; border-width: 1px; border-color: #e6e6e6; margin-bottom: 1.25em; padding: 1.25em; background: white; -webkit-border-radius: 0; border-radius: 0; } .exampleblock > .content > :first-child { margin-top: 0; } .exampleblock > .content > :last-child { margin-bottom: 0; } .sidebarblock { border-style: solid; border-width: 1px; border-color: #d9d9d9; margin-bottom: 1.25em; padding: 1.25em; background: #f2f2f2; -webkit-border-radius: 0; border-radius: 0; } .sidebarblock > :first-child { margin-top: 0; } .sidebarblock > :last-child { margin-bottom: 0; } .sidebarblock > .content > .title { color: #980050; margin-top: 0; } .exampleblock > .content > :last-child > :last-child, .exampleblock > .content .olist > ol > li:last-child > :last-child, .exampleblock > .content .ulist > ul > li:last-child > :last-child, .exampleblock > .content .qlist > ol > li:last-child > :last-child, .sidebarblock > .content > :last-child > :last-child, .sidebarblock > .content .olist > ol > li:last-child > :last-child, .sidebarblock > .content .ulist > ul > li:last-child > :last-child, .sidebarblock > .content .qlist > ol > li:last-child > :last-child { margin-bottom: 0; } .literalblock pre, .listingblock pre:not(.highlight), .listingblock pre[class="highlight"], .listingblock pre[class^="highlight "], .listingblock pre.CodeRay, .listingblock pre.prettyprint { background: #efefef; } .sidebarblock .literalblock pre, .sidebarblock .listingblock pre:not(.highlight), .sidebarblock .listingblock pre[class="highlight"], .sidebarblock .listingblock pre[class^="highlight "], .sidebarblock .listingblock pre.CodeRay, .sidebarblock .listingblock pre.prettyprint { background: #f2f1f1; } .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { border: 1px solid #cccccc; -webkit-border-radius: 0; border-radius: 0; word-wrap: break-word; padding: 0.75em 0.75em 0.625em 0.75em; font-size: 0.8125em; } .literalblock pre.nowrap, .literalblock pre[class].nowrap, .listingblock pre.nowrap, .listingblock pre[class].nowrap { overflow-x: auto; white-space: pre; word-wrap: normal; } @media only screen and (min-width: 768px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 0.90625em; } } @media only screen and (min-width: 1280px) { .literalblock pre, .literalblock pre[class], .listingblock pre, .listingblock pre[class] { font-size: 1em; } } .literalblock.output pre { color: #efefef; background-color: black; } .listingblock pre.highlightjs { padding: 0; } .listingblock pre.highlightjs > code { padding: 0.75em 0.75em 0.625em 0.75em; -webkit-border-radius: 0; border-radius: 0; } .listingblock > .content { position: relative; } .listingblock code[data-lang]:before { display: none; content: attr(data-lang); position: absolute; font-size: 0.75em; top: 0.425rem; right: 0.5rem; line-height: 1; text-transform: uppercase; color: #999; } .listingblock:hover code[data-lang]:before { display: block; } .listingblock.terminal pre .command:before { content: attr(data-prompt); padding-right: 0.5em; color: #999; } .listingblock.terminal pre .command:not([data-prompt]):before { content: "$"; } table.pyhltable { border-collapse: separate; border: 0; margin-bottom: 0; background: none; } table.pyhltable td { vertical-align: top; padding-top: 0; padding-bottom: 0; line-height: 1.4; } table.pyhltable td.code { padding-left: .75em; padding-right: 0; } pre.pygments .lineno, table.pyhltable td:not(.code) { color: #999; padding-left: 0; padding-right: .5em; border-right: 1px solid #cccccc; } pre.pygments .lineno { display: inline-block; margin-right: .25em; } table.pyhltable .linenodiv { background: none !important; padding-right: 0 !important; } .quoteblock { margin: 0 1em 1.25em 1.5em; display: table; } .quoteblock > .title { margin-left: -1.5em; margin-bottom: 0.75em; } .quoteblock blockquote, .quoteblock blockquote p { color: #777777; font-size: 1.15rem; line-height: 1.75; word-spacing: 0.1em; letter-spacing: 0; font-style: italic; text-align: justify; } .quoteblock blockquote { margin: 0; padding: 0; border: 0; } .quoteblock blockquote:before { content: "\201c"; float: left; font-size: 2.75em; font-weight: bold; line-height: 0.6em; margin-left: -0.6em; color: #980050; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); } .quoteblock blockquote > .paragraph:last-child p { margin-bottom: 0; } .quoteblock .attribution { margin-top: 0.5em; margin-right: 0.5ex; text-align: right; } .quoteblock .quoteblock { margin-left: 0; margin-right: 0; padding: 0.5em 0; border-left: 3px solid #5e5e5e; } .quoteblock .quoteblock blockquote { padding: 0 0 0 0.75em; } .quoteblock .quoteblock blockquote:before { display: none; } .verseblock { margin: 0 1em 1.25em 1em; } .verseblock pre { font-family: "Open Sans", "DejaVu Sans", sans; font-size: 1.15rem; color: #777777; font-weight: 300; text-rendering: optimizeLegibility; } .verseblock pre strong { font-weight: 400; } .verseblock .attribution { margin-top: 1.25rem; margin-left: 0.5ex; } .quoteblock .attribution, .verseblock .attribution { font-size: 0.8125em; line-height: 1.45; font-style: italic; } .quoteblock .attribution br, .verseblock .attribution br { display: none; } .quoteblock .attribution cite, .verseblock .attribution cite { display: block; letter-spacing: -0.025em; color: #5e5e5e; } .quoteblock.abstract { margin: 0 0 1.25em 0; display: block; } .quoteblock.abstract blockquote, .quoteblock.abstract blockquote p { text-align: left; word-spacing: 0; } .quoteblock.abstract blockquote:before, .quoteblock.abstract blockquote p:first-of-type:before { display: none; } table.tableblock { max-width: 100%; border-collapse: separate; } table.tableblock td > .paragraph:last-child p > p:last-child, table.tableblock th > p:last-child, table.tableblock td > p:last-child { margin-bottom: 0; } table.tableblock, th.tableblock, td.tableblock { border: 0 solid #dddddd; } table.grid-all th.tableblock, table.grid-all td.tableblock { border-width: 0 1px 1px 0; } table.grid-all tfoot > tr > th.tableblock, table.grid-all tfoot > tr > td.tableblock { border-width: 1px 1px 0 0; } table.grid-cols th.tableblock, table.grid-cols td.tableblock { border-width: 0 1px 0 0; } table.grid-all * > tr > .tableblock:last-child, table.grid-cols * > tr > .tableblock:last-child { border-right-width: 0; } table.grid-rows th.tableblock, table.grid-rows td.tableblock { border-width: 0 0 1px 0; } table.grid-all tbody > tr:last-child > th.tableblock, table.grid-all tbody > tr:last-child > td.tableblock, table.grid-all thead:last-child > tr > th.tableblock, table.grid-rows tbody > tr:last-child > th.tableblock, table.grid-rows tbody > tr:last-child > td.tableblock, table.grid-rows thead:last-child > tr > th.tableblock { border-bottom-width: 0; } table.grid-rows tfoot > tr > th.tableblock, table.grid-rows tfoot > tr > td.tableblock { border-width: 1px 0 0 0; } table.frame-all { border-width: 1px; } table.frame-sides { border-width: 0 1px; } table.frame-topbot { border-width: 1px 0; } th.halign-left, td.halign-left { text-align: left; } th.halign-right, td.halign-right { text-align: right; } th.halign-center, td.halign-center { text-align: center; } th.valign-top, td.valign-top { vertical-align: top; } th.valign-bottom, td.valign-bottom { vertical-align: bottom; } th.valign-middle, td.valign-middle { vertical-align: middle; } table thead th, table tfoot th { font-weight: normal; } tbody tr th { display: table-cell; line-height: 1.4; background: whitesmoke; } tbody tr th, tbody tr th p, tfoot tr th, tfoot tr th p { color: #333333; font-weight: normal; } p.tableblock > code:only-child { background: none; padding: 0; } p.tableblock { font-size: 1em; } td > div.verse { white-space: pre; } ol { margin-left: 1.75em; } ul li ol { margin-left: 1.5em; } dl dd { margin-left: 1.125em; } dl dd:last-child, dl dd:last-child > :last-child { margin-bottom: 0; } ol > li p, ul > li p, ul dd, ol dd, .olist .olist, .ulist .ulist, .ulist .olist, .olist .ulist { margin-bottom: 0.625em; } ul.unstyled, ol.unnumbered, ul.checklist, ul.none { list-style-type: none; } ul.unstyled, ol.unnumbered, ul.checklist { margin-left: 0.625em; } ul.checklist li > p:first-child > .fa-square-o:first-child, ul.checklist li > p:first-child > .fa-check-square-o:first-child { width: 1em; font-size: 0.85em; } ul.checklist li > p:first-child > input[type="checkbox"]:first-child { width: 1em; position: relative; top: 1px; } ul.inline { margin: 0 auto 0.625em auto; margin-left: -1.375em; margin-right: 0; padding: 0; list-style: none; overflow: hidden; } ul.inline > li { list-style: none; float: left; margin-left: 1.375em; display: block; } ul.inline > li > * { display: block; } .unstyled dl dt { font-weight: normal; font-style: normal; } ol.arabic { list-style-type: decimal; } ol.decimal { list-style-type: decimal-leading-zero; } ol.loweralpha { list-style-type: lower-alpha; } ol.upperalpha { list-style-type: upper-alpha; } ol.lowerroman { list-style-type: lower-roman; } ol.upperroman { list-style-type: upper-roman; } ol.lowergreek { list-style-type: lower-greek; } .hdlist > table, .colist > table { border: 0; background: none; } .hdlist > table > tbody > tr, .colist > table > tbody > tr { background: none; } td.hdlist1, td.hdlist2 { vertical-align: top; padding: 0 0.625em; } td.hdlist1 { font-weight: bold; padding-bottom: 1.25em; } .literalblock + .colist, .listingblock + .colist { margin-top: -0.5em; } .colist > table tr > td:first-of-type { padding: 0 0.75em; line-height: 1; } .colist > table tr > td:last-of-type { padding: 0.25em 0; } .thumb, .th { line-height: 0; display: inline-block; border: solid 4px white; -webkit-box-shadow: 0 0 0 1px #dddddd; box-shadow: 0 0 0 1px #dddddd; } .imageblock.left, .imageblock[style*="float: left"] { margin: 0.25em 0.625em 1.25em 0; } .imageblock.right, .imageblock[style*="float: right"] { margin: 0.25em 0 1.25em 0.625em; } .imageblock > .title { margin-bottom: 0; } .imageblock.thumb, .imageblock.th { border-width: 6px; } .imageblock.thumb > .title, .imageblock.th > .title { padding: 0 0.125em; } .image.left, .image.right { margin-top: 0.25em; margin-bottom: 0.25em; display: inline-block; line-height: 0; } .image.left { margin-right: 0.625em; } .image.right { margin-left: 0.625em; } a.image { text-decoration: none; display: inline-block; } a.image object { pointer-events: none; } sup.footnote, sup.footnoteref { font-size: 0.875em; position: static; vertical-align: super; } sup.footnote a, sup.footnoteref a { text-decoration: none; } sup.footnote a:active, sup.footnoteref a:active { text-decoration: underline; } #footnotes { padding-top: 0.75em; padding-bottom: 0.75em; margin-bottom: 0.625em; } #footnotes hr { width: 20%; min-width: 6.25em; margin: -0.25em 0 0.75em 0; border-width: 1px 0 0 0; } #footnotes .footnote { padding: 0 0.375em 0 0.225em; line-height: 1.3334; font-size: 0.875em; margin-left: 1.2em; text-indent: -1.05em; margin-bottom: 0.2em; } #footnotes .footnote a:first-of-type { font-weight: bold; text-decoration: none; } #footnotes .footnote:last-of-type { margin-bottom: 0; } #content #footnotes { margin-top: -0.625em; margin-bottom: 0; padding: 0.75em 0; } .gist .file-data > table { border: 0; background: #fff; width: 100%; margin-bottom: 0; } .gist .file-data > table td.line-data { width: 99%; } div.unbreakable { page-break-inside: avoid; } .big { font-size: larger; } .small { font-size: smaller; } .underline { text-decoration: underline; } .overline { text-decoration: overline; } .line-through { text-decoration: line-through; } .aqua { color: #00bfbf; } .aqua-background { background-color: #00fafa; } .black { color: black; } .black-background { background-color: black; } .blue { color: #0000bf; } .blue-background { background-color: #0000fa; } .fuchsia { color: #bf00bf; } .fuchsia-background { background-color: #fa00fa; } .gray { color: #606060; } .gray-background { background-color: #7d7d7d; } .green { color: #006000; } .green-background { background-color: #007d00; } .lime { color: #00bf00; } .lime-background { background-color: #00fa00; } .maroon { color: #600000; } .maroon-background { background-color: #7d0000; } .navy { color: #000060; } .navy-background { background-color: #00007d; } .olive { color: #606000; } .olive-background { background-color: #7d7d00; } .purple { color: #600060; } .purple-background { background-color: #7d007d; } .red { color: #bf0000; } .red-background { background-color: #fa0000; } .silver { color: #909090; } .silver-background { background-color: #bcbcbc; } .teal { color: #006060; } .teal-background { background-color: #007d7d; } .white { color: #bfbfbf; } .white-background { background-color: #fafafa; } .yellow { color: #bfbf00; } .yellow-background { background-color: #fafa00; } span.icon > .fa { cursor: default; } .admonitionblock td.icon [class^="fa icon-"] { font-size: 2.5em; text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); cursor: default; } .admonitionblock td.icon .icon-note:before { content: "\f05a"; color: #850046; } .admonitionblock td.icon .icon-tip:before { content: "\f0eb"; text-shadow: 1px 1px 2px rgba(155, 155, 0, 0.8); color: #111; } .admonitionblock td.icon .icon-warning:before { content: "\f071"; color: #bf6900; } .admonitionblock td.icon .icon-caution:before { content: "\f06d"; color: #bf3400; } .admonitionblock td.icon .icon-important:before { content: "\f06a"; color: #bf0000; } .conum[data-value] { display: inline-block; color: #fff !important; background-color: #555555; -webkit-border-radius: 100px; border-radius: 100px; text-align: center; font-size: 0.75em; width: 1.67em; height: 1.67em; line-height: 1.67em; font-family: "Open Sans", "DejaVu Sans", sans-serif; font-style: normal; font-weight: bold; } .conum[data-value] * { color: #fff !important; } .conum[data-value] + b { display: none; } .conum[data-value]:after { content: attr(data-value); } pre .conum[data-value] { position: relative; top: -0.125em; } b.conum * { color: inherit !important; } .conum:not([data-value]):empty { display: none; } #header > h1 { border-bottom-style: solid; } #toctitle { color: #333333; } .listingblock pre, .literalblock pre { background: -moz-linear-gradient(top, white 0%, #f4f4f4 100%); background: -webkit-linear-gradient(top, white 0%, #f4f4f4 100%); background: linear-gradient(to bottom, #ffffff 0%, #f4f4f4 100%); -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15); } .sidebarblock { background: none; border: none; -webkit-box-shadow: 0 0 5px rgba(177, 0, 93, 0.5); box-shadow: 0 0 5px rgba(177, 0, 93, 0.5); } .sidebarblock > .content > .title { color: #181818; }
lib/javadocs/javax/mail/internet/class-use/PreencodedMimeBodyPart.html
klawx3/leafhouse
<!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_26) on Tue Mar 20 15:29:44 PDT 2012 --> <META http-equiv="Content-Type" content="text/html; charset=UTF-8"> <TITLE> Uses of Class javax.mail.internet.PreencodedMimeBodyPart (JavaMail API documentation) </TITLE> <META NAME="date" CONTENT="2012-03-20"> <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 javax.mail.internet.PreencodedMimeBodyPart (JavaMail API documentation)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../javax/mail/internet/PreencodedMimeBodyPart.html" title="class in javax.mail.internet"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?javax/mail/internet//class-usePreencodedMimeBodyPart.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PreencodedMimeBodyPart.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H2> <B>Uses of Class<br>javax.mail.internet.PreencodedMimeBodyPart</B></H2> </CENTER> No usage of javax.mail.internet.PreencodedMimeBodyPart <P> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../javax/mail/internet/PreencodedMimeBodyPart.html" title="class in javax.mail.internet"><FONT CLASS="NavBarFont1"><B>Class</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Use</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?javax/mail/internet//class-usePreencodedMimeBodyPart.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="PreencodedMimeBodyPart.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> Copyright &#169; 2012 <a href="http://www.oracle.com">Oracle</a>. All Rights Reserved. </BODY> </HTML>
documentation/html/iOS/class_c_p_t_image-members.html
tectronics/core-plot
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.5"/> <title>Core Plot (iOS): 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="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="core-plot-logo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Core Plot (iOS) </div> <div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Animation&#160;&&#160;Constants</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="inherits.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </div><!-- 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('interface_c_p_t_image.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">CPTImage Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="interface_c_p_t_image.html">CPTImage</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry">+&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/clm/NSObject/alloc">alloc</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry">+&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/clm/NSObject/class">class</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/instm/NSObject/classForCoder">classForCoder</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/instm/NSObject/copy">copy</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCopying_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/NSCopying/copyWithZone:">copyWithZone:</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCopying_Protocol/Reference/Reference.html">&lt;NSCopying&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/instm/NSObject/dealloc">dealloc</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html#//apple_ref/occ/intfm/NSObject/description">description</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html">&lt;NSObject&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="el" href="interface_c_p_t_image.html#aab29f34450ad6c1f232e54f31c1d6517">drawInRect:inContext:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCoding_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/NSCoding/encodeWithCoder:">encodeWithCoder:</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCoding_Protocol/Reference/Reference.html">&lt;NSCoding&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/instm/NSObject/finalize">finalize</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html#//apple_ref/occ/intfm/NSObject/hash">hash</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html">&lt;NSObject&gt;</a></td><td class="entry"></td></tr> <tr><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a5c9c1cd8273611dc457fd07262ec50a9">image</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"><span class="mlabel">private</span></td></tr> <tr class="even"><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a5c9c1cd8273611dc457fd07262ec50a9">image</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry">+&#160;</td><td><a class="el" href="interface_c_p_t_image.html#a2456200e77db5c651696fbb8be097492">imageForPNGFile:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry">+&#160;</td><td><a class="el" href="interface_c_p_t_image.html#a0f5aea573694f892d6323ef0865855a7">imageWithCGImage:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry">+&#160;</td><td><a class="el" href="interface_c_p_t_image.html#a69a63ea3a3bec2284a5c60c426d7fbcc">imageWithCGImage:scale:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="el" href="interface_c_p_t_image.html#a9391551b2e4984230fc5b24cec859eca">init</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="el" href="interface_c_p_t_image.html#a9ffebde730aa2e5ef5cb3dadf549e38c">initForPNGFile:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">+&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/clm/NSObject/initialize">initialize</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry">-&#160;</td><td><a class="el" href="interface_c_p_t_image.html#a42f9e2cc9877c3b672c6706dc9157962">initWithCGImage:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="el" href="interface_c_p_t_image.html#a1a3f7e09b1b0c7c5a3d3c46fca9e02ea">initWithCGImage:scale:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCoding_Protocol/Reference/Reference.html#//apple_ref/occ/intfm/NSCoding/initWithCoder:">initWithCoder:</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSCoding_Protocol/Reference/Reference.html">&lt;NSCoding&gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="el" href="interface_c_p_t_image.html#adfdccdee9971145e93c3233044817f5e">isEqual:</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html#//apple_ref/occ/intfm/NSObject/isEqual:">isEqual:</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Protocols/NSObject_Protocol/Reference/NSObject.html">&lt;NSObject&gt;</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="el" href="interface_c_p_t_image.html#ac05b2ef4ab329a22338e1481921d0298">isOpaque</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry">+&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/clm/NSObject/load">load</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry">-&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/instm/NSObject/mutableCopy">mutableCopy</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"></td></tr> <tr><td class="entry">+&#160;</td><td><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html#//apple_ref/occ/clm/NSObject/new">new</a></td><td class="entry"><a class="elRef" href="https://developer.apple.com/library/ios/#documentation/Cocoa/Reference/Foundation/Classes/NSObject_Class/Reference/Reference.html">NSObject</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr class="even"><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a476330b51406cafe77a84ece45c79fa4">opaque</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a598024670268445f825aa784c2d75fe2">scale</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"><span class="mlabel">private</span></td></tr> <tr class="even"><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a598024670268445f825aa784c2d75fe2">scale</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a31481c660e93aab1851d9258e1c4adc2">tileAnchoredToContext</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"><span class="mlabel">private</span></td></tr> <tr class="even"><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a31481c660e93aab1851d9258e1c4adc2">tileAnchoredToContext</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"></td></tr> <tr><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a915a28cd82f50bf31ffa77a99f6fde86">tiled</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</a></td><td class="entry"><span class="mlabel">private</span></td></tr> <tr class="even"><td class="entry"></td><td class="entry"><a class="el" href="interface_c_p_t_image.html#a915a28cd82f50bf31ffa77a99f6fde86">tiled</a></td><td class="entry"><a class="el" href="interface_c_p_t_image.html">CPTImage</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.5 </li> </ul> </div> </body> </html>
documentation/html/MacOS/_c_p_t_gradient_8m.html
LiDechao/core-plot
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.5"/> <title>Core Plot (Mac OS): Source/CPTGradient.m File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="core-plot-logo.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">Core Plot (Mac OS) </div> <div id="projectbrief">Cocoa plotting framework for Mac OS X and iOS</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Animation&#160;&&#160;Constants</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> <li><a href="globals.html"><span>File&#160;Members</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('_c_p_t_gradient_8m.html','');}); </script> <div id="doc-content"> <div class="header"> <div class="headertitle"> <div class="title">CPTGradient.m File Reference</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><code>#import &quot;<a class="el" href="_c_p_t_gradient_8h_source.html">CPTGradient.h</a>&quot;</code><br/> <code>#import &quot;<a class="el" href="_c_p_t_color_8h_source.html">CPTColor.h</a>&quot;</code><br/> <code>#import &quot;<a class="el" href="_c_p_t_color_space_8h_source.html">CPTColorSpace.h</a>&quot;</code><br/> <code>#import &quot;<a class="el" href="_c_p_t_utilities_8h_source.html">CPTUtilities.h</a>&quot;</code><br/> <code>#import &quot;<a class="el" href="_n_s_coder_extensions_8h_source.html">NSCoderExtensions.h</a>&quot;</code><br/> <code>#import &lt;tgmath.h&gt;</code><br/> </div><div class="textblock"><div id="dynsection-0" onclick="return toggleVisibility(this)" class="dynheader closed" style="cursor:pointer;"> <img id="dynsection-0-trigger" src="closed.png" alt="+"/> Include dependency graph for CPTGradient.m:</div> <div id="dynsection-0-summary" class="dynsummary" style="display:block;"> </div> <div id="dynsection-0-content" class="dyncontent" style="display:none;"> <div class="center"><img src="_c_p_t_gradient_8m__incl.png" border="0" usemap="#_source_2_c_p_t_gradient_8m" alt=""/></div> <map name="_source_2_c_p_t_gradient_8m" id="_source_2_c_p_t_gradient_8m"> <area shape="rect" id="node2" href="_c_p_t_gradient_8h.html" title="CPTGradient.h" alt="" coords="4,86,117,117"/><area shape="rect" id="node6" href="_c_p_t_color_8h.html" title="CPTColor.h" alt="" coords="143,86,235,117"/><area shape="rect" id="node7" href="_c_p_t_color_space_8h.html" title="CPTColorSpace.h" alt="" coords="260,86,389,117"/><area shape="rect" id="node8" href="_c_p_t_utilities_8h.html" title="CPTUtilities.h" alt="" coords="415,86,520,117"/><area shape="rect" id="node9" href="_n_s_coder_extensions_8h.html" title="NSCoderExtensions.h" alt="" coords="545,86,703,117"/><area shape="rect" id="node3" href="_c_p_t_definitions_8h.html" title="CPTDefinitions.h" alt="" coords="200,166,328,197"/></map> </div> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="dir_74389ed8173ad57b461b9d623a1f3867.html">Source</a></li><li class="navelem"><a class="el" href="_c_p_t_gradient_8m.html">CPTGradient.m</a></li> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.5 </li> </ul> </div> </body> </html>
upgrade/files/9.0.0.RC8-9.0.0.RC9/files/template/menu_item_addon.html
camperjz/trident
<span class="bx-menu-item-addon bx-def-unit-alert bg-col-red2">__content__</span>
webapps/bootstrap2/resource/layoutit.css
x373241884y/atom-vx
body { padding-top:50px; padding-bottom: 40px; margin-left:200px; -webkit-transition: margin 500ms ease; -moz-transition: margin 500ms ease; -ms-transition: margin 500ms ease; -o-transition: margin 500ms ease; transition: margin 500ms ease; } @media (max-width: 980px) { /* Enable use of floated navbar text */ .navbar-text.pull-right { float: none; padding-left: 5px; padding-right: 5px; } } @media (max-width: 979px) { .navbar-fixed-top { position:fixed; } } .navbar-inverse .brand {width:180px; color:#fff; } .brand img {float:left; margin:2px 10px 0 0; } .brand .label { position:relative; left:10px; top:-3px; font-weight:normal; font-size:9px; background:#666; -webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.7); -moz-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.7); box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.7); } .edit .demo { margin-left:0px; margin-top:10px; padding:30px 15px 15px; border: 1px solid #DDDDDD; border-radius: 4px; position:relative; word-wrap: break-word;} .edit .demo:after { background-color: #F5F5F5; border: 1px solid #DDDDDD; border-radius: 4px 0 4px 0; color: #9DA0A4; content: "Container"; font-size: 12px; font-weight: bold; left: -1px; padding: 3px 7px; position: absolute; top: -1px; } .sidebar-nav { position:fixed; width:200px; left:0px; bottom:0; top:44px; background:#ccc; padding: 9px 0; z-index:10; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; } .sidebar-nav .nav-header { cursor:pointer; font-size:14px; color:#fff; text-shadow:0 1px 0 rgba(0, 0, 0, 0.3);} .sidebar-nav .nav-header span.label { font-size:10px; /*padding-bottom:0;*/ position:relative; top:-1px;} .sidebar-nav .nav-header i.icon-plus {} .sidebar-nav .nav-header .popover {color:#999; text-shadow:none;} .popover-info {position:relative;} .popover-info .popover {display:none; top: -12.5px; left:15px; } .popover-info:hover .popover {display:block; opacity:1; width:400px;} .popover-info:hover .popover .arrow {top:23px;} .sidebar-nav .accordion-group { border:none; } .boxes {} .sidebar-nav li { line-height:25px; } .sidebar-nav .box { line-height:25px; width:170px; height:25px; } .sidebar-nav .preview { display: block; color:#666; font-size:12px; line-height:22px;} .sidebar-nav .preview input { width:90px; padding:0 10px; background:#bbb; font-size:10px; color:#999; line-height:20px; height:20px; position:relative; top:-1px; } .sidebar-nav .view { display: none; } .sidebar-nav .remove, .sidebar-nav .configuration { display: none; } .sidebar-nav .boxes { display:none;} .demo .preview { display: none; } .demo .box .view { display: block; padding-top:30px;} .ui-draggable-dragging .view { display:block;} /*.demo .ui-sortable-placeholder { outline: 5px dotted #ddd; visibility: visible!Important; border-radius: 4px; }*/ .ui-sortable-placeholder { outline: 1px dashed #ddd;visibility: visible!Important; border-radius: 4px;} .edit .drag { position: absolute; top: 0;right: 0; cursor: pointer; } .box,.lyrow { position:relative;} .edit .demo .lyrow .drag { top:5px; right:80px; z-index:10; } .edit .demo .column .box .drag { top:5px; } .edit .demo .column .box .configuration {position: absolute; top: 3px; right: 140px;white-space:nowrap; } .edit .demo .remove { position: absolute; top: 5px; right: 5px; z-index:10; } .demo .configuration { filter: alpha(opacity=0); opacity: 0; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; } .demo .drag, .demo .remove { filter: alpha(opacity=20); opacity: 0.2; -webkit-transition: all 500ms ease; -moz-transition: all 500ms ease; -ms-transition: all 500ms ease; -o-transition: all 500ms ease; transition: all 500ms ease; } .demo .lyrow:hover > .drag, .demo .lyrow:hover > .configuration, .demo .lyrow:hover > .remove, .demo .box:hover .drag, .demo .box:hover .configuration, .demo .box:hover .remove { filter: alpha(opacity=100); opacity: 1; } .edit .demo .row-fluid:before { background-color: #F5F5F5; border: 1px solid #DDDDDD; border-radius: 4px 0 4px 0; color: #9DA0A4; content: "Row"; font-size: 12px; font-weight: bold; left: -1px; line-height:2; padding: 3px 7px; position: absolute; top: -1px; } .demo .row-fluid { background-color: #F5F5F5; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-shadow: inset 0 1px 13px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 13px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 13px rgba(0, 0, 0, 0.1); border: 1px solid #DDDDDD; border-radius: 4px 4px 4px 4px; margin: 15px 0; position: relative; padding: 25px 14px 0; } .edit .column:after { background-color: #F5F5F5; border: 1px solid #DDDDDD; border-radius: 4px 0 4px 0; color: #9DA0A4; content: "Column"; font-size: 12px; font-weight: bold; left: -1px; padding: 3px 7px; position: absolute; top: -1px; } .column { background-color: #FFFFFF; border: 1px solid #DDDDDD; border-radius: 4px 4px 4px 4px; margin: 15px 0; padding: 39px 19px 24px; position: relative; } /* preview */ body.devpreview { margin-left:0px;} .devpreview .sidebar-nav { left:-200px; -webkit-transition: all 0ms ease; -moz-transition: all 0ms ease; -ms-transition: all 0ms ease; -o-transition: all 0ms ease; transition: all 0ms ease; } .devpreview .drag, .devpreview .configuration, .devpreview .remove { display:none !Important; } .sourcepreview .column, .sourcepreview .row-fluid, .sourcepreview .demo .box { margin:0px 0; padding:0px; background:none; border:none; -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.00); -moz-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.00); box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.00); } .devpreview .demo .box, .devpreview .demo .row-fluid { padding-top:0; background:none; } .devpreview .demo .column { padding-top:19px; padding-bottom:19px; } #download-layout { display: none } #editorModal textarea, #downloadModal textarea { width:100%;height:280px;resize: none;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box; } #editorModal {width:640px;} a.language-selected { font-style: italic; font-weight: bold; }
doc/html/alertservicetask-members.html
librelab/qtmoko-test
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>List of All Members for AlertServiceTask</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><img src="images/qtlogo.png" align="left" border="0" /></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="namespaces.html"><font color="#004faf">All&nbsp;Namespaces</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped Classes</font></a>&nbsp;&middot; <a href="modules-index.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="center"><img src="images/codeless.png" border="0" alt="codeless banner"></td></tr></table><h1 class="title">List of All Members for AlertServiceTask</h1> <p>This is the complete list of members for <a href="alertservicetask.html">AlertServiceTask</a>, including inherited members.</p> <p><table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td width="45%" valign="top"><ul> <li><div class="fn"/><a href="qobject.html#blockSignals">blockSignals</a> ( bool )</li> <li><div class="fn"/><a href="qobject.html#childEvent">childEvent</a> ( QChildEvent * )</li> <li><div class="fn"/><a href="qobject.html#children">children</a> () const</li> <li><div class="fn"/><a href="qobject.html#connect">connect</a> ( const QObject *, const char *, const QObject *, const char *, Qt::ConnectionType )</li> <li><div class="fn"/><a href="qobject.html#connect-2">connect</a> ( const QObject *, const char *, const char *, Qt::ConnectionType ) const</li> <li><div class="fn"/><a href="qobject.html#connectNotify">connectNotify</a> ( const char * )</li> <li><div class="fn"/><a href="qobject.html#customEvent">customEvent</a> ( QEvent * )</li> <li><div class="fn"/><a href="qobject.html#d_ptr-var">d_ptr</a> : </li> <li><div class="fn"/><a href="qobject.html#deleteLater">deleteLater</a> ()</li> <li><div class="fn"/><a href="qobject.html#destroyed">destroyed</a> ( QObject * )</li> <li><div class="fn"/><a href="qobject.html#disconnect">disconnect</a> ( const QObject *, const char *, const QObject *, const char * )</li> <li><div class="fn"/><a href="qobject.html#disconnect-2">disconnect</a> ( const char *, const QObject *, const char * )</li> <li><div class="fn"/><a href="qobject.html#disconnect-3">disconnect</a> ( const QObject *, const char * )</li> <li><div class="fn"/><a href="qobject.html#disconnectNotify">disconnectNotify</a> ( const char * )</li> <li><div class="fn"/><a href="qobject.html#dumpObjectInfo">dumpObjectInfo</a> ()</li> <li><div class="fn"/><a href="qobject.html#dumpObjectTree">dumpObjectTree</a> ()</li> <li><div class="fn"/><a href="qobject.html#dynamicPropertyNames">dynamicPropertyNames</a> () const</li> <li><div class="fn"/><a href="qobject.html#event">event</a> ( QEvent * )</li> <li><div class="fn"/><a href="qobject.html#eventFilter">eventFilter</a> ( QObject *, QEvent * )</li> <li><div class="fn"/><a href="qobject.html#findChild">findChild</a> ( const QString &amp; ) const</li> <li><div class="fn"/><a href="qobject.html#findChildren">findChildren</a> ( const QString &amp; ) const</li> <li><div class="fn"/><a href="qobject.html#findChildren-2">findChildren</a> ( const QRegExp &amp; ) const</li> <li><div class="fn"/><a href="qobject.html#inherits">inherits</a> ( const char * ) const</li> <li><div class="fn"/><a href="qobject.html#installEventFilter">installEventFilter</a> ( QObject * )</li> </ul></td><td valign="top"><ul> <li><div class="fn"/><a href="qobject.html#isWidgetType">isWidgetType</a> () const</li> <li><div class="fn"/><a href="qobject.html#killTimer">killTimer</a> ( int )</li> <li><div class="fn"/><a href="qobject.html#metaObject">metaObject</a> () const</li> <li><div class="fn"/><a href="qobject.html#moveToThread">moveToThread</a> ( QThread * )</li> <li><div class="fn"/><a href="qobject.html#objectName-prop">objectName</a> () const</li> <li><div class="fn"/><a href="qobject.html#parent">parent</a> () const</li> <li><div class="fn"/><a href="qobject.html#property">property</a> ( const char * ) const</li> <li><div class="fn"/><a href="qtopiaabstractservice.html#publishAll">publishAll</a> ()</li> <li><div class="fn"/><a href="qobject.html#receivers">receivers</a> ( const char * ) const</li> <li><div class="fn"/><a href="qobject.html#removeEventFilter">removeEventFilter</a> ( QObject * )</li> <li><div class="fn"/><a href="qobject.html#sender">sender</a> () const</li> <li><div class="fn"/><a href="qobject.html#objectName-prop">setObjectName</a> ( const QString &amp; )</li> <li><div class="fn"/><a href="qobject.html#setParent">setParent</a> ( QObject * )</li> <li><div class="fn"/><a href="qobject.html#setProperty">setProperty</a> ( const char *, const QVariant &amp; )</li> <li><div class="fn"/><a href="qobject.html#signalsBlocked">signalsBlocked</a> () const</li> <li><div class="fn"/><a href="alertservice.html#soundAlert">soundAlert</a> ()</li> <li><div class="fn"/><a href="qobject.html#startTimer">startTimer</a> ( int )</li> <li><div class="fn"/><a href="qobject.html#staticMetaObject-var">staticMetaObject</a> : </li> <li><div class="fn"/><a href="qobject.html#staticQtMetaObject-var">staticQtMetaObject</a> : </li> <li><div class="fn"/><a href="qobject.html#thread">thread</a> () const</li> <li><div class="fn"/><a href="qobject.html#timerEvent">timerEvent</a> ( QTimerEvent * )</li> <li><div class="fn"/><a href="qobject.html#tr">tr</a> ( const char *, const char *, int )</li> <li><div class="fn"/><a href="qobject.html#trUtf8">trUtf8</a> ( const char *, const char *, int )</li> </ul> </td></tr> </table></p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td align="left">Copyright &copy; 2009 Trolltech</td> <td align="center"><a href="trademarks.html">Trademarks</a></td> <td align="right"><div align="right">Qt Extended 4.4.3</div></td> </tr></table></div></address></body> </html>
doc/html/qfile.html
liuyanghejerry/qtextended
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>Qt 4.4: QFile Class Reference</title> <link href="classic.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" border="0" /></a></td> <td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="namespaces.html"><font color="#004faf">All&nbsp;Namespaces</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td> <td align="right" valign="top" width="230"></td></tr></table><h1 class="title">QFile Class Reference<br /><span class="small-subtitle">[<a href="qtcore.html">QtCore</a> module]</span> </h1> <p>The QFile class provides an interface for reading from and writing to files. <a href="#details">More...</a></p> <pre> #include &lt;QFile&gt;</pre><p>Inherits <a href="qiodevice.html">QIODevice</a>.</p> <p>Inherited by <a href="qtemporaryfile.html">QTemporaryFile</a>.</p> <p><b>Note:</b> All the functions in this class are <a href="threads.html#reentrant">reentrant</a>, except <a href="qfile.html#setEncodingFunction">setEncodingFunction</a>() and <a href="qfile.html#setDecodingFunction">setDecodingFunction</a>().</p> <ul> <li><a href="qfile-members.html">List of all members, including inherited members</a></li> <li><a href="qfile-obsolete.html">Obsolete members</a></li> <li><a href="qfile-qt3.html">Qt 3 support members</a></li> </ul> <a name="public-types"></a> <h3>Public Types</h3> <ul> <li><div class="fn"/>typedef <b><a href="qfile.html#DecoderFn-typedef">DecoderFn</a></b></li> <li><div class="fn"/>typedef <b><a href="qfile.html#EncoderFn-typedef">EncoderFn</a></b></li> <li><div class="fn"/>enum <b><a href="qfile.html#FileError-enum">FileError</a></b> { NoError, ReadError, WriteError, FatalError, ..., CopyError }</li> <li><div class="fn"/>enum <b><a href="qfile.html#MemoryMapFlags-enum">MemoryMapFlags</a></b> { NoOptions }</li> <li><div class="fn"/>enum <b><a href="qfile.html#Permission-enum">Permission</a></b> { ReadOwner, WriteOwner, ExeOwner, ReadUser, ..., ExeOther }</li> <li><div class="fn"/>typedef <b><a href="qfile.html#PermissionSpec-typedef">PermissionSpec</a></b></li> <li><div class="fn"/>flags <b><a href="qfile.html#Permission-enum">Permissions</a></b></li> </ul> <a name="public-functions"></a> <h3>Public Functions</h3> <ul> <li><div class="fn"/><b><a href="qfile.html#QFile">QFile</a></b> ( const QString &amp; <i>name</i> )</li> <li><div class="fn"/><b><a href="qfile.html#QFile-3">QFile</a></b> ( QObject * <i>parent</i> )</li> <li><div class="fn"/><b><a href="qfile.html#QFile-4">QFile</a></b> ( const QString &amp; <i>name</i>, QObject * <i>parent</i> )</li> <li><div class="fn"/><b><a href="qfile.html#dtor.QFile">~QFile</a></b> ()</li> <li><div class="fn"/>virtual bool <b><a href="qfile.html#atEnd">atEnd</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qfile.html#copy">copy</a></b> ( const QString &amp; <i>newName</i> )</li> <li><div class="fn"/>FileError <b><a href="qfile.html#error">error</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qfile.html#exists-2">exists</a></b> () const</li> <li><div class="fn"/>QString <b><a href="qfile.html#fileName">fileName</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qfile.html#flush">flush</a></b> ()</li> <li><div class="fn"/>int <b><a href="qfile.html#handle">handle</a></b> () const</li> <li><div class="fn"/>virtual bool <b><a href="qfile.html#isSequential">isSequential</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qfile.html#link">link</a></b> ( const QString &amp; <i>linkName</i> )</li> <li><div class="fn"/>uchar * <b><a href="qfile.html#map">map</a></b> ( qint64 <i>offset</i>, qint64 <i>size</i>, MemoryMapFlags <i>flags</i> = NoOptions )</li> <li><div class="fn"/>virtual bool <b><a href="qfile.html#open">open</a></b> ( OpenMode <i>mode</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#open-4">open</a></b> ( FILE * <i>fh</i>, OpenMode <i>mode</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#open-5">open</a></b> ( int <i>fd</i>, OpenMode <i>mode</i> )</li> <li><div class="fn"/>Permissions <b><a href="qfile.html#permissions">permissions</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qfile.html#remove">remove</a></b> ()</li> <li><div class="fn"/>bool <b><a href="qfile.html#rename">rename</a></b> ( const QString &amp; <i>newName</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#resize">resize</a></b> ( qint64 <i>sz</i> )</li> <li><div class="fn"/>void <b><a href="qfile.html#setFileName">setFileName</a></b> ( const QString &amp; <i>name</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#setPermissions">setPermissions</a></b> ( Permissions <i>permissions</i> )</li> <li><div class="fn"/>virtual qint64 <b><a href="qfile.html#size">size</a></b> () const</li> <li><div class="fn"/>QString <b><a href="qfile.html#symLinkTarget-2">symLinkTarget</a></b> () const</li> <li><div class="fn"/>bool <b><a href="qfile.html#unmap">unmap</a></b> ( uchar * <i>address</i> )</li> <li><div class="fn"/>void <b><a href="qfile.html#unsetError">unsetError</a></b> ()</li> </ul> <ul> <li><div class="fn"/>32 public functions inherited from <a href="qiodevice.html#public-functions">QIODevice</a></li> <li><div class="fn"/>29 public functions inherited from <a href="qobject.html#public-functions">QObject</a></li> </ul> <a name="static-public-members"></a> <h3>Static Public Members</h3> <ul> <li><div class="fn"/>bool <b><a href="qfile.html#copy-2">copy</a></b> ( const QString &amp; <i>fileName</i>, const QString &amp; <i>newName</i> )</li> <li><div class="fn"/>QString <b><a href="qfile.html#decodeName">decodeName</a></b> ( const QByteArray &amp; <i>localFileName</i> )</li> <li><div class="fn"/>QString <b><a href="qfile.html#decodeName-2">decodeName</a></b> ( const char * <i>localFileName</i> )</li> <li><div class="fn"/>QByteArray <b><a href="qfile.html#encodeName">encodeName</a></b> ( const QString &amp; <i>fileName</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#exists">exists</a></b> ( const QString &amp; <i>fileName</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#link-2">link</a></b> ( const QString &amp; <i>fileName</i>, const QString &amp; <i>linkName</i> )</li> <li><div class="fn"/>Permissions <b><a href="qfile.html#permissions-2">permissions</a></b> ( const QString &amp; <i>fileName</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#remove-2">remove</a></b> ( const QString &amp; <i>fileName</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#rename-2">rename</a></b> ( const QString &amp; <i>oldName</i>, const QString &amp; <i>newName</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#resize-2">resize</a></b> ( const QString &amp; <i>fileName</i>, qint64 <i>sz</i> )</li> <li><div class="fn"/>void <b><a href="qfile.html#setDecodingFunction">setDecodingFunction</a></b> ( DecoderFn <i>function</i> )</li> <li><div class="fn"/>void <b><a href="qfile.html#setEncodingFunction">setEncodingFunction</a></b> ( EncoderFn <i>function</i> )</li> <li><div class="fn"/>bool <b><a href="qfile.html#setPermissions-2">setPermissions</a></b> ( const QString &amp; <i>fileName</i>, Permissions <i>permissions</i> )</li> <li><div class="fn"/>QString <b><a href="qfile.html#symLinkTarget">symLinkTarget</a></b> ( const QString &amp; <i>fileName</i> )</li> </ul> <ul> <li><div class="fn"/>5 static public members inherited from <a href="qobject.html#static-public-members">QObject</a></li> </ul> <h3>Additional Inherited Members</h3> <ul> <li><div class="fn"/>1 property inherited from <a href="qobject.html#properties">QObject</a></li> <li><div class="fn"/>1 public slot inherited from <a href="qobject.html#public-slots">QObject</a></li> <li><div class="fn"/>4 signals inherited from <a href="qiodevice.html#signals">QIODevice</a></li> <li><div class="fn"/>1 signal inherited from <a href="qobject.html#signals">QObject</a></li> <li><div class="fn"/>5 protected functions inherited from <a href="qiodevice.html#protected-functions">QIODevice</a></li> <li><div class="fn"/>7 protected functions inherited from <a href="qobject.html#protected-functions">QObject</a></li> </ul> <a name="details"></a> <hr /> <h2>Detailed Description</h2> <p>The QFile class provides an interface for reading from and writing to files.</p> <p>QFile is an I/O device for reading and writing text and binary files and <a href="resources.html">resources</a>. A QFile may be used by itself or, more conveniently, with a <a href="qtextstream.html">QTextStream</a> or <a href="qdatastream.html">QDataStream</a>.</p> <p>The file name is usually passed in the constructor, but it can be set at any time using <a href="qfile.html#setFileName">setFileName</a>(). QFile expects the file separator to be '/' regardless of operating system. The use of other separators (e.g&#x2e;, '\') is not supported.</p> <p>You can check for a file's existence using <a href="qfile.html#exists">exists</a>(), and remove a file using <a href="qfile.html#remove">remove</a>(). (More advanced file system related operations are provided by <a href="qfileinfo.html">QFileInfo</a> and <a href="qdir.html">QDir</a>.)</p> <p>The file is opened with <a href="qfile.html#open">open</a>(), closed with <a href="qiodevice.html#close">close</a>(), and flushed with <a href="qfile.html#flush">flush</a>(). Data is usually read and written using <a href="qdatastream.html">QDataStream</a> or <a href="qtextstream.html">QTextStream</a>, but you can also call the <a href="qiodevice.html">QIODevice</a>-inherited functions <a href="qiodevice.html#read">read</a>(), <a href="qiodevice.html#readLine">readLine</a>(), <a href="qiodevice.html#readAll">readAll</a>(), <a href="qiodevice.html#write">write</a>(). QFile also inherits <a href="qiodevice.html#getChar">getChar</a>(), <a href="qiodevice.html#putChar">putChar</a>(), and <a href="qiodevice.html#ungetChar">ungetChar</a>(), which work one character at a time.</p> <p>The size of the file is returned by <a href="qfile.html#size">size</a>(). You can get the current file position using <a href="qiodevice.html#pos">pos</a>(), or move to a new file position using <a href="qiodevice.html#seek">seek</a>(). If you've reached the end of the file, <a href="qfile.html#atEnd">atEnd</a>() returns true.</p> <a name="reading-files-directly"></a> <h3>Reading Files Directly</h3> <p>The following example reads a text file line by line:</p> <pre> QFile file(&quot;in.txt&quot;); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return; while (!file.atEnd()) { QByteArray line = file.readLine(); process_line(line); }</pre> <p>The <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::Text</a> flag passed to <a href="qfile.html#open">open</a>() tells Qt to convert Windows-style line terminators (&quot;\r\n&quot;) into C++-style terminators (&quot;\n&quot;). By default, QFile assumes binary, i.e&#x2e; it doesn't perform any conversion on the bytes stored in the file.</p> <a name="using-streams-to-read-files"></a> <h3>Using Streams to Read Files</h3> <p>The next example uses <a href="qtextstream.html">QTextStream</a> to read a text file line by line:</p> <pre> QFile file(&quot;in.txt&quot;); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return; QTextStream in(&amp;file); while (!in.atEnd()) { QString line = in.readLine(); process_line(line); }</pre> <p><a href="qtextstream.html">QTextStream</a> takes care of converting the 8-bit data stored on disk into a 16-bit Unicode <a href="qstring.html">QString</a>. By default, it assumes that the user system's local 8-bit encoding is used (e.g&#x2e;, ISO 8859-1 for most of Europe; see <a href="qtextcodec.html#codecForLocale">QTextCodec::codecForLocale</a>() for details). This can be changed using setCodec().</p> <p>To write text, we can use operator&lt;&lt;(), which is overloaded to take a <a href="qtextstream.html">QTextStream</a> on the left and various data types (including <a href="qstring.html">QString</a>) on the right:</p> <pre> QFile file(&quot;out.txt&quot;); if (!file.open(QIODevice::WriteOnly | QIODevice::Text)) return; QTextStream out(&amp;file); out &lt;&lt; &quot;The magic number is: &quot; &lt;&lt; 49 &lt;&lt; &quot;\n&quot;;</pre> <p><a href="qdatastream.html">QDataStream</a> is similar, in that you can use operator&lt;&lt;() to write data and operator&gt;&gt;() to read it back. See the class documentation for details.</p> <p>When you use QFile, <a href="qfileinfo.html">QFileInfo</a>, and <a href="qdir.html">QDir</a> to access the file system with Qt, you can use Unicode file names. On Unix, these file names are converted to an 8-bit encoding. If you want to use standard C++ APIs (<tt>&lt;cstdio&gt;</tt> or <tt>&lt;iostream&gt;</tt>) or platform-specific APIs to access files instead of QFile, you can use the <a href="qfile.html#encodeName">encodeName</a>() and <a href="qfile.html#decodeName">decodeName</a>() functions to convert between Unicode file names and 8-bit file names.</p> <p>On Unix, there are some special system files (e.g&#x2e; in <tt>/proc</tt>) for which <a href="qfile.html#size">size</a>() will always return 0, yet you may still be able to read more data from such a file; the data is generated in direct response to you calling <a href="qiodevice.html#read">read</a>(). In this case, however, you cannot use <a href="qfile.html#atEnd">atEnd</a>() to determine if there is more data to read (since <a href="qfile.html#atEnd">atEnd</a>() will return true for a file that claims to have size 0). Instead, you should either call <a href="qiodevice.html#readAll">readAll</a>(), or call <a href="qiodevice.html#read">read</a>() or <a href="qiodevice.html#readLine">readLine</a>() repeatedly until no more data can be read. The next example uses <a href="qtextstream.html">QTextStream</a> to read <tt>/proc/modules</tt> line by line:</p> <pre> QFile file(&quot;/proc/modules&quot;); if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) return; QTextStream in(&amp;file); QString line = in.readLine(); while (!line.isNull()) { process_line(line); line = in.readLine(); }</pre> <a name="signals"></a> <h3>Signals</h3> <p>Unlike other <a href="qiodevice.html">QIODevice</a> implementations, such as <a href="qtcpsocket.html">QTcpSocket</a>, QFile does not emit the <a href="qiodevice.html#aboutToClose">aboutToClose</a>(), <a href="qiodevice.html#bytesWritten">bytesWritten</a>(), or <a href="qiodevice.html#readyRead">readyRead</a>() signals. This implementation detail means that QFile is not suitable for reading and writing certain types of files, such as device files on Unix platforms.</p> <a name="platform-specific-issues"></a> <h3>Platform Specific Issues</h3> <p>File permissions are handled differently on Linux/Mac OS X and Windows. In a non <a href="qiodevice.html#isWritable">writable</a> directory on Linux, files cannot be created. This is not always the case on Windows, where, for instance, the 'My Documents' directory usually is not writable, but it is still possible to create files in it.</p> <p>See also <a href="qtextstream.html">QTextStream</a>, <a href="qdatastream.html">QDataStream</a>, <a href="qfileinfo.html">QFileInfo</a>, <a href="qdir.html">QDir</a>, and <a href="resources.html">The Qt Resource System</a>.</p> <hr /> <h2>Member Type Documentation</h2> <h3 class="fn"><a name="DecoderFn-typedef"></a>typedef QFile::DecoderFn</h3> <p>This is a typedef for a pointer to a function with the following signature:</p> <pre> QString myDecoderFunc(const QByteArray &amp;localFileName);</pre> <p>See also <a href="qfile.html#setDecodingFunction">setDecodingFunction</a>().</p> <h3 class="fn"><a name="EncoderFn-typedef"></a>typedef QFile::EncoderFn</h3> <p>This is a typedef for a pointer to a function with the following signature:</p> <pre> QByteArray myEncoderFunc(const QString &amp;fileName);</pre> <p>See also <a href="qfile.html#setEncodingFunction">setEncodingFunction</a>() and <a href="qfile.html#encodeName">encodeName</a>().</p> <h3 class="fn"><a name="FileError-enum"></a>enum QFile::FileError</h3> <p>This enum describes the errors that may be returned by the <a href="qfile.html#error">error</a>() function.</p> <p><table border="1" cellpadding="2" cellspacing="1" width="100%"> <tr><th width="25%">Constant</th><th width="15%">Value</th><th width="60%">Description</th></tr> <tr><td valign="top"><tt>QFile::NoError</tt></td><td align="center" valign="top"><tt>0</tt></td><td valign="top">No error occurred.</td></tr> <tr><td valign="top"><tt>QFile::ReadError</tt></td><td align="center" valign="top"><tt>1</tt></td><td valign="top">An error occurred when reading from the file.</td></tr> <tr><td valign="top"><tt>QFile::WriteError</tt></td><td align="center" valign="top"><tt>2</tt></td><td valign="top">An error occurred when writing to the file.</td></tr> <tr><td valign="top"><tt>QFile::FatalError</tt></td><td align="center" valign="top"><tt>3</tt></td><td valign="top">A fatal error occurred.</td></tr> <tr><td valign="top"><tt>QFile::ResourceError</tt></td><td align="center" valign="top"><tt>4</tt></td><td valign="top">&nbsp;</td></tr> <tr><td valign="top"><tt>QFile::OpenError</tt></td><td align="center" valign="top"><tt>5</tt></td><td valign="top">The file could not be opened.</td></tr> <tr><td valign="top"><tt>QFile::AbortError</tt></td><td align="center" valign="top"><tt>6</tt></td><td valign="top">The operation was aborted.</td></tr> <tr><td valign="top"><tt>QFile::TimeOutError</tt></td><td align="center" valign="top"><tt>7</tt></td><td valign="top">A timeout occurred.</td></tr> <tr><td valign="top"><tt>QFile::UnspecifiedError</tt></td><td align="center" valign="top"><tt>8</tt></td><td valign="top">An unspecified error occurred.</td></tr> <tr><td valign="top"><tt>QFile::RemoveError</tt></td><td align="center" valign="top"><tt>9</tt></td><td valign="top">The file could not be removed.</td></tr> <tr><td valign="top"><tt>QFile::RenameError</tt></td><td align="center" valign="top"><tt>10</tt></td><td valign="top">The file could not be renamed.</td></tr> <tr><td valign="top"><tt>QFile::PositionError</tt></td><td align="center" valign="top"><tt>11</tt></td><td valign="top">The position in the file could not be changed.</td></tr> <tr><td valign="top"><tt>QFile::ResizeError</tt></td><td align="center" valign="top"><tt>12</tt></td><td valign="top">The file could not be resized.</td></tr> <tr><td valign="top"><tt>QFile::PermissionsError</tt></td><td align="center" valign="top"><tt>13</tt></td><td valign="top">The file could not be accessed.</td></tr> <tr><td valign="top"><tt>QFile::CopyError</tt></td><td align="center" valign="top"><tt>14</tt></td><td valign="top">The file could not be copied.</td></tr> </table></p> <h3 class="fn"><a name="MemoryMapFlags-enum"></a>enum QFile::MemoryMapFlags</h3> <p>This enum describes special options that may be used by the <a href="qfile.html#map">map</a>() function.</p> <p><table border="1" cellpadding="2" cellspacing="1" width="100%"> <tr><th width="25%">Constant</th><th width="15%">Value</th><th width="60%">Description</th></tr> <tr><td valign="top"><tt>QFile::NoOptions</tt></td><td align="center" valign="top"><tt>0</tt></td><td valign="top">No options.</td></tr> </table></p> <p>This enum was introduced in Qt 4.4.</p> <h3 class="flags"><a name="Permission-enum"></a>enum QFile::Permission<br />flags QFile::Permissions</h3> <p>This enum is used by the permission() function to report the permissions and ownership of a file. The values may be OR-ed together to test multiple permissions and ownership values.</p> <p><table border="1" cellpadding="2" cellspacing="1" width="100%"> <tr><th width="25%">Constant</th><th width="15%">Value</th><th width="60%">Description</th></tr> <tr><td valign="top"><tt>QFile::ReadOwner</tt></td><td align="center" valign="top"><tt>0x4000</tt></td><td valign="top">The file is readable by the owner of the file.</td></tr> <tr><td valign="top"><tt>QFile::WriteOwner</tt></td><td align="center" valign="top"><tt>0x2000</tt></td><td valign="top">The file is writable by the owner of the file.</td></tr> <tr><td valign="top"><tt>QFile::ExeOwner</tt></td><td align="center" valign="top"><tt>0x1000</tt></td><td valign="top">The file is executable by the owner of the file.</td></tr> <tr><td valign="top"><tt>QFile::ReadUser</tt></td><td align="center" valign="top"><tt>0x0400</tt></td><td valign="top">The file is readable by the user.</td></tr> <tr><td valign="top"><tt>QFile::WriteUser</tt></td><td align="center" valign="top"><tt>0x0200</tt></td><td valign="top">The file is writable by the user.</td></tr> <tr><td valign="top"><tt>QFile::ExeUser</tt></td><td align="center" valign="top"><tt>0x0100</tt></td><td valign="top">The file is executable by the user.</td></tr> <tr><td valign="top"><tt>QFile::ReadGroup</tt></td><td align="center" valign="top"><tt>0x0040</tt></td><td valign="top">The file is readable by the group.</td></tr> <tr><td valign="top"><tt>QFile::WriteGroup</tt></td><td align="center" valign="top"><tt>0x0020</tt></td><td valign="top">The file is writable by the group.</td></tr> <tr><td valign="top"><tt>QFile::ExeGroup</tt></td><td align="center" valign="top"><tt>0x0010</tt></td><td valign="top">The file is executable by the group.</td></tr> <tr><td valign="top"><tt>QFile::ReadOther</tt></td><td align="center" valign="top"><tt>0x0004</tt></td><td valign="top">The file is readable by anyone.</td></tr> <tr><td valign="top"><tt>QFile::WriteOther</tt></td><td align="center" valign="top"><tt>0x0002</tt></td><td valign="top">The file is writable by anyone.</td></tr> <tr><td valign="top"><tt>QFile::ExeOther</tt></td><td align="center" valign="top"><tt>0x0001</tt></td><td valign="top">The file is executable by anyone.</td></tr> </table></p> <p><b>Warning:</b> Because of differences in the platforms supported by Qt, the semantics of ReadUser, WriteUser and ExeUser are platform-dependent: On Unix, the rights of the owner of the file are returned and on Windows the rights of the current user are returned. This behavior might change in a future Qt version.</p> <p>The Permissions type is a typedef for <a href="qflags.html">QFlags</a>&lt;Permission&gt;. It stores an OR combination of Permission values.</p> <h3 class="fn"><a name="PermissionSpec-typedef"></a>typedef QFile::PermissionSpec</h3> <p>Use <a href="qfile.html#Permission-enum">QFile::Permission</a> instead.</p> <hr /> <h2>Member Function Documentation</h2> <h3 class="fn"><a name="QFile"></a>QFile::QFile ( const <a href="qstring.html">QString</a> &amp; <i>name</i> )</h3> <p>Constructs a new file object to represent the file with the given <i>name</i>.</p> <h3 class="fn"><a name="QFile-3"></a>QFile::QFile ( <a href="qobject.html">QObject</a> * <i>parent</i> )</h3> <p>Constructs a new file object with the given <i>parent</i>.</p> <h3 class="fn"><a name="QFile-4"></a>QFile::QFile ( const <a href="qstring.html">QString</a> &amp; <i>name</i>, <a href="qobject.html">QObject</a> * <i>parent</i> )</h3> <p>Constructs a new file object with the given <i>parent</i> to represent the file with the specified <i>name</i>.</p> <h3 class="fn"><a name="dtor.QFile"></a>QFile::~QFile ()</h3> <p>Destroys the file object, closing it if necessary.</p> <h3 class="fn"><a name="atEnd"></a>bool QFile::atEnd () const&nbsp;&nbsp;<tt> [virtual]</tt></h3> <p>Returns true if the end of the file has been reached; otherwise returns false.</p> <p>For regular empty files on Unix (e.g&#x2e; those in <tt>/proc</tt>), this function returns true, since the file system reports that the size of such a file is 0. Therefore, you should not depend on atEnd() when reading data from such a file, but rather call <a href="qiodevice.html#read">read</a>() until no more data can be read.</p> <p>Reimplemented from <a href="qiodevice.html#atEnd">QIODevice</a>.</p> <h3 class="fn"><a name="copy"></a>bool QFile::copy ( const <a href="qstring.html">QString</a> &amp; <i>newName</i> )</h3> <p>Copies the file currently specified by <a href="qfile.html#fileName">fileName</a>() to a file called <i>newName</i>. Returns true if successful; otherwise returns false.</p> <p>Note that if a file with the name <i>newName</i> already exists, copy() returns false (i.e&#x2e; <a href="qfile.html">QFile</a> will not overwrite it).</p> <p>The source file is closed before it is copied.</p> <p>See also <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="copy-2"></a>bool QFile::copy ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i>, const <a href="qstring.html">QString</a> &amp; <i>newName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Copies the file <i>fileName</i> to <i>newName</i>. Returns true if successful; otherwise returns false.</p> <p>If a file with the name <i>newName</i> already exists, <a href="qfile.html#copy">copy</a>() returns false (i.e&#x2e;, <a href="qfile.html">QFile</a> will not overwrite it).</p> <p>See also <a href="qfile.html#rename">rename</a>().</p> <h3 class="fn"><a name="decodeName"></a><a href="qstring.html">QString</a> QFile::decodeName ( const <a href="qbytearray.html">QByteArray</a> &amp; <i>localFileName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This does the reverse of <a href="qfile.html#encodeName">QFile::encodeName</a>() using <i>localFileName</i>.</p> <p>See also <a href="qfile.html#setDecodingFunction">setDecodingFunction</a>() and <a href="qfile.html#encodeName">encodeName</a>().</p> <h3 class="fn"><a name="decodeName-2"></a><a href="qstring.html">QString</a> QFile::decodeName ( const char * <i>localFileName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Returns the Unicode version of the given <i>localFileName</i>. See <a href="qfile.html#encodeName">encodeName</a>() for details.</p> <h3 class="fn"><a name="encodeName"></a><a href="qbytearray.html">QByteArray</a> QFile::encodeName ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>By default, this function converts <i>fileName</i> to the local 8-bit encoding determined by the user's locale. This is sufficient for file names that the user chooses. File names hard-coded into the application should only use 7-bit ASCII filename characters.</p> <p>See also <a href="qfile.html#decodeName">decodeName</a>() and <a href="qfile.html#setEncodingFunction">setEncodingFunction</a>().</p> <h3 class="fn"><a name="error"></a><a href="qfile.html#FileError-enum">FileError</a> QFile::error () const</h3> <p>Returns the file error status.</p> <p>The I/O device status returns an error code. For example, if <a href="qfile.html#open">open</a>() returns false, or a read/write operation returns -1, this function can be called to find out the reason why the operation failed.</p> <p>See also <a href="qfile.html#unsetError">unsetError</a>().</p> <h3 class="fn"><a name="exists"></a>bool QFile::exists ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>Returns true if the file specified by <i>fileName</i> exists; otherwise returns false.</p> <h3 class="fn"><a name="exists-2"></a>bool QFile::exists () const</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Returns true if the file specified by <a href="qfile.html#fileName">fileName</a>() exists; otherwise returns false.</p> <p>See also <a href="qfile.html#fileName">fileName</a>() and <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="fileName"></a><a href="qstring.html">QString</a> QFile::fileName () const</h3> <p>Returns the name set by <a href="qfile.html#setFileName">setFileName</a>() or to the <a href="qfile.html">QFile</a> constructors.</p> <p>See also <a href="qfile.html#setFileName">setFileName</a>() and <a href="qfileinfo.html#fileName">QFileInfo::fileName</a>().</p> <h3 class="fn"><a name="flush"></a>bool QFile::flush ()</h3> <p>Flushes any buffered data to the file. Returns true if successful; otherwise returns false.</p> <h3 class="fn"><a name="handle"></a>int QFile::handle () const</h3> <p>Returns the file handle of the file.</p> <p>This is a small positive integer, suitable for use with C library functions such as fdopen() and fcntl(). On systems that use file descriptors for sockets (i.e&#x2e; Unix systems, but not Windows) the handle can be used with <a href="qsocketnotifier.html">QSocketNotifier</a> as well.</p> <p>If the file is not open, or there is an error, handle() returns -1.</p> <p>This function is not supported on Windows CE.</p> <p>See also <a href="qsocketnotifier.html">QSocketNotifier</a>.</p> <h3 class="fn"><a name="isSequential"></a>bool QFile::isSequential () const&nbsp;&nbsp;<tt> [virtual]</tt></h3> <p>Returns true if the file can only be manipulated sequentially; otherwise returns false.</p> <p>Most files support random-access, but some special files may not.</p> <p>Reimplemented from <a href="qiodevice.html#isSequential">QIODevice</a>.</p> <p>See also <a href="qiodevice.html#isSequential">QIODevice::isSequential</a>().</p> <h3 class="fn"><a name="link"></a>bool QFile::link ( const <a href="qstring.html">QString</a> &amp; <i>linkName</i> )</h3> <p>Creates a link named <i>linkName</i> that points to the file currently specified by <a href="qfile.html#fileName">fileName</a>(). What a link is depends on the underlying filesystem (be it a shortcut on Windows or a symbolic link on Unix). Returns true if successful; otherwise returns false.</p> <p>This function will not overwrite an already existing entity in the file system; in this case, <tt>link()</tt> will return false and set <a href="qfile.html#error">error()</a> to return <a href="qfile.html#FileError-enum">RenameError</a>.</p> <p><b>Note:</b> To create a valid link on Windows, <i>linkName</i> must have a <tt>.lnk</tt> file extension.</p> <p>See also <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="link-2"></a>bool QFile::link ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i>, const <a href="qstring.html">QString</a> &amp; <i>linkName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Creates a link named <i>linkName</i> that points to the file <i>fileName</i>. What a link is depends on the underlying filesystem (be it a shortcut on Windows or a symbolic link on Unix). Returns true if successful; otherwise returns false.</p> <p>See also <a href="qfile.html#link">link</a>().</p> <h3 class="fn"><a name="map"></a><a href="qtglobal.html#uchar-typedef">uchar</a> * QFile::map ( <a href="qtglobal.html#qint64-typedef">qint64</a> <i>offset</i>, <a href="qtglobal.html#qint64-typedef">qint64</a> <i>size</i>, <a href="qfile.html#MemoryMapFlags-enum">MemoryMapFlags</a> <i>flags</i> = NoOptions )</h3> <p>Maps <i>size</i> bytes of the file into memory starting at <i>offset</i>. A file should be open for a map to succeed but the file does not need to stay open after the memory has been mapped. When the <a href="qfile.html">QFile</a> is destroyed or a new file is opened with this object, any maps that have not been unmapped will automatically be unmapped.</p> <p>Any mapping options can be passed through <i>flags</i>.</p> <p>Returns a pointer to the memory or 0 if there is an error.</p> <p><b>Note:</b> On Windows CE 5.0 the file will be closed before mapping occurs.</p> <p>This function was introduced in Qt 4.4.</p> <p>See also <a href="qfile.html#unmap">unmap</a>() and <a href="qabstractfileengine.html#supportsExtension">QAbstractFileEngine::supportsExtension</a>().</p> <h3 class="fn"><a name="open"></a>bool QFile::open ( <a href="qiodevice.html#OpenModeFlag-enum">OpenMode</a> <i>mode</i> )&nbsp;&nbsp;<tt> [virtual]</tt></h3> <p>Opens the file using <a href="qiodevice.html#OpenModeFlag-enum">OpenMode</a> <i>mode</i>, returning true if successful; otherwise false.</p> <p>The <i>mode</i> must be <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::ReadOnly</a>, <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::WriteOnly</a>, or <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::ReadWrite</a>. It may also have additional flags, such as <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::Text</a> and <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::Unbuffered</a>.</p> <p><b>Note:</b> In <a href="qiodevice.html#OpenModeFlag-enum">WriteOnly</a> or <a href="qiodevice.html#OpenModeFlag-enum">ReadWrite</a> mode, if the relevant file does not already exist, this function will try to create a new file before opening it.</p> <p><b>Note:</b> Because of limitations in the native API, <a href="qfile.html">QFile</a> ignores the Unbuffered flag on Windows.</p> <p>Reimplemented from <a href="qiodevice.html#open">QIODevice</a>.</p> <p>See also <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::OpenMode</a> and <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="open-4"></a>bool QFile::open ( FILE * <i>fh</i>, <a href="qiodevice.html#OpenModeFlag-enum">OpenMode</a> <i>mode</i> )</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Opens the existing file handle <i>fh</i> in the given <i>mode</i>. Returns true if successful; otherwise returns false.</p> <p>Example:</p> <pre> #include &lt;stdio.h&gt; void printError(const char* msg) { QFile file; file.open(stderr, QIODevice::WriteOnly); file.write(msg, qstrlen(msg)); <span class="comment">// write to stderr</span> file.close(); }</pre> <p>When a <a href="qfile.html">QFile</a> is opened using this function, <a href="qiodevice.html#close">close</a>() does not actually close the file, but only flushes it.</p> <p><b>Warning:</b></p> <ol type="1"> <li>If <i>fh</i> is <tt>stdin</tt>, <tt>stdout</tt>, or <tt>stderr</tt>, you may not be able to <a href="qiodevice.html#seek">seek</a>(). See <a href="qiodevice-qt3.html#isSequentialAccess">QIODevice::isSequentialAccess</a>() for more information.</li> <li>Since this function opens the file without specifying the file name, you cannot use this <a href="qfile.html">QFile</a> with a <a href="qfileinfo.html">QFileInfo</a>.</li> </ol> <p><b>Note:</b> For Windows CE you may not be able to call <a href="qiodevice.html#seek">seek</a>() and <a href="qfile.html#resize">resize</a>(). Also, <a href="qfile.html#size">size</a>() is set to <tt>0</tt>.</p> <p><b>Note for the Windows Platform</b></p> <p><i>fh</i> must be opened in binary mode (i.e&#x2e;, the mode string must contain 'b', as in &quot;rb&quot; or &quot;wb&quot;) when accessing files and other random-access devices. Qt will translate the end-of-line characters if you pass <a href="qiodevice.html#OpenModeFlag-enum">QIODevice::Text</a> to <i>mode</i>. Sequential devices, such as stdin and stdout, are unaffected by this limitation.</p> <p>You need to enable support for console applications in order to use the stdin, stdout and stderr streams at the console. To do this, add the following declaration to your application's project file:</p> <pre> CONFIG += console</pre> <p>See also <a href="qiodevice.html#close">close</a>() and <a href="qmake-variable-reference.html#config">qmake Variable Reference</a>.</p> <h3 class="fn"><a name="open-5"></a>bool QFile::open ( int <i>fd</i>, <a href="qiodevice.html#OpenModeFlag-enum">OpenMode</a> <i>mode</i> )</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Opens the existing file descripter <i>fd</i> in the given <i>mode</i>. Returns true if successful; otherwise returns false.</p> <p>When a <a href="qfile.html">QFile</a> is opened using this function, <a href="qiodevice.html#close">close</a>() does not actually close the file.</p> <p>The <a href="qfile.html">QFile</a> that is opened using this function is automatically set to be in raw mode; this means that the file input/output functions are slow. If you run into performance issues, you should try to use one of the other open functions.</p> <p><b>Warning:</b> If <i>fd</i> is 0 (<tt>stdin</tt>), 1 (<tt>stdout</tt>), or 2 (<tt>stderr</tt>), you may not be able to <a href="qiodevice.html#seek">seek</a>(). <a href="qfile.html#size">size</a>() is set to <tt>LLONG_MAX</tt> (in <tt>&lt;climits&gt;</tt>).</p> <p><b>Warning:</b> For Windows CE you may not be able to call <a href="qiodevice.html#seek">seek</a>(), setSize(), fileTime(). <a href="qfile.html#size">size</a>() is set to <tt>0</tt>.</p> <p><b>Warning:</b> Since this function opens the file without specifying the file name, you cannot use this <a href="qfile.html">QFile</a> with a <a href="qfileinfo.html">QFileInfo</a>.</p> <p>See also <a href="qiodevice.html#close">close</a>().</p> <h3 class="fn"><a name="permissions"></a><a href="qfile.html#Permission-enum">Permissions</a> QFile::permissions () const</h3> <p>Returns the complete OR-ed together combination of <a href="qfile.html#Permission-enum">QFile::Permission</a> for the file.</p> <p>See also <a href="qfile.html#setPermissions">setPermissions</a>() and <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="permissions-2"></a><a href="qfile.html#Permission-enum">Permissions</a> QFile::permissions ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Returns the complete OR-ed together combination of <a href="qfile.html#Permission-enum">QFile::Permission</a> for <i>fileName</i>.</p> <h3 class="fn"><a name="remove"></a>bool QFile::remove ()</h3> <p>Removes the file specified by <a href="qfile.html#fileName">fileName</a>(). Returns true if successful; otherwise returns false.</p> <p>The file is closed before it is removed.</p> <p>See also <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="remove-2"></a>bool QFile::remove ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Removes the file specified by the <i>fileName</i> given.</p> <p>Returns true if successful; otherwise returns false.</p> <p>See also <a href="qfile.html#remove">remove</a>().</p> <h3 class="fn"><a name="rename"></a>bool QFile::rename ( const <a href="qstring.html">QString</a> &amp; <i>newName</i> )</h3> <p>Renames the file currently specified by <a href="qfile.html#fileName">fileName</a>() to <i>newName</i>. Returns true if successful; otherwise returns false.</p> <p>If a file with the name <i>newName</i> already exists, rename() returns false (i.e&#x2e;, <a href="qfile.html">QFile</a> will not overwrite it).</p> <p>The file is closed before it is renamed.</p> <p>See also <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="rename-2"></a>bool QFile::rename ( const <a href="qstring.html">QString</a> &amp; <i>oldName</i>, const <a href="qstring.html">QString</a> &amp; <i>newName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Renames the file <i>oldName</i> to <i>newName</i>. Returns true if successful; otherwise returns false.</p> <p>If a file with the name <i>newName</i> already exists, <a href="qfile.html#rename">rename</a>() returns false (i.e&#x2e;, <a href="qfile.html">QFile</a> will not overwrite it).</p> <p>See also <a href="qfile.html#rename">rename</a>().</p> <h3 class="fn"><a name="resize"></a>bool QFile::resize ( <a href="qtglobal.html#qint64-typedef">qint64</a> <i>sz</i> )</h3> <p>Sets the file size (in bytes) <i>sz</i>. Returns true if the file if the resize succeeds; false otherwise. If <i>sz</i> is larger than the file currently is the new bytes will be set to 0, if <i>sz</i> is smaller the file is simply truncated.</p> <p>See also <a href="qfile.html#size">size</a>() and <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="resize-2"></a>bool QFile::resize ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i>, <a href="qtglobal.html#qint64-typedef">qint64</a> <i>sz</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Sets <i>fileName</i> to size (in bytes) <i>sz</i>. Returns true if the file if the resize succeeds; false otherwise. If <i>sz</i> is larger than <i>fileName</i> currently is the new bytes will be set to 0, if <i>sz</i> is smaller the file is simply truncated.</p> <p>See also <a href="qfile.html#resize">resize</a>().</p> <h3 class="fn"><a name="setDecodingFunction"></a>void QFile::setDecodingFunction ( <a href="qfile.html#DecoderFn-typedef">DecoderFn</a> <i>function</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>Sets the <i>function</i> for decoding 8-bit file names. The default uses the locale-specific 8-bit encoding.</p> <p><b>Warning:</b> This function is not <a href="threads.html#reentrant">reentrant</a>.</p> <p>See also <a href="qfile.html#setEncodingFunction">setEncodingFunction</a>() and <a href="qfile.html#decodeName">decodeName</a>().</p> <h3 class="fn"><a name="setEncodingFunction"></a>void QFile::setEncodingFunction ( <a href="qfile.html#EncoderFn-typedef">EncoderFn</a> <i>function</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>Sets the <i>function</i> for encoding Unicode file names. The default encodes in the locale-specific 8-bit encoding.</p> <p><b>Warning:</b> This function is not <a href="threads.html#reentrant">reentrant</a>.</p> <p>See also <a href="qfile.html#encodeName">encodeName</a>() and <a href="qfile.html#setDecodingFunction">setDecodingFunction</a>().</p> <h3 class="fn"><a name="setFileName"></a>void QFile::setFileName ( const <a href="qstring.html">QString</a> &amp; <i>name</i> )</h3> <p>Sets the <i>name</i> of the file. The name can have no path, a relative path, or an absolute path.</p> <p>Do not call this function if the file has already been opened.</p> <p>If the file name has no path or a relative path, the path used will be the application's current directory path <i>at the time of the <a href="qfile.html#open">open</a>()</i> call.</p> <p>Example:</p> <pre> QFile file; QDir::setCurrent(&quot;/tmp&quot;); file.setFileName(&quot;readme.txt&quot;); QDir::setCurrent(&quot;/home&quot;); file.open(QIODevice::ReadOnly); <span class="comment">// opens &quot;/home/readme.txt&quot; under Unix</span></pre> <p>Note that the directory separator &quot;/&quot; works for all operating systems supported by Qt.</p> <p>See also <a href="qfile.html#fileName">fileName</a>(), <a href="qfileinfo.html">QFileInfo</a>, and <a href="qdir.html">QDir</a>.</p> <h3 class="fn"><a name="setPermissions"></a>bool QFile::setPermissions ( <a href="qfile.html#Permission-enum">Permissions</a> <i>permissions</i> )</h3> <p>Sets the permissions for the file to the <i>permissions</i> specified. Returns true if successful, or false if the permissions cannot be modified.</p> <p>See also <a href="qfile.html#permissions">permissions</a>() and <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="setPermissions-2"></a>bool QFile::setPermissions ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i>, <a href="qfile.html#Permission-enum">Permissions</a> <i>permissions</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Sets the permissions for <i>fileName</i> file to <i>permissions</i>.</p> <h3 class="fn"><a name="size"></a><a href="qtglobal.html#qint64-typedef">qint64</a> QFile::size () const&nbsp;&nbsp;<tt> [virtual]</tt></h3> <p>Returns the size of the file.</p> <p>For regular empty files on Unix (e.g&#x2e; those in <tt>/proc</tt>), this function returns 0; the contents of such a file are generated on demand in response to you calling <a href="qiodevice.html#read">read</a>().</p> <p>Reimplemented from <a href="qiodevice.html#size">QIODevice</a>.</p> <h3 class="fn"><a name="symLinkTarget"></a><a href="qstring.html">QString</a> QFile::symLinkTarget ( const <a href="qstring.html">QString</a> &amp; <i>fileName</i> )&nbsp;&nbsp;<tt> [static]</tt></h3> <p>Returns the absolute path of the file or directory referred to by the symlink (or shortcut on Windows) specified by <i>fileName</i>, or returns an empty string if the <i>fileName</i> does not correspond to a symbolic link.</p> <p>This name may not represent an existing file; it is only a string. <a href="qfile.html#exists">QFile::exists</a>() returns true if the symlink points to an existing file.</p> <p>This function was introduced in Qt 4.2.</p> <h3 class="fn"><a name="symLinkTarget-2"></a><a href="qstring.html">QString</a> QFile::symLinkTarget () const</h3> <p>This is an overloaded member function, provided for convenience.</p> <p>Returns the absolute path of the file or directory a symlink (or shortcut on Windows) points to, or a an empty string if the object isn't a symbolic link.</p> <p>This name may not represent an existing file; it is only a string. <a href="qfile.html#exists">QFile::exists</a>() returns true if the symlink points to an existing file.</p> <p>This function was introduced in Qt 4.2.</p> <p>See also <a href="qfile.html#fileName">fileName</a>() and <a href="qfile.html#setFileName">setFileName</a>().</p> <h3 class="fn"><a name="unmap"></a>bool QFile::unmap ( <a href="qtglobal.html#uchar-typedef">uchar</a> * <i>address</i> )</h3> <p>Unmaps the memory <i>address</i>.</p> <p>Returns true if the unmap succeeds; false otherwise.</p> <p>This function was introduced in Qt 4.4.</p> <p>See also <a href="qfile.html#map">map</a>() and <a href="qabstractfileengine.html#supportsExtension">QAbstractFileEngine::supportsExtension</a>().</p> <h3 class="fn"><a name="unsetError"></a>void QFile::unsetError ()</h3> <p>Sets the file's error to <a href="qfile.html#FileError-enum">QFile::NoError</a>.</p> <p>See also <a href="qfile.html#error">error</a>().</p> <p /><address><hr /><div align="center"> <table width="100%" cellspacing="0" border="0"><tr class="address"> <td width="30%" align="left">Copyright &copy; 2008 Nokia</td> <td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td> <td width="30%" align="right"><div align="right">Qt 4.4.3</div></td> </tr></table></div></address></body> </html>
sites/all/modules/views/css/views-admin.theme.css
dkist/t-h-inker
/** * The .theme.css file is intended to contain presentation declarations including * images, borders, colors, and fonts. */ /* @group Reset */ .views-admin .links { list-style: none outside none; margin: 0; } .views-admin a:hover { text-decoration: none; } /* @end */ /* @group Layout */ .box-padding { padding-left: 12px; padding-right: 12px; } .box-margin { margin: 12px 12px 0 12px; } /* @end */ /* @group Icons */ .views-admin .icon { height: 16px; width: 16px; } .views-admin .icon, .views-admin .icon-text { background-attachment: scroll; background-image: url("../images/sprites.png"); background-position: left top; /* LTR */ background-repeat: no-repeat; } .views-admin a.icon { background-image: url("../images/sprites.png"), -moz-linear-gradient( -90deg, #ffffff 0px, #e8e8e8 100%); background-image: url("../images/sprites.png"), -webkit-gradient( linear, left top, left bottom, color-stop(0.0, rgba(255, 255, 255, 1.0)), color-stop(1.0, rgba(232, 232, 232, 1.0)) ); background-image: url("../images/sprites.png"), -webkit-linear-gradient( -90deg, #ffffff 0px, #e8e8e8 100%); background-repeat: no-repeat, repeat-y; border: 1px solid #dddddd; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: 0 0 0 rgba(0,0,0,0.3333) inset; -webkit-box-shadow: 0 0 0 rgba(0,0,0,0.3333) inset; box-shadow: 0 0 0 rgba(0,0,0,0.3333) inset; } .views-admin a.icon:hover { border-color: #d0d0d0; -moz-box-shadow: 0 0 1px rgba(0,0,0,0.3333) inset; -webkit-box-shadow: 0 0 1px rgba(0,0,0,0.3333) inset; box-shadow: 0 0 1px rgba(0,0,0,0.3333) inset; } .views-admin a.icon:active { border-color: #c0c0c0; } /** * Targets a <span> element inside an <a> element. * This assumes no visible text from the span. */ .views-admin span.icon { display: inline-block; float: left; position: relative; } .views-admin .icon.compact { display: block; overflow: hidden; text-indent: -9999px; } /* Targets any element with an icon -> text combo */ .views-admin .icon-text { padding-left: 19px; /* LTR */ } .views-admin .icon.linked { background-position: center -153px; } .views-admin .icon.unlinked { background-position: center -195px; } .views-admin .icon.add { background-position: center 3px; } .views-admin a.icon.add { background-position: center 3px, left top; } .views-admin .icon.delete { background-position: center -52px; } .views-admin a.icon.delete { background-position: center -52px, left top; } .views-admin .icon.rearrange { background-position: center -111px; } .views-admin a.icon.rearrange { background-position: center -111px, left top; } .views-displays .secondary a:hover > .icon.add { background-position: center -25px; } .views-displays .secondary .open a:hover > .icon.add { background-position: center 3px; } /* @end */ /* @group Forms */ fieldset.box-padding { border: none; } .views-admin fieldset fieldset { margin-bottom: 0; } .form-item { margin-top: 9px; padding-bottom: 0; padding-top: 0; } .form-type-checkbox { margin-top: 6px; } input.form-checkbox, input.form-radio { vertical-align: baseline; } .form-submit:not(.js-hide) + .form-submit, .views-admin a.button:not(.js-hide) + a.button { margin-left: 1em; /* LTR */ } .container-inline { padding-top: 15px; } .container-inline > * + *, .container-inline .fieldset-wrapper > * + * { padding-left: 4pt; /* LTR */ } .views-admin fieldset fieldset.container-inline { margin-bottom: 1em; margin-top: 1em; padding-top: 0; } .views-admin fieldset fieldset.container-inline > .fieldset-wrapper { padding-bottom: 0; } /* Indent form elements so they're directly underneath the label of the checkbox that reveals them */ .views-admin .form-type-checkbox + .form-wrapper { margin-left: 16px; /* LTR */ } /* Hide 'remove' checkboxes. */ .views-remove-checkbox { display: none; } /* sizes the labels of checkboxes and radio button to the height of the text */ .views-admin .form-type-checkbox label, .views-admin .form-type-radio label { line-height: 2; } /* @group Dependent options */ .views-admin-dependent .form-item { margin-bottom: 6px; margin-top: 6px; } /* @end */ /* @end */ /* @group Lists */ .horizontal > * + * { margin-left: 9px; /* LTR */ padding-left: 9px; /* LTR */ } .views-ui-view-title { font-weight: bold; } /* @end */ /* @group Messages */ .view-changed { margin-bottom: 21px; } /* @end */ /* @group Headings */ /* Intentionally targeting h1 */ .views-admin h1.unit-title { font-size: 15px; line-height: 1.6154; margin-bottom: 0; margin-top: 18px; } /* @end */ /* @group Tables */ table td, table th { vertical-align: top; } /* @end */ /* @group List views */ /* These header classes are ambiguous and should be scoped to th elements */ th.views-ui-name { width: 18%; } th.views-ui-description { width: 26%; } th.views-ui-tag { width: 8%; } th.views-ui-path { width: auto; } th.views-ui-operations { width: 24%; } /* @end */ /* @group Add view */ /** * Drupal core forces AJAX triggering elements to float left when they are * disabled due to AJAX processing. On the add view page, we have inline * containers where we don't want that behavior; it causes the select dropdown * which is triggered to jump to the left while the AJAX throbber is active. * * See also http://drupal.org/node/769936 (Drupal core issue); when that is * fixed it may no longer be necessary to do this. */ .views-admin .container-inline .progress-disabled { float: none; } /** * I wish this didn't have to be so specific */ .form-item-description-enable + .form-item-description { margin-top: 0; } .form-item-description-enable label { font-weight: bold; } .form-item-page-create, .form-item-block-create { margin-top: 13px; } .form-item-page-create label, .form-item-block-create label { font-weight: bold; } /* This makes the form elements after the "Display Format" label flow underneath the label */ .form-item-page-style-style-plugin > label, .form-item-block-style-style-plugin > label { display: block; } .views-attachment .options-set label { font-weight: normal; } /* @end */ /* @group Rearrange filters * * Styling for the form that allows views filters to be rearranged. */ .group-populated { display: none; } td.group-title { font-weight: bold; } .views-ui-dialog td.group-title { margin: 0; padding: 0; } .views-ui-dialog td.group-title span { display: block; height: 1px; overflow: hidden; } .group-message .form-submit, .views-remove-group-link, #views-add-group { float: right; clear: both; } .views-operator-label { font-style: italic; font-weight: bold; padding-left: 0.5em; /* LTR */ text-transform: uppercase; } .exposed-description { float: left; padding-top: 3px; padding-right: 10px; } /* This keeps the collapsible fieldsets of options from crashing into the bottom * of the edit option columns. Because the edit option columns are floated, the collapsible * fieldsets need to be floated as well so that the margin above the fieldset interacts with * the float edit option columns. */ #edit-options .collapsible { float: left; width: 100%; } #edit-options-more { clear: both; } /* @end */ /* @group Attachments */ .views-displays { border: 1px solid #CCC; padding-bottom: 36px; } .views-display-top { background-color: #F9F9F9; border-bottom: 1px solid #CCCCCC; padding: 8px 8px 8px; /* LTR */ position: relative; } .views-display-top .secondary { margin-right: 18em; } .views-display-top .secondary > li { margin-right: 6px; padding-left: 0; } .views-display-top .secondary > li:last-child { margin-right: 0; } #views-display-extra-actions li { padding: 3px 9px; } /* @end */ /* @group Attachment details tabs * * The tabs that switch between sections */ .views-displays .secondary a { border: 1px solid #cbcbcb; display: inline-block; font-size: small; line-height: 1.3333; padding: 3px 7px; } .views-displays .secondary a:focus { outline: none; } .views-displays .secondary a:hover, .views-displays .secondary .active a { background-color: #666666; color: #ffffff; border-bottom-width: 1px; } .views-displays .secondary .open > a { background-color: #f1f1f1; border-bottom: 1px solid transparent; position: relative; } .views-displays .secondary .open > a:hover { background-color: #f1f1f1; } .views-displays .secondary .action-list li { background-color: #f1f1f1; border-color: #cbcbcb; border-style: solid; border-width: 0 1px; padding: 2px 9px; } .views-displays .secondary .action-list li:first-child { border-width: 1px 1px 0; } .views-displays .secondary .action-list li.last { border-width: 0 1px 1px; } .views-displays .secondary .action-list li:last-child { border-width: 0 1px 1px; } .views-displays .secondary .action-list input.form-submit { background: none repeat scroll 0 0 transparent; border: medium none; margin: 0; padding: 0; } .views-displays .secondary .action-list li:hover { background-color: #dddddd; } /* @end */ /* @group Attachment details */ #edit-display-settings-title { font-size: 14px; line-height: 1.5; margin: 0; } #edit-display-settings-top { padding-bottom: 4px; } #edit-display-settings-content { margin-top: 12px; } #edit-display-settings-main { margin-top: 15px; } /* @end */ /* @group Attachment columns * * The columns that contain the option buckets e.g. Format and Basic Settings */ .views-display-column + .views-display-column { margin-top: 0; } /* @end */ /* @group Auto preview * * The auto-preview checkbox line. */ #views-ui-preview-form > div > div, #views-ui-preview-form > div > input { float: left; } #views-ui-preview-form .form-type-checkbox { margin-top: 2px; margin-left: 2px; } #views-ui-preview-form .form-type-textfield { margin-top: 5px; } #views-ui-preview-form .arguments-preview { font-size: 1em; } #views-ui-preview-form .arguments-preview, #views-ui-preview-form .form-type-textfield { margin-left: 14px; } #views-ui-preview-form .form-type-textfield label { display: inline-block; float: left; font-weight: normal; height: 6ex; margin-right: 0.75em; } #views-ui-preview-form .form-type-textfield .description { white-space: nowrap; } /* @end */ /* @group Attachment buckets * * These are the individual "buckets," or boxes, inside the display settings area */ .views-ui-display-tab-bucket { border: 1px solid #f3f3f3; line-height: 20px; margin: 0; padding-top: 4px; } .views-ui-display-tab-bucket + .views-ui-display-tab-bucket { border-top: medium none; } .views-ui-display-tab-bucket > h3, .views-ui-display-tab-bucket > .views-display-setting { padding: 2px 6px 4px; } .views-ui-display-tab-bucket h3 { font-size: small; margin: 0; } .views-ui-display-tab-bucket .horizontal.actions { margin-right: 6px; } .views-ui-display-tab-bucket .actions.horizontal li + li { margin-left: 3px; padding-left: 3px; } .views-ui-display-tab-bucket.access { padding-top: 0; } .views-ui-display-tab-bucket.page-settings { border-bottom: medium none; } .views-display-setting .views-ajax-link { margin-left: 0.2083em; margin-right: 0.2083em; } /* @end */ /* @group Attachment bucket overridden * * Applies a overriden(italics) font style to overridden buckets. * The better way to implement this would be to add the overridden class * to the bucket header when the bucket is overridden and style it as a * generic icon classed element. For the moment, we'll style the bucket * header specifically with the overriden font style. */ .views-ui-display-tab-setting.overridden, .views-ui-display-tab-bucket.overridden > h3 { font-style: italic; } /* @end */ /* @group Attachment bucket drop button */ .views-ui-display-tab-bucket { position: relative; } /* @end */ /* @group Attachment bucket rows * * This is each row within one of the "boxes." */ .views-ui-display-tab-bucket .views-display-setting { color: #666666; font-size: 12px; padding-bottom: 2px; } .views-ui-display-tab-bucket .even { background-color: #f9f9f9; } .views-ui-display-tab-bucket .views-group-text { margin-top: 6px; margin-bottom: 6px; } .views-display-setting .label { margin-right: 3pt; /* LTR */ } /* @end */ /* @group Preview * * The preview controls and the preview pane */ #edit-displays-preview-controls .fieldset-wrapper > * { float: left; } #edit-displays-preview-controls .fieldset-wrapper > .form-item { margin-top: 0.3333em; } #edit-displays-preview-controls .form-submit { display: inline-block; margin-right: 1em; } #edit-displays-preview-controls .form-type-textfield { margin-left: 1em; position: relative; } #edit-displays-preview-controls .form-type-textfield label { border-left: 1px solid #999; padding-left: 1em; position: absolute; } #edit-displays-preview-controls .form-type-textfield label:after { content: ":"; } #edit-displays-preview-controls .form-type-textfield label ~ * { margin-left: 105px; } /* @end */ /* @group Modal dialog box * * The contents of the popup dialog on the views edit form. */ .views-ui-dialog { font-size: small; padding: 0; } .views-ui-dialog .ui-dialog-titlebar-close { background: url("../images/close.png") no-repeat scroll 6px 3px #F3F4EE; border-color: #aaaaaa; -moz-border-radius: 0 10px 12px 0; -webkit-border-radius: 0 10px 12px 0; border-radius: 0 10px 12px 0; border-style: solid; border-width: 1px 1px 1px 0; -moz-box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1); -webkit-box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 -2px 0 rgba(0, 0, 0, 0.1); height: 22px; right: -28px; top: 0; width: 26px; } .views-ui-dialog .ui-dialog-titlebar-close span { display: none; } .views-filterable-options .form-type-checkbox { border: 1px solid #CCC; padding: 5px 8px; border-top: none; } .views-filterable-options { border-top: 1px solid #CCC; } .views-filterable-options .even .form-type-checkbox { background-color: #F3F4EE; } .filterable-option .form-item { margin-bottom: 0; margin-top: 0; } .views-filterable-options .form-type-checkbox .description { margin-top: 0; margin-bottom: 0; } #views-filterable-options-controls { margin: 1em 0; } #views-filterable-options-controls .form-item { width: 45%; margin-right: 2%; /* LTR */ } #views-filterable-options-controls input, #views-filterable-options-controls select { width: 200px; } .views-ui-dialog .views-filterable-options { margin-bottom: 10px; } .views-ui-dialog .views-add-form-selected.container-inline { padding-top: 0; } .views-ui-dialog .views-add-form-selected.container-inline > div { display: block; } .views-ui-dialog #edit-selected { margin: 0; padding: 6px 16px; } .views-ui-dialog #views-ajax-title, .views-ui-dialog .views-override { background-color: #F3F4EE; } .views-ui-dialog .views-override { padding: 0 13px 8px; } .views-ui-dialog .views-override > * { margin: 0; } .views-ui-dialog #views-ajax-title { font-size: 15px; padding: 8px 13px; } .views-ui-dialog #views-progress-indicator { font-size: 11px; position: absolute; right: 10px; /* LTR */ top: 8px; } .views-ui-dialog #views-progress-indicator:before { content: "\003C\00A0"; } .views-ui-dialog #views-progress-indicator:after { content: "\00A0\003E"; } .views-ui-dialog .scroll { border: 1px solid #CCC; border-width: 1px 0; padding: 8px 13px; } .views-ui-dialog fieldset .item-list { padding-left: 2em; } .views-ui-dialog .form-buttons { background-color: #F3F4EE; padding: 8px 13px; } .views-ui-dialog .form-buttons input { margin-bottom: 0; margin-right: 0; } /* @end */ /* @group Configure filter criteria */ /* @todo the width and border info could be moved into a more generic class */ /* @todo Make this a class to be used anywhere there's node types? */ .form-type-checkboxes #edit-options-value, .form-type-checkboxes #edit-options-validate-options-node-types { border-color: #CCCCCC; border-style: solid; border-width: 1px; max-height: 210px; overflow: auto; margin-top: 5px; padding: 0 5px; width: 190px; } /* @end */ /* @group Rearrange filter criteria */ #views-ui-rearrange-filter-form table { border-collapse: collapse; } #views-ui-rearrange-filter-form tr td[rowspan] { border-color: #CDCDCD; border-style: solid; border-width: 0 1px 1px 1px; } #views-ui-rearrange-filter-form tr[id^="views-row"] { border-right: 1px solid #CDCDCD; } #views-ui-rearrange-filter-form tr[id^="views-row"].even td { background-color: #F3F4ED; } #views-ui-rearrange-filter-form .views-group-title { border-top: 1px solid #CDCDCD; } #views-ui-rearrange-filter-form .group-empty { border-bottom: 1px solid #CDCDCD; } /* @end */ /* @group Expose filter form items */ .form-item-options-expose-required, .form-item-options-expose-label { margin-bottom: 6px; margin-left: 18px; margin-top: 6px; } /* @end */ /* @group Live preview elements */ #views-preview-wrapper { border: 1px solid #CCC; border-top: 2px solid #CCC; padding-bottom: 12px; padding-top: 12px; } #views-ui-preview-form { margin: 12px; } #views-live-preview { margin: 0 12px; } #views-live-preview .views-query-info { overflow: auto; } /* Intentionally targeting h1 */ #views-live-preview h1.section-title { color: #818181; display: inline-block; font-size: 13px; font-weight: normal; line-height: 1.6154; margin-bottom: 0; margin-top: 0; } #views-live-preview .view > * { margin-top: 18px; } #views-live-preview .preview-section { border: 1px dashed #DEDEDE; margin: 0 -5px; padding: 3px 5px; } #views-live-preview li.views-row + li.views-row { margin-top: 18px; } /* The div.views-row is intentional and excludes li.views-row, for example */ #views-live-preview div.views-row + div.views-row { margin-top: 36px; } /* @group Query info table */ .views-query-info table { border-collapse: separate; border-color: #dddddd; border-spacing: 0; margin: 10px 0; } .views-query-info table tr { background-color: #f9f9f9; } .views-query-info table th, .views-query-info table td { color: #666666; padding: 4px 10px; } /* @end */ /* @group Grid */ #views-live-preview .views-view-grid th, #views-live-preview .views-view-grid td { vertical-align: top; } /* @end */ /* @group HTML list */ #views-live-preview .view-content > .item-list > ul { list-style-position: outside; padding-left: 21px; /* LTR */ } /* @end */ /* @end */ /* @group Add/edit argument form */ #edit-options-default-action { width: 300px; float: left; } #edit-options-exception.collapsible { float: right; width: 250px; margin-top: -2px; } /* @end */ /* @group AJAX */ /* Hide the drupal system throbber image */ .ajax-progress .throbber { display: none; } .ajax-progress-throbber { background-color: #232323; background-image: url("../images/loading-small.gif"); background-position: center center; background-repeat: no-repeat; -moz-border-radius: 7px; -webkit-border-radius: 7px; border-radius: 7px; height: 24px; opacity: .9; padding: 4px; width: 24px; } /* @end */ /* @group Drupal * * Overrides to Drupal system CSS */ div.messages { margin-bottom: 18px; } /* @end */
server/static/build/src/main/webapp/dojo/demos/castle/demo.html
adamfisk/littleshoot-client
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv= "Content-Type" content="text/html; charset=utf-8" /> <title>CASTLE PARTY 2008 : DARK INDEPENDENT FESTIVAL</title> <meta name="Description" content="Castle Party : Dark Independent Festival" /> <meta name="Author" content="Ergo" /> <meta name="Owner" content="info@webreactor.eu" /> <link rel="stylesheet" href="demo.css" type="text/css"/> <script type="text/javascript" src="../../dojo/dojo.js" charset="utf-8"></script> <script type="text/javascript" src="src.js" charset="utf-8"></script> </head> <body class="tundra"> <div id="hidden"> <!-- accordion stubs --> <div id="day1"> <div id="day1s"> <ul> <li><a href="javascript:show('nightspirit')">The Moon and the Nightspirit (hu)</a></li> <li><a href="javascript:show('sieben')">Sieben (gb)</a></li> <li><a href="javascript:show('genesis')">Error::Genesis (ua)</a></li> <li><a href="javascript:show('clicks')">Clicks (pl)</a></li> <li><a href="javascript:show('placeholder')">Persephone (at)</a></li> <li><a href="javascript:show('placeholder')">Square Extension (pl)</a></li> <li><a href="javascript:show('placeholder')">The Void of Nul Haide (pl)</a></li> <li><a href="javascript:show('placeholder')">Elektro Jugend Kollektiv (gb/pl)</a></li> </ul> </div> </div> <div id="day2"> <div id="day2s"> <ul> <li><a href="javascript:show('thydisease')">Thy Disease (pl)</a></li> <li><a href="javascript:show('colony5')">Colony 5 (se)</a></li> <li><a href="javascript:show('a1984')">1984 (pl)</a></li> <li><a href="javascript:show('cinema')">Cinema Strange (us)</a></li> <li><a href="javascript:show('placeholder')">32crash (be)</a></li> <li><a href="javascript:show('stoleti')">XIII. Stoleti (cz)</a></li> <li><a href="javascript:show('placeholder')">Garden of Delight (de)</a></li> <li><a href="javascript:show('placeholder')">In Strict Confidence (de)</a></li> <li><a href="javascript:show('placeholder')">Anne Clark (gb)</a></li> <li><a href="javascript:show('placeholder')">Die Krupps (de)</a></li> </ul> </div> </div> <div id="day3"> <div id="day3s"> <ul> <li><a href="javascript:show('placeholder')">Xess (lt)</a></li> <li><a href="javascript:show('redEmprez')">Red Emprez (pl)</a></li> <li><a href="javascript:show('madeinpoland')">Made in Poland (pl)</a></li> <li><a href="javascript:show('placeholder')">Reaper (gr/de)</a></li> <li><a href="javascript:show('placeholder')">SITD (de)</a></li> <li><a href="javascript:show('closterkeller')">Closterkeller (pl)</a></li> <li><a href="javascript:show('pati')">Pati Yang &amp; FlyKKiller (gb)</a></li> <li><a href="javascript:show('placeholder')">The Cruxshadows (us)</a></li> <li><a href="javascript:show('deineLakaien')">Deine Lakaien (de)</a></li> </ul> </div> </div> <!-- accordion stubs --> <!-- bands --> <div id="deineLakaien"> <img src="images/deinelakaien.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="redEmprez"> <img src="images/redmprez.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="nightspirit"> <img src="images/nightspirit.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="sieben"> <img src="images/sieben.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="genesis"> <img src="images/genesis.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="clicks"> <img src="images/clicks.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="thydisease"> <img src="images/thy.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="colony5"> <img src="images/colony5.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="a1984"> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="cinema"> <img src="images/cinema.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="stoleti"> <img src="images/13.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="madeinpoland"> <img src="images/made.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="closterkeller"> <img src="images/closterkeller.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="pati"> <img src="images/pati.png" style="float: left" alt="Castle Party 2008 - Band picture"/> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> <div id="placeholder"> <strong>Lorem ipsum dolor</strong> sit amet, consectetuer adipiscing elit. Ut orci. In sit amet augue. Donec laoreet lacus non urna suscipit hendrerit. Aliquam mollis, enim vel sagittis cursus, augue leo ornare arcu, at sodales erat mi quis dui. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. In egestas porttitor urna. Nulla ullamcorper, purus vel venenatis sodales, felis odio suscipit turpis, ut tristique turpis sapien ut velit. Nullam eleifend. Curabitur auctor laoreet ligula. Nulla facilisi.<br/> <br/> Integer elit. Donec nibh eros, eleifend eu, sodales vitae, scelerisque convallis, felis. <strong>Morbi imperdiet fringilla pede</strong> Etiam vitae dui. Duis in velit et quam elementum condimentum. Morbi porttitor urna ut odio. Maecenas blandit libero at odio ultricies placerat. Cras imperdiet ullamcorper sem. Vestibulum lacinia quam vitae dolor. Vivamus sit amet dolor a dolor adipiscing consequat. In at sem et lectus tristique vestibulum. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Curabitur at tellus sagittis eros placerat luctus. Praesent auctor faucibus metus.<br/> <br/> Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Praesent diam urna, auctor at, dignissim cursus, porttitor euismod, arcu. Morbi felis. Morbi vitae quam. Sed eget urna quis augue hendrerit semper. Phasellus nec mi. <strong>Proin vel ligula ut augue tincidunt blandit. Vestibulum felis.</strong> Phasellus nec massa quis orci fermentum iaculis. Aliquam augue. Curabitur sem. Curabitur eu augue. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Integer vulputate lacus eget dolor. Sed dolor. Maecenas mauris elit, molestie suscipit, auctor sit amet, porttitor sed, mauris. Nunc imperdiet tristique elit. Duis elit metus, consectetuer id, consequat quis, ultrices eu, magna. Nunc id justo non ipsum posuere convallis. Donec adipiscing lacus et purus. </div> </div> <div id="accordionPanel"></div> <div id="content"> <img src="images/soon.png" alt="launching soon"/> </div> </body> </html>
koha-tmpl/opac-tmpl/ccsr/es-ES/css/print.css
SGCB/kobli
a:link { color : #000066; text-decoration: none; } a:visited { color : #000066; text-decoration: none; } a:hover { color : #993300; text-decoration: none; } body { background-color : #FFF; color : #333333; font-family : arial, geneva, sans-serif; font-size : 14px; margin : 0px 0px 0px 0px; word-wrap : break-word; } caption { color : #000066; font-size : 18px; font-weight : bold; margin-top : 5px; text-align : left; } div.table { width : 100%; } form { margin : 0px; padding : 0px; } h1 { color : #000066; font-size : 22px; font-weight : bold; margin-bottom : 3px; margin-top : 3px; } h2 { color : #000066; font-size : 20px; font-weight : bold; margin-bottom : 3px; margin-top : 3px; } h3 { color : #000066; font-size : 18px; font-weight : bold; margin-bottom : 3px; margin-top : 3px; } h4 { color : #000066; font-size : 16px; font-weight : bold; margin-bottom : 3px; margin-top : 3px; } h5 { color : #000066; font-size : 15px; font-weight : bold; margin-bottom : 1px; margin-top : 1px; } h6 { color : #000066; font-size : 14px; font-weight : bold; margin-bottom : 1px; margin-top : 1px; } p { margin-top : 0px; } table { background-color : #FFFFFF; border-bottom : 0px solid #CCCCCC; border-collapse : collapse; border-left : 0px solid #CCCCCC; margin : 3px 0px 5px 0px; padding : 0px; width : 99%; } td { background-color : #FFF; border-bottom : 1px solid #CCCCCC; border-right : 1px solid #CCCCCC; padding : 5px 5px 5px 5px; vertical-align : top; } td:last-child { background-color : #FFF; border-bottom : 1px solid #CCCCCC; border-right : 0px solid #CCCCCC; padding : 5px 5px 5px 5px; vertical-align : top; } th { background-color : #E9E9E9; border-bottom : 1px solid #CCCCCC; border-right : 1px solid #CCCCCC; font-weight : bold; padding : 5px 5px 5px 5px; } th:last-child { background-color : #E9E9E9; border-bottom : 1px solid #CCCCCC; border-right : 0px solid #CCCCCC; font-weight : bold; padding : 5px 5px 5px 5px; } tr.highlight { background-color: #e9e9e9; } body#basket tr.highlight { background-color : transparent; } body#basket a { font-weight : bold; } body#basket table { border-top : 1px solid #EEE; border-left : 1px solid #EEE; } body#basket td, body#basket th { background-color : transparent; padding : 2px; } body#basket th { background-color : #EEE; } body#basket th, body#basket th[scope=col] { text-align : center; vertical-align : middle; } body#basket th[scope=row] { font-size : 89%; text-align : right; vertical-align : top; width : 10%; } body#basket p { font-size : 85%; margin : .2em 0; text-indent : .5em; } .error { font-weight: bold; } .ex { font-family : "Courier New", Courier, monospace; } .inline { display : inline; } .screen { display : none; } #bookcover { float:left; margin:0pt; padding:0pt; } #members,#opac-main-search,#opac-user-views .ui-tabs-nav,input,h2 span.hint,td.resultscontrol,.pages,.suggestion,.views,#action,#export,#bibliodescriptions .ui-tabs-nav,#addshelf,fieldset.action, .list-actions, .ft, #facetcontainer,.results_summary.actions,.koha_url,.yui-b { display : none; } #userresults { position : absolute; right : 0px; word-wrap : break-word; display : block; } div#userupdate input,div#userupdate textarea { display : inline; border : 0; } #yui-main, #yui-main .yui-b, .yui-t1 #yui-main .yui-b { display : block !important; margin : 0 !important; padding : 0 !important; width : auto !important; float : none !important; }
test/performance/jsmicro/array-shift-1.html
adobe-flash/avmplus
<!-- /* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ --> <script src="html-prefix.js"></script> <script src="driver.js"></script> <script src="array-shift-1.js"></script>
java/java-impl/src/fileTemplates/internal/Class.java.html
siosio/intellij-community
<html> <body> <table width="100%" border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse"> <tr> <td><font face="verdana" size="-1">Applies to new Java classes that are created by invoking <b>New | Java Class | Class</b> in the <b>Project</b> tool window.<br> This built-in template is editable. Along with Java expressions and comments, you can also use the predefined variables (listed below) that will then be expanded like macros into corresponding values.<br><br> It is also possible to specify custom variables. Custom variables use the following format: <i>${VARIABLE_NAME}</i>, where <i>VARIABLE_NAME</i> is a name for your variable (for example, <i>${MY_CUSTOM_FUNCTION_NAME}</i>). Before the IDE creates a new file with custom variables, you see a dialog where you can define values for custom variables in the template.<br><br> By using the <i>#parse</i> directive, you can include templates from the <b>Includes</b> tab. To include a template, specify the full name of the template as a parameter in quotation marks (for example, <i>#parse("File Header.java")</i>. </font></td> </tr> </table> <table width="100%" border="0" cellpadding="5" cellspacing="0" style="border-collapse: collapse"> <tr> <td colspan="3"><font face="verdana" size="-1">Predefined variables take the following values:</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${PACKAGE_NAME}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Name of the package in which a new class is created</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${NAME}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Name of the new class specified by you in the <i>Create New Class</i> dialog</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${USER}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">System login name of the current user</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${DATE}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Current system date</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${TIME}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Current system time</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${YEAR}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Current year</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${MONTH}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Current month</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${MONTH_NAME_SHORT}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">First 3 letters of the current month name (Jan, Feb, and so on)</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${MONTH_NAME_FULL}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Full name of the current month (January, February, and so on)</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${DAY}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Current day of the month</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${HOUR}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Current hour</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${MINUTE}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Current minute</font></td> </tr> <tr> <td valign="top"><nobr><font face="verdana" size="-2"><b>${PROJECT_NAME}</b></font></nobr></td> <td width="10">&nbsp;</td> <td width="100%" valign="top"><font face="verdana" size="-1">Name of the current project</font></td> </tr> </table> </body> </html>
codeShow.JS/codeShow.JS.Shared/demos/click/click.html
ladyinblack/codeshow
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Click</title> <link href="click.css" rel="stylesheet" /> <script src="click.js"></script> </head> <body> <div class="click fragment"> <header aria-label="Header content" role="banner"> <button data-win-control="WinJS.UI.BackButton"></button> <h1 class="titlearea win-type-ellipsis"> <span class="pagetitle">Welcome to click</span> </h1> </header> <section aria-label="Main content" role="main"> <div class="parent"> <div class="target"></div> <div class="target"></div> <div class="target"></div> </div> </section> </div> </body> </html>
hadoop/docs/api/org/apache/hadoop/mapreduce/security/token/package-frame.html
determinedcheetahs/cheetah_juniper
<!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 Jul 22 15:25:22 PDT 2013 --> <TITLE> org.apache.hadoop.mapreduce.security.token (Hadoop 1.2.1 API) </TITLE> <META NAME="date" CONTENT="2013-07-22"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../../../stylesheet.css" TITLE="Style"> </HEAD> <BODY BGCOLOR="white"> <FONT size="+1" CLASS="FrameTitleFont"> <A HREF="../../../../../../org/apache/hadoop/mapreduce/security/token/package-summary.html" target="classFrame">org.apache.hadoop.mapreduce.security.token</A></FONT> <TABLE BORDER="0" WIDTH="100%" SUMMARY=""> <TR> <TD NOWRAP><FONT size="+1" CLASS="FrameHeadingFont"> Classes</FONT>&nbsp; <FONT CLASS="FrameItemFont"> <BR> <A HREF="DelegationTokenRenewal.html" title="class in org.apache.hadoop.mapreduce.security.token" target="classFrame">DelegationTokenRenewal</A> <BR> <A HREF="JobTokenIdentifier.html" title="class in org.apache.hadoop.mapreduce.security.token" target="classFrame">JobTokenIdentifier</A> <BR> <A HREF="JobTokenIdentifier.Renewer.html" title="class in org.apache.hadoop.mapreduce.security.token" target="classFrame">JobTokenIdentifier.Renewer</A> <BR> <A HREF="JobTokenSecretManager.html" title="class in org.apache.hadoop.mapreduce.security.token" target="classFrame">JobTokenSecretManager</A> <BR> <A HREF="JobTokenSelector.html" title="class in org.apache.hadoop.mapreduce.security.token" target="classFrame">JobTokenSelector</A></FONT></TD> </TR> </TABLE> </BODY> </HTML>
libs/boost/libs/iterator/doc/iterator_facade.html
flingone/frameworks_base_cmds_remoted
<?xml version="1.0" encoding="utf-8" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="generator" content="Docutils 0.5: http://docutils.sourceforge.net/" /> <title>Iterator Facade</title> <meta name="author" content="David Abrahams, Jeremy Siek, Thomas Witt" /> <meta name="organization" content="Boost Consulting, Indiana University Open Systems Lab, University of Hanover Institute for Transport Railway Operation and Construction" /> <meta name="date" content="2006-09-11" /> <meta name="copyright" content="Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003." /> <link rel="stylesheet" href="../../../rst.css" type="text/css" /> </head> <body> <div class="document" id="iterator-facade"> <h1 class="title">Iterator Facade</h1> <table class="docinfo" frame="void" rules="none"> <col class="docinfo-name" /> <col class="docinfo-content" /> <tbody valign="top"> <tr><th class="docinfo-name">Author:</th> <td>David Abrahams, Jeremy Siek, Thomas Witt</td></tr> <tr><th class="docinfo-name">Contact:</th> <td><a class="first reference external" href="mailto:dave&#64;boost-consulting.com">dave&#64;boost-consulting.com</a>, <a class="reference external" href="mailto:jsiek&#64;osl.iu.edu">jsiek&#64;osl.iu.edu</a>, <a class="last reference external" href="mailto:witt&#64;ive.uni-hannover.de">witt&#64;ive.uni-hannover.de</a></td></tr> <tr><th class="docinfo-name">Organization:</th> <td><a class="first reference external" href="http://www.boost-consulting.com">Boost Consulting</a>, Indiana University <a class="reference external" href="http://www.osl.iu.edu">Open Systems Lab</a>, University of Hanover <a class="last reference external" href="http://www.ive.uni-hannover.de">Institute for Transport Railway Operation and Construction</a></td></tr> <tr><th class="docinfo-name">Date:</th> <td>2006-09-11</td></tr> <tr><th class="docinfo-name">Copyright:</th> <td>Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003.</td></tr> </tbody> </table> <!-- Distributed under the Boost --> <!-- Software License, Version 1.0. (See accompanying --> <!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">abstract:</th><td class="field-body"><!-- Copyright David Abrahams 2006. Distributed under the Boost --> <!-- Software License, Version 1.0. (See accompanying --> <!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> is a base class template that implements the interface of standard iterators in terms of a few core functions and associated types, to be supplied by a derived iterator class.</td> </tr> </tbody> </table> <div class="contents topic" id="table-of-contents"> <p class="topic-title first">Table of Contents</p> <ul class="simple"> <li><a class="reference internal" href="#overview" id="id23">Overview</a><ul> <li><a class="reference internal" href="#usage" id="id24">Usage</a></li> <li><a class="reference internal" href="#iterator-core-access" id="id25">Iterator Core Access</a></li> <li><a class="reference internal" href="#operator" id="id26"><tt class="docutils literal"><span class="pre">operator[]</span></tt></a></li> <li><a class="reference internal" href="#id2" id="id27"><tt class="docutils literal"><span class="pre">operator-&gt;</span></tt></a></li> </ul> </li> <li><a class="reference internal" href="#reference" id="id28">Reference</a><ul> <li><a class="reference internal" href="#iterator-facade-requirements" id="id29"><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> Requirements</a></li> <li><a class="reference internal" href="#iterator-facade-operations" id="id30"><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> operations</a></li> </ul> </li> <li><a class="reference internal" href="#tutorial-example" id="id31">Tutorial Example</a><ul> <li><a class="reference internal" href="#the-problem" id="id32">The Problem</a></li> <li><a class="reference internal" href="#a-basic-iterator-using-iterator-facade" id="id33">A Basic Iterator Using <tt class="docutils literal"><span class="pre">iterator_facade</span></tt></a><ul> <li><a class="reference internal" href="#template-arguments-for-iterator-facade" id="id34">Template Arguments for <tt class="docutils literal"><span class="pre">iterator_facade</span></tt></a><ul> <li><a class="reference internal" href="#derived" id="id35"><tt class="docutils literal"><span class="pre">Derived</span></tt></a></li> <li><a class="reference internal" href="#value" id="id36"><tt class="docutils literal"><span class="pre">Value</span></tt></a></li> <li><a class="reference internal" href="#categoryortraversal" id="id37"><tt class="docutils literal"><span class="pre">CategoryOrTraversal</span></tt></a></li> <li><a class="reference internal" href="#id12" id="id38"><tt class="docutils literal"><span class="pre">Reference</span></tt></a></li> <li><a class="reference internal" href="#difference" id="id39"><tt class="docutils literal"><span class="pre">Difference</span></tt></a></li> </ul> </li> <li><a class="reference internal" href="#constructors-and-data-members" id="id40">Constructors and Data Members</a></li> <li><a class="reference internal" href="#implementing-the-core-operations" id="id41">Implementing the Core Operations</a></li> </ul> </li> <li><a class="reference internal" href="#a-constant-node-iterator" id="id42">A constant <tt class="docutils literal"><span class="pre">node_iterator</span></tt></a></li> <li><a class="reference internal" href="#interoperability" id="id43">Interoperability</a></li> <li><a class="reference internal" href="#telling-the-truth" id="id44">Telling the Truth</a></li> <li><a class="reference internal" href="#wrap-up" id="id45">Wrap Up</a></li> </ul> </li> </ul> </div> <div class="section" id="overview"> <h1><a class="toc-backref" href="#id23">Overview</a></h1> <!-- Distributed under the Boost --> <!-- Software License, Version 1.0. (See accompanying --> <!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <!-- Version 1.1 of this ReStructuredText document corresponds to n1530_, the paper accepted by the LWG for TR1. --> <!-- Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003. --> <p>While the iterator interface is rich, there is a core subset of the interface that is necessary for all the functionality. We have identified the following core behaviors for iterators:</p> <ul class="simple"> <li>dereferencing</li> <li>incrementing</li> <li>decrementing</li> <li>equality comparison</li> <li>random-access motion</li> <li>distance measurement</li> </ul> <p>In addition to the behaviors listed above, the core interface elements include the associated types exposed through iterator traits: <tt class="docutils literal"><span class="pre">value_type</span></tt>, <tt class="docutils literal"><span class="pre">reference</span></tt>, <tt class="docutils literal"><span class="pre">difference_type</span></tt>, and <tt class="docutils literal"><span class="pre">iterator_category</span></tt>.</p> <p>Iterator facade uses the Curiously Recurring Template Pattern (CRTP) <a class="citation-reference" href="#cop95" id="id1">[Cop95]</a> so that the user can specify the behavior of <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> in a derived class. Former designs used policy objects to specify the behavior, but that approach was discarded for several reasons:</p> <blockquote> <ol class="arabic simple"> <li>the creation and eventual copying of the policy object may create overhead that can be avoided with the current approach.</li> <li>The policy object approach does not allow for custom constructors on the created iterator types, an essential feature if <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> should be used in other library implementations.</li> <li>Without the use of CRTP, the standard requirement that an iterator's <tt class="docutils literal"><span class="pre">operator++</span></tt> returns the iterator type itself would mean that all iterators built with the library would have to be specializations of <tt class="docutils literal"><span class="pre">iterator_facade&lt;...&gt;</span></tt>, rather than something more descriptive like <tt class="docutils literal"><span class="pre">indirect_iterator&lt;T*&gt;</span></tt>. Cumbersome type generator metafunctions would be needed to build new parameterized iterators, and a separate <tt class="docutils literal"><span class="pre">iterator_adaptor</span></tt> layer would be impossible.</li> </ol> </blockquote> <div class="section" id="usage"> <h2><a class="toc-backref" href="#id24">Usage</a></h2> <p>The user of <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> derives his iterator class from a specialization of <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> and passes the derived iterator class as <tt class="docutils literal"><span class="pre">iterator_facade</span></tt>'s first template parameter. The order of the other template parameters have been carefully chosen to take advantage of useful defaults. For example, when defining a constant lvalue iterator, the user can pass a const-qualified version of the iterator's <tt class="docutils literal"><span class="pre">value_type</span></tt> as <tt class="docutils literal"><span class="pre">iterator_facade</span></tt>'s <tt class="docutils literal"><span class="pre">Value</span></tt> parameter and omit the <tt class="docutils literal"><span class="pre">Reference</span></tt> parameter which follows.</p> <p>The derived iterator class must define member functions implementing the iterator's core behaviors. The following table describes expressions which are required to be valid depending on the category of the derived iterator type. These member functions are described briefly below and in more detail in the iterator facade requirements.</p> <blockquote> <table border="1" class="docutils"> <colgroup> <col width="44%" /> <col width="56%" /> </colgroup> <thead valign="bottom"> <tr><th class="head">Expression</th> <th class="head">Effects</th> </tr> </thead> <tbody valign="top"> <tr><td><tt class="docutils literal"><span class="pre">i.dereference()</span></tt></td> <td>Access the value referred to</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">i.equal(j)</span></tt></td> <td>Compare for equality with <tt class="docutils literal"><span class="pre">j</span></tt></td> </tr> <tr><td><tt class="docutils literal"><span class="pre">i.increment()</span></tt></td> <td>Advance by one position</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">i.decrement()</span></tt></td> <td>Retreat by one position</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">i.advance(n)</span></tt></td> <td>Advance by <tt class="docutils literal"><span class="pre">n</span></tt> positions</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">i.distance_to(j)</span></tt></td> <td>Measure the distance to <tt class="docutils literal"><span class="pre">j</span></tt></td> </tr> </tbody> </table> </blockquote> <!-- Should we add a comment that a zero overhead implementation of iterator_facade is possible with proper inlining? --> <p>In addition to implementing the core interface functions, an iterator derived from <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> typically defines several constructors. To model any of the standard iterator concepts, the iterator must at least have a copy constructor. Also, if the iterator type <tt class="docutils literal"><span class="pre">X</span></tt> is meant to be automatically interoperate with another iterator type <tt class="docutils literal"><span class="pre">Y</span></tt> (as with constant and mutable iterators) then there must be an implicit conversion from <tt class="docutils literal"><span class="pre">X</span></tt> to <tt class="docutils literal"><span class="pre">Y</span></tt> or from <tt class="docutils literal"><span class="pre">Y</span></tt> to <tt class="docutils literal"><span class="pre">X</span></tt> (but not both), typically implemented as a conversion constructor. Finally, if the iterator is to model Forward Traversal Iterator or a more-refined iterator concept, a default constructor is required.</p> </div> <div class="section" id="iterator-core-access"> <h2><a class="toc-backref" href="#id25">Iterator Core Access</a></h2> <p><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> and the operator implementations need to be able to access the core member functions in the derived class. Making the core member functions public would expose an implementation detail to the user. The design used here ensures that implementation details do not appear in the public interface of the derived iterator type.</p> <p>Preventing direct access to the core member functions has two advantages. First, there is no possibility for the user to accidently use a member function of the iterator when a member of the value_type was intended. This has been an issue with smart pointer implementations in the past. The second and main advantage is that library implementers can freely exchange a hand-rolled iterator implementation for one based on <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> without fear of breaking code that was accessing the public core member functions directly.</p> <p>In a naive implementation, keeping the derived class' core member functions private would require it to grant friendship to <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> and each of the seven operators. In order to reduce the burden of limiting access, <tt class="docutils literal"><span class="pre">iterator_core_access</span></tt> is provided, a class that acts as a gateway to the core member functions in the derived iterator class. The author of the derived class only needs to grant friendship to <tt class="docutils literal"><span class="pre">iterator_core_access</span></tt> to make his core member functions available to the library.</p> <!-- This is no long uptodate -thw --> <!-- Yes it is; I made sure of it! -DWA --> <p><tt class="docutils literal"><span class="pre">iterator_core_access</span></tt> will be typically implemented as an empty class containing only private static member functions which invoke the iterator core member functions. There is, however, no need to standardize the gateway protocol. Note that even if <tt class="docutils literal"><span class="pre">iterator_core_access</span></tt> used public member functions it would not open a safety loophole, as every core member function preserves the invariants of the iterator.</p> </div> <div class="section" id="operator"> <h2><a class="toc-backref" href="#id26"><tt class="docutils literal"><span class="pre">operator[]</span></tt></a></h2> <p>The indexing operator for a generalized iterator presents special challenges. A random access iterator's <tt class="docutils literal"><span class="pre">operator[]</span></tt> is only required to return something convertible to its <tt class="docutils literal"><span class="pre">value_type</span></tt>. Requiring that it return an lvalue would rule out currently-legal random-access iterators which hold the referenced value in a data member (e.g. <a class="reference external" href="counting_iterator.html"><tt class="docutils literal"><span class="pre">counting_iterator</span></tt></a>), because <tt class="docutils literal"><span class="pre">*(p+n)</span></tt> is a reference into the temporary iterator <tt class="docutils literal"><span class="pre">p+n</span></tt>, which is destroyed when <tt class="docutils literal"><span class="pre">operator[]</span></tt> returns.</p> <p>Writable iterators built with <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> implement the semantics required by the preferred resolution to <a class="reference external" href="http://www.open-std.org/jtc1/sc22/wg21/docs/lwg-active.html#299">issue 299</a> and adopted by proposal <a class="reference external" href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2003/n1550.htm">n1550</a>: the result of <tt class="docutils literal"><span class="pre">p[n]</span></tt> is an object convertible to the iterator's <tt class="docutils literal"><span class="pre">value_type</span></tt>, and <tt class="docutils literal"><span class="pre">p[n]</span> <span class="pre">=</span> <span class="pre">x</span></tt> is equivalent to <tt class="docutils literal"><span class="pre">*(p</span> <span class="pre">+</span> <span class="pre">n)</span> <span class="pre">=</span> <span class="pre">x</span></tt> (Note: This result object may be implemented as a proxy containing a copy of <tt class="docutils literal"><span class="pre">p+n</span></tt>). This approach will work properly for any random-access iterator regardless of the other details of its implementation. A user who knows more about the implementation of her iterator is free to implement an <tt class="docutils literal"><span class="pre">operator[]</span></tt> that returns an lvalue in the derived iterator class; it will hide the one supplied by <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> from clients of her iterator.</p> </div> <div class="section" id="id2"> <span id="operator-arrow"></span><h2><a class="toc-backref" href="#id27"><tt class="docutils literal"><span class="pre">operator-&gt;</span></tt></a></h2> <p>The <tt class="docutils literal"><span class="pre">reference</span></tt> type of a readable iterator (and today's input iterator) need not in fact be a reference, so long as it is convertible to the iterator's <tt class="docutils literal"><span class="pre">value_type</span></tt>. When the <tt class="docutils literal"><span class="pre">value_type</span></tt> is a class, however, it must still be possible to access members through <tt class="docutils literal"><span class="pre">operator-&gt;</span></tt>. Therefore, an iterator whose <tt class="docutils literal"><span class="pre">reference</span></tt> type is not in fact a reference must return a proxy containing a copy of the referenced value from its <tt class="docutils literal"><span class="pre">operator-&gt;</span></tt>.</p> <p>The return types for <tt class="docutils literal"><span class="pre">iterator_facade</span></tt>'s <tt class="docutils literal"><span class="pre">operator-&gt;</span></tt> and <tt class="docutils literal"><span class="pre">operator[]</span></tt> are not explicitly specified. Instead, those types are described in terms of a set of requirements, which must be satisfied by the <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> implementation.</p> <table class="docutils citation" frame="void" id="cop95" rules="none"> <colgroup><col class="label" /><col /></colgroup> <tbody valign="top"> <tr><td class="label">[Cop95]</td><td><em>(<a class="fn-backref" href="#id1">1</a>, <a class="fn-backref" href="#id10">2</a>)</em> [Coplien, 1995] Coplien, J., Curiously Recurring Template Patterns, C++ Report, February 1995, pp. 24-27.</td></tr> </tbody> </table> </div> </div> <div class="section" id="reference"> <h1><a class="toc-backref" href="#id28">Reference</a></h1> <!-- Distributed under the Boost --> <!-- Software License, Version 1.0. (See accompanying --> <!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <!-- Version 1.3 of this ReStructuredText document corresponds to n1530_, the paper accepted by the LWG for TR1. --> <!-- Copyright David Abrahams, Jeremy Siek, and Thomas Witt 2003. --> <pre class="literal-block"> template &lt; class Derived , class Value , class CategoryOrTraversal , class Reference = Value&amp; , class Difference = ptrdiff_t &gt; class iterator_facade { public: typedef remove_const&lt;Value&gt;::type value_type; typedef Reference reference; typedef Value* pointer; typedef Difference difference_type; typedef /* see <a class="reference internal" href="#iterator-category">below</a> */ iterator_category; reference operator*() const; /* see <a class="reference internal" href="#operator-arrow">below</a> */ operator-&gt;() const; /* see <a class="reference internal" href="#brackets">below</a> */ operator[](difference_type n) const; Derived&amp; operator++(); Derived operator++(int); Derived&amp; operator--(); Derived operator--(int); Derived&amp; operator+=(difference_type n); Derived&amp; operator-=(difference_type n); Derived operator-(difference_type n) const; protected: typedef iterator_facade iterator_facade_; }; // Comparison operators template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type // exposition operator ==(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator !=(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &lt;(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &lt;=(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &gt;(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &gt;=(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); // Iterator difference template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; /* see <a class="reference internal" href="#minus">below</a> */ operator-(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); // Iterator addition template &lt;class Dr, class V, class TC, class R, class D&gt; Derived operator+ (iterator_facade&lt;Dr,V,TC,R,D&gt; const&amp;, typename Derived::difference_type n); template &lt;class Dr, class V, class TC, class R, class D&gt; Derived operator+ (typename Derived::difference_type n, iterator_facade&lt;Dr,V,TC,R,D&gt; const&amp;); </pre> <p id="iterator-category">The <tt class="docutils literal"><span class="pre">iterator_category</span></tt> member of <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> is</p> <pre class="literal-block"> <em>iterator-category</em>(CategoryOrTraversal, value_type, reference) </pre> <p>where <em>iterator-category</em> is defined as follows:</p> <pre class="literal-block" id="id7"> <em>iterator-category</em>(C,R,V) := if (C is convertible to std::input_iterator_tag || C is convertible to std::output_iterator_tag ) return C else if (C is not convertible to incrementable_traversal_tag) <em>the program is ill-formed</em> else return a type X satisfying the following two constraints: 1. X is convertible to X1, and not to any more-derived type, where X1 is defined by: if (R is a reference type &amp;&amp; C is convertible to forward_traversal_tag) { if (C is convertible to random_access_traversal_tag) X1 = random_access_iterator_tag else if (C is convertible to bidirectional_traversal_tag) X1 = bidirectional_iterator_tag else X1 = forward_iterator_tag } else { if (C is convertible to single_pass_traversal_tag &amp;&amp; R is convertible to V) X1 = input_iterator_tag else X1 = C } 2. <a class="reference external" href="new-iter-concepts.html#category-to-traversal"><em>category-to-traversal</em></a>(X) is convertible to the most derived traversal tag type to which X is also convertible, and not to any more-derived traversal tag type. </pre> <p>[Note: the intention is to allow <tt class="docutils literal"><span class="pre">iterator_category</span></tt> to be one of the five original category tags when convertibility to one of the traversal tags would add no information]</p> <!-- Copyright David Abrahams 2004. Use, modification and distribution is --> <!-- subject to the Boost Software License, Version 1.0. (See accompanying --> <!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <p>The <tt class="docutils literal"><span class="pre">enable_if_interoperable</span></tt> template used above is for exposition purposes. The member operators should only be in an overload set provided the derived types <tt class="docutils literal"><span class="pre">Dr1</span></tt> and <tt class="docutils literal"><span class="pre">Dr2</span></tt> are interoperable, meaning that at least one of the types is convertible to the other. The <tt class="docutils literal"><span class="pre">enable_if_interoperable</span></tt> approach uses SFINAE to take the operators out of the overload set when the types are not interoperable. The operators should behave <em>as-if</em> <tt class="docutils literal"><span class="pre">enable_if_interoperable</span></tt> were defined to be:</p> <pre class="literal-block"> template &lt;bool, typename&gt; enable_if_interoperable_impl {}; template &lt;typename T&gt; enable_if_interoperable_impl&lt;true,T&gt; { typedef T type; }; template&lt;typename Dr1, typename Dr2, typename T&gt; struct enable_if_interoperable : enable_if_interoperable_impl&lt; is_convertible&lt;Dr1,Dr2&gt;::value || is_convertible&lt;Dr2,Dr1&gt;::value , T &gt; {}; </pre> <div class="section" id="iterator-facade-requirements"> <h2><a class="toc-backref" href="#id29"><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> Requirements</a></h2> <p>The following table describes the typical valid expressions on <tt class="docutils literal"><span class="pre">iterator_facade</span></tt>'s <tt class="docutils literal"><span class="pre">Derived</span></tt> parameter, depending on the iterator concept(s) it will model. The operations in the first column must be made accessible to member functions of class <tt class="docutils literal"><span class="pre">iterator_core_access</span></tt>. In addition, <tt class="docutils literal"><span class="pre">static_cast&lt;Derived*&gt;(iterator_facade*)</span></tt> shall be well-formed.</p> <p>In the table below, <tt class="docutils literal"><span class="pre">F</span></tt> is <tt class="docutils literal"><span class="pre">iterator_facade&lt;X,V,C,R,D&gt;</span></tt>, <tt class="docutils literal"><span class="pre">a</span></tt> is an object of type <tt class="docutils literal"><span class="pre">X</span></tt>, <tt class="docutils literal"><span class="pre">b</span></tt> and <tt class="docutils literal"><span class="pre">c</span></tt> are objects of type <tt class="docutils literal"><span class="pre">const</span> <span class="pre">X</span></tt>, <tt class="docutils literal"><span class="pre">n</span></tt> is an object of <tt class="docutils literal"><span class="pre">F::difference_type</span></tt>, <tt class="docutils literal"><span class="pre">y</span></tt> is a constant object of a single pass iterator type interoperable with <tt class="docutils literal"><span class="pre">X</span></tt>, and <tt class="docutils literal"><span class="pre">z</span></tt> is a constant object of a random access traversal iterator type interoperable with <tt class="docutils literal"><span class="pre">X</span></tt>.</p> <div class="topic" id="core-operations"> <p class="topic-title first"><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> Core Operations</p> <table border="1" class="docutils"> <colgroup> <col width="21%" /> <col width="23%" /> <col width="27%" /> <col width="29%" /> </colgroup> <thead valign="bottom"> <tr><th class="head">Expression</th> <th class="head">Return Type</th> <th class="head">Assertion/Note</th> <th class="head">Used to implement Iterator Concept(s)</th> </tr> </thead> <tbody valign="top"> <tr><td><tt class="docutils literal"><span class="pre">c.dereference()</span></tt></td> <td><tt class="docutils literal"><span class="pre">F::reference</span></tt></td> <td>&nbsp;</td> <td>Readable Iterator, Writable Iterator</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">c.equal(y)</span></tt></td> <td>convertible to bool</td> <td>true iff <tt class="docutils literal"><span class="pre">c</span></tt> and <tt class="docutils literal"><span class="pre">y</span></tt> refer to the same position.</td> <td>Single Pass Iterator</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">a.increment()</span></tt></td> <td>unused</td> <td>&nbsp;</td> <td>Incrementable Iterator</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">a.decrement()</span></tt></td> <td>unused</td> <td>&nbsp;</td> <td>Bidirectional Traversal Iterator</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">a.advance(n)</span></tt></td> <td>unused</td> <td>&nbsp;</td> <td>Random Access Traversal Iterator</td> </tr> <tr><td><tt class="docutils literal"><span class="pre">c.distance_to(z)</span></tt></td> <td>convertible to <tt class="docutils literal"><span class="pre">F::difference_type</span></tt></td> <td>equivalent to <tt class="docutils literal"><span class="pre">distance(c,</span> <span class="pre">X(z))</span></tt>.</td> <td>Random Access Traversal Iterator</td> </tr> </tbody> </table> </div> </div> <div class="section" id="iterator-facade-operations"> <h2><a class="toc-backref" href="#id30"><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> operations</a></h2> <p>The operations in this section are described in terms of operations on the core interface of <tt class="docutils literal"><span class="pre">Derived</span></tt> which may be inaccessible (i.e. private). The implementation should access these operations through member functions of class <tt class="docutils literal"><span class="pre">iterator_core_access</span></tt>.</p> <p><tt class="docutils literal"><span class="pre">reference</span> <span class="pre">operator*()</span> <span class="pre">const;</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><tt class="docutils literal"><span class="pre">static_cast&lt;Derived</span> <span class="pre">const*&gt;(this)-&gt;dereference()</span></tt></td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">operator-&gt;()</span> <span class="pre">const;</span></tt> (see <a class="reference internal" href="#operator-arrow">below</a>)</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">If <tt class="docutils literal"><span class="pre">reference</span></tt> is a reference type, an object of type <tt class="docutils literal"><span class="pre">pointer</span></tt> equal to:</p> <pre class="literal-block"> &amp;static_cast&lt;Derived const*&gt;(this)-&gt;dereference() </pre> <p class="last">Otherwise returns an object of unspecified type such that, <tt class="docutils literal"><span class="pre">(*static_cast&lt;Derived</span> <span class="pre">const*&gt;(this))-&gt;m</span></tt> is equivalent to <tt class="docutils literal"><span class="pre">(w</span> <span class="pre">=</span> <span class="pre">**static_cast&lt;Derived</span> <span class="pre">const*&gt;(this),</span> <span class="pre">w.m)</span></tt> for some temporary object <tt class="docutils literal"><span class="pre">w</span></tt> of type <tt class="docutils literal"><span class="pre">value_type</span></tt>.</p> </td> </tr> </tbody> </table> <p id="brackets"><em>unspecified</em> <tt class="docutils literal"><span class="pre">operator[](difference_type</span> <span class="pre">n)</span> <span class="pre">const;</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body">an object convertible to <tt class="docutils literal"><span class="pre">value_type</span></tt>. For constant objects <tt class="docutils literal"><span class="pre">v</span></tt> of type <tt class="docutils literal"><span class="pre">value_type</span></tt>, and <tt class="docutils literal"><span class="pre">n</span></tt> of type <tt class="docutils literal"><span class="pre">difference_type</span></tt>, <tt class="docutils literal"><span class="pre">(*this)[n]</span> <span class="pre">=</span> <span class="pre">v</span></tt> is equivalent to <tt class="docutils literal"><span class="pre">*(*this</span> <span class="pre">+</span> <span class="pre">n)</span> <span class="pre">=</span> <span class="pre">v</span></tt>, and <tt class="docutils literal"><span class="pre">static_cast&lt;value_type</span> <span class="pre">const&amp;&gt;((*this)[n])</span></tt> is equivalent to <tt class="docutils literal"><span class="pre">static_cast&lt;value_type</span> <span class="pre">const&amp;&gt;(*(*this</span> <span class="pre">+</span> <span class="pre">n))</span></tt></td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">Derived&amp;</span> <span class="pre">operator++();</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> static_cast&lt;Derived*&gt;(this)-&gt;increment(); return *static_cast&lt;Derived*&gt;(this); </pre> </td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">Derived</span> <span class="pre">operator++(int);</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> Derived tmp(static_cast&lt;Derived const*&gt;(this)); ++*this; return tmp; </pre> </td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">Derived&amp;</span> <span class="pre">operator--();</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> static_cast&lt;Derived*&gt;(this)-&gt;decrement(); return *static_cast&lt;Derived*&gt;(this); </pre> </td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">Derived</span> <span class="pre">operator--(int);</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> Derived tmp(static_cast&lt;Derived const*&gt;(this)); --*this; return tmp; </pre> </td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">Derived&amp;</span> <span class="pre">operator+=(difference_type</span> <span class="pre">n);</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> static_cast&lt;Derived*&gt;(this)-&gt;advance(n); return *static_cast&lt;Derived*&gt;(this); </pre> </td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">Derived&amp;</span> <span class="pre">operator-=(difference_type</span> <span class="pre">n);</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> static_cast&lt;Derived*&gt;(this)-&gt;advance(-n); return *static_cast&lt;Derived*&gt;(this); </pre> </td> </tr> </tbody> </table> <p><tt class="docutils literal"><span class="pre">Derived</span> <span class="pre">operator-(difference_type</span> <span class="pre">n)</span> <span class="pre">const;</span></tt></p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> Derived tmp(static_cast&lt;Derived const*&gt;(this)); return tmp -= n; </pre> </td> </tr> </tbody> </table> <pre class="literal-block"> template &lt;class Dr, class V, class TC, class R, class D&gt; Derived operator+ (iterator_facade&lt;Dr,V,TC,R,D&gt; const&amp;, typename Derived::difference_type n); template &lt;class Dr, class V, class TC, class R, class D&gt; Derived operator+ (typename Derived::difference_type n, iterator_facade&lt;Dr,V,TC,R,D&gt; const&amp;); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Effects:</th><td class="field-body"><pre class="first last literal-block"> Derived tmp(static_cast&lt;Derived const*&gt;(this)); return tmp += n; </pre> </td> </tr> </tbody> </table> <pre class="literal-block"> template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator ==(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <dl class="last docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr1</span> <span class="pre">const&amp;)lhs).equal((Dr2</span> <span class="pre">const&amp;)rhs)</span></tt>.</p> </dd> <dt>Otherwise,</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr2</span> <span class="pre">const&amp;)rhs).equal((Dr1</span> <span class="pre">const&amp;)lhs)</span></tt>.</p> </dd> </dl> </td> </tr> </tbody> </table> <pre class="literal-block"> template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator !=(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <dl class="last docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">!((Dr1</span> <span class="pre">const&amp;)lhs).equal((Dr2</span> <span class="pre">const&amp;)rhs)</span></tt>.</p> </dd> <dt>Otherwise,</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">!((Dr2</span> <span class="pre">const&amp;)rhs).equal((Dr1</span> <span class="pre">const&amp;)lhs)</span></tt>.</p> </dd> </dl> </td> </tr> </tbody> </table> <pre class="literal-block"> template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &lt;(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <dl class="last docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr1</span> <span class="pre">const&amp;)lhs).distance_to((Dr2</span> <span class="pre">const&amp;)rhs)</span> <span class="pre">&lt;</span> <span class="pre">0</span></tt>.</p> </dd> <dt>Otherwise,</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr2</span> <span class="pre">const&amp;)rhs).distance_to((Dr1</span> <span class="pre">const&amp;)lhs)</span> <span class="pre">&gt;</span> <span class="pre">0</span></tt>.</p> </dd> </dl> </td> </tr> </tbody> </table> <pre class="literal-block"> template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &lt;=(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <dl class="last docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr1</span> <span class="pre">const&amp;)lhs).distance_to((Dr2</span> <span class="pre">const&amp;)rhs)</span> <span class="pre">&lt;=</span> <span class="pre">0</span></tt>.</p> </dd> <dt>Otherwise,</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr2</span> <span class="pre">const&amp;)rhs).distance_to((Dr1</span> <span class="pre">const&amp;)lhs)</span> <span class="pre">&gt;=</span> <span class="pre">0</span></tt>.</p> </dd> </dl> </td> </tr> </tbody> </table> <pre class="literal-block"> template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &gt;(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <dl class="last docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr1</span> <span class="pre">const&amp;)lhs).distance_to((Dr2</span> <span class="pre">const&amp;)rhs)</span> <span class="pre">&gt;</span> <span class="pre">0</span></tt>.</p> </dd> <dt>Otherwise,</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr2</span> <span class="pre">const&amp;)rhs).distance_to((Dr1</span> <span class="pre">const&amp;)lhs)</span> <span class="pre">&lt;</span> <span class="pre">0</span></tt>.</p> </dd> </dl> </td> </tr> </tbody> </table> <pre class="literal-block"> template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,bool&gt;::type operator &gt;=(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <dl class="last docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr1</span> <span class="pre">const&amp;)lhs).distance_to((Dr2</span> <span class="pre">const&amp;)rhs)</span> <span class="pre">&gt;=</span> <span class="pre">0</span></tt>.</p> </dd> <dt>Otherwise,</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr2</span> <span class="pre">const&amp;)rhs).distance_to((Dr1</span> <span class="pre">const&amp;)lhs)</span> <span class="pre">&lt;=</span> <span class="pre">0</span></tt>.</p> </dd> </dl> </td> </tr> </tbody> </table> <pre class="literal-block" id="minus"> template &lt;class Dr1, class V1, class TC1, class R1, class D1, class Dr2, class V2, class TC2, class R2, class D2&gt; typename enable_if_interoperable&lt;Dr1,Dr2,difference&gt;::type operator -(iterator_facade&lt;Dr1,V1,TC1,R1,D1&gt; const&amp; lhs, iterator_facade&lt;Dr2,V2,TC2,R2,D2&gt; const&amp; rhs); </pre> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field"><th class="field-name">Return Type:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <blockquote> <dl class="docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">difference</span></tt> shall be <tt class="docutils literal"><span class="pre">iterator_traits&lt;Dr1&gt;::difference_type</span></tt>.</p> </dd> <dt>Otherwise</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">difference</span></tt> shall be <tt class="docutils literal"><span class="pre">iterator_traits&lt;Dr2&gt;::difference_type</span></tt></p> </dd> </dl> </blockquote> </td> </tr> <tr class="field"><th class="field-name">Returns:</th><td class="field-body"><p class="first">if <tt class="docutils literal"><span class="pre">is_convertible&lt;Dr2,Dr1&gt;::value</span></tt></p> <dl class="last docutils"> <dt>then</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">-((Dr1</span> <span class="pre">const&amp;)lhs).distance_to((Dr2</span> <span class="pre">const&amp;)rhs)</span></tt>.</p> </dd> <dt>Otherwise,</dt> <dd><p class="first last"><tt class="docutils literal"><span class="pre">((Dr2</span> <span class="pre">const&amp;)rhs).distance_to((Dr1</span> <span class="pre">const&amp;)lhs)</span></tt>.</p> </dd> </dl> </td> </tr> </tbody> </table> </div> </div> <div class="section" id="tutorial-example"> <h1><a class="toc-backref" href="#id31">Tutorial Example</a></h1> <!-- Copyright David Abrahams 2004. Use, modification and distribution is --> <!-- subject to the Boost Software License, Version 1.0. (See accompanying --> <!-- file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <p>In this section we'll walk through the implementation of a few iterators using <tt class="docutils literal"><span class="pre">iterator_facade</span></tt>, based around the simple example of a linked list of polymorphic objects. This example was inspired by a <a class="reference external" href="http://thread.gmane.org/gmane.comp.lib.boost.user/5100">posting</a> by Keith Macdonald on the <a class="reference external" href="http://www.boost.org/more/mailing_lists.htm#users">Boost-Users</a> mailing list.</p> <div class="section" id="the-problem"> <h2><a class="toc-backref" href="#id32">The Problem</a></h2> <p>Say we've written a polymorphic linked list node base class:</p> <pre class="literal-block"> # include &lt;iostream&gt; struct node_base { node_base() : m_next(0) {} // Each node manages all of its tail nodes virtual ~node_base() { delete m_next; } // Access the rest of the list node_base* next() const { return m_next; } // print to the stream virtual void print(std::ostream&amp; s) const = 0; // double the value virtual void double_me() = 0; void append(node_base* p) { if (m_next) m_next-&gt;append(p); else m_next = p; } private: node_base* m_next; }; </pre> <p>Lists can hold objects of different types by linking together specializations of the following template:</p> <pre class="literal-block"> template &lt;class T&gt; struct node : node_base { node(T x) : m_value(x) {} void print(std::ostream&amp; s) const { s &lt;&lt; this-&gt;m_value; } void double_me() { m_value += m_value; } private: T m_value; }; </pre> <p>And we can print any node using the following streaming operator:</p> <pre class="literal-block"> inline std::ostream&amp; operator&lt;&lt;(std::ostream&amp; s, node_base const&amp; n) { n.print(s); return s; } </pre> <p>Our first challenge is to build an appropriate iterator over these lists.</p> </div> <div class="section" id="a-basic-iterator-using-iterator-facade"> <h2><a class="toc-backref" href="#id33">A Basic Iterator Using <tt class="docutils literal"><span class="pre">iterator_facade</span></tt></a></h2> <p>We will construct a <tt class="docutils literal"><span class="pre">node_iterator</span></tt> class using inheritance from <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> to implement most of the iterator's operations.</p> <pre class="literal-block"> # include &quot;node.hpp&quot; # include &lt;boost/iterator/iterator_facade.hpp&gt; class node_iterator : public boost::iterator_facade&lt;...&gt; { ... }; </pre> <div class="section" id="template-arguments-for-iterator-facade"> <h3><a class="toc-backref" href="#id34">Template Arguments for <tt class="docutils literal"><span class="pre">iterator_facade</span></tt></a></h3> <p><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> has several template parameters, so we must decide what types to use for the arguments. The parameters are <tt class="docutils literal"><span class="pre">Derived</span></tt>, <tt class="docutils literal"><span class="pre">Value</span></tt>, <tt class="docutils literal"><span class="pre">CategoryOrTraversal</span></tt>, <tt class="docutils literal"><span class="pre">Reference</span></tt>, and <tt class="docutils literal"><span class="pre">Difference</span></tt>.</p> <div class="section" id="derived"> <h4><a class="toc-backref" href="#id35"><tt class="docutils literal"><span class="pre">Derived</span></tt></a></h4> <p>Because <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> is meant to be used with the CRTP <a class="citation-reference" href="#cop95" id="id10">[Cop95]</a> the first parameter is the iterator class name itself, <tt class="docutils literal"><span class="pre">node_iterator</span></tt>.</p> </div> <div class="section" id="value"> <h4><a class="toc-backref" href="#id36"><tt class="docutils literal"><span class="pre">Value</span></tt></a></h4> <p>The <tt class="docutils literal"><span class="pre">Value</span></tt> parameter determines the <tt class="docutils literal"><span class="pre">node_iterator</span></tt>'s <tt class="docutils literal"><span class="pre">value_type</span></tt>. In this case, we are iterating over <tt class="docutils literal"><span class="pre">node_base</span></tt> objects, so <tt class="docutils literal"><span class="pre">Value</span></tt> will be <tt class="docutils literal"><span class="pre">node_base</span></tt>.</p> </div> <div class="section" id="categoryortraversal"> <h4><a class="toc-backref" href="#id37"><tt class="docutils literal"><span class="pre">CategoryOrTraversal</span></tt></a></h4> <p>Now we have to determine which <a class="reference external" href="new-iter-concepts.html#iterator-traversal-concepts-lib-iterator-traversal">iterator traversal concept</a> our <tt class="docutils literal"><span class="pre">node_iterator</span></tt> is going to model. Singly-linked lists only have forward links, so our iterator can't can't be a <a class="reference external" href="new-iter-concepts.html#bidirectional-traversal-iterators-lib-bidirectional-traversal-iterators">bidirectional traversal iterator</a>. Our iterator should be able to make multiple passes over the same linked list (unlike, say, an <tt class="docutils literal"><span class="pre">istream_iterator</span></tt> which consumes the stream it traverses), so it must be a <a class="reference external" href="new-iter-concepts.html#forward-traversal-iterators-lib-forward-traversal-iterators">forward traversal iterator</a>. Therefore, we'll pass <tt class="docutils literal"><span class="pre">boost::forward_traversal_tag</span></tt> in this position<a class="footnote-reference" href="#category" id="id11"><sup>1</sup></a>.</p> <table class="docutils footnote" frame="void" id="category" rules="none"> <colgroup><col class="label" /><col /></colgroup> <tbody valign="top"> <tr><td class="label"><a class="fn-backref" href="#id11">[1]</a></td><td><tt class="docutils literal"><span class="pre">iterator_facade</span></tt> also supports old-style category tags, so we could have passed <tt class="docutils literal"><span class="pre">std::forward_iterator_tag</span></tt> here; either way, the resulting iterator's <tt class="docutils literal"><span class="pre">iterator_category</span></tt> will end up being <tt class="docutils literal"><span class="pre">std::forward_iterator_tag</span></tt>.</td></tr> </tbody> </table> </div> <div class="section" id="id12"> <h4><a class="toc-backref" href="#id38"><tt class="docutils literal"><span class="pre">Reference</span></tt></a></h4> <p>The <tt class="docutils literal"><span class="pre">Reference</span></tt> argument becomes the type returned by <tt class="docutils literal"><span class="pre">node_iterator</span></tt>'s dereference operation, and will also be the same as <tt class="docutils literal"><span class="pre">std::iterator_traits&lt;node_iterator&gt;::reference</span></tt>. The library's default for this parameter is <tt class="docutils literal"><span class="pre">Value&amp;</span></tt>; since <tt class="docutils literal"><span class="pre">node_base&amp;</span></tt> is a good choice for the iterator's <tt class="docutils literal"><span class="pre">reference</span></tt> type, we can omit this argument, or pass <tt class="docutils literal"><span class="pre">use_default</span></tt>.</p> </div> <div class="section" id="difference"> <h4><a class="toc-backref" href="#id39"><tt class="docutils literal"><span class="pre">Difference</span></tt></a></h4> <p>The <tt class="docutils literal"><span class="pre">Difference</span></tt> argument determines how the distance between two <tt class="docutils literal"><span class="pre">node_iterator</span></tt>s will be measured and will also be the same as <tt class="docutils literal"><span class="pre">std::iterator_traits&lt;node_iterator&gt;::difference_type</span></tt>. The library's default for <tt class="docutils literal"><span class="pre">Difference</span></tt> is <tt class="docutils literal"><span class="pre">std::ptrdiff_t</span></tt>, an appropriate type for measuring the distance between any two addresses in memory, and one that works for almost any iterator, so we can omit this argument, too.</p> <p>The declaration of <tt class="docutils literal"><span class="pre">node_iterator</span></tt> will therefore look something like:</p> <pre class="literal-block"> # include &quot;node.hpp&quot; # include &lt;boost/iterator/iterator_facade.hpp&gt; class node_iterator : public boost::iterator_facade&lt; node_iterator , node_base , boost::forward_traversal_tag &gt; { ... }; </pre> </div> </div> <div class="section" id="constructors-and-data-members"> <h3><a class="toc-backref" href="#id40">Constructors and Data Members</a></h3> <p>Next we need to decide how to represent the iterator's position. This representation will take the form of data members, so we'll also need to write constructors to initialize them. The <tt class="docutils literal"><span class="pre">node_iterator</span></tt>'s position is quite naturally represented using a pointer to a <tt class="docutils literal"><span class="pre">node_base</span></tt>. We'll need a constructor to build an iterator from a <tt class="docutils literal"><span class="pre">node_base*</span></tt>, and a default constructor to satisfy the <a class="reference external" href="new-iter-concepts.html#forward-traversal-iterators-lib-forward-traversal-iterators">forward traversal iterator</a> requirements<a class="footnote-reference" href="#default" id="id13"><sup>2</sup></a>. Our <tt class="docutils literal"><span class="pre">node_iterator</span></tt> then becomes:</p> <pre class="literal-block"> # include &quot;node.hpp&quot; # include &lt;boost/iterator/iterator_facade.hpp&gt; class node_iterator : public boost::iterator_facade&lt; node_iterator , node_base , boost::forward_traversal_tag &gt; { public: node_iterator() : m_node(0) {} explicit node_iterator(node_base* p) : m_node(p) {} private: ... node_base* m_node; }; </pre> <table class="docutils footnote" frame="void" id="default" rules="none"> <colgroup><col class="label" /><col /></colgroup> <tbody valign="top"> <tr><td class="label"><a class="fn-backref" href="#id13">[2]</a></td><td>Technically, the C++ standard places almost no requirements on a default-constructed iterator, so if we were really concerned with efficiency, we could've written the default constructor to leave <tt class="docutils literal"><span class="pre">m_node</span></tt> uninitialized.</td></tr> </tbody> </table> </div> <div class="section" id="implementing-the-core-operations"> <h3><a class="toc-backref" href="#id41">Implementing the Core Operations</a></h3> <p>The last step is to implement the <a class="reference internal" href="#core-operations">core operations</a> required by the concepts we want our iterator to model. Referring to the <a class="reference internal" href="#core-operations">table</a>, we can see that the first three rows are applicable because <tt class="docutils literal"><span class="pre">node_iterator</span></tt> needs to satisfy the requirements for <a class="reference external" href="new-iter-concepts.html#readable-iterators-lib-readable-iterators">readable iterator</a>, <a class="reference external" href="new-iter-concepts.html#single-pass-iterators-lib-single-pass-iterators">single pass iterator</a>, and <a class="reference external" href="new-iter-concepts.html#incrementable-iterators-lib-incrementable-iterators">incrementable iterator</a>.</p> <p>We therefore need to supply <tt class="docutils literal"><span class="pre">dereference</span></tt>, <tt class="docutils literal"><span class="pre">equal</span></tt>, and <tt class="docutils literal"><span class="pre">increment</span></tt> members. We don't want these members to become part of <tt class="docutils literal"><span class="pre">node_iterator</span></tt>'s public interface, so we can make them private and grant friendship to <tt class="docutils literal"><span class="pre">boost::iterator_core_access</span></tt>, a &quot;back-door&quot; that <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> uses to get access to the core operations:</p> <pre class="literal-block"> # include &quot;node.hpp&quot; # include &lt;boost/iterator/iterator_facade.hpp&gt; class node_iterator : public boost::iterator_facade&lt; node_iterator , node_base , boost::forward_traversal_tag &gt; { public: node_iterator() : m_node(0) {} explicit node_iterator(node_base* p) : m_node(p) {} private: friend class boost::iterator_core_access; void increment() { m_node = m_node-&gt;next(); } bool equal(node_iterator const&amp; other) const { return this-&gt;m_node == other.m_node; } node_base&amp; dereference() const { return *m_node; } node_base* m_node; }; </pre> <p>Voilà; a complete and conforming readable, forward-traversal iterator! For a working example of its use, see <a class="reference external" href="../example/node_iterator1.cpp">this program</a>.</p> </div> </div> <div class="section" id="a-constant-node-iterator"> <h2><a class="toc-backref" href="#id42">A constant <tt class="docutils literal"><span class="pre">node_iterator</span></tt></a></h2> <div class="sidebar"> <p class="first sidebar-title">Constant and Mutable iterators</p> <p>The term <strong>mutable iterator</strong> means an iterator through which the object it references (its &quot;referent&quot;) can be modified. A <strong>constant iterator</strong> is one which doesn't allow modification of its referent.</p> <p>The words <em>constant</em> and <em>mutable</em> don't refer to the ability to modify the iterator itself. For example, an <tt class="docutils literal"><span class="pre">int</span> <span class="pre">const*</span></tt> is a non-<tt class="docutils literal"><span class="pre">const</span></tt> <em>constant iterator</em>, which can be incremented but doesn't allow modification of its referent, and <tt class="docutils literal"><span class="pre">int*</span> <span class="pre">const</span></tt> is a <tt class="docutils literal"><span class="pre">const</span></tt> <em>mutable iterator</em>, which cannot be modified but which allows modification of its referent.</p> <p class="last">Confusing? We agree, but those are the standard terms. It probably doesn't help much that a container's constant iterator is called <tt class="docutils literal"><span class="pre">const_iterator</span></tt>.</p> </div> <p>Now, our <tt class="docutils literal"><span class="pre">node_iterator</span></tt> gives clients access to both <tt class="docutils literal"><span class="pre">node</span></tt>'s <tt class="docutils literal"><span class="pre">print(std::ostream&amp;)</span> <span class="pre">const</span></tt> member function, but also its mutating <tt class="docutils literal"><span class="pre">double_me()</span></tt> member. If we wanted to build a <em>constant</em> <tt class="docutils literal"><span class="pre">node_iterator</span></tt>, we'd only have to make three changes:</p> <pre class="literal-block"> class const_node_iterator : public boost::iterator_facade&lt; const_node_iterator , node_base <strong>const</strong> , boost::forward_traversal_tag &gt; { public: const_node_iterator() : m_node(0) {} explicit const_node_iterator(node_base* p) : m_node(p) {} private: friend class boost::iterator_core_access; void increment() { m_node = m_node-&gt;next(); } bool equal(const_node_iterator const&amp; other) const { return this-&gt;m_node == other.m_node; } node_base <strong>const</strong>&amp; dereference() const { return *m_node; } node_base <strong>const</strong>* m_node; }; </pre> <div class="sidebar"> <p class="first sidebar-title"><tt class="docutils literal"><span class="pre">const</span></tt> and an iterator's <tt class="docutils literal"><span class="pre">value_type</span></tt></p> <p class="last">The C++ standard requires an iterator's <tt class="docutils literal"><span class="pre">value_type</span></tt> <em>not</em> be <tt class="docutils literal"><span class="pre">const</span></tt>-qualified, so <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> strips the <tt class="docutils literal"><span class="pre">const</span></tt> from its <tt class="docutils literal"><span class="pre">Value</span></tt> parameter in order to produce the iterator's <tt class="docutils literal"><span class="pre">value_type</span></tt>. Making the <tt class="docutils literal"><span class="pre">Value</span></tt> argument <tt class="docutils literal"><span class="pre">const</span></tt> provides a useful hint to <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> that the iterator is a <em>constant iterator</em>, and the default <tt class="docutils literal"><span class="pre">Reference</span></tt> argument will be correct for all lvalue iterators.</p> </div> <p>As a matter of fact, <tt class="docutils literal"><span class="pre">node_iterator</span></tt> and <tt class="docutils literal"><span class="pre">const_node_iterator</span></tt> are so similar that it makes sense to factor the common code out into a template as follows:</p> <pre class="literal-block"> template &lt;class Value&gt; class node_iter : public boost::iterator_facade&lt; node_iter&lt;Value&gt; , Value , boost::forward_traversal_tag &gt; { public: node_iter() : m_node(0) {} explicit node_iter(Value* p) : m_node(p) {} private: friend class boost::iterator_core_access; bool equal(node_iter&lt;Value&gt; const&amp; other) const { return this-&gt;m_node == other.m_node; } void increment() { m_node = m_node-&gt;next(); } Value&amp; dereference() const { return *m_node; } Value* m_node; }; typedef node_iter&lt;node_base&gt; node_iterator; typedef node_iter&lt;node_base const&gt; node_const_iterator; </pre> </div> <div class="section" id="interoperability"> <h2><a class="toc-backref" href="#id43">Interoperability</a></h2> <p>Our <tt class="docutils literal"><span class="pre">const_node_iterator</span></tt> works perfectly well on its own, but taken together with <tt class="docutils literal"><span class="pre">node_iterator</span></tt> it doesn't quite meet expectations. For example, we'd like to be able to pass a <tt class="docutils literal"><span class="pre">node_iterator</span></tt> where a <tt class="docutils literal"><span class="pre">node_const_iterator</span></tt> was expected, just as you can with <tt class="docutils literal"><span class="pre">std::list&lt;int&gt;</span></tt>'s <tt class="docutils literal"><span class="pre">iterator</span></tt> and <tt class="docutils literal"><span class="pre">const_iterator</span></tt>. Furthermore, given a <tt class="docutils literal"><span class="pre">node_iterator</span></tt> and a <tt class="docutils literal"><span class="pre">node_const_iterator</span></tt> into the same list, we should be able to compare them for equality.</p> <p>This expected ability to use two different iterator types together is known as <a class="reference external" href="new-iter-concepts.html#interoperable-iterators-lib-interoperable-iterators"><strong>interoperability</strong></a>. Achieving interoperability in our case is as simple as templatizing the <tt class="docutils literal"><span class="pre">equal</span></tt> function and adding a templatized converting constructor<a class="footnote-reference" href="#broken" id="id16"><sup>3</sup></a><a class="footnote-reference" href="#random" id="id17"><sup>4</sup></a>:</p> <pre class="literal-block"> template &lt;class Value&gt; class node_iter : public boost::iterator_facade&lt; node_iter&lt;Value&gt; , Value , boost::forward_traversal_tag &gt; { public: node_iter() : m_node(0) {} explicit node_iter(Value* p) : m_node(p) {} template &lt;class OtherValue&gt; node_iter(node_iter&lt;OtherValue&gt; const&amp; other) : m_node(other.m_node) {} private: friend class boost::iterator_core_access; template &lt;class&gt; friend class node_iter; template &lt;class OtherValue&gt; bool equal(node_iter&lt;OtherValue&gt; const&amp; other) const { return this-&gt;m_node == other.m_node; } void increment() { m_node = m_node-&gt;next(); } Value&amp; dereference() const { return *m_node; } Value* m_node; }; typedef impl::node_iterator&lt;node_base&gt; node_iterator; typedef impl::node_iterator&lt;node_base const&gt; node_const_iterator; </pre> <table class="docutils footnote" frame="void" id="broken" rules="none"> <colgroup><col class="label" /><col /></colgroup> <tbody valign="top"> <tr><td class="label"><a class="fn-backref" href="#id16">[3]</a></td><td>If you're using an older compiler and it can't handle this example, see the <a class="reference external" href="../example/node_iterator2.hpp">example code</a> for workarounds.</td></tr> </tbody> </table> <table class="docutils footnote" frame="void" id="random" rules="none"> <colgroup><col class="label" /><col /></colgroup> <tbody valign="top"> <tr><td class="label"><a class="fn-backref" href="#id17">[4]</a></td><td>If <tt class="docutils literal"><span class="pre">node_iterator</span></tt> had been a <a class="reference external" href="new-iter-concepts.html#random-access-traversal-iterators-lib-random-access-traversal-iterators">random access traversal iterator</a>, we'd have had to templatize its <tt class="docutils literal"><span class="pre">distance_to</span></tt> function as well.</td></tr> </tbody> </table> <p>You can see an example program which exercises our interoperable iterators <a class="reference external" href="../example/node_iterator2.cpp">here</a>.</p> </div> <div class="section" id="telling-the-truth"> <h2><a class="toc-backref" href="#id44">Telling the Truth</a></h2> <p>Now <tt class="docutils literal"><span class="pre">node_iterator</span></tt> and <tt class="docutils literal"><span class="pre">node_const_iterator</span></tt> behave exactly as you'd expect... almost. We can compare them and we can convert in one direction: from <tt class="docutils literal"><span class="pre">node_iterator</span></tt> to <tt class="docutils literal"><span class="pre">node_const_iterator</span></tt>. If we try to convert from <tt class="docutils literal"><span class="pre">node_const_iterator</span></tt> to <tt class="docutils literal"><span class="pre">node_iterator</span></tt>, we'll get an error when the converting constructor tries to initialize <tt class="docutils literal"><span class="pre">node_iterator</span></tt>'s <tt class="docutils literal"><span class="pre">m_node</span></tt>, a <tt class="docutils literal"><span class="pre">node*</span></tt> with a <tt class="docutils literal"><span class="pre">node</span> <span class="pre">const*</span></tt>. So what's the problem?</p> <p>The problem is that <tt class="docutils literal"><span class="pre">boost::</span></tt><a class="reference external" href="../../type_traits/index.html#relationships"><tt class="docutils literal"><span class="pre">is_convertible</span></tt></a><tt class="docutils literal"><span class="pre">&lt;node_const_iterator,node_iterator&gt;::value</span></tt> will be <tt class="docutils literal"><span class="pre">true</span></tt>, but it should be <tt class="docutils literal"><span class="pre">false</span></tt>. <a class="reference external" href="../../type_traits/index.html#relationships"><tt class="docutils literal"><span class="pre">is_convertible</span></tt></a> lies because it can only see as far as the <em>declaration</em> of <tt class="docutils literal"><span class="pre">node_iter</span></tt>'s converting constructor, but can't look inside at the <em>definition</em> to make sure it will compile. A perfect solution would make <tt class="docutils literal"><span class="pre">node_iter</span></tt>'s converting constructor disappear when the <tt class="docutils literal"><span class="pre">m_node</span></tt> conversion would fail.</p> <p>In fact, that sort of magic is possible using <a class="reference external" href="../../utility/enable_if.html"><tt class="docutils literal"><span class="pre">boost::enable_if</span></tt></a>. By rewriting the converting constructor as follows, we can remove it from the overload set when it's not appropriate:</p> <pre class="literal-block"> #include &lt;boost/type_traits/is_convertible.hpp&gt; #include &lt;boost/utility/enable_if.hpp&gt; ... private: struct enabler {}; public: template &lt;class OtherValue&gt; node_iter( node_iter&lt;OtherValue&gt; const&amp; other , typename boost::enable_if&lt; boost::is_convertible&lt;OtherValue*,Value*&gt; , enabler &gt;::type = enabler() ) : m_node(other.m_node) {} </pre> </div> <div class="section" id="wrap-up"> <h2><a class="toc-backref" href="#id45">Wrap Up</a></h2> <p>This concludes our <tt class="docutils literal"><span class="pre">iterator_facade</span></tt> tutorial, but before you stop reading we urge you to take a look at <a class="reference external" href="iterator_adaptor.html"><tt class="docutils literal"><span class="pre">iterator_adaptor</span></tt></a>. There's another way to approach writing these iterators which might even be superior.</p> </div> </div> </div> <div class="footer"> <hr class="footer" /> <a class="reference external" href="iterator_facade.rst">View document source</a>. Generated by <a class="reference external" href="http://docutils.sourceforge.net/">Docutils</a> from <a class="reference external" href="http://docutils.sourceforge.net/rst.html">reStructuredText</a> source. </div> </body> </html>
src/org/zaproxy/zap/extension/quickstart/resources/help_pt_BR/contents/cmdline.html
ccgreen13/zap-extensions
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Command Line</title> </head> <body bgcolor="#ffffff"> <h1>Command Line</h1> Quick Start add-on supports the following command line options: <table> <tr> <td>&nbsp;&nbsp;&nbsp;&nbsp;</td> <td>-quickurl</td> <td>Specifies the URL of the target application that will be attacked.</td> </tr> <tr> <td>&nbsp;&nbsp;&nbsp;&nbsp;</td> <td>-quickout</td> <td>Specifies the file to write the XML report to. If not set in 'inline' and daemon modes the report is written to default output stream.</td> </tr> </table> <br> <p>Examples: <ul> <li>Start ZAP in 'inline' mode, attack the target application http://example.com/ and write the report to default output stream: <pre>-cmd -quickurl http://example.com/</pre> </li> <li>Start ZAP with UI, attack the target application http://example.com/ and save the report to a file: <pre>-quickurl http://example.com/ -quickout /path/to/report.xml</pre> </li> </ul> <h2>See also</h2> <table> <tr> <td>&nbsp;&nbsp;&nbsp;&nbsp;</td> <td><a href="quickstart.html">Início Rápido</a></td> <td>the introduction to Quick Start</td> </tr> </table> </body> </html>
help/help/src/sakai_screensteps_assignmentsInstructorGuide/How-do-I-release-assignment-grades-.html
buckett/sakai-gitflow
<!DOCTYPE html> <html lang="en"> <head> <title>How do I release assignment grades?</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta content="sakai.assignment" name="description"> <meta content="view grades, view feedback" name="search"> <link href="/library/skin/tool_base.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/skin/morpheus-default/tool.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/sakai-help-tool/css/help.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/js/jquery/featherlight/0.4.0/featherlight.min.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <script src="/library/js/jquery/jquery-1.11.3.min.js" type="text/javascript" charset="utf-8"></script><script src="/library/js/jquery/featherlight/0.4.0/featherlight.min.js" type="text/javascript" charset="utf-8"></script><script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("a[rel^='featherlight']").featherlight({ type: { image:true }, closeOnClick: 'anywhere' }); }); </script> </head> <body> <div id="wrapper"> <div id="article-content"> <div id="article-header"> <h1 class="article-title">How do I release assignment grades?</h1> </div> <div id="article-description"> <p>When you grade an assignment, students will not be able to view the grade and your feedback in the assignment area until you release their grades. </p> </div> <div id="steps-container"> <div id="step-6329" class="step-container"> <h2 class="step-title">Go to Assignments.</h2> <div class="step-instructions"><p>Select the <strong>Assignments</strong> tool from the Tool Menu of your site.</p></div> </div> <div class="clear"></div> <div id="step-6330" class="step-container"> <h2 class="step-title">Click the Grade link for the assignment with grades to be released.</h2> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-release-assignment-grades-/Click-the-Grade-link-for-the-assignment-with-grade-sm.png" width="640" height="158" class="step-image" alt="Click the Grade link for the assignment with grades to be released."><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-release-assignment-grades-/Click-the-Grade-link-for-the-assignment-with-grade.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> </div> <div class="clear"></div> <div id="step-6331" class="step-container"> <h2 class="step-title">Click Release Grades.</h2> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-release-assignment-grades-/Click-Release-Grades-sm.png" width="640" height="349" class="step-image" alt="Click Release Grades."><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-release-assignment-grades-/Click-Release-Grades.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> </div> <div class="clear"></div> <div id="step-6332" class="step-container"> <h3 class="step-title">View released grades.</h3> <div class="step-image-container step-image-fullsize"> <img src="/library/image/help/en/How-do-I-release-assignment-grades-/View-released-grades-sm.png" width="640" height="172" class="step-image" alt="View released grades."><div class="step-image-caption"> <a href="/library/image/help/en/How-do-I-release-assignment-grades-/View-released-grades.png" rel="featherlight" target="_blank">Zoom</a> </div> </div> <div class="step-instructions"><p>Once grades have been released to students, you will see a check mark in the "Release" column.</p></div> </div> <div class="clear"></div> </div> </div> </div> </body> </html>
src/deps/boost/doc/html/boost_asio/reference/ssl__stream/write_some/overload2.html
mxrrow/zaicoin
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>ssl::stream::write_some (2 of 2 overloads)</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.76.1"> <link rel="home" href="../../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../write_some.html" title="ssl::stream::write_some"> <link rel="prev" href="overload1.html" title="ssl::stream::write_some (1 of 2 overloads)"> <link rel="next" href="../_stream.html" title="ssl::stream::~stream"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="overload1.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../write_some.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../boost_asio.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../_stream.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="boost_asio.reference.ssl__stream.write_some.overload2"></a><a class="link" href="overload2.html" title="ssl::stream::write_some (2 of 2 overloads)">ssl::stream::write_some (2 of 2 overloads)</a> </h5></div></div></div> <p> Write some data to the stream. </p> <pre class="programlisting"><span class="keyword">template</span><span class="special">&lt;</span> <span class="keyword">typename</span> <a class="link" href="../../ConstBufferSequence.html" title="Constant buffer sequence requirements">ConstBufferSequence</a><span class="special">&gt;</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <span class="identifier">write_some</span><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">ConstBufferSequence</span> <span class="special">&amp;</span> <span class="identifier">buffers</span><span class="special">,</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&amp;</span> <span class="identifier">ec</span><span class="special">);</span> </pre> <p> This function is used to write data on the stream. The function call will block until one or more bytes of data has been written successfully, or until an error occurs. </p> <h6> <a name="boost_asio.reference.ssl__stream.write_some.overload2.h0"></a> <span><a name="boost_asio.reference.ssl__stream.write_some.overload2.parameters"></a></span><a class="link" href="overload2.html#boost_asio.reference.ssl__stream.write_some.overload2.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl> <dt><span class="term">buffers</span></dt> <dd><p> The data to be written to the stream. </p></dd> <dt><span class="term">ec</span></dt> <dd><p> Set to indicate what error occurred, if any. </p></dd> </dl> </div> <h6> <a name="boost_asio.reference.ssl__stream.write_some.overload2.h1"></a> <span><a name="boost_asio.reference.ssl__stream.write_some.overload2.return_value"></a></span><a class="link" href="overload2.html#boost_asio.reference.ssl__stream.write_some.overload2.return_value">Return Value</a> </h6> <p> The number of bytes written. Returns 0 if an error occurred. </p> <h6> <a name="boost_asio.reference.ssl__stream.write_some.overload2.h2"></a> <span><a name="boost_asio.reference.ssl__stream.write_some.overload2.remarks"></a></span><a class="link" href="overload2.html#boost_asio.reference.ssl__stream.write_some.overload2.remarks">Remarks</a> </h6> <p> The write_some operation may not transmit all of the data to the peer. Consider using the <a class="link" href="../../write.html" title="write"><code class="computeroutput"><span class="identifier">write</span></code></a> function if you need to ensure that all data is written before the blocking operation completes. </p> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2012 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="overload1.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../write_some.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../boost_asio.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="../_stream.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
npminstall/ink-docstrap/themes/spacelab/format.html
guoguogis/ng-nice
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>DocStrap Module: strings/format</title> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/sunlight.default.css"> <link type="text/css" rel="stylesheet" href="styles/site.spacelab.css"> </head> <body> <div class="container-fluid"> <div class="navbar navbar-fixed-top navbar-inverse"> <div class="navbar-inner"> <a class="brand" href="index.html">DocStrap</a> <ul class="nav"> <li class="dropdown"> <a href="modules.list.html" class="dropdown-toggle" data-toggle="dropdown">Modules<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="module-base.html">base</a> </li> <li> <a href="chains_.html">base/chains</a> </li> <li> <a href="binder.html">documents/binder</a> </li> <li> <a href="model_.html">documents/model</a> </li> <li> <a href="probe.html">documents/probe</a> </li> <li> <a href="schema_.html">documents/schema</a> </li> <li> <a href="collector.html">ink/collector</a> </li> <li> <a href="bussable_.html">mixins/bussable</a> </li> <li> <a href="signalable_.html">mixins/signalable</a> </li> <li> <a href="format.html">strings/format</a> </li> <li> <a href="logger.html">utils/logger</a> </li> </ul> </li> <li class="dropdown"> <a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="base.html">base</a> </li> <li> <a href="chains.html">base/chains</a> </li> <li> <a href="model.html">documents/model</a> </li> <li> <a href="probe.queryOperators.html">documents/probe.queryOperators</a> </li> <li> <a href="probe.updateOperators.html">documents/probe.updateOperators</a> </li> <li> <a href="collector-ACollector.html">ink/collector~ACollector</a> </li> <li> <a href="collector-CollectorBase_.html">ink/collector~CollectorBase</a> </li> <li> <a href="collector-OCollector.html">ink/collector~OCollector</a> </li> <li> <a href="signalable-Signal.html">mixins/signalable~Signal</a> </li> <li> <a href="logger.Logger.html">utils/logger.Logger</a> </li> </ul> </li> <li class="dropdown"> <a href="mixins.list.html" class="dropdown-toggle" data-toggle="dropdown">Mixins<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="schema.html">documents/schema</a> </li> <li> <a href="bussable.html">mixins/bussable</a> </li> <li> <a href="signalable.html">mixins/signalable</a> </li> </ul> </li> <li class="dropdown"> <a href="tutorials.list.html" class="dropdown-toggle" data-toggle="dropdown">Tutorials<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="tutorial-Teeth.html">Brush Teeth</a> </li> <li> <a href="tutorial-Car.html">Drive Car</a> </li> <li> <a href="tutorial-Test.html">Fence Test</a> </li> </ul> </li> <li class="dropdown"> <a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b class="caret"></b></a> <ul class="dropdown-menu "> <li> <a href="global.html#utils/logger">utils/logger</a> </li> </ul> </li> </ul> </div> </div> <div class="row-fluid"> <div class="span8"> <div id="main"> <h1 class="page-title">Module: strings/format</h1> <section> <header> <h2> strings/format </h2> </header> <article> <div class="container-overview"> <dt> <h4 class="name" id="module:strings/format"><span class="type-signature"></span>require("strings/format")<span class="signature">(format, args)</span><span class="type-signature"> &rarr; {string}</span></h4> </dt> <dd> <div class="description"> <p>Format a string quickly and easily using .net style format strings</p> </div> <h5>Parameters:</h5> <table class="params table table-striped"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Argument</th> <th class="last">Description</th> </tr> </thead> <tbody> <tr> <td class="name"><code>format</code></td> <td class="type"> <span class="param-type">string</span> </td> <td class="attributes"> </td> <td class="description last"><p>A string format like &quot;Hello {0}, now take off your {1}!&quot;</p></td> </tr> <tr> <td class="name"><code>args</code></td> <td class="type"> <span class="param-type">?</span> </td> <td class="attributes"> &lt;repeatable><br> </td> <td class="description last"><p>One argument per <code>{}</code> in the string, positionally replaced</p></td> </tr> </tbody> </table> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"> <ul class="dummy"> <li> <a href="format.js.html">strings/format.js</a>, <a href="format.js.html#sunlight-1-line-24">line 24</a> </li> </ul> </dd> </dl> <h5>Returns:</h5> <dl> <dt> Type </dt> <dd> <span class="param-type">string</span> </dd> </dl> <h5>Examples</h5> <pre class="sunlight-highlight-javascript">var strings = require(&quot;papyrus&#x2F;strings&quot;); var s = strings.format(&quot;Hello {0}&quot;, &quot;Madame Vastra&quot;); &#x2F;&#x2F; s = &quot;Hello Madame Vastra&quot;</pre> <pre class="sunlight-highlight-xml"> &lt;span&gt; &lt;%= strings.format(&quot;Hello {0}&quot;, &quot;Madame Vastra&quot;) %&gt; &lt;&#x2F;span&gt;</pre> </dd> <div class="description"><p>String helper methods</p></div> <dl class="details"> <dt class="tag-source">Source:</dt> <dd class="tag-source"> <ul class="dummy"> <li> <a href="format.js.html">strings/format.js</a>, <a href="format.js.html#sunlight-1-line-2">line 2</a> </li> </ul> </dd> </dl> </div> </article> </section> </div> <div class="clearfix"></div> <footer> <span class="copyright"> DocStrap Copyright © 2012-2013 The contributors to the JSDoc3 and DocStrap projects. </span> <br /> <span class="jsdoc-message"> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha5</a> on Mon Jul 7th 2014 using the <a href="https://github.com/terryweiss/docstrap">DocStrap template</a>. </span> </footer> </div> <div class="span3"> <div id="toc"></div> </div> <br clear="both"> </div> </div> <!--<script src="scripts/sunlight.js"></script>--> <script src="scripts/docstrap.lib.js"></script> <script src="scripts/bootstrap-dropdown.js"></script> <script src="scripts/toc.js"></script> <script> $( function () { $( "[id*='$']" ).each( function () { var $this = $( this ); $this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) ); } ); $( "#toc" ).toc( { anchorName : function ( i, heading, prefix ) { return $( heading ).attr( "id" ) || ( prefix + i ); }, selectors : "h1,h2,h3,h4", showAndHide : false, scrollTo : "100px" } ); $( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" ); $( "#main span[id^='toc']" ).addClass( "toc-shim" ); $( '.dropdown-toggle' ).dropdown(); // $( ".tutorial-section pre, .readme-section pre" ).addClass( "sunlight-highlight-javascript" ).addClass( "linenums" ); $( ".tutorial-section pre, .readme-section pre" ).each( function () { var $this = $( this ); var example = $this.find( "code" ); exampleText = example.html(); var lang = /{@lang (.*?)}/.exec( exampleText ); if ( lang && lang[1] ) { exampleText = exampleText.replace( lang[0], "" ); example.html( exampleText ); lang = lang[1]; } else { lang = "javascript"; } if ( lang ) { $this .addClass( "sunlight-highlight-" + lang ) .addClass( "linenums" ) .html( example.html() ); } } ); Sunlight.highlightAll( { lineNumbers : true, showMenu : true, enableDoclinks : true } ); } ); </script> <!--Navigation and Symbol Display--> <!--Google Analytics--> </body> </html>
rktools/toolchain/linaro/share/doc/gcc-linaro-arm-linux-gnueabihf/html/as.html/CRIS_002dOpts.html
trlsmax/rk3188_kernel_tinyastro
<html lang="en"> <head> <title>CRIS-Opts - Using as</title> <meta http-equiv="Content-Type" content="text/html"> <meta name="description" content="Using as"> <meta name="generator" content="makeinfo 4.13"> <link title="Top" rel="start" href="index.html#Top"> <link rel="up" href="CRIS_002dDependent.html#CRIS_002dDependent" title="CRIS-Dependent"> <link rel="next" href="CRIS_002dExpand.html#CRIS_002dExpand" title="CRIS-Expand"> <link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage"> <!-- This file documents the GNU Assembler "as". Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled ``GNU Free Documentation License''. --> <meta http-equiv="Content-Style-Type" content="text/css"> <style type="text/css"><!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --></style> </head> <body> <div class="node"> <a name="CRIS-Opts"></a> <a name="CRIS_002dOpts"></a> <p> Next:&nbsp;<a rel="next" accesskey="n" href="CRIS_002dExpand.html#CRIS_002dExpand">CRIS-Expand</a>, Up:&nbsp;<a rel="up" accesskey="u" href="CRIS_002dDependent.html#CRIS_002dDependent">CRIS-Dependent</a> <hr> </div> <h4 class="subsection">9.8.1 Command-line Options</h4> <p><a name="index-options_002c-CRIS-745"></a><a name="index-CRIS-options-746"></a>The CRIS version of <code>as</code> has these machine-dependent command-line options. <p><a name="index-g_t_0040option_007b_002d_002demulation_003dcriself_007d-command-line-option_002c-CRIS-747"></a><a name="index-g_t_0040option_007b_002d_002demulation_003dcrisaout_007d-command-line-option_002c-CRIS-748"></a><a name="index-CRIS-_0040option_007b_002d_002demulation_003dcriself_007d-command-line-option-749"></a><a name="index-CRIS-_0040option_007b_002d_002demulation_003dcrisaout_007d-command-line-option-750"></a> The format of the generated object files can be either ELF or a.out, specified by the command-line options <samp><span class="option">--emulation=crisaout</span></samp> and <samp><span class="option">--emulation=criself</span></samp>. The default is ELF (criself), unless <code>as</code> has been configured specifically for a.out by using the configuration name <code>cris-axis-aout</code>. <p><a name="index-g_t_0040option_007b_002d_002dunderscore_007d-command-line-option_002c-CRIS-751"></a><a name="index-g_t_0040option_007b_002d_002dno_002dunderscore_007d-command-line-option_002c-CRIS-752"></a><a name="index-CRIS-_0040option_007b_002d_002dunderscore_007d-command-line-option-753"></a><a name="index-CRIS-_0040option_007b_002d_002dno_002dunderscore_007d-command-line-option-754"></a>There are two different link-incompatible ELF object file variants for CRIS, for use in environments where symbols are expected to be prefixed by a leading &lsquo;<samp><span class="samp">_</span></samp>&rsquo; character and for environments without such a symbol prefix. The variant used for GNU/Linux port has no symbol prefix. Which variant to produce is specified by either of the options <samp><span class="option">--underscore</span></samp> and <samp><span class="option">--no-underscore</span></samp>. The default is <samp><span class="option">--underscore</span></samp>. Since symbols in CRIS a.out objects are expected to have a &lsquo;<samp><span class="samp">_</span></samp>&rsquo; prefix, specifying <samp><span class="option">--no-underscore</span></samp> when generating a.out objects is an error. Besides the object format difference, the effect of this option is to parse register names differently (see <a href="crisnous.html#crisnous">crisnous</a>). The <samp><span class="option">--no-underscore</span></samp> option makes a &lsquo;<samp><span class="samp">$</span></samp>&rsquo; register prefix mandatory. <p><a name="index-g_t_0040option_007b_002d_002dpic_007d-command-line-option_002c-CRIS-755"></a><a name="index-CRIS-_0040option_007b_002d_002dpic_007d-command-line-option-756"></a><a name="index-Position_002dindependent-code_002c-CRIS-757"></a><a name="index-CRIS-position_002dindependent-code-758"></a>The option <samp><span class="option">--pic</span></samp> must be passed to <code>as</code> in order to recognize the symbol syntax used for ELF (SVR4 PIC) position-independent-code (see <a href="crispic.html#crispic">crispic</a>). This will also affect expansion of instructions. The expansion with <samp><span class="option">--pic</span></samp> will use PC-relative rather than (slightly faster) absolute addresses in those expansions. This option is only valid when generating ELF format object files. <p><a name="index-g_t_0040option_007b_002d_002dmarch_003d_0040var_007barchitecture_007d_007d-command-line-option_002c-CRIS-759"></a><a name="index-CRIS-_0040option_007b_002d_002dmarch_003d_0040var_007barchitecture_007d_007d-command-line-option-760"></a><a name="index-Architecture-variant-option_002c-CRIS-761"></a><a name="index-CRIS-architecture-variant-option-762"></a>The option <samp><span class="option">--march=</span><var>architecture</var></samp> <a name="march_002doption"></a>specifies the recognized instruction set and recognized register names. It also controls the architecture type of the object file. Valid values for <var>architecture</var> are: <dl> <dt><code>v0_v10</code><dd>All instructions and register names for any architecture variant in the set v0<small class="dots">...</small>v10 are recognized. This is the default if the target is configured as cris-*. <br><dt><code>v10</code><dd>Only instructions and register names for CRIS v10 (as found in ETRAX 100 LX) are recognized. This is the default if the target is configured as crisv10-*. <br><dt><code>v32</code><dd>Only instructions and register names for CRIS v32 (code name Guinness) are recognized. This is the default if the target is configured as crisv32-*. This value implies <samp><span class="option">--no-mul-bug-abort</span></samp>. (A subsequent <samp><span class="option">--mul-bug-abort</span></samp> will turn it back on.) <br><dt><code>common_v10_v32</code><dd>Only instructions with register names and addressing modes with opcodes common to the v10 and v32 are recognized. </dl> <p><a name="index-g_t_0040option_007b_002dN_007d-command-line-option_002c-CRIS-763"></a><a name="index-CRIS-_0040option_007b_002dN_007d-command-line-option-764"></a>When <samp><span class="option">-N</span></samp> is specified, <code>as</code> will emit a warning when a 16-bit branch instruction is expanded into a 32-bit multiple-instruction construct (see <a href="CRIS_002dExpand.html#CRIS_002dExpand">CRIS-Expand</a>). <p><a name="index-g_t_0040option_007b_002d_002dno_002dmul_002dbug_002dabort_007d-command-line-option_002c-CRIS-765"></a><a name="index-g_t_0040option_007b_002d_002dmul_002dbug_002dabort_007d-command-line-option_002c-CRIS-766"></a><a name="index-CRIS-_0040option_007b_002d_002dno_002dmul_002dbug_002dabort_007d-command-line-option-767"></a><a name="index-CRIS-_0040option_007b_002d_002dmul_002dbug_002dabort_007d-command-line-option-768"></a> Some versions of the CRIS v10, for example in the Etrax 100 LX, contain a bug that causes destabilizing memory accesses when a multiply instruction is executed with certain values in the first operand just before a cache-miss. When the <samp><span class="option">--mul-bug-abort</span></samp> command line option is active (the default value), <code>as</code> will refuse to assemble a file containing a multiply instruction at a dangerous offset, one that could be the last on a cache-line, or is in a section with insufficient alignment. This placement checking does not catch any case where the multiply instruction is dangerously placed because it is located in a delay-slot. The <samp><span class="option">--mul-bug-abort</span></samp> command line option turns off the checking. </body></html>
typo3/sysext/tstemplate/Resources/Private/Templates/Main.html
michaelklapper/TYPO3.CMS
<form action="{actionName}" method="post" enctype="multipart/form-data" id="TypoScriptTemplateModuleController" name="editForm" class="form"> <h1><f:translate key="moduleTitle" /></h1> <f:render partial="{partialName}" arguments="{content: content}" optional="1" /> <f:format.raw>{typoscriptTemplateModuleContent}</f:format.raw> </form>
etc/release-process.html
Infeligo/jgrapht
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <!-- /* ========================================== * JGraphT : a free Java graph-theory library * ========================================== * * Project Info: http://jgrapht.sourceforge.net/ * Project Lead: Barak Naveh (http://sourceforge.net/users/barak_naveh) * * (C) Copyright 2003-2013, by Barak Naveh and Contributors. * * This program and the accompanying materials are dual-licensed under * either * * (a) the terms of the GNU Lesser General Public License version 2.1 * as published by the Free Software Foundation, or (at your option) any * later version. * * or (per the licensee's choosing) * * (b) the terms of the Eclipse Public License v1.0 as published by * the Eclipse Foundation. */ /* ~~~~~~~~~~~~~ * release-process.html * ~~~~~~~~~~~~~ * (C) Copyright 2005-2006, by Barak Naveh and Contributors. * * Original Author: Barak Naveh * Contributor(s): John V. Sichi * * $Id$ * * Changes * ~~~~~~~ * 18-Jul-2005 : Initial revision added based on email from Barak (JVS); * 02-Jul-2006 : Updates for 0.7.0 (JVS); * 06-Dec-2013 : Updates for 0.9.0 (JVS); * */ --> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <meta name="Author" content="Barak Naveh"> <meta name="keywords" content= "JGraphT, graph, theory, graph-theory, free, java, LGPL, open-source"> <title>JGraphT Release Process</title> <style type="text/css"> <!-- body { font-family:Verdana; text-align:left; color:#000011; background-color:#FAFBFF; } a { COLOR: #336699; TEXT-DECORATION: underline; } a:visited { color: #663366; TEXT-DECORATION: underline; } a:hover { color: #FF9900; TEXT-DECORATION: underline; } code { font-family:Courier New; font-size:medium; } ol { list-style:decimal; } ul { list-style:disc; li { list-style:disc; margin-left:1em; margin-right:1em; line-height: 150%; } } p { margin-left:1em; margin-right:1em; line-height: 140%; } h1 { background-color:#7AA1E6; border-left:1px solid #245BCB; border-right:1px solid #245BCB; border-top:1px solid #245BCB; border-bottom:1px solid #245BCB; color:#FFFFFF; text-align:center; } h2 { border-left:0px solid Black; border-right:0px solid Black; border-top:0px solid Black; border-bottom:2px solid #7AA1E6; margin-top:50; color:#25507C; } h3 { border-left:0px solid Black; border-right:0px solid Black; border-top:0px solid Black; border-bottom:2px solid #7AA1E6; margin-top:30; color:#25507C; } table { border-collapse: collapse; } //--> </style> </head> <body> <h1><font size="7"><font color="#CC3399">J</font>Graph<font color= "#FFCC00">T</font></font> Release Process</h1><br> <ol> <li>Review the README.md, HISTORY.md, CONTRIBUTORS.md, and update: <ul> <li>Version <li>Dependencies <li>Release notes <li>Contributors <li>Copyright year </ul> <li>Review/update github issues to make sure they reflect the current state. If there were important bug/feature changes, it is worth mentioning them in the README.md release notes. <li>Run <code>mvn javadoc:aggregate</code> to build the javadoc and make sure it is generated without errors/warnings. Fix where necessary. Make sure Eclipse build is warning-free. <li>We used to run Checkstyle globally to make a "code quality review"; we may bring this back, and/or add PMD/FindBugs, and Emma for code coverage. <li>Run all the JUnit tests via <code>mvn test</code>. Fix where necessary. <li>Run <code>mvn jalopy:format</code> to reformat the code. <li>Commit all work and push to github. <li>Run <code>mvn -Dmaven.artifact.threads=1 clean deploy</code> to push the latest snapshot to Sonatype. <li>Run <code>mvn source:jar; mvn javadoc:jar; mvn release:prepare; mvn release:perform</code> to create the Maven artifacts and push them to Maven Central <li>Publish the release using the Sonatype UI <li>Run <code>mvn javadoc:aggregate; mvn install</code> from the new release branch to produce the release archive distribution <li>Upload the release archive distribution to SF and add it using the File Release System. <li>Update the website with the latest javadocs. <li>Update the website with links to the new downloads, version numbers, etc. <li>Announce the new version in the mailing lists. <li>Update and commit the version number in HISTORY.md to reflect the beginning of development for the next version. </ol> <hr noshade size="2" style= "background-color:#7AA1E6;color:#7AA1E6;border-width: thin none none;"> <table border="0" cellpadding="0" cellspacing="0" style= "border-collapse: collapse" width="100%"> <tr> <td width="10%" align="left"><a href= "http://validator.w3.org/check/referer"><img src= "http://www.w3.org/Icons/valid-html401" border="0" alt="Valid HTML 4.01!" height="31" width="88"></a></td> <td width="80%" align="center"><small>© Copyright 2005-2013, by Barak Naveh and Contributors. All rights reserved.</small></td> <td width="10%" align="right"><a href="http://sourceforge.net"><img src= "http://sourceforge.net/sflogo.php?group_id=86459&amp;type=1" width="88" height="31" border="0" alt="SourceForge.net Logo"></a></td> </tr> </table><br> </body> </html>
appinventor/docs/html/reference/other/extensionsRotation.html
kkashi01/appinventor-sources
<!DOCTYPE html> <html lang="en"><head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <link rel="stylesheet" href="/static/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet" href="/static/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous"> <link href="/static/css/fonts.css" rel="stylesheet"> <link rel="stylesheet" type="text/css" href="/static/css/mit_app_inventor.css"> <script type="text/javascript"> <!--//--><![CDATA[// ><!-- var gotoappinventor = function() { var referrer = document.location.pathname; var patt = /.*hour-of-code.*/; if (referrer.match(patt)) { window.open("http://code.appinventor.mit.edu/", "new"); } else { window.open("http://ai2.appinventor.mit.edu/", "new"); } } //--><!]]> </script> <title>Using App Inventor extensions to implement rotation</title></head> <body class="mit_app_inventor"><nav class="navbar navbar-expand-xl navbar-light"> <a class="navbar-brand" href="http://appinventor.mit.edu/"> <img src="/static/images/logo2.png" alt="Logo"> </a> <button type="button" class="btn create-btn" style="margin-right: 20px;" onclick="gotoappinventor();">Create Apps!</button> <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle Navigation"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarContent"> <ul class="navbar-nav" style="margin-left: auto;"> <li class="nav-item dropdown"> <a class="nav-link" href="http://appinventor.mit.edu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> About </a> <div class="dropdown-menu"> <a class="dropdown-item" href="http://appinventor.mit.edu/about-us">About App Inventor</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/our-team">Our Team</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/master-trainers">Master Trainers</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/app-month-gallery">App of the Month</a> <a class="dropdown-item" href="http://appinventor.mit.edu/ai2/ReleaseNotes">Release Notes</a> <a class="dropdown-item" href="http://appinventor.mit.edu/about/termsofservice" target="_blank">Terms of Service</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link" href="http://appinventor.mit.edu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Educators </a> <div class="dropdown-menu"> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/teach" target="_blank">Teach</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/ai2/tutorials">Tutorials</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link" href="http://appinventor.mit.edu/news" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> News </a> <div class="dropdown-menu"> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/news">In the news</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/events">Events</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/stories">Stories from the field</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link" href="http://appinventor.mit.edu/explore/resources" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Resources </a> <div class="dropdown-menu"> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/get-started">Get Started</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/library">Documentation</a> <a class="dropdown-item" href="https://community.appinventor.mit.edu" target="_blank">Forums</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/ai2/tutorials">Tutorials</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/books">App Inventor Books</a> <a class="dropdown-item" href="https://github.com/mit-cml/appinventor-sources" target="_blank">Open Source Information</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/research">Research</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/hour-of-code">Hour of Code</a> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/resources">Additional Resources</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link" href="http://appinventor.mit.edu" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Blogs </a> <div class="dropdown-menu"> <a class="dropdown-item" href="http://appinventor.mit.edu/explore/blog">App Inventor Blog</a> </div> </li> </ul> <div style="display: inline-flex;margin-left:auto;margin-right:0"> <a href="https://giving.mit.edu/give/to?fundId=3832320" target="_blank"> <button type="button" class="btn donate-btn" style="margin-right: 20px;">Donate</button></a> <script> (function() { var cx = '005719495929270354943:tlvxrelje-e'; var gcse = document.createElement('script'); gcse.type = 'text/javascript'; gcse.async = true; gcse.src = (document.location.protocol == 'https:' ? 'https:' : 'http:') + '//www.google.com/cse/cse.js?cx=' + cx; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(gcse, s); })(); </script> <gcse:searchbox-only></gcse:searchbox-only> </div> <!-- <form class="form-inline" action="/action_page.php"> <div class="form-group has-search"> <span class="fa fa-search form-control-feedback"></span> <input type="text" class="form-control" placeholder="Search"> </div> </form> --> </div> </nav> <div class="default-page"> <div class="header"> <h1 class="font-weight-bold text-center offset-xl-2 col-xl-8">Using App Inventor extensions to implement rotation</h1> </div> <div class="container-fluid"> <article class="documentation"> <p><a href="https://docs.google.com/document/d/1fRxTxLCNQlbaf0pcStHpyFpplkdDArsugLIBgV4awWU">Click here for a version of this page on which you can comment.</a></p> <iframe width="100%" height="6000" frameborder="0" scrolling="yes" id="frame1" src="https://docs.google.com/document/d/1fRxTxLCNQlbaf0pcStHpyFpplkdDArsugLIBgV4awWU/pub"> </iframe> </article> <script> // Handle redirection to documentation based on locale query parameter (if specified) (function() { var locale = window.location.search.match('[&?]locale=([a-zA-Z-]*)'); if (locale) { if (locale[1].indexOf('en') === 0) { // English needs to stay at the top level to not break existing links var page = window.location.pathname.split('/'); if (page.length === 5) { page.splice(2, 1); } else { // already on english return; } window.location.href = page.join('/'); } else { var page = window.location.pathname.split('/'); if (page.length === 4) { page.splice(2, 0, locale[1]); } else if (page[2].toLowerCase() != locale[1].toLowerCase()) { page[2] = locale[1]; } else { return; // already on the desired language } // Test that the page exists before redirecting. var xhr = new XMLHttpRequest(); xhr.open('HEAD', page.join('/'), false); xhr.onreadystatechange = function() { if (xhr.readyState == 4) { if ((xhr.status == 200 || xhr.status == 204)) { window.location.href = page.join('/'); } else if (xhr.status >= 400) { page.splice(2, 1); // go to english version window.location.href = page.join('/'); } } }; xhr.send(); } } })(); // Handle embedded documentation in help by removing website template if (window.self !== window.top) { setTimeout(function() { var videos = document.querySelectorAll('video'); for (var i = 0; i < videos.length; i++) { if (parseInt(videos[i].getAttribute('width')) > 360) { var aspect = parseInt(videos[i].getAttribute('height')) / parseInt(videos[i].getAttribute('width')); videos[i].setAttribute('width', '360'); videos[i].setAttribute('height', '' + (360 * aspect)); } } var h1 = document.querySelector('h1'); var article = document.querySelector('article'); article.insertBefore(h1, article.firstElementChild); document.body.innerHTML = article.outerHTML; }); } </script> </div> <div class="footer background-green"> <div class="row container"> <div class="col-xl-3"> <h3>MIT App Inventor</h3> <!-- <form class="form-inline" action="/action_page.php"> <div class="form-group has-search"> <span class="fa fa-search form-control-feedback"></span> <input type="text" class="form-control" placeholder="Search"> </div> </form> --> </div> <div class="col-xl-6 legal text-center"> <ul> <li> <a href="http://web.mit.edu" class="btn btn-link" role="button" target="_blank">© 2012-2020 Massachusetts Institute of Technology</a> </li> <li> <a href="http://creativecommons.org/licenses/by-sa/3.0/" target="_blank" class="btn btn-link" role="button">This work is licensed under a Creative Commons Attribution-ShareAlike 3.0</a> </li> <li> <a href="http://appinventor.mit.edu/about/termsofservice" target="_blank" class="btn btn-link" role="button">Terms of Service and Privacy Policy</a> </li> </ul> </div> <div class="col-xl-3 links"> <a href="https://community.appinventor.mit.edu" target="_blank">Support / Help</a><br> <a href="mailto:appinventor@mit.edu">Other Inquiries</a> <div> <span>Twitter:</span> <a href="https://twitter.com/mitappinventor" target="_blank" class="btn btn-link" role="button">@MITAppInventor</a> <div> <div> <span>GitHub:</span> <a href="https://github.com/mit-cml" class="btn btn-link" role="button" target="_blank">mit-cml</a> <div> </div> </div> </div> </div> </div> </div> </div> <script src="/static/js/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> <script src="/static/js/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script> <script src="/static/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script> <script async src="/static/js/widgets.js" charset="utf-8"></script> </div> </body> </html>
app/assets/stylesheets/rails_bootstrap_form.css
jKodrum/NASman
.rails-bootstrap-forms-date-select, .rails-bootstrap-forms-time-select, .rails-bootstrap-forms-datetime-select { select { display: inline-block; width: auto; } } .rails-bootstrap-forms-error-summary { margin-top: 10px; }
third_party/blink/web_tests/media/controls/captions-menu-always-visible-expected.html
scheib/chromium
<!DOCTYPE html> <title>Captions menu always visible - expected</title> <script src="../media-controls.js"></script> <script src="../../resources/run-after-layout-and-paint.js"></script> <style> video { position: relative; left: 200px; width: 100px; } </style> <video controls muted controlslist=nofullscreen></video> <script> function waitForVideoPresentation(video) { return new Promise(resolve => { video.requestVideoFrameCallback(resolve); }); } if (window.testRunner) testRunner.waitUntilDone(); var video = document.querySelector('video'); enableTestMode(video); video.src = '../content/test.ogv'; video.addTextTrack('captions', 'foo'); video.addTextTrack('captions', 'bar'); let videoPresentation = waitForVideoPresentation(video); video.addEventListener('loadedmetadata', () => { var coords = mediaControlsButtonCoordinates(video, "toggle-closed-captions-button"); clickAtCoordinates(coords[0], coords[1]); // Disabling pointer events on the text track menu to avoid a flakyness with // :hover sometimes applying. textTrackMenu(video).style = 'pointer-events: none;'; videoPresentation.then(() => { runAfterLayoutAndPaint(() => { testRunner.notifyDone(); }); }); }); </script>
ui/webui/resources/css/text_defaults.css
mohamed--abdel-maksoud/chromium.src
/* Copyright 2014 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ /* This file is dynamically processed by a C++ data source handler to fill in * some per-platform/locale styles that dramatically alter the page. This is * done to reduce flicker, as JS may not run before the page is rendered. * * Include this stylesheet via its chrome://resources/ URL, i.e.: * * <link rel="stylesheet" href="chrome://resources/css/font_defaults.css"> * * otherwise its $placeholders wont be expanded. */ html { direction: $1; } body { font-family: $2; font-size: $3; }
behavior/tests/PackageManagement/res/widget-version-1.html
qiuzhong/crosswalk-test-suite
<!DOCTYPE html> <!-- Copyright (c) 2013 Intel Corporation. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of works must retain the original copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the original copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this work without specific prior written permission. THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: Feng, GangX <gangx.feng@intel.com> --> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width" /> <link rel="stylesheet" type="text/css" href="../../../css/jquery.mobile.css" /> <link rel="stylesheet" type="text/css" href="../../../css/main.css" /> <script src="../../../js/thirdparty/jquery.js"></script> <script src="../../../js/thirdparty/jquery.mobile.js"></script> <script src="../../../js/tests.js"></script> <script src="../js/tests.js"></script> </head> <body> <div data-role="page" id="widget-version-1"> <div id="content"> <div> <input type="hidden" id="wgt_name" value="widget-version-1"/> <input type="hidden" id="app_id" value="wrt1wvt006.widgetversion"/> <input type="hidden" id="package_id" value="wrt1wvt006"/> </div> <ul data-role="listview"> <li data-role="list-divider">Package Install</li> <li> <div data-role="button" id="install" class="wgtButton">Install</div> </li> <li data-role="list-divider">Package Update</li> <li> <div data-role="button" id="launch" class="wgtButton">Update</div> </li> <li data-role="list-divider">Package Uninstall</li> <li> <div data-role="button" id="uninstall" class="wgtButton">Uninstall</div> </li> </ul> </div> <div data-role="footer" data-position="fixed" data-tap-toggle="false"> </div> <div data-role="popup" id="popup_info" data-theme="a"> <font class="fontSize"> <p>Test Step: </p> <ol> <li>Click the "Install" button to install the widget.</li> <li>Click the "Update" button to update the widget, during the updating close the terminal.</li> <li>Re-open this TC, click the "Uninstall" button to uninstall the widget.</li> </ol> <p>Expected Result: </p> <ul> <li>There is <strong>no error message</strong>.</li> <li>There is <strong>no system crash</strong>.</li> </ul> </font> </div> </div> </body> </html>
ajax/libs/oojs-ui/0.24.4/oojs-ui-wikimediaui-icons-editing-list.css
wout/cdnjs
/*! * OOjs UI v0.24.4 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2018 OOjs UI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2018-01-02T19:09:04Z */ /** * WikimediaUI Base v0.10.0 * Wikimedia Foundation user interface base variables */ .oo-ui-icon-indent { background-image: url('themes/wikimediaui/images/icons/indent-ltr.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/indent-ltr.svg'); } .oo-ui-image-invert.oo-ui-icon-indent { background-image: url('themes/wikimediaui/images/icons/indent-ltr-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/indent-ltr-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-indent { background-image: url('themes/wikimediaui/images/icons/indent-ltr-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/indent-ltr-progressive.svg'); } .oo-ui-icon-listBullet { background-image: url('themes/wikimediaui/images/icons/listBullet-ltr.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/listBullet-ltr.svg'); } .oo-ui-image-invert.oo-ui-icon-listBullet { background-image: url('themes/wikimediaui/images/icons/listBullet-ltr-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/listBullet-ltr-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-listBullet { background-image: url('themes/wikimediaui/images/icons/listBullet-ltr-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/listBullet-ltr-progressive.svg'); } .oo-ui-icon-listNumbered { background-image: url('themes/wikimediaui/images/icons/listNumbered-ltr.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/listNumbered-ltr.svg'); } .oo-ui-image-invert.oo-ui-icon-listNumbered { background-image: url('themes/wikimediaui/images/icons/listNumbered-ltr-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/listNumbered-ltr-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-listNumbered { background-image: url('themes/wikimediaui/images/icons/listNumbered-ltr-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/listNumbered-ltr-progressive.svg'); } .oo-ui-icon-outdent { background-image: url('themes/wikimediaui/images/icons/outdent-ltr.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/outdent-ltr.svg'); } .oo-ui-image-invert.oo-ui-icon-outdent { background-image: url('themes/wikimediaui/images/icons/outdent-ltr-invert.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/outdent-ltr-invert.svg'); } .oo-ui-image-progressive.oo-ui-icon-outdent { background-image: url('themes/wikimediaui/images/icons/outdent-ltr-progressive.png'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/outdent-ltr-progressive.svg'); }
server_code/commons-lang3-3.4/apidocs/org/apache/commons/lang3/text/class-use/FormatFactory.html
andrei128x/NuCS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>Uses of Interface org.apache.commons.lang3.text.FormatFactory (Apache Commons Lang 3.4 API)</title> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Interface org.apache.commons.lang3.text.FormatFactory (Apache Commons Lang 3.4 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/lang3/text/FormatFactory.html" title="interface in org.apache.commons.lang3.text">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/lang3/text/class-use/FormatFactory.html" target="_top">Frames</a></li> <li><a href="FormatFactory.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 Interface org.apache.commons.lang3.text.FormatFactory" class="title">Uses of Interface<br>org.apache.commons.lang3.text.FormatFactory</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/commons/lang3/text/FormatFactory.html" title="interface in org.apache.commons.lang3.text">FormatFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.commons.lang3.text">org.apache.commons.lang3.text</a></td> <td class="colLast"> <div class="block"> Provides classes for handling and manipulating text, partly as an extension to <a href="http://docs.oracle.com/javase/7/docs/api/java/text/package-summary.html?is-external=true"><code>java.text</code></a>.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.commons.lang3.text"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/commons/lang3/text/FormatFactory.html" title="interface in org.apache.commons.lang3.text">FormatFactory</a> in <a href="../../../../../../org/apache/commons/lang3/text/package-summary.html">org.apache.commons.lang3.text</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> <caption><span>Constructor parameters in <a href="../../../../../../org/apache/commons/lang3/text/package-summary.html">org.apache.commons.lang3.text</a> with type arguments of type <a href="../../../../../../org/apache/commons/lang3/text/FormatFactory.html" title="interface in org.apache.commons.lang3.text">FormatFactory</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/lang3/text/ExtendedMessageFormat.html#ExtendedMessageFormat(java.lang.String,%20java.util.Locale,%20java.util.Map)">ExtendedMessageFormat</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;pattern, <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Locale.html?is-external=true" title="class or interface in java.util">Locale</a>&nbsp;locale, <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,? extends <a href="../../../../../../org/apache/commons/lang3/text/FormatFactory.html" title="interface in org.apache.commons.lang3.text">FormatFactory</a>&gt;&nbsp;registry)</code> <div class="block">Create a new ExtendedMessageFormat.</div> </td> </tr> <tr class="rowColor"> <td class="colLast"><code><strong><a href="../../../../../../org/apache/commons/lang3/text/ExtendedMessageFormat.html#ExtendedMessageFormat(java.lang.String,%20java.util.Map)">ExtendedMessageFormat</a></strong>(<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;pattern, <a href="http://docs.oracle.com/javase/7/docs/api/java/util/Map.html?is-external=true" title="class or interface in java.util">Map</a>&lt;<a href="http://docs.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>,? extends <a href="../../../../../../org/apache/commons/lang3/text/FormatFactory.html" title="interface in org.apache.commons.lang3.text">FormatFactory</a>&gt;&nbsp;registry)</code> <div class="block">Create a new ExtendedMessageFormat for the default locale.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/commons/lang3/text/FormatFactory.html" title="interface in org.apache.commons.lang3.text">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-all.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/commons/lang3/text/class-use/FormatFactory.html" target="_top">Frames</a></li> <li><a href="FormatFactory.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2001&#x2013;2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p> </body> </html>
vendor/plugins/stable/test/sass/results/compact.css
bdeluca/earth2
#main { width: 15em; color: #0000ff; } #main p { border-style: dotted; border-width: 2px; } #main .cool { width: 100px; } #left { font-size: 2em; font-weight: bold; float: left; }
three/examples/webgl_geometry_normals.html
justindesrosiers/3dMajor
<!DOCTYPE html> <html lang="en"> <head> <title>three.js webgl - geometry - Subdivisions with Catmull-Clark</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { font-family: Monospace; background-color: #f0f0f0; margin: 0px; overflow: hidden; } </style> </head> <body> <script src="../build/three.js"></script> <script src="js/controls/OrbitControls.js"></script> <script src="js/libs/stats.min.js"></script> <script src="fonts/helvetiker_regular.typeface.js"></script> <script> var container, stats; var camera, controls, scene, renderer; var cube, plane; // Create new object by parameters var createSomething = function( klass, args ) { var F = function( klass, args ) { return klass.apply( this, args ); } F.prototype = klass.prototype; return new F( klass, args ); }; // Cube var materials = []; for ( var i = 0; i < 6; i ++ ) { materials.push( [ new THREE.MeshBasicMaterial( { color: Math.random() * 0xffffff, wireframe: false } ) ] ); } var geometriesParams = [ { type: 'CubeGeometry', args: [ 200, 200, 200, 2, 2, 2, materials ] }, { type: 'TorusGeometry', args: [ 100, 60, 12, 12 ] }, { type: 'TorusKnotGeometry', args: [ ] }, { type: 'SphereGeometry', args: [ 100, 12, 12 ] }, { type: 'SphereGeometry', args: [ 100, 5, 5 ] }, { type: 'SphereGeometry', args: [ 100, 13, 13 ] }, { type: 'IcosahedronGeometry', args: [ 100, 1 ] }, { type: 'CylinderGeometry', args: [ 25, 75, 200, 8, 3 ]} , { type: 'OctahedronGeometry', args: [200, 0] }, { type: 'LatheGeometry', args: [ [ new THREE.Vector3(0,0,-100), new THREE.Vector3(0,50,-50), new THREE.Vector3(0,10,0), new THREE.Vector3(0,50,050), new THREE.Vector3(0,0,100) ] ]}, { type: 'LatheGeometry', args: [ [ new THREE.Vector3(0,0,-100), new THREE.Vector3(0,50,-50), new THREE.Vector3(0,10,0), new THREE.Vector3(0,50,050), new THREE.Vector3(0,100,100) ], 12, 0, Math.PI ] }, { type: 'LatheGeometry', args: [ [ new THREE.Vector3(0,10,-100), new THREE.Vector3(0,50,-50), new THREE.Vector3(0,10,0), new THREE.Vector3(0,50,050), new THREE.Vector3(0,0,100) ], 12, Math.PI*2/3, Math.PI*3/2 ] }, { type: 'TextGeometry', args: ['&', { size: 200, height: 50, curveSegments: 1, font: "helvetiker" }]}, { type: 'PlaneGeometry', args: [ 200, 200, 4, 4 ] } ]; var info; var geometryIndex = 0; // start scene init(); animate(); function nextGeometry() { geometryIndex ++; if ( geometryIndex > geometriesParams.length - 1 ) { geometryIndex = 0; } addStuff(); } function switchGeometry(i) { geometryIndex = i; addStuff(); } function updateInfo() { var params = geometriesParams[ geometryIndex ]; var dropdown = '<select id="dropdown" onchange="switchGeometry(this.value)">'; for ( i = 0; i < geometriesParams.length; i ++ ) { dropdown += '<option value="' + i + '"'; dropdown += (geometryIndex == i) ? ' selected' : ''; dropdown += '>' + geometriesParams[i].type + '</option>'; } dropdown += '</select>'; var text = 'Drag to spin THREE.' + params.type + '<br>' + '<br>Geometry: ' + dropdown + ' <a href="#" onclick="nextGeometry();return false;">next</a>'; text += '<br><br><font color="3333FF">Blue Arrows: Face Normals</font>' + '<br><font color="FF3333">Red Arrows: Vertex Normals before Geometry.mergeVertices</font>' + '<br>Black Arrows: Vertex Normals after Geometry.mergeVertices'; info.innerHTML = text; } function addStuff() { if ( window.group !== undefined ) { scene.remove( group ); } var params = geometriesParams[ geometryIndex ]; geometry = createSomething( THREE[ params.type ], params.args ); // scale geometry to a uniform size geometry.computeBoundingSphere(); var scaleFactor = 160 / geometry.boundingSphere.radius; geometry.applyMatrix( new THREE.Matrix4().makeScale( scaleFactor, scaleFactor, scaleFactor ) ); var originalGeometry = geometry.clone(); originalGeometry.computeFaceNormals(); originalGeometry.computeVertexNormals( true ); // in case of duplicated vertices geometry.mergeVertices(); geometry.computeCentroids(); geometry.computeFaceNormals(); geometry.computeVertexNormals( true ); updateInfo(); var faceABCD = "abcd"; var color, f, p, n, vertexIndex; for ( i = 0; i < geometry.faces.length; i ++ ) { f = geometry.faces[ i ]; n = ( f instanceof THREE.Face3 ) ? 3 : 4; for( var j = 0; j < n; j++ ) { vertexIndex = f[ faceABCD.charAt( j ) ]; p = geometry.vertices[ vertexIndex ]; color = new THREE.Color( 0xffffff ); color.setHSL( ( p.y ) / 400 + 0.5, 1.0, 0.5 ); f.vertexColors[ j ] = color; } } group = new THREE.Object3D(); var mesh = new THREE.Mesh( geometry, new THREE.MeshBasicMaterial( { color: 0xfefefe, wireframe: true, opacity: 0.5 } ) ); group.add( mesh ); scene.add( group ); var fvNames = [ 'a', 'b', 'c', 'd' ]; var normalLength = 15; for( var f = 0, fl = geometry.faces.length; f < fl; f ++ ) { var face = geometry.faces[ f ]; var arrow = new THREE.ArrowHelper( face.normal, face.centroid, normalLength, 0x3333FF ); mesh.add( arrow ); } for( var f = 0, fl = originalGeometry.faces.length; f < fl; f ++ ) { var face = originalGeometry.faces[ f ]; if( face.vertexNormals === undefined ) { continue; } for( var v = 0, vl = face.vertexNormals.length; v < vl; v ++ ) { var arrow = new THREE.ArrowHelper( face.vertexNormals[ v ], originalGeometry.vertices[ face[ fvNames[ v ] ] ], normalLength, 0xFF3333 ); mesh.add( arrow ); } } for( var f = 0, fl = mesh.geometry.faces.length; f < fl; f ++ ) { var face = mesh.geometry.faces[ f ]; if( face.vertexNormals === undefined ) { continue; } for( var v = 0, vl = face.vertexNormals.length; v < vl; v ++ ) { var arrow = new THREE.ArrowHelper( face.vertexNormals[ v ], mesh.geometry.vertices[ face[ fvNames[ v ] ] ], normalLength, 0x000000 ); mesh.add( arrow ); } } } function init() { container = document.createElement( 'div' ); document.body.appendChild( container ); info = document.createElement( 'div' ); info.style.position = 'absolute'; info.style.top = '10px'; info.style.width = '100%'; info.style.textAlign = 'center'; info.innerHTML = 'Drag to spin the geometry '; container.appendChild( info ); camera = new THREE.PerspectiveCamera( 70, window.innerWidth / window.innerHeight, 1, 1000 ); camera.position.z = 500; controls = new THREE.OrbitControls( camera ); scene = new THREE.Scene(); var light = new THREE.PointLight( 0xffffff, 1.5 ); light.position.set( 1000, 1000, 2000 ); scene.add( light ); addStuff(); renderer = new THREE.WebGLRenderer( { antialias: true } ); // WebGLRenderer CanvasRenderer renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); stats = new Stats(); stats.domElement.style.position = 'absolute'; stats.domElement.style.top = '0px'; container.appendChild( stats.domElement ); // window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize( window.innerWidth, window.innerHeight ); } // function animate() { requestAnimationFrame( animate ); controls.update(); render(); stats.update(); } function render() { renderer.render( scene, camera ); } </script> </body> </html>
docs/html/node61.html
erdincay/clamav-devel
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!--Converted with LaTeX2HTML 2008 (1.71) original version by: Nikos Drakos, CBLU, University of Leeds * revised and updated by: Marcus Hennecke, Ross Moore, Herb Swan * with significant contributions from: Jens Lippmann, Marek Rouchal, Martin Wilck and others --> <HTML> <HEAD> <TITLE>Example</TITLE> <META NAME="description" CONTENT="Example"> <META NAME="keywords" CONTENT="clamdoc"> <META NAME="resource-type" CONTENT="document"> <META NAME="distribution" CONTENT="global"> <META NAME="Generator" CONTENT="LaTeX2HTML v2008"> <META HTTP-EQUIV="Content-Style-Type" CONTENT="text/css"> <LINK REL="STYLESHEET" HREF="clamdoc.css"> <LINK REL="previous" HREF="node60.html"> <LINK REL="up" HREF="node49.html"> <LINK REL="next" HREF="node62.html"> </HEAD> <BODY > <DIV CLASS="navigation"><!--Navigation Panel--> <A NAME="tex2html1017" HREF="node62.html"> <IMG WIDTH="37" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="next" SRC="next.png"></A> <A NAME="tex2html1013" HREF="node49.html"> <IMG WIDTH="26" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="up" SRC="up.png"></A> <A NAME="tex2html1009" HREF="node60.html"> <IMG WIDTH="63" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="previous" SRC="prev.png"></A> <A NAME="tex2html1015" HREF="node1.html"> <IMG WIDTH="65" HEIGHT="24" ALIGN="BOTTOM" BORDER="0" ALT="contents" SRC="contents.png"></A> <BR> <B> Next:</B> <A NAME="tex2html1018" HREF="node62.html">CVD format</A> <B> Up:</B> <A NAME="tex2html1014" HREF="node49.html">API</A> <B> Previous:</B> <A NAME="tex2html1010" HREF="node60.html">clamav-config</A> &nbsp; <B> <A NAME="tex2html1016" HREF="node1.html">Contents</A></B> <BR> <BR></DIV> <!--End of Navigation Panel--> <H3><A NAME="SECTION000731200000000000000"> Example</A> </H3> You will find an example scanner application in the clamav source package (/example). Provided you have ClamAV already installed, execute the following to compile it: <PRE> gcc -Wall ex1.c -o ex1 -lclamav </PRE> <P> <BR><HR> <ADDRESS> Sourcefire 2013-04-16 </ADDRESS> </BODY> </HTML>
www_source/js/webix/samples/08_chart/05_line_chart/05_series.html
ByTiger/LearnWhatYouNeed
<!doctype html> <html> <head> <title>Line Chart: Several Graphs in One Chart</title> <script src="../../../codebase/webix.js" type="text/javascript"></script> <link rel="STYLESHEET" type="text/css" href="../../../codebase/webix.css"> <script src="../../common/chartdata.js"></script> <body> <div id="chartDiv" style="width:600px;height:250px;margin:20px"></div> <script> webix.ui({ view:"chart", container:"chartDiv", type:"line", xAxis:{ template:"'#year#" }, yAxis:{ start:0, step:10, end: 100 }, legend:{ values:[{text:"Company A",color:"#1293f8"},{text:"Company B",color:"#66cc00"}], align:"right", valign:"middle", layout:"y", width: 100, margin: 8 }, series:[ { value:"#sales#", item:{ borderColor: "#1293f8", color: "#ffffff" }, line:{ color:"#1293f8", width:3 }, tooltip:{ template:"#sales#" } }, { value:"#sales2#", item:{ borderColor: "#66cc00", color: "#ffffff" }, line:{ color:"#66cc00", width:3 }, tooltip:{ template:"#sales2#" } } ], data: multiple_dataset }); </script> </body> </html>
libs/boost/libs/gil/doc/html/g_i_l_0593.html
flingone/frameworks_base_cmds_remoted
<!-- Copyright 2008 Lubomir Bourdev and Hailin Jin Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) --> <!-- Copyright 2005-2007 Adobe Systems Incorporated Distributed under the MIT License (see accompanying file LICENSE_1_0_0.txt or a copy at http://stlab.adobe.com/licenses.html) Some files are held under additional license. Please see "http://stlab.adobe.com/licenses.html" for more information. --> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <TITLE>Generic Image Library: packed_image_type Struct Template Reference</TITLE> <META HTTP-EQUIV="content-type" CONTENT="text/html;charset=ISO-8859-1"/> <LINK TYPE="text/css" REL="stylesheet" HREF="adobe_source.css"/> </head> <body> <table border="0" cellspacing="0" cellpadding="0" style='width: 100%; margin: 0; padding: 0'><tr> <td width="100%" valign="top" style='padding-left: 10px; padding-right: 10px; padding-bottom: 10px'> <div class="qindex"><a class="qindex" href="index.html">Modules</a> | <a class="qindex" href="classes.html">Alphabetical List</a> | <a class="qindex" href="annotated.html">Class List</a> | <a class="qindex" href="dirs.html">Directories</a> | <a class="qindex" href="files.html">File List</a> | <a class="qindex" href="../index.html">GIL Home Page</a> </div> <!-- End Header --> <!-- Generated by Doxygen 1.5.6 --> <div class="navpath"><a class="el" href="namespaceboost.html">boost</a>::<b>gil</b>::<a class="el" href="g_i_l_0593.html">packed_image_type</a> </div> <div class="contents"> <h1>packed_image_type Struct Template Reference<br> <small> [<a class="el" href="g_i_l_0222.html">packed_image_type,bit_aligned_image_type</a>]</small> </h1><!-- doxytag: class="boost::gil::packed_image_type" --><code>#include &lt;<a class="el" href="g_i_l_0237.html">metafunctions.hpp</a>&gt;</code> <p> <p> <a href="g_i_l_0592.html">List of all members.</a><hr><a name="_details"></a><h2>Detailed Description</h2> <h3>template&lt;typename BitField, typename ChannelBitSizeVector, typename Layout, typename Alloc = std::allocator&lt;unsigned char&gt;&gt;<br> struct boost::gil::packed_image_type&lt; BitField, ChannelBitSizeVector, Layout, Alloc &gt;</h3> Returns the type of an interleaved packed <a class="el" href="g_i_l_0038.html" title="container interface over image view. Models ImageConcept, PixelBasedConcept">image</a>: an <a class="el" href="g_i_l_0038.html" title="container interface over image view. Models ImageConcept, PixelBasedConcept">image</a> whose channels may not be byte-aligned, but whose pixels are byte aligned. <table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Public Types</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="af66dc2c847e263efe7a5c20a62331de"></a><!-- doxytag: member="boost::gil::packed_image_type::type" ref="af66dc2c847e263efe7a5c20a62331de" args="" --> typedef <a class="el" href="g_i_l_0038.html">image</a>&lt; typename <br> <a class="el" href="g_i_l_0597.html">packed_pixel_type</a>&lt; BitField, <br> ChannelBitSizeVector, Layout &gt;<br> ::<a class="el" href="g_i_l_0038.html">type</a>, false, Alloc &gt;&nbsp;</td><td class="memItemRight" valign="bottom"><b>type</b></td></tr> </table> <hr>The documentation for this struct was generated from the following file:<ul> <li><a class="el" href="g_i_l_0237.html">metafunctions.hpp</a></ul> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Sat May 2 13:50:18 2009 for Generic Image Library by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.5.6 </small></address> </body> </html>
surface2/domelements/bower_components/iron-list/demo/cards.html
ms123s/simpl4-src
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <!doctype html> <html> <head> <title>iron-list demo</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1, user-scalable=no"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <script src="../../webcomponentsjs/webcomponents-lite.js"></script> <link rel="import" href="../../polymer/polymer.html"> <link rel="import" href="../../iron-flex-layout/iron-flex-layout.html"> <link rel="import" href="../../app-layout/app-scroll-effects/app-scroll-effects.html"> <link rel="import" href="../../app-layout/app-header/app-header.html"> <link rel="import" href="../../app-layout/app-toolbar/app-toolbar.html"> <link rel="import" href="../../paper-icon-button/paper-icon-button.html"> <link rel="import" href="../../iron-ajax/iron-ajax.html"> <link rel="import" href="../../iron-icons/iron-icons.html"> <link rel="import" href="../../iron-image/iron-image.html"> <link rel="import" href="../iron-list.html"> <custom-style> <style is="custom-style"> body { @apply --layout-fullbleed; font-family: 'Roboto', 'Noto', sans-serif; background-color: #eee; } </style> </custom-style> </head> <body unresolved> <dom-module id="x-list"> <template> <style> :host { display: block; } app-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1; background-color: #0b8043; color: white; --app-header-background-front-layer: { background-color: #4285f4; }; } app-header paper-icon-button { --paper-icon-button-ink-color: white; } [main-title] { font-weight: 400; margin: 0 0 0 50px; } [condensed-title] { font-size: 18px; font-weight: 400; margin-left: 30px; } [condensed-title] i { font-style: normal; font-weight: 100; } app-toolbar.tall { height: 148px; } iron-list { padding-top: 148px; margin-top: 64px; padding-bottom: 16px; } .item { @apply --layout-horizontal; padding: 20px; border-radius: 8px; background-color: white; border: 1px solid #ddd; max-width: 800px; margin: 16px auto 0 auto; } .item:focus { outline: 0; border-color: #333; } .avatar { height: 40px; width: 40px; border-radius: 20px; box-sizing: border-box; background-color: #DDD; } .pad { padding: 0 16px; @apply --layout-flex; @apply --layout-vertical; } .primary { font-size: 16px; font-weight: bold; } .secondary { font-size: 14px; } .dim { color: gray; } .spacer { @apply --layout-flex; } </style> <iron-ajax url="data/contacts.json" last-response="{{data}}" auto></iron-ajax> <app-header condenses fixed effects="resize-title blend-background waterfall"> <app-toolbar> <paper-icon-button icon="menu" drawer-toggle></paper-icon-button> <h4 condensed-title>iron-list <i>&mdash; Demo</i></h4> <paper-icon-button icon="search"></paper-icon-button> <paper-icon-button icon="more-vert"></paper-icon-button> </app-toolbar> <app-toolbar class="tall"> <h1 main-title>iron-list</h1> </app-toolbar> </app-header> <!-- iron-list using the document scroll --> <iron-list items="[[data]]" as="item" scroll-target="document"> <template> <div> <div class="item" tabindex$="[[tabIndex]]"> <iron-image class="avatar" sizing="contain" src="[[item.image]]"></iron-image> <div class="pad"> <input type="text" name="value"> <div class="primary">[[item.name]] [[index]]</div> <div> <a href="#">Link 1</a> <a href="#">Link 2</a> <a href="#">Link 3</a> <a href="#">Link 4</a> </div> <div class="secondary">[[item.shortText]]</div> <div class="secondary dim">[[item.longText]]</div> </div> </div> </div> </template> </iron-list> </template> <script> HTMLImports.whenReady(function() { Polymer({ is: 'x-list' }); }); </script> </dom-module> <x-list></x-list> </body> </html>
node_modules/zombie/node_modules/html5/data/tree-construction/tests6.dat-11/input.html
danpomerantz/buses
<frameset></frameset> </div>
lib/core-components/famous-tests/pass-through/pass-through.html
Famous/framework
<node id='container'> <node id='label'> <h4>Pass through example</h4> <div>Public Messages are being directly passed through to child components without having to set up an indirect events --> behaviors pipeline.</div> <br> <div>Send messages to the subcomponents via: <br> FamousFramework.message('[[root selector]]', '$root', '[[event-name]]', '[[value]]');</div> </node> <node id='block-view'> <node id='one' class='block'> <div>Passthrough: <br> '*'</div> </node> <node id='two' class='block'> <div>Passthrough: <br> ['content', 'scale', 'style']</div> </node> <node id='three' class='block'> <div>Passthrough: <br> {'block-size' : 'size'}</div> </node> </node> <child-component id='child'></child-component> </node>
tools/dts-verifier/index.html
edrohler/winjs
<!-- Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. --> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <title>dts-verifier</title> <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height, target-densitydpi=device-dpi, minimal-ui" /> <meta name="msapplication-tap-highlight" content="no" /> <!-- Specify a path to the latest WinJS --> <script src="./winjs/js/base.js"></script> <script src="./winjs/js/ui.js"></script> <script src="./dts-verifier.js"></script> <script> (function () { WinJS.xhr({ url: 'dtsModel.json', responseType: 'json' }).then(function (result) { var TSModel = (typeof result.response === "string") ? JSON.parse(result.response) : result.response; dtsVerifier(WinJS, TSModel); }); })(); </script> </head> <body> <h2>See the JavaScript console for the results.</h2> </body> </html>
sites/all/libraries/phpexcel/Documentation/API/classes/PHPExcel_Worksheet_CellIterator.html
khawanz/BSF-Drupal
<!DOCTYPE html><html 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; maximum-scale=1.0; user-scalable=0;"> <meta charset="utf-8"> <title>PHPExcel classes » \PHPExcel_Worksheet_CellIterator</title> <meta name="author" content="Mike van Riel"> <meta name="description" content=""> <link href="../css/template.css" rel="stylesheet" media="all"> <script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="../js/bootstrap.js" type="text/javascript"></script><script src="../js/template.js" type="text/javascript"></script><script src="../js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="../img/favicon.ico"> <link rel="apple-touch-icon" href="../img/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png"> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"><div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="../index.html">PHPExcel classes</a><div class="nav-collapse"><ul class="nav"> <li class="dropdown"> <a href="#api" class="dropdown-toggle" data-toggle="dropdown"> API Documentation <b class="caret"></b></a><ul class="dropdown-menu"> <li><a>Packages</a></li> <li><a href="../packages/Default.html"><i class="icon-folder-open"></i> Default</a></li> <li><a href="../packages/JAMA.html"><i class="icon-folder-open"></i> JAMA</a></li> <li><a href="../packages/JAMA%0D%0ACholesky%20decomposition%20class%0D%0AFor%20a%20symmetric,%20positive%20definite%20matrix%20A,%20the%20Cholesky%20decomposition%0D%0Ais%20an%20lower%20triangular%20matrix%20L%20so%20that%20A%20=%20L*L'.html"><i class="icon-folder-open"></i> JAMA Cholesky decomposition class For a symmetric, positive definite matrix A, the Cholesky decomposition is an lower triangular matrix L so that A = L*L'</a></li> <li><a href="../packages/JAMA%0D%0AClass%20to%20obtain%20eigenvalues%20and%20eigenvectors%20of%20a%20real%20matrix.html"><i class="icon-folder-open"></i> JAMA Class to obtain eigenvalues and eigenvectors of a real matrix</a></li> <li><a href="../packages/JAMA%0D%0AError%20handling.html"><i class="icon-folder-open"></i> JAMA Error handling</a></li> <li><a href="../packages/JAMA%0D%0AFor%20an%20m-by-n%20matrix%20A%20with%20m%20&gt;=%20n,%20the%20LU%20decomposition%20is%20an%20m-by-n%0D%0Aunit%20lower%20triangular%20matrix%20L,%20an%20n-by-n%20upper%20triangular%20matrix%20U,%0D%0Aand%20a%20permutation%20vector%20piv%20of%20length%20m%20so%20that%20A(piv,:)%20=%20L*U.html"><i class="icon-folder-open"></i> JAMA For an m-by-n matrix A with m &gt;= n, the LU decomposition is an m-by-n unit lower triangular matrix L, an n-by-n upper triangular matrix U, and a permutation vector piv of length m so that A(piv,:) = L*U</a></li> <li><a href="../packages/JAMA%0D%0AFor%20an%20m-by-n%20matrix%20A%20with%20m%20&gt;=%20n,%20the%20QR%20decomposition%20is%20an%20m-by-n%0D%0Aorthogonal%20matrix%20Q%20and%20an%20n-by-n%20upper%20triangular%20matrix%20R%20so%20that%0D%0AA%20=%20Q*R.html"><i class="icon-folder-open"></i> JAMA For an m-by-n matrix A with m &gt;= n, the QR decomposition is an m-by-n orthogonal matrix Q and an n-by-n upper triangular matrix R so that A = Q*R</a></li> <li><a href="../packages/JAMA%0D%0AFor%20an%20m-by-n%20matrix%20A%20with%20m%20&gt;=%20n,%20the%20singular%20value%20decomposition%20is%0D%0Aan%20m-by-n%20orthogonal%20matrix%20U,%20an%20n-by-n%20diagonal%20matrix%20S,%20and%0D%0Aan%20n-by-n%20orthogonal%20matrix%20V%20so%20that%20A%20=%20U*S*V'.html"><i class="icon-folder-open"></i> JAMA For an m-by-n matrix A with m &gt;= n, the singular value decomposition is an m-by-n orthogonal matrix U, an n-by-n diagonal matrix S, and an n-by-n orthogonal matrix V so that A = U*S*V'</a></li> <li><a href="../packages/JAMA%0D%0APythagorean%20Theorem:%0D%0Aa%20=%203%0D%0Ab%20=%204%0D%0Ar%20=%20sqrt(square(a)%20+%20square(b))%0D%0Ar%20=%205%0D%0Ar%20=%20sqrt(a%5E2%20+%20b%5E2)%20without%20under.overflow.html"><i class="icon-folder-open"></i> JAMA Pythagorean Theorem: a = 3 b = 4 r = sqrt(square(a) + square(b)) r = 5 r = sqrt(a^2 + b^2) without under/overflow</a></li> <li><a href="../packages/PHPExcel.html"><i class="icon-folder-open"></i> PHPExcel</a></li> </ul> </li> <li class="dropdown" id="charts-menu"> <a href="#charts" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="../graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul> </li> <li class="dropdown" id="reports-menu"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b></a><ul class="dropdown-menu"> <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <span class="label label-info">519</span></a></li> <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <ul> <li>todo  <span class="label label-info">19</span> </li> <li>fixme  <span class="label label-info">10</span> </li> </ul></a></li> <li><a href="../deprecated.html"><i class="icon-stop"></i> Deprecated elements  <span class="label label-info">12</span></a></li> </ul> </li> </ul></div> </div></div> <div class="go_to_top"><a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a></div> </div> <div id="___" class="container"> <noscript><div class="alert alert-warning"> Javascript is disabled; several features are only available if Javascript is enabled. </div></noscript> <div class="row"> <div class="span4"> <span class="btn-group visibility" data-toggle="buttons-checkbox"><button class="btn public active" title="Show public elements">Public</button><button class="btn protected" title="Show protected elements">Protected</button><button class="btn private" title="Show private elements">Private</button><button class="btn inherited active" title="Show inherited elements">Inherited</button></span><div class="btn-group view pull-right" data-toggle="buttons-radio"> <button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button><button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button> </div> <ul class="side-nav nav nav-list"> <li class="nav-header"> <i class="icon-custom icon-method"></i> Methods <ul> <li class="method public "><a href="#method___construct" title="__construct :: Create a new cell iterator"><span class="description">Create a new cell iterator</span><pre>__construct()</pre></a></li> <li class="method public "><a href="#method___destruct" title="__destruct :: Destructor"><span class="description">Destructor</span><pre>__destruct()</pre></a></li> <li class="method public "><a href="#method_current" title="current :: Current PHPExcel_Cell"><span class="description">Current PHPExcel_Cell</span><pre>current()</pre></a></li> <li class="method public "><a href="#method_getIterateOnlyExistingCells" title="getIterateOnlyExistingCells :: Get loop only existing cells"><span class="description">Get loop only existing cells</span><pre>getIterateOnlyExistingCells()</pre></a></li> <li class="method public "><a href="#method_key" title="key :: Current key"><span class="description">Current key</span><pre>key()</pre></a></li> <li class="method public "><a href="#method_next" title="next :: Next value"><span class="description">Next value</span><pre>next()</pre></a></li> <li class="method public "><a href="#method_rewind" title="rewind :: Rewind iterator"><span class="description">Rewind iterator</span><pre>rewind()</pre></a></li> <li class="method public "><a href="#method_setIterateOnlyExistingCells" title="setIterateOnlyExistingCells :: Set the iterator to loop only existing cells"><span class="description">Set the iterator to loop only existing cells</span><pre>setIterateOnlyExistingCells()</pre></a></li> <li class="method public "><a href="#method_valid" title="valid :: Are there any more PHPExcel_Cell instances available?"><span class="description">Are there any more PHPExcel_Cell instances available?</span><pre>valid()</pre></a></li> </ul> </li> <li class="nav-header"> <i class="icon-custom icon-property"></i> Properties <ul></ul> </li> <li class="nav-header private">» Private <ul> <li class="property private "><a href="#property__onlyExistingCells" title="$_onlyExistingCells :: Loop only existing cells"><span class="description"></span><pre>$_onlyExistingCells</pre></a></li> <li class="property private "><a href="#property__position" title="$_position :: Current iterator position"><span class="description"></span><pre>$_position</pre></a></li> <li class="property private "><a href="#property__rowIndex" title="$_rowIndex :: Row index"><span class="description"></span><pre>$_rowIndex</pre></a></li> <li class="property private "><a href="#property__subject" title="$_subject :: PHPExcel_Worksheet to iterate"><span class="description"></span><pre>$_subject</pre></a></li> </ul> </li> </ul> </div> <div class="span8"> <a id="\PHPExcel_Worksheet_CellIterator"></a><ul class="breadcrumb"> <li> <a href="../index.html"><i class="icon-custom icon-class"></i></a><span class="divider">\</span> </li> <li><a href="../namespaces/global.html">global</a></li> <li class="active"> <span class="divider">\</span><a href="../classes/PHPExcel_Worksheet_CellIterator.html">PHPExcel_Worksheet_CellIterator</a> </li> </ul> <div class="element class"> <p class="short_description">PHPExcel_Worksheet_CellIterator</p> <div class="details"> <div class="long_description"><p>Used to iterate rows in a PHPExcel_Worksheet</p></div> <table class="table table-bordered"> <tr> <th>category</th> <td>PHPExcel</td> </tr> <tr> <th>package</th> <td><a href="../packages/PHPExcel.Worksheet.html">PHPExcel_Worksheet</a></td> </tr> <tr> <th>copyright</th> <td>Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel)</td> </tr> </table> <h3> <i class="icon-custom icon-method"></i> Methods</h3> <a id="method___construct"></a><div class="element clickable method public method___construct" data-toggle="collapse" data-target=".method___construct .collapse"> <h2>Create a new cell iterator</h2> <pre>__construct(\PHPExcel_Worksheet $subject, int $rowIndex) </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <h3>Parameters</h3> <div class="subelement argument"> <h4>$subject</h4> <code><a href="../classes/PHPExcel_Worksheet.html">\PHPExcel_Worksheet</a></code> </div> <div class="subelement argument"> <h4>$rowIndex</h4> <code>int</code> </div> </div></div> </div> <a id="method___destruct"></a><div class="element clickable method public method___destruct" data-toggle="collapse" data-target=".method___destruct .collapse"> <h2>Destructor</h2> <pre>__destruct() </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="method_current"></a><div class="element clickable method public method_current" data-toggle="collapse" data-target=".method_current .collapse"> <h2>Current PHPExcel_Cell</h2> <pre>current() : <a href="../classes/PHPExcel_Cell.html">\PHPExcel_Cell</a></pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <h3>Returns</h3> <div class="subelement response"><code><a href="../classes/PHPExcel_Cell.html">\PHPExcel_Cell</a></code></div> </div></div> </div> <a id="method_getIterateOnlyExistingCells"></a><div class="element clickable method public method_getIterateOnlyExistingCells" data-toggle="collapse" data-target=".method_getIterateOnlyExistingCells .collapse"> <h2>Get loop only existing cells</h2> <pre>getIterateOnlyExistingCells() : boolean</pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <h3>Returns</h3> <div class="subelement response"><code>boolean</code></div> </div></div> </div> <a id="method_key"></a><div class="element clickable method public method_key" data-toggle="collapse" data-target=".method_key .collapse"> <h2>Current key</h2> <pre>key() : int</pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <h3>Returns</h3> <div class="subelement response"><code>int</code></div> </div></div> </div> <a id="method_next"></a><div class="element clickable method public method_next" data-toggle="collapse" data-target=".method_next .collapse"> <h2>Next value</h2> <pre>next() </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="method_rewind"></a><div class="element clickable method public method_rewind" data-toggle="collapse" data-target=".method_rewind .collapse"> <h2>Rewind iterator</h2> <pre>rewind() </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="method_setIterateOnlyExistingCells"></a><div class="element clickable method public method_setIterateOnlyExistingCells" data-toggle="collapse" data-target=".method_setIterateOnlyExistingCells .collapse"> <h2>Set the iterator to loop only existing cells</h2> <pre>setIterateOnlyExistingCells(boolean $value) </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <h3>Parameters</h3> <div class="subelement argument"> <h4>$value</h4> <code>boolean</code> </div> </div></div> </div> <a id="method_valid"></a><div class="element clickable method public method_valid" data-toggle="collapse" data-target=".method_valid .collapse"> <h2>Are there any more PHPExcel_Cell instances available?</h2> <pre>valid() : boolean</pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <h3>Returns</h3> <div class="subelement response"><code>boolean</code></div> </div></div> </div> <h3> <i class="icon-custom icon-property"></i> Properties</h3> <a id="property__onlyExistingCells"> </a><div class="element clickable property private property__onlyExistingCells" data-toggle="collapse" data-target=".property__onlyExistingCells .collapse"> <h2></h2> <pre>$_onlyExistingCells : boolean</pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="property__position"> </a><div class="element clickable property private property__position" data-toggle="collapse" data-target=".property__position .collapse"> <h2></h2> <pre>$_position : int</pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="property__rowIndex"> </a><div class="element clickable property private property__rowIndex" data-toggle="collapse" data-target=".property__rowIndex .collapse"> <h2></h2> <pre>$_rowIndex : int</pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="property__subject"> </a><div class="element clickable property private property__subject" data-toggle="collapse" data-target=".property__subject .collapse"> <h2></h2> <pre>$_subject : <a href="../classes/PHPExcel_Worksheet.html">\PHPExcel_Worksheet</a></pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> </div> </div> </div> </div> <div class="row"><footer class="span12"> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a12</a> and<br> generated on 2013-06-02T15:42:51+01:00.<br></footer></div> </div> </body> </html>
typo3/sysext/backend/Resources/Public/Css/structure/element_csh.css
TimboDynamite/TYPO3-Testprojekt
/* - - - - - - - - - - - - - - - - - - - - - Context Sensitive Help (CSH) - - - - - - - - - - - - - - - - - - - - - */ a.typo3-csh-link span.typo3-csh-inline { display: none; } a.typo3-csh-link:hover span.typo3-csh-inline { display: block; } .t3-help-link span.t3-help-inline { display: none; } a.t3-help-link:hover span.t3-help-inline { display: block; }
www/projects/adslite/processing-1.4.1-examples/examples/basic/colorwheel.html
sazaam/oldworks
<!DOCTYPE html> <html> <head> <script src="../../processing.js"></script> <link rel="stylesheet" href="../style.css"/></head> <body><h1><a href="http://ejohn.org/blog/processingjs/">Processing.js</a></h1> <h2>ColorWheel</h2> <p>by Ira Greenberg. The primaries are red, yellow, and blue. The secondaries are green, purple, and orange. The tertiaries are yellow-orange, red-orange, red-purple, blue-purple, blue-green, and yellow-green. Create a shade or tint of the subtractive color wheel using SHADE or TINT parameters.</p> <p><a href="http://processing.org/learning/basics/colorwheel.html"><b>Original Processing.org Example:</b> ColorWheel</a><br> <script type="application/processing"> int segs = 12; int steps = 6; float rotAdjust = radians(360.0/segs/2.0); float radius = 95.0; float segWidth = radius/steps; float interval = TWO_PI/segs; int SHADE = 0; int TINT = 1; void setup(){ size(200, 200); background(127); smooth(); ellipseMode(CENTER_RADIUS); noStroke(); // you can substitue TINT for SHADE argument createWheel(width/2, height/2, SHADE); } void createWheel(int x, int y, int valueShift){ if (valueShift == SHADE){ for (int j=0; j<steps; j++){ color[]cols = { color(255-(255/steps)*j, 255-(255/steps)*j, 0), color(255-(255/steps)*j, (255/1.5)-((255/1.5)/steps)*j, 0), color(255-(255/steps)*j, (255/2)-((255/2)/steps)*j, 0), color(255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j, 0), color(255-(255/steps)*j, 0, 0), color(255-(255/steps)*j, 0, (255/2)-((255/2)/steps)*j), color(255-(255/steps)*j, 0, 255-(255/steps)*j), color((255/2)-((255/2)/steps)*j, 0, 255-(255/steps)*j), color(0, 0, 255-(255/steps)*j), color(0, 255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j), color(0, 255-(255/steps)*j, 0), color((255/2)-((255/2)/steps)*j, 255-(255/steps)*j, 0) }; for (int i=0; i< segs; i++){ fill(cols[i]); arc(x, y, radius, radius, interval*i+rotAdjust, interval*(i+1)+rotAdjust); } radius -= segWidth; } } else if (valueShift == TINT){ for (int j=0; j<steps; j++){ color[]cols = { color((255/steps)*j, (255/steps)*j, 0), color((255/steps)*j, ((255/1.5)/steps)*j, 0), color((255/steps)*j, ((255/2)/steps)*j, 0), color((255/steps)*j, ((255/2.5)/steps)*j, 0), color((255/steps)*j, 0, 0), color((255/steps)*j, 0, ((255/2)/steps)*j), color((255/steps)*j, 0, (255/steps)*j), color(((255/2)/steps)*j, 0, (255/steps)*j), color(0, 0, (255/steps)*j), color(0, (255/steps)*j, ((255/2.5)/steps)*j), color(0, (255/steps)*j, 0), color(((255/2)/steps)*j, (255/steps)*j, 0) }; for (int i=0; i< segs; i++){ fill(cols[i]); arc(x, y, radius, radius, interval*i+rotAdjust, interval*(i+1)+rotAdjust); } radius -= segWidth; } } } </script><canvas width="200" height="200"></canvas></p> <div style="height:0px;width:0px;overflow:hidden;"></div> <pre><b>// All Examples Written by <a href="http://reas.com/">Casey Reas</a> and <a href="http://benfry.com/">Ben Fry</a> // unless otherwise stated.</b> int segs = 12; int steps = 6; float rotAdjust = radians(360.0/segs/2.0); float radius = 95.0; float segWidth = radius/steps; float interval = TWO_PI/segs; int SHADE = 0; int TINT = 1; void setup(){ size(200, 200); background(127); smooth(); ellipseMode(CENTER_RADIUS); noStroke(); // you can substitue TINT for SHADE argument createWheel(width/2, height/2, SHADE); } void createWheel(int x, int y, int valueShift){ if (valueShift == SHADE){ for (int j=0; j&lt;steps; j++){ color[]cols = { color(255-(255/steps)*j, 255-(255/steps)*j, 0), color(255-(255/steps)*j, (255/1.5)-((255/1.5)/steps)*j, 0), color(255-(255/steps)*j, (255/2)-((255/2)/steps)*j, 0), color(255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j, 0), color(255-(255/steps)*j, 0, 0), color(255-(255/steps)*j, 0, (255/2)-((255/2)/steps)*j), color(255-(255/steps)*j, 0, 255-(255/steps)*j), color((255/2)-((255/2)/steps)*j, 0, 255-(255/steps)*j), color(0, 0, 255-(255/steps)*j), color(0, 255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j), color(0, 255-(255/steps)*j, 0), color((255/2)-((255/2)/steps)*j, 255-(255/steps)*j, 0) }; for (int i=0; i&lt; segs; i++){ fill(cols[i]); arc(x, y, radius, radius, interval*i+rotAdjust, interval*(i+1)+rotAdjust); } radius -= segWidth; } } else if (valueShift == TINT){ for (int j=0; j&lt;steps; j++){ color[]cols = { color((255/steps)*j, (255/steps)*j, 0), color((255/steps)*j, ((255/1.5)/steps)*j, 0), color((255/steps)*j, ((255/2)/steps)*j, 0), color((255/steps)*j, ((255/2.5)/steps)*j, 0), color((255/steps)*j, 0, 0), color((255/steps)*j, 0, ((255/2)/steps)*j), color((255/steps)*j, 0, (255/steps)*j), color(((255/2)/steps)*j, 0, (255/steps)*j), color(0, 0, (255/steps)*j), color(0, (255/steps)*j, ((255/2.5)/steps)*j), color(0, (255/steps)*j, 0), color(((255/2)/steps)*j, (255/steps)*j, 0) }; for (int i=0; i&lt; segs; i++){ fill(cols[i]); arc(x, y, radius, radius, interval*i+rotAdjust, interval*(i+1)+rotAdjust); } radius -= segWidth; } } }</pre> </body> </html>
public/bundles/components/component-fireworks/component.css
secretrobotron/appmaker
:host { display: block; background: black; } :host .app-fireworks { background-color: #0e1012; display: inline-block; } :host canvas { height: 100%; width: 100%; }
templates/web/seesomething/admin/footer.html
nditech/fixmystreet
</div><!-- .content role=main --> </div><!-- .container --> </div><!-- .table-cell --> <!-- [% INCLUDE 'debug_footer.html' %] --> </div> <!-- .wrapper --> </body> </html>
mount/help/linux_retrans.fa.html
webdev1001/webmin
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <body dir="rtl"> <b>تعداد ارسال هاي مجدد</b><p>تعداد اتمام زمانهای جزيي و ارسال هاي مجدد که بايد قبل از اتمام زمان اصلي رخ دهد.<br> هنگام بروز يک اتمام زمان اصلي، عملکرد پرونده بي نتيجه مانده يا يک پيام &quot;سرويس دهنده پاسخ نمي دهد&quot; نمایش داده خواهد شد.<br> <br> <i>گزينه هاي سوار شدن: retrans<br> پيش فرض: 3</i></p> <hr>
wp-includes/css/buttons-rtl.css
poofichu/community-yoga-austin
/* ---------------------------------------------------------------------------- NOTE: If you edit this file, you should make sure that the CSS rules for buttons in the following files are updated. * jquery-ui-dialog.css * editor.css WordPress-style Buttons ======================= Create a button by adding the `.button` class to an element. For backwards compatibility, we support several other classes (such as `.button-secondary`), but these will *not* work with the stackable classes described below. Button Styles ------------- To display a primary button style, add the `.button-primary` class to a button. Button Sizes ------------ Adjust a button's size by adding the `.button-large` or `.button-small` class. Button States ------------- Lock the state of a button by adding the name of the pseudoclass as an actual class (e.g. `.hover` for `:hover`). TABLE OF CONTENTS: ------------------ 1.0 - Button Layouts 2.0 - Default Button Style 3.0 - Primary Button Style 4.0 - Button Groups 5.0 - Responsive Button Styles ---------------------------------------------------------------------------- */ /* ---------------------------------------------------------------------------- 1.0 - Button Layouts ---------------------------------------------------------------------------- */ .wp-core-ui .button, .wp-core-ui .button-primary, .wp-core-ui .button-secondary { display: inline-block; text-decoration: none; font-size: 13px; line-height: 26px; height: 28px; margin: 0; padding: 0 10px 1px; cursor: pointer; border-width: 1px; border-style: solid; -webkit-appearance: none; -webkit-border-radius: 3px; border-radius: 3px; white-space: nowrap; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* Remove the dotted border on :focus and the extra padding in Firefox */ .wp-core-ui button::-moz-focus-inner, .wp-core-ui input[type="reset"]::-moz-focus-inner, .wp-core-ui input[type="button"]::-moz-focus-inner, .wp-core-ui input[type="submit"]::-moz-focus-inner { border-width: 0; border-style: none; padding: 0; } .wp-core-ui .button.button-large, .wp-core-ui .button-group.button-large .button { height: 30px; line-height: 28px; padding: 0 12px 2px; } .wp-core-ui .button.button-small, .wp-core-ui .button-group.button-small .button { height: 24px; line-height: 22px; padding: 0 8px 1px; font-size: 11px; } .wp-core-ui .button.button-hero, .wp-core-ui .button-group.button-hero .button { font-size: 14px; height: 46px; line-height: 44px; padding: 0 36px; } .wp-core-ui .button:active, .wp-core-ui .button:focus { outline: none; } .wp-core-ui .button.hidden { display: none; } /* Style Reset buttons as simple text links */ .wp-core-ui input[type="reset"], .wp-core-ui input[type="reset"]:hover, .wp-core-ui input[type="reset"]:active, .wp-core-ui input[type="reset"]:focus { background: none; border: none; -webkit-box-shadow: none; box-shadow: none; padding: 0 2px 1px; width: auto; } /* ---------------------------------------------------------------------------- 2.0 - Default Button Style ---------------------------------------------------------------------------- */ .wp-core-ui .button, .wp-core-ui .button-secondary { color: #555; border-color: #cccccc; background: #f7f7f7; -webkit-box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 ); box-shadow: inset 0 1px 0 #fff, 0 1px 0 rgba( 0, 0, 0, 0.08 ); vertical-align: top; } .wp-core-ui p .button { vertical-align: baseline; } .wp-core-ui .button.hover, .wp-core-ui .button:hover, .wp-core-ui .button-secondary:hover, .wp-core-ui .button.focus, .wp-core-ui .button:focus, .wp-core-ui .button-secondary:focus { background: #fafafa; border-color: #999; color: #222; } .wp-core-ui .button.focus, .wp-core-ui .button:focus, .wp-core-ui .button-secondary:focus { -webkit-box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); } .wp-core-ui .button.active, .wp-core-ui .button.active:hover, .wp-core-ui .button:active, .wp-core-ui .button-secondary:active { background: #eee; border-color: #999; color: #333; -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ); } .wp-core-ui .button.active:focus { -webkit-box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ), 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 ), 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); } .wp-core-ui .button[disabled], .wp-core-ui .button:disabled, .wp-core-ui .button.disabled, .wp-core-ui .button-secondary[disabled], .wp-core-ui .button-secondary:disabled, .wp-core-ui .button-secondary.disabled, .wp-core-ui .button-disabled { color: #aaa !important; border-color: #ddd !important; background: #f7f7f7 !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: 0 1px 0 #fff !important; cursor: default; } /* ---------------------------------------------------------------------------- 3.0 - Primary Button Style ---------------------------------------------------------------------------- */ .wp-core-ui .button-primary { background: #2ea2cc; border-color: #0074a2; -webkit-box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.5), 0 1px 0 rgba( 0, 0, 0, 0.15 ); box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.5 ), 0 1px 0 rgba( 0, 0, 0, 0.15 ); color: #fff; text-decoration: none; } .wp-core-ui .button-primary.hover, .wp-core-ui .button-primary:hover, .wp-core-ui .button-primary.focus, .wp-core-ui .button-primary:focus { background: #1e8cbe; border-color: #0074a2; -webkit-box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.6 ); box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.6 ); color: #fff; } .wp-core-ui .button-primary.focus, .wp-core-ui .button-primary:focus { border-color: #0e3950; -webkit-box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.6 ), 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); box-shadow: inset 0 1px 0 rgba( 120, 200, 230, 0.6 ), 0 0 0 1px #5b9dd9, 0 0 2px 1px rgba(30, 140, 190, .8); } .wp-core-ui .button-primary.active, .wp-core-ui .button-primary.active:hover, .wp-core-ui .button-primary.active:focus, .wp-core-ui .button-primary:active { background: #1b7aa6; border-color: #005684; color: rgba( 255, 255, 255, 0.95 ); -webkit-box-shadow: inset 0 1px 0 rgba( 0, 0, 0, 0.1 ); box-shadow: inset 0 1px 0 rgba( 0, 0, 0, 0.1 ); vertical-align: top; } .wp-core-ui .button-primary[disabled], .wp-core-ui .button-primary:disabled, .wp-core-ui .button-primary-disabled, .wp-core-ui .button-primary.disabled { color: #94cde7 !important; background: #298cba !important; border-color: #1b607f !important; -webkit-box-shadow: none !important; box-shadow: none !important; text-shadow: 0 -1px 0 rgba( 0, 0, 0, 0.1 ) !important; cursor: default; } /* ---------------------------------------------------------------------------- 4.0 - Button Groups ---------------------------------------------------------------------------- */ .wp-core-ui .button-group { position: relative; display: inline-block; white-space: nowrap; font-size: 0; vertical-align: middle; } .wp-core-ui .button-group > .button { display: inline-block; -webkit-border-radius: 0; border-radius: 0; margin-left: -1px; z-index: 10; } .wp-core-ui .button-group > .button-primary { z-index: 100; } .wp-core-ui .button-group > .button:hover { z-index: 20; } .wp-core-ui .button-group > .button:first-child { -webkit-border-radius: 0 3px 3px 0; border-radius: 0 3px 3px 0; } .wp-core-ui .button-group > .button:last-child { -webkit-border-radius: 3px 0 0 3px; border-radius: 3px 0 0 3px; } .wp-core-ui .button-group > .button:focus { position: relative; z-index: 1; } /* ---------------------------------------------------------------------------- 5.0 - Responsive Button Styles ---------------------------------------------------------------------------- */ @media screen and ( max-width: 782px ) { .wp-core-ui .button, .wp-core-ui .button.button-large, .wp-core-ui .button.button-small, input#publish, input#save-post, a.preview { padding: 6px 14px; line-height: normal; font-size: 14px; vertical-align: middle; height: auto; margin-bottom: 4px; } #media-upload.wp-core-ui .button { padding: 0 10px 1px; height: 24px; line-height: 22px; font-size: 13px; } .media-frame.mode-grid .bulk-select .button { margin-bottom: 0; } /* Publish Metabox Options */ .wp-core-ui .save-post-status.button { position: relative; margin: 0 10px 0 14px; /* 14px right margin to match all other buttons */ } /* Reset responsive styles in Press This, Customizer */ .wp-core-ui.wp-customizer .button { padding: 0 10px 1px; font-size: 13px; line-height: 26px; height: 28px; margin: 0; vertical-align: inherit; } /* Reset responsive styles on Log in button on iframed login form */ .interim-login .button.button-large { height: 30px; line-height: 28px; padding: 0 12px 2px; } }
backup/backup_execute.html
mkassaei/Moodle-Question-Engine-2
<?php //$Id$ //This page prints the backup todo list to see everything //Check login require_login(); if (!empty($course->id)) { if (!has_capability('moodle/site:backup', get_context_instance(CONTEXT_COURSE, $course->id))) { if (empty($to)) { error("You need to be a teacher or admin user to use this page.", "$CFG->wwwroot/login/index.php"); } else { if (!has_capability('moodle/site:backup', get_context_instance(CONTEXT_COURSE, $to))) { error("You need to be a teacher or admin user to use this page.", "$CFG->wwwroot/login/index.php"); } } } } else { if (!has_capability('moodle/site:backup', get_context_instance(CONTEXT_SYSTEM))) { error("You need to be an admin user to use this page.", "$CFG->wwwroot/login/index.php"); } } //Check site if (!$site = get_site()) { error("Site not found!"); } $preferences = new StdClass; backup_fetch_prefs_from_request($preferences,$count,$course); //Another Info backup_add_static_preferences($preferences); if ($count == 0) { notice("No backupable modules are installed!"); } if (empty($to)) { //Start the main table echo "<table cellpadding=\"5\">"; //Now print the Backup Name tr echo "<tr>"; echo "<td align=\"right\"><b>"; echo get_string("name").":"; echo "</b></td><td>"; echo $preferences->backup_name; echo "</td></tr>"; //Start the main tr, where all the backup progress is done echo "<tr>"; echo "<td colspan=\"2\">"; //Start the main ul echo "<ul>"; } $errorstr = ''; $status = backup_execute($preferences, $errorstr); //Ends th main ul echo "</ul>"; //End the main tr, where all the backup is done echo "</td></tr>"; //End the main table echo "</table>"; if (!$status) { error ("The backup did not complete successfully", "$CFG->wwwroot/course/view.php?id=$course->id"); } if (empty($to)) { //Print final message print_simple_box(get_string("backupfinished"),"center"); print_continue("$CFG->wwwroot/files/index.php?id=".$preferences->backup_course."&amp;wdir=/backupdata"); } else { print_simple_box(get_string('importdataexported'),"CENTER"); if (!empty($preferences->backup_destination)) { $filename = $preferences->backup_destination."/".$preferences->backup_name; } else { $filename = $preferences->backup_course."/backupdata/".$preferences->backup_name; } error_log($filename); $SESSION->import_preferences = $preferences; print_continue($CFG->wwwroot.'/course/import/activities/index.php?id='.$to.'&fromcourse='.$id.'&filename='.$filename); } $SESSION->backupprefs[$course->id] = null; // unset it so we're clear next time. ?>
variants/xfce/resources/usr/share/themes/E17gtk/gtk-3.0/gtk-widgets.css
calinmiclaus/serenix
* { padding: 0px; background-clip: padding-box; /* Style properties */ -GtkButton-child-displacement-x: 1; -GtkButton-child-displacement-y: 1; -GtkButton-default-border: 0; -GtkButton-image-spacing: 4; -GtkButton-interior-focus: true; -GtkToolButton-icon-spacing: 4; -GtkTextView-error-underline-color: @error_color; -GtkPaned-handle-size: 5; -GtkCheckButton-indicator-size: 16; -GtkCheckButton-indicator-spacing: 0; -GtkCheckMenuItem-indicator-size: 12; -GtkScrolledWindow-scrollbar-spacing: 0; /* this is more stylish with this theme */ -GtkScrolledWindow-scrollbars-within-bevel: 0; -GtkToolItemGroup-expander-size: 12; -GtkExpander-expander-size: 12; -GtkTreeView-expander-size: 13; -GtkTreeView-horizontal-separator: 4; -GtkMenuBar-shadow-type: none; -GtkMenu-horizontal-padding: 0; -GtkMenu-vertical-padding: 0; -GtkWidget-link-color: @link_color; -GtkWidget-visited-link-color: @link_color; -GtkIMHtml-hyperlink-color: @link_color; -GtkHTML-link-color: @link_color; -GtkWidget-wide-separators: true; -WnckTasklist-fade-overlay-rect: 0; /* this makes emacs behave weirdly */ /*border-radius: 1px;*/ -GtkWidget-focus-padding: 0; -GtkWidget-focus-line-width: 1; -GtkWindow-resize-grip-width: 10; -GtkWindow-resize-grip-height: 10; /* We use the outline properties to signal the focus properties * to the adwaita engine: using real CSS properties is faster, * and we don't use any outlines for now. */ outline-color: @focus_border; outline-style: dashed; outline-offset: 2px; } /*************** * Base States * ***************/ * { color: @theme_fg_color; background-color: @theme_bg_color; } *:hover { background-color: alpha(shade(@theme_bg_color, 1.1), 0.4); color: shade(@theme_selected_fg_color, 1.05); } *:selected { background-color: @theme_selected_fg_color; color: @theme_fg_color; } *:selected:focus { background-color: @theme_selected_bg_color; color: @theme_selected_fg_color; } *:insensitive { /* no need to a different background */ background-color: @theme_bg_color; /*@insensitive_bg_color;*/ color: @insensitive_fg_color; border-color: @insensitive_border_color; text-shadow: none; icon-shadow: none; } *:active { background-color: shade(@theme_bg_color, 0.915); } .background { border-style: none; border-width: 0px; border-radius: 0px; } .tooltip { padding: 4px 4px; border-style: none; border-radius: 1px; background-color: @theme_tooltip_bg_color; color: @theme_tooltip_fg_color; } .tooltip * { background-color: @theme_tooltip_bg_color; color: @theme_tooltip_fg_color; } /*.grip { background-color: shade(@inactive_frame_color, 0.93); }*/ .content-view.view.rubberband, .view.rubberband, .rubberband { background-color: alpha(@theme_selected_bg_color, 0.35); border-color: @theme_selected_bg_color; border-style: solid; border-width: 1px; border-radius: 1px; } /**************** * Floating Bar * ****************/ .floating-bar { border-radius: 1px; border-width: 0px; border-style: solid; text-shadow: 0 -1px black; color: @theme_fg_color; background-image: linear-gradient(to bottom, shade(@button_gradient_color_a, 1.5), @theme_bg_color 40%, shade(@button_gradient_color_b, 0.7)); } .floating-bar.top { border-top-right-radius: 0; border-top-left-radius: 0; } .floating-bar.right { border-top-right-radius: 0; border-bottom-right-radius: 0; } .floating-bar.bottom { border-bottom-right-radius: 0; border-bottom-left-radius: 0; } .floating-bar.left { border-top-left-radius: 0; border-bottom-left-radius: 0; } /********* * Views * *********/ .view, .view:insensitive { color: @theme_fg_color; border-radius: 0; /*border-width: 3;*/ } .view:selected, .view:active { background-color: @theme_selected_fg_color; color: @theme_text_color; } .view:selected:focus { background-color: @theme_selected_bg_color; color: @theme_selected_fg_color; } /* It's better not to have too bright text views. */ GtkTextView.view, GtkTextView.view:insensitive, GtkHTML { /* For Evolution (not enough; see entries section below) */ background-color: @view_color; color: @theme_main_color; } /* This is for highlighting the current line in source views. */ GtkTextView { background-color: #D9D9D9; /* #dddddd; */ color: @theme_main_color; } /* Exceptional views */ GtkCalendar.view, GtkIconView.view, GtkDialog .view { background-color: @theme_bg_color; color: @theme_fg_color; } /************** * Separators * **************/ GtkTreeView .separator, .separator { color: darker (@theme_bg_color); } .pane-separator { border-style: none; border-image: none; border-width: 0px; border-radius: 0; background-color: transparent; color: shade(@theme_selected_bg_color, 1.5); background-repeat: no-repeat; background-position: center; background-image: url("assets/pane-separator-grip.png"); } .pane-separator:hover, .pane-separator:selected { background-image: url("assets/pane-separator-grip-hover.png"); } .pane-separator.vertical { background-image: url("assets/pane-separator-grip-vertical.png"); } .pane-separator.vertical:hover, .pane-separator.vertical:selected { background-image: url("assets/pane-separator-grip-vertical-hover.png"); } .dnd { border-width: 1px; border-style: solid; border-color: @theme_selected_bg_color; border-radius: 0; } /************ * Spinners * ************/ /* This could be CPU-intensive. */ /**************** * Text Entries * ****************/ .entry { background-color: @entry_color; border-width: 1px; border-style: solid; border-radius: 0px; padding: 2px 4px; color: @theme_fg_color; box-shadow: inset 0 6px alpha(black, 0.03), inset 0 5px alpha(black, 0.06), inset 0 3px alpha(black, 0.1), inset 0 2px alpha(black, 0.2), inset 1px 1px alpha(black, 0.3); } /*.toolbar .entry { background-color: #303030; }*/ .entry:selected { background-color: @theme_selected_fg_color; } .entry:selected:focus { background-color: @theme_selected_bg_color; } .entry:focus { border-image: none; border-style: solid; border-color: @theme_selected_fg_color; box-shadow: none; } .entry:insensitive { background-color: @theme_bg_color; /*border-color: alpha(@inactive_frame_color, 0.3);*/ color: @insensitive_fg_color; box-shadow: none; } .entry.progressbar, .entry.progressbar:focus { margin-left: 2px; margin-right: 2px; border-image: none; border-style: none; background-color: transparent; background-image: linear-gradient(to top, transparent 2px, white 2px, white 3px, @theme_selected_bg_color 3px, @theme_selected_bg_color 5px, transparent 5px); background-size: auto; box-shadow: none; } .entry.progressbar.pulse, .entry.progressbar.pulse:focus { background-image: linear-gradient(to top, transparent 2px, white 2px, white 3px, @borders 3px, @borders 5px, transparent 5px); } .entry:active { background-color: shade(@theme_selected_bg_color, 1.23); } /* Correction for Yelp and Evolution */ GtkTextView.entry, GtkHTML.entry { background-color: @view_color; color: @theme_main_color; } /* for Totem's search */ /*.entry GtkEntry { background-color: transparent; }*/ .cursor-handle.top, .cursor-handle.bottom { background-color:transparent; box-shadow: none; border-style: none; border-radius: 0px; border-width: 0px; } /******************* * Symbolic images * *******************/ /* No need to do anything. */ /**************** * Progress bar * ****************/ GtkProgressBar { padding: 0px; -GtkProgressBar-min-horizontal-bar-height: 5; -GtkProgressBar-min-vertical-bar-width: 5; -GtkProgressBar-xspacing: 0; -GtkProgressBar-yspacing: 0; } .progressbar row, .progressbar row.view, .progressbar row:hover, .progressbar row:selected, .progressbar row:selected:focus { border-image: none; border-radius: 2px; /*color: @theme_main_color;*/ background-image: linear-gradient(-45deg, alpha(@progressbar_pattern, 0.09), alpha(@progressbar_pattern, 0.09) 25%, transparent 25%, transparent 50%, alpha(@progressbar_pattern, 0.09) 50%, alpha(@progressbar_pattern, 0.09) 75%, transparent 75%, transparent), linear-gradient(to bottom, @progressbar_background_a, shade(@progressbar_background_b, 1.1) 25%, @progressbar_background_b 43%, shade(@progressbar_background_b, 1.08) 44%, shade(@progressbar_background_a, 0.91)); } .progressbar row:selected, .progressbar row:selected:focus { color: @theme_fg_color; } progressbar.vertical { background-image: linear-gradient(-135deg, alpha(@progressbar_pattern, 0.09), alpha(@progressbar_pattern, 0.09) 25%, transparent 25%, transparent 50%, alpha(@progressbar_pattern, 0.09) 50%, alpha(@progressbar_pattern, 0.09) 75%, transparent 75%, transparent), linear-gradient(to right, @progressbar_background_a, shade(@progressbar_background_b, 1.1) 25%, @progressbar_background_b 43%, shade(@progressbar_background_b, 1.08) 44%, shade(@progressbar_background_a, 0.91)); } GtkProgressBar.progressbar { background-image: linear-gradient(to bottom, @progressbar_background_a, shade(@progressbar_background_b, 1.1) 26%, @progressbar_background_b 47%, shade(@progressbar_background_b, 1.09) 48%, shade(@progressbar_background_a, 0.89)); } GtkProgressBar.progressbar.vertical { background-image: linear-gradient(to right, @progressbar_background_a, shade(@progressbar_background_b, 1.1) 26%, @progressbar_background_b 47%, shade(@progressbar_background_b, 1.09) 48%, shade(@progressbar_background_a, 0.89)); } .trough row { background-image: linear-gradient(to bottom, shade(@less_dark_color, 0.7), shade(@less_dark_color, 1.6)); border-width: 1px; border-style: solid; border-radius: 2px; /*border-color: shade(@theme_selected_bg_color, 1.6);*/ border-color: shade(@theme_bg_color, 1.4); padding: 1px; } .trough row:selected, .trough row:selected:focus { border-image: none; } GtkProgressBar.progressbar { border-radius: 2px; border-style: none; color: @theme_main_color; /*border-color: @progressbar_border;*/ } GtkProgressBar.trough { background-image: linear-gradient(to bottom, shade(@theme_bg_color, 0.4), @theme_bg_color 50%, shade(@theme_bg_color, 1.8)); border-width: 0px; border-style: solid; border-radius: 2px; } GtkProgressBar.trough.vertical { background-image: linear-gradient(to right, shade(@theme_bg_color, 0.4), @theme_bg_color 50%, shade(@theme_bg_color, 1.8)); } /********** * Frames * **********/ GtkFrame, GtkCalendar { padding: 2px; } .frame { color: lighter (@theme_fg_color); border-style: solid; border-width: 1px; padding: 2px; } /*************** * GtkLevelBar * ***************/ GtkLevelBar { -GtkLevelBar-min-block-width: 34; -GtkLevelBar-min-block-height: 3; background-color: transparent; } GtkLevelBar.vertical { -GtkLevelBar-min-block-width: 3; -GtkLevelBar-min-block-height: 34; } .level-bar.trough { padding: 2px; } .level-bar.fill-block { border-style: none; background-image: linear-gradient(to bottom, shade(@link_color, 1.2), shade(@link_color, 0.6)); } .level-bar.indicator-continuous.fill-block { padding: 2px; border-radius: 2px; } .level-bar.indicator-discrete.fill-block.horizontal { margin: 0 1px; } .level-bar.indicator-discrete.fill-block.vertical { margin: 1px 0; } .level-bar.fill-block.level-high { background-image: linear-gradient(to bottom, shade(@success_color, 1.2), shade(@success_color, 0.7)); } .level-bar.fill-block.level-low { background-image: linear-gradient(to bottom, shade(@warning_bg_color, 1.2), shade(@warning_bg_color, 0.7)); } .level-bar.fill-block.empty-fill-block { background-color: transparent; background-image: linear-gradient(to bottom, shade(@less_dark_color, 0.5), shade(@less_dark_color, 1.7)); } /************* * Notebooks * *************/ GtkNotebook { background-color: transparent; } .notebook { padding: 0px; background-image: linear-gradient(to bottom, shade(@theme_bg_color, 1.35), shade(@theme_bg_color, 1.05) 20%, @theme_bg_color 30%, @theme_bg_color); /*background-clip: border-box;*/ color: @theme_fg_color; /* gdebi bug? */ border-style: none; border-width: 0px; -GtkNotebook-tab-overlap: 0; -GtkNotebook-tab-curvature: 1; -GtkNotebook-initial-gap: 0; } .notebook.arrow:insensitive { color: transparent; } .notebook tab { border-radius: 0px; padding: 3px 8px 0px; border-style: solid; border-width: 2px; background-image: linear-gradient(to bottom, shade(@button_gradient_color_a, 0.8), shade(@button_gradient_color_b, 0.8)); } .notebook tab:active { background-image: url("assets/tab-active-top.svg"); background-repeat: no-repeat; background-size: 100% 100%; } .notebook tab.top { /* top right-left bottom */ padding: 2px 8px 1px; } .notebook tab.top:active { padding: 3px 8px 1px; } .notebook tab.bottom { padding: 1px 8px 2px; } .notebook tab.bottom:active { padding: 1px 8px 3px; } .notebook tab.left, .notebook tab.left:active, .notebook tab.right, .notebook tab.right:active { padding: 3px 6px 3px; } .notebook tab.left:active { background-image: url("assets/tab-active-left.svg"); } .notebook tab.right:active { background-image: url("assets/tab-active-right.svg"); } .notebook tab.bottom:active { background-image: url("assets/tab-active-bottom.svg"); } /* close button styling */ .notebook tab .button, .notebook tab .button:hover, .notebook tab .button:hover:active { background-color: transparent; background-image: none; -GtkButton-child-displacement-x: 0; -GtkButton-child-displacement-y: 0; } /*************** * GtkTreeView * ***************/ GtkTreeView { -GtkTreeView-vertical-separator: 0; -GtkWidget-focus-padding: 1; } GtkTreeView.view, GtkTreeView.view:insensitive { color: @theme_fg_color; } GtkTreeView .view { color: @theme_fg_color; } /* row as a separator */ GtkTreeView.view.separator, GtkTreeView.view.separator:hover { color: alpha(@light_frame_color, 0.6); } GtkTreeView row:hover { /*color: @theme_main_color;*/ background-color: alpha(@theme_selected_bg_color, 0.2); } GtkTreeView row:selected { border-style: solid; border-width: 1px 0px 0px 0px; border-radius: 0px; background-image: linear-gradient(to bottom, #303030, #0c0c0c); } /*GtkTreeView row:selected:insensitive { color: @theme_selected_fg_color; }*/ GtkTreeView row:nth-child(odd), GtkTreeView row:nth-child(odd):hover { background-color: @theme_bg_color; } GtkTreeView row:nth-child(even), GtkTreeView row:nth-child(even):hover { background-color: shade(@theme_bg_color, 1.05); } GtkTreeView row:nth-child(odd):insensitive, GtkTreeView row:nth-child(even):insensitive { color: @insensitive_fg_color; } GtkTreeView column:sorted row:nth-child(odd), GtkTreeView column:sorted row:nth-child(odd):hover { background-color: shade(@theme_bg_color, 0.85); } GtkTreeView column:sorted row:nth-child(even), GtkTreeView column:sorted row:nth-child(even):hover { background-color: shade(@theme_bg_color, 0.9); } column-header { padding: 1px 2px; } column-header .button, GtkTreeView .button { border-width: 2px 0px 2px 1px; border-radius: 0; border-style: solid; border-color: @less_dark_color; } column-header .button:hover, GtkTreeView .button:hover { border-width: 2px 0px 2px 1px; border-radius: 0; border-style: solid; background-image: linear-gradient(to bottom, shade(@button_gradient_color_a, 0.8), shade(@button_gradient_color_b, 0.8)); } row { border-width: 0px; } .cell { padding: 2px; border-width: 0px; } /************ * GtkScale * ************/ .scale { -GtkScale-slider-length: 16; -GtkRange-slider-width: 20; -GtkRange-trough-border: 0; } .scale.slider, .scale.slider:hover { border-width: 0px; border-radius: 0px; border-style: none; color: transparent; background-color: transparent; } .scale.slider:insensitive { color: transparent; background-color: transparent; } .scale.slider.fine-tune:active, .scale.slider.fine-tune:active:hover, .scale.slider.fine-tune.horizontal:active, .scale.slider.fine-tune.horizontal:active:hover { background-size: 80%; background-repeat: no-repeat; background-position: center; } .scale.trough { background-image: linear-gradient(to bottom, shade(@theme_bg_color, 0.5), shade(@theme_bg_color, 1.7)); border-width: 0px; border-radius: 2px; margin: 8px 0; } .scale.trough.vertical { background-image: linear-gradient(to right, shade(@theme_bg_color, 0.5), shade(@theme_bg_color, 1.7)); margin: 0 8px; } .scale.trough:insensitive { background-image: linear-gradient(to bottom, shade(@theme_bg_color, 0.85), shade(@theme_bg_color, 1.4)); } .scale.trough.vertical:insensitive { background-image: linear-gradient(to right, shade(@theme_bg_color, 0.85), shade(@theme_bg_color, 1.4)); } .scale.progressbar { background-image: linear-gradient(to bottom, shade(@theme_bg_color, 1.4), shade(@theme_bg_color, 0.8)); border-radius: 3px; } .scale.progressbar.vertical { background-image: linear-gradient(to right, shade(@theme_bg_color, 1.4), shade(@theme_bg_color, 0.8)); } .scale.mark { background-color: shade(@theme_bg_color, 0.56); } /************** * ComboBoxes * **************/ GtkComboBox { /* align with side buttons */ padding: 0; -GtkComboBox-arrow-scaling: 0.5; -GtkComboBox-shadow-type: none; color: @theme_fg_color; text-shadow: 0 -1px black; } GtkComboBox :hover { text-shadow: none; } GtkComboBox .separator { /* always disable separators */ -GtkWidget-horizontal-separator: 0; -GtkWidget-vertical-separator: 0; } /* compensation for combo shadow */ /*GtkTreeMenu .menuitem *,*/ GtkComboBox .menu { /*color: @theme_selected_fg_color;*/ text-shadow: none; } /*********** * Buttons * ***********/ .button { padding: 0 2px 0 2px; border-radius: 0px; border-width: 3px; border-style: solid; /*text-shadow: 0 -1px black;*/ color: @theme_fg_color; background-image: linear-gradient(to bottom, @button_gradient_color_a, @button_gradient_color_b); } .button.image-button, .primary-toolbar.toolbar .button.image-button { padding: 3px 4px 4px; } .button GtkImage, .button GtkImage:hover, .button GtkImage:active, .button GtkImage:hover:active, .button GtkImage:insensitive, .button GtkLabel, .button GtkLabel:hover, .button GtkLabel:active, .button GtkLabel:hover:active, .button GtkLabel:insensitive { background-image: none; background-color: transparent; } /*.button:hover, .toolbar.button:hover { color: @theme_selected_fg_color; }*/ .button:active, .button:hover:active { /* some apps need this */ color: @theme_fg_color; border-style: solid; background-image: linear-gradient(to bottom, shade(@button_gradient_color_b, 0.9), @button_gradient_color_a); } .button:insensitive { background-color: transparent; background-image: linear-gradient(to bottom, alpha(@button_gradient_color_a, 0.5), alpha(@button_gradient_color_b, 0.5)); color: @insensitive_fg_color; } .button:active:insensitive { background-color: transparent; background-image: linear-gradient(to bottom, alpha(shade(@button_gradient_color_b, 0.9), 0.5), alpha(@button_gradient_color_a, 0.5)); color: @insensitive_fg_color; } /****************** * Linked Buttons * ******************/ /* We don't make them different. */ /***************** * GtkSpinButton * *****************/ .spinbutton .button, .spinbutton .button:insensitive, .spinbutton .button:hover, .spinbutton .button:active, .spinbutton .button:focus { background-image: none; background-color: transparent; /*border-width: 1px;*/ border-style: none; border-image: none; padding: 0px 4px 0px 0px; } .spinbutton .button, .spinbutton .button:focus { color: shade(@theme_text_color, 0.75); } .spinbutton .button:hover, .spinbutton .button:active { color: @theme_text_color; } .spinbutton .button:insensitive { color: shade(@insensitive_fg_color, 0.7); } /************** * Scrollbars * **************/ .scrollbar { background-image: none; border-style: solid; -GtkRange-trough-border: 0; -GtkRange-arrow-scaling: 0.5; -GtkRange-slider-width: 13; -GtkRange-stepper-size: 16; -GtkScrollbar-min-slider-length: 34; /* minimum size for the slider. sadly can't be in '.slider' where it belongs */ -GtkRange-stepper-spacing: 0; -GtkRange-trough-under-steppers: 0; } .scrollbar.trough { border-style: none; border-width: 0px; background-image: linear-gradient(to bottom, shade(@theme_bg_color, 0.5), shade(@theme_bg_color, 1.7)); border-radius: 2px; margin: 4px 0; } .scrollbar.trough.vertical { border-style: none; border-width: 0px; background-image: linear-gradient(to right, shade(@theme_bg_color, 0.5), shade(@theme_bg_color, 1.7)); border-radius: 2px; margin: 0px 4px; } .scrollbar.slider { background-color: transparent; background-image: url("assets/holes_tiny_horiz.png"), linear-gradient(to right, #616161, #414141); background-repeat: no-repeat; background-position: center; border-radius: 0px; border-width: 2px; border-style: solid; } .scrollbar.slider.vertical { background-color: transparent; background-image: url("assets/holes_tiny_vert.png"), linear-gradient(to bottom, #616161, #414141); border-radius: 0px; border-width: 2px; border-style: solid; } .scrollbar.slider:prelight { background-image: url("assets/holes_tiny_glow_horiz.png"), linear-gradient(to right, #616161, #414141); } .scrollbar.slider.vertical:prelight { background-image: url("assets/holes_tiny_glow_vert.png"), linear-gradient(to bottom, #616161, #414141); } .scrollbar.slider:prelight:active { color: @theme_fg_color; border-style: solid; background-image: url("assets/holes_tiny_glow_horiz.png"), linear-gradient(to right, #525252, #525252); } .scrollbar.slider.vertical:prelight:active { background-image: url("assets/holes_tiny_glow_vert.png"), linear-gradient(to bottom, #525252, #525252); } .scrollbar.button, .scrollbar.button.horizontal, .scrollbar.button.vertical { color: @theme_fg_color; border-image: none; border-style: none; border-width: 0px; background-image: none; background-color: transparent; } .scrollbar.button:hover, .scrollbar.button.horizontal:hover, .scrollbar.button.vertical:hover { background-image: none; background-color: transparent; color: @theme_selected_fg_color; border-image: none; border-style: none; border-width: 0px; } .scrollbar.button:hover:active, .scrollbar.button.horizontal:hover:active, .scrollbar.button.vertical:hover:active { background-image: none; background-color: transparent; color: @theme_selected_fg_color; border-image: none; border-style: none; border-width: 0px; } .scrollbar.button:insensitive, .scrollbar.button.horizontal:insensitive, .scrollbar.button.vertical:insensitive { background-image: none; background-color: transparent; color: black; border-image: none; border-style: none; border-width: 0px; } .scrollbar.slider:insensitive { background-image: none; background-color: shade(@theme_bg_color, 1.5); } .scrollbar.slider.fine-tune:prelight:active { background-image: url("assets/holes_tiny_glow_fine_horiz.png"), linear-gradient(to right, #525252, #525252); } .scrollbar.slider.vertical.fine-tune:prelight:active { background-image: url("assets/holes_tiny_glow_fine_vert.png"), linear-gradient(to bottom, #525252, #525252); } /********* * Menus * *********/ /* this controls the general appearance of the menubar */ .menubar { background-image: none; background-color: @theme_bg_color; border-width: 0px; border-style: none; padding: 0px; color: @theme_text_color; -GtkWidget-window-dragging: true; /*-GtkMenuBar-internal-padding: 0;*/ } /*.menubar * { background-color: transparent; }*/ .menubar .menuitem { padding: 3px 7px; } .menu .menuitem { padding: 3px 4px; } .menubar .menuitem, .menu .menuitem { border-width: 0px; border-style: none; background-color: transparent; } .menubar .menuitem:hover { background-image: none; background-color: @theme_bg_color; border-style: solid; border-width: 1px; border-radius: 0px; border-image: url("assets/menuitem-border-dark.svg") 2 / 2px stretch; /* join menuitem to menu border-radius: 3px 3px 0px 0px; border-width: 0px;*/ } .menubar .menuitem *:insensitive, /* gdebi bug? */ .menubar .menuitem *:hover { color: @theme_selected_fg_color; } .menu, .menubar .menu, .menuitem .menu { background-color: shade(@theme_selected_bg_color, 0.8); background-image: linear-gradient(to bottom, shade(@theme_bg_color, 1.5), @theme_bg_color 6%, @theme_bg_color); border-style: none; border-width: 0px 1px 1px 1px; border-radius: 0; padding: 1px; } /*.menu *{ background-color: transparent; }*/ .menuitem, .menuitem * { -GtkMenuItem-arrow-scaling: 0.5; padding: 2px 0px; } /* scroll arrows */ .menu.button { border-image: none; color: @theme_fg_color; background-image: linear-gradient(to bottom, shade(@theme_selected_bg_color, 1.3), shade(@theme_selected_bg_color, 0.5)); } .menu.button:hover { color: @theme_main_color; background-image: linear-gradient(to bottom, #ffffff, #808080); } .menu.button:insensitive { background-image: none; background-color: transparent; border-style: none; } .menuitem:hover, .menu .menuitem:hover { background-image: linear-gradient(to bottom, #303030, #0c0c0c); color: @theme_selected_fg_color; border-style: solid; border-width: 1px; border-radius: 0px; border-image: url("assets/menuitem-hiver-border-dark.svg") 1 / 1px stretch; } .menuitem *:hover, .menu .menuitem *:hover { color: @theme_selected_fg_color; } .menu .menuitem:insensitive, .menu .menuitem *:insensitive { color: @insensitive_fg_color; } .menuitem.separator { padding: 4px; border-style: none; border-color: @theme_selected_bg_color; -GtkMenuItem-horizontal-padding: 0; -GtkWidget-separator-height: 1; } .menuitem.accelerator, .menu .menuitem.accelerator { color: alpha(@theme_main_color, 0.66); } .menuitem.accelerator:hover, .menuitem.accelerator:active, .menu .menuitem.accelerator:hover, .menu .menuitem.accelerator:active { color: alpha(@theme_text_color, 0.45); } /*************** * Menu Button * ***************/ /* compensation for combo shadow */ GtkMenuButton .menu { text-shadow: none; } /************ * Toolbars * ************/ .toolbar { padding: 0; border-radius: 0px; border-width: 3px; border-style: solid; color: @theme_fg_color; background-image: linear-gradient(to bottom, @button_gradient_color_a, @button_gradient_color_b); -GtkWidget-window-dragging: true; /*-GtkToolbar-button-relief: normal;*/ } .toolbar .button.text-button { padding: 2px 5px; } .toolbar .button.image-button { padding: 5px 4px 4px 5px; } /******************** * Primary Toolbars * ********************/ .toolbar:insensitive { background-image: none; background-color: shade(@theme_bg_color, 0.97); } /* (primary) toolbar buttons */ .toolbar .button, .primary-toolbar .button, .primary-toolbar .toolbar .button, .primary-toolbar.toolbar .button, .toolbar .button:insensitive, .primary-toolbar .button:insensitive, .primary-toolbar .toolbar .button:insensitive, .primary-toolbar.toolbar .button:insensitive, .toolbar .button:insensitive:hover, .primary-toolbar .button:insensitive:hover, .primary-toolbar .toolbar .button:insensitive:hover, .primary-toolbar.toolbar .button:insensitive:hover { border-image: none; border-color: transparent; background-image: none; background-color: transparent; } .toolbar .button:active, .primary-toolbar .button:active, .primary-toolbar .toolbar .button:active, .primary-toolbar.toolbar .button:active, .toolbar .button:hover:active, .primary-toolbar .button:hover:active, .primary-toolbar .toolbar .button:hover:active, .primary-toolbar.toolbar .button:hover:active { color: @theme_fg_color; border-style: solid; background-image: linear-gradient(to bottom, shade(@button_gradient_color_b, 0.9), @button_gradient_color_a); } .toolbar .button:hover, .primary-toolbar .button:hover, .primary-toolbar .toolbar .button:hover, .primary-toolbar.toolbar .button:hover, .toolbar GtkComboBox .button, .primary-toolbar .toolbar GtkComboBox .button, .primary-toolbar.toolbar GtkComboBox .button { background-image: linear-gradient(to bottom, @button_gradient_color_a, @button_gradient_color_b); } .toolbar GtkSeparatorToolItem { -GtkWidget-separator-width: 1; border-style: solid; border-width: 1px; border-color: shade(@theme_bg_color, 0.85); } /* progressbars on primary toolbar entries are special */ .toolbar .entry.progressbar { background-image: linear-gradient(to bottom, @trough_bg_color_a, @trough_bg_color_b); border-width: 1px; border-radius: 2px; border-style: solid; border-color: shade(@inactive_frame_color, 0.925); border-image: none; color: @theme_text_color; } /******************* * Inline toolbars * *******************/ .inline-toolbar.toolbar { border-radius: 0px; border-width: 3px; border-style: solid; background-image: linear-gradient(to bottom, @button_gradient_color_a, @button_gradient_color_b); } /*************** * Header bars * ***************/ .header-bar { padding: 0 1px; } .header-bar .button.text-button { padding: 2px 6px; } .header-bar .button.image-button { padding: 5px 4px 4px 5px; } /******* * OSD * *******/ .background.osd { color: @osd_fg; background-image: none; background-color: @osd_bg; } GtkOverlay.osd { background-color: transparent; } .osd.button, .osd.button:active, .osd .button, .osd .button:active { border-width: 1px; border-style: solid; border-image: none; border-color: @osd_button_border; border-radius: 5px; } .osd.button, .osd .button { padding: 4px; background-image: linear-gradient(to bottom, @osd_button_bg_a, @osd_button_bg_b 68%, @osd_button_bg_c); color: @osd_button_fg; text-shadow: 0 -1px @osd_button_shadow; icon-shadow: 0 -1px @osd_button_shadow; } .osd.button, .osd.button:prelight, .osd.button:active, .osd .button, .osd .button:prelight, .osd .button:active { background-color: transparent; } .osd.button:insensitive, .osd .button:insensitive { background-image: none; background-color: @osd_button_bg_insensitive; } .osd.button:active:insensitive, .osd .button:active:insensitive { background-image: none; background-color: @osd_button_bg_insensitive_active; } .osd.button:hover, .osd .button:hover { color: @osd_button_fg_hover; } .osd .button:active, .osd .button:hover:active { color: @osd_button_fg_active; } .osd.button:insensitive, .osd.button:insensitive:active, .osd .button:insensitive, .osd .button:active *:insensitive { color: @osd_button_fg_insensitive; } .osd.button:hover, .osd .button:hover { background-image: linear-gradient(to bottom, @osd_button_bg_hover_a, @osd_button_bg_hover_b 68%, @osd_button_bg_hover_c); } .osd.button:active, .osd.button:active:hover, .osd .button:active, .osd .button:active:hover, .osd GtkMenuButton.button:active { background-image: linear-gradient(to bottom, @osd_button_bg_active_a, @osd_button_bg_active_b 68%, @osd_button_bg_active_c); } .osd GtkMenuButton.button:active { background-color: transparent; border-color: @osd_button_border; } .osd GtkMenuButton.button:active { color: @osd_button_fg_active; text-shadow: 0 -1px @osd_button_shadow; } .osd.toolbar { color: @osd_fg; text-shadow: 0 1px @osd_text_shadow; padding: 10px; border-style: none; border-radius: 7px; background-image: linear-gradient(to bottom, @osd_toolbar_bg_a, @osd_toolbar_bg_b 63%, @osd_toolbar_bg_c); background-color: transparent; -GtkToolbar-button-relief: normal; } .osd.toolbar .button { padding: 4px; border-width: 1px 0; border-radius: 0; box-shadow: inset -1px 0 @osd_button_inset; } .osd.toolbar .button:first-child { border-radius: 5px 0 0 5px; border-width: 1px 0 1px 1px; box-shadow: inset -1px 0 @osd_button_inset; } .osd.toolbar .button:last-child { box-shadow: none; border-radius: 0 5px 5px 0; border-width: 1px 1px 1px 0; } .osd.toolbar .button:only-child, .osd.toolbar GtkToolButton .button, .osd.toolbar GtkToolButton:only-child .button, .osd.toolbar GtkToolButton:last-child .button, .osd.toolbar GtkToolButton:first-child .button { border-width: 1px; border-radius: 5px; border-style: solid; box-shadow: none; } .osd.toolbar .separator { color: shade(@osd_lowlight, 0.80); } /* used by gnome-settings-daemon's media-keys OSD and Epiphany */ .osd.trough { background-color: @osd_trough_bg; } .osd.progressbar { background-color: @osd_fg; } .osd .scale.trough { border-color: @osd_button_border; background-image: linear-gradient(to bottom, shade(@osd_button_border, 0.70), shade(@osd_button_border, 0.90)); background-color: transparent; } .osd GtkProgressBar, GtkProgressBar.osd { padding: 0; -GtkProgressBar-xspacing: 0; -GtkProgressBar-yspacing: 3px; -GtkProgressBar-min-horizontal-bar-height: 3px; } .osd GtkProgressBar.trough, GtkProgressBar.osd.trough { padding: 0; border-image: none; border-style: none; border-width: 0; background-image: none; background-color: transparent; border-radius: 0; } .osd GtkProgressBar.progressbar, GtkProgressBar.osd.progressbar { border-style: none; background-color: shade(@progressbar_background_b, 1.3); background-image: linear-gradient(to bottom, @progressbar_background_a, @progressbar_background_b); border-radius: 0; } /**************************** * Suggested action buttons * ****************************/ /* Not different from other buttons. */ /****************************** * Destructive action buttons * ******************************/ /* not different from other buttons */ /************************** * Selection Mode classes * **************************/ /* Not different from other toolbars. */ /**************** * GtkAssistant * ****************/ GtkAssistant .sidebar .highlight { color: @theme_fg_color; /*font: bold;*/ background-image: linear-gradient(to bottom, shade(@darker_color, 0.8), shade(@darker_color, 1.2)); background-color: @darker_color; border-style: none; padding: 5px 8px; border-radius: 3px; box-shadow: inset 0 2px 1px alpha(black, 0.45), inset 1px 1px 1px alpha(black, 0.5), inset 0 -2px 1px alpha(@entry_shadow, 0.1), inset -1px -1px 1px alpha(@entry_shadow, 0.34); } GtkAssistant .sidebar { padding: 12px; border-radius: 0px; border-style: none; border-width: 0px; color: mix (@theme_fg_color, @theme_bg_color, 0.40); /*?*/ background-color: @darker_color; } /************* * GtkSwitch * *************/ GtkSwitch { font: bold condensed; } GtkSwitch.trough { color: @theme_fg_color; border-style: solid; border-width: 1px; border-radius: 0px; } GtkSwitch.trough:active { color: @theme_main_color; background-image: linear-gradient(to bottom, shade(@active_switch_bg_color, 0.9), shade(@active_switch_bg_color, 1.1)); } GtkSwitch.trough:insensitive { background-image: none; background-color: shade(@theme_bg_color, 0.9); color: @insensitive_fg_color; } GtkSwitch.slider { border-radius: 0px; border-width: 3px; padding: 0px; border-style: solid; background-image: url("assets/switch-slider-grip.svg"), linear-gradient(to bottom, shade(@button_gradient_color_a, 1.1), shade(@button_gradient_color_b, 0.9)); background-repeat: no-repeat; background-position: center; } GtkSwitch.slider:insensitive { background-image: none; background-color: shade(@switch_slider_color, 0.6); } GtkStatusbar { padding: 5px; color: @theme_fg_color; -GtkStatusbar-shadow-type: none; } GtkScrolledWindow { background-color: transparent; } /* no double frames */ GtkScrolledWindow GtkViewport.frame { border-style: none; } GtkImage, GtkImage:hover, GtkImage:active, GtkImage:hover:active, GtkImage:insensitive, GtkLabel, GtkLabel:hover, GtkLabel:active, GtkLabel:hover:active, GtkLabel:insensitive { background-image: none; background-color: transparent; } GtkViewport, GtkIconView { border-radius: 1px; padding: 0px; } GtkIconView.view.cell:selected, GtkIconView.view.cell:selected:focus { background-color: transparent; border-style: solid; border-width: 3px; border-radius: 6px; border-color: shade(@theme_selected_bg_color, 1.5); color: @theme_text_color; /* FIXME: this probably needs to be better; * see https://bugzilla.gnome.org/show_bug.cgi?id=644157 */ outline-color: @progressbar_border; outline-style: solid; outline-offset: 3px; } /* These are for Evolution, whose new version can also be made fully readable with this theme fortunately. */ EMailDisplay, EPreviewPane .entry { background-color: @view_color; color: @theme_main_color; } /* make plain-text preview readable */ EMailDisplay GtkExpander GtkLabel { color: @theme_main_color; } EMailDisplay .expander:hover { color: @theme_fg_color; border-color: @theme_fg_color; } GtkHTML GtkExpander GtkLabel { color: #000000; } GtkHTML:active { color: #ffffff; } EShellWindow *:active { background-color: #717175; } EShellWindow .button *:active { background-color: transparent; } EShellWindow:insensitive { /* removes the "flash" when quitting */ background-color: @theme_bg_color; } /*EShellSidebar *.cell:insensitive { background-color: @less_dark_color; color: #ffffff; }*/ /***************** * Color Chooser * *****************/ GtkColorSwatch, GtkColorSwatch:selected { background-image: none; background-color: transparent; } GtkColorSwatch.color-dark:hover { background-image: linear-gradient(to bottom, alpha(white, 0) 40%, alpha(white, 0.3)); } GtkColorSwatch.color-light:hover { background-image: linear-gradient(to top, alpha(black, 0) 40%, alpha(black, 0.1)); } GtkColorSwatch:selected { border-style: solid; border-color: alpha(black, 0.2); border-width: 1px; } GtkColorSwatch:selected:hover { border-color: alpha(black, 0.5); } GtkColorSwatch.color-light:selected:hover, GtkColorSwatch.color-dark:selected:hover { background-image: none; } /*************************** * Radio and Check Buttons * ***************************/ .radio, .check, .radio:selected, .check:selected, .radio:selected:focus, .check:selected:focus, .cell.radio, .cell.check, .cell.radio:selected, .cell.check:selected, .cell.radio:selected:focus, .cell.check:selected:focus { background-color: transparent; border-width: 0px; border-style: none; } .check:hover, .check:selected:hover, .radio:hover, .radio:selected:hover { background-color: transparent; } /***************** * GtkCheckButton * *****************/ GtkCheckButton:hover { background-color: alpha(@theme_main_color, 0.09); /*shade(@theme_bg_color, 0.9)*/ } GtkCheckButton:selected:hover { background-color: alpha(@theme_main_color, 0.15); /*shade(@theme_bg_color, 0.8)*/ } /***************** * GtkRadioButton * *****************/ GtkRadioButton:hover { background-color: alpha(@theme_main_color, 0.09); /*shade(@theme_bg_color, 0.9)*/ } GtkRadioButton:selected:hover { background-color: alpha(@theme_main_color, 0.15); /*shade(@theme_bg_color, 0.8)*/ } /************* * Expanders * *************/ .expander { border-style: solid; border-width: 1px; border-radius: 2px; border-color: @internal_element_color; color: @internal_element_color; background-image: none; background-color: transparent; } .expander:active { border-color: @internal_element_color; color: @internal_element_color; background-color: transparent; } .expander:hover { border-color: @internal_element_prelight; color: @internal_element_prelight; } .expander row { border-color: @internal_element_color; color: @internal_element_color; } .expander row:selected, .expander row:selected:focus { border-image: none; border-color: shade(@internal_element_prelight, 1.3); color: shade(@internal_element_prelight, 1.3); background-image: none; background-color: transparent; } .expander row:selected:hover { background-color: transparent; } .expander column:sorted:selected, .expander column:sorted:selected:hover { background-image: none; background-color: transparent; } /**************** * Content view * ****************/ .content-view.view { background-color: @content_view_bg; } .content-view.view:hover { background-color: shade(@content_view_bg, 1.1); color: @theme_text_color; } .content-view.view:selected, .content-view.view:active { background-color: @theme_selected_bg_color; } .content-view.view:insensitive { background-color: @theme_unfocused_base_color; } GdMainIconView.content-view { -GdMainIconView-icon-size: 40; } GtkIconView.content-view.check { background-image: url("assets/grid-selection-unchecked.svg"); background-color: transparent; } GtkIconView.content-view.check:active { background-image: url("assets/grid-selection-checked.svg"); background-color: transparent; } .content-view.view.check, .content-view.view.check:active { background-color: transparent; } GtkIconView.content-view.check:hover, GtkIconView.content-view.check:insensitive, GtkIconView.content-view.check:selected { background-color: transparent; } /********************* * App Notifications * *********************/ .app-notification { border-style: solid; border-color: @app_notification_border; border-width: 0 1px 1px 1px; border-radius: 0 0 5px 5px; padding: 8px; background-image: linear-gradient(to bottom, @app_notification_a, @app_notification_b 18%, @app_notification_c); color: @theme_text_color; text-shadow: 0 1px black; } /************* * Calendars * *************/ GtkCalendar.view { border-radius: 1px; border-style: solid; border-width: 1px; border-color: @frame_color; padding: 2px; } GtkCalendar.header { border-radius: 0; background-image: linear-gradient(to bottom, shade(@theme_bg_color, 1.1), shade(@theme_bg_color, 0.86)); border-width: 0; } GtkCalendar.button, GtkCalendar.button:insensitive { background-image: none; background-color: transparent; } .highlight, GtkCalendar.highlight { background-color: @theme_selected_bg_color; color: @theme_selected_fg_color; border-radius: 0; padding: 0px; border-width: 0px; } /************** * GtkInfoBar * **************/ GtkInfoBar { border-width: 0; border-style: none; } .info .entry, .info .entry:focus, .info .button, .info .button:insensitive, .info .button:active, .warning .entry, .warning .entry:focus, .warning .button, .warning .button:insensitive, .warning .button:active, .error .entry, .error .entry:focus, .error .button, .error .button:insensitive, .error .button:active { border-image: none; border-style: none; } .info { background-color: @info_bg_color; color: @info_fg_color; } .warning { background-color: @warning_bg_color; color: @warning_fg_color; } .question { background-color: @question_bg_color; color: @question_fg_color; } .error { background-color: @error_bg_color; color: @error_fg_color; } .error { background-color: @error_bg_color; } /* some apps need this */ GtkLabel { color: @theme_fg_color; } /************** * Dim labels * **************/ .dim-label, .dim-label:hover, .dim-label:focus, .view.dim-label { color: mix (@theme_fg_color, @theme_bg_color, 0.50); text-shadow: none; } .dim-label:selected, .dim-label:selected:focus { color: mix (@theme_selected_fg_color, @theme_base_color, 0.50); text-shadow: none; } .sidebar.separator, .sidebar.separator:hover { color: alpha(@frame_color, 0.6); } ApDocView, /* Abiword */ EogScrollView, /* Eog */ CheeseThumbView /* Cheese */ { background-color: @chrome_bg_color; -EogScrollView-shadow-type: none; } /* gnome-terminal */ TerminalScreen { background-color: @theme_main_color; color: @theme_text_color; -TerminalScreen-background-darkness: 0.80; } /* gcalctool */ MathWindow .frame { border-color: @theme_main_color; padding: 0px; } MathWindow GtkScrolledWindow GtkViewport.frame { border-style: solid; border-width: 2px; border-radius: 0px; border-color: @theme_main_color; } MathDisplay .view { background-color: @theme_main_color; color: @theme_text_color; } /* gnome-documents and Totem's search */ .documents-entry-tag { background-color: transparent; border-radius: 1px; border-width: 0; margin: 2px; padding: 4px; } .documents-entry-tag:hover { background-color: shade(@theme_selected_bg_color, 1.23); } /********************** * Fallback Mode Panel **********************/ .gnome-panel-menu-bar, PanelApplet > GtkMenuBar.menubar, PanelToplevel, PanelWidget, PanelAppletFrame, PanelApplet { background-color: @os_chrome_bg_color; background-image: none; color: @os_chrome_fg_color; } ClockBox, .gnome-panel-menu-bar, PanelApplet > GtkMenuBar.menubar { font: bold; } .gnome-panel-menu-bar .menuitem:hover, PanelApplet > GtkMenuBar.menubar .menuitem:hover { background-color: @os_chrome_selected_bg_color; color: @os_chrome_selected_fg_color; } PanelApplet .button, PanelApplet .button:hover { padding: 4px; border-image: none; border-width: 0; border-radius: 0; background-image: none; background-color: transparent; color: @os_chrome_fg_color; } PanelApplet .button:active:hover, PanelApplet .button:active { border-image: none; background-image: none; background-color: @os_chrome_selected_bg_color; border-width: 0px; border-radius: 0; } PanelApplet *:hover { color: @os_chrome_selected_fg_color; } PanelApplet *:active, PanelApplet *:hover:active { color: @os_chrome_selected_fg_color; } NaTrayApplet { -NaTrayApplet-icon-padding: 12; -NaTrayApplet-icon-size: 16; } WnckPager, WnckTasklist { background-color: @os_chrome_selected_bg_color; background-image: none; color: @os_chrome_fg_color; } GsmFailWhaleDialog { background-color: @os_chrome_bg_color; background-image: none; color: @os_chrome_fg_color; } GsmFailWhaleDialog * { background-color: @os_chrome_bg_color; background-image: none; }
third_party/blink/web_tests/css1/pseudo/firstletter.html
nwjs/chromium.src
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd"> <HTML> <HEAD> <TITLE>CSS1 Test Suite: 2.4 first-letter</TITLE> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <META http-equiv="Content-Style-Type" content="text/css"> <LINK rel="stylesheet" type="text/css" media="screen" href="../resources/base.css"> <SCRIPT src="../resources/base.js"></SCRIPT> <STYLE type="text/css"> P:first-letter {color: maroon;} .two:first-letter {font-size: 200%;} P.three:first-letter {font-size: 350%;} </STYLE> </HEAD> <BODY><P>The style declarations which apply to the text below are:</P> <PRE>P:first-letter {color: maroon;} .two:first-letter {font-size: 200%;} P.three:first-letter {font-size: 350%;} </PRE> <HR> <P> The first letter of this paragraph, and only that one, should be maroon. If this precise combination does not occur, then the user agent has failed this test. Remember that in order to ensure a complete test, the paragraph must be displayed on more than one line. </P> <P class="two"> The first letter of this paragraph, and only that one, should be a larger font size, as well as maroon. If this precise combination does not occur, then the user agent has failed this test. Remember that in order to ensure a complete test, the paragraph must be displayed on more than one line. </P> <P class="three"> "We should check for quotation support," it was said. The first two characters in this paragraph-- a double-quote mark and a capital 'W'-- should be 350% bigger than the rest of the paragraph, and maroon. Note that this is not required under CSS1, but it is recommended. </P> <TABLE border cellspacing="0" cellpadding="3" class="tabletest"> <TR> <TD colspan="2" bgcolor="silver"><STRONG>TABLE Testing Section</STRONG></TD> </TR> <TR> <TD bgcolor="silver">&nbsp;</TD> <TD><P> The first letter of this paragraph, and only that one, should be maroon. If this precise combination does not occur, then the user agent has failed this test. Remember that in order to ensure a complete test, the paragraph must be displayed on more than one line. </P> <P class="two"> The first letter of this paragraph, and only that one, should be a larger font size, as well as maroon. If this precise combination does not occur, then the user agent has failed this test. Remember that in order to ensure a complete test, the paragraph must be displayed on more than one line. </P> <P class="three"> "We should check for quotation support," it was said. The first two characters in this paragraph-- a double-quote mark and a capital 'W'-- should be 350% bigger than the rest of the paragraph, and maroon. Note that this is not required under CSS1, but it is recommended. </P> </TD></TR></TABLE></BODY> </HTML>
third_party/blink/web_tests/external/wpt/css/css-break/fragmented-oof-in-inline-crash.html
chromium/chromium
<!DOCTYPE html> <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1290093"> <div style="columns:2;"> <span style="position:relative;"> <div style="position:absolute;"></div> <div id="spanner" style="column-span:all;"></div> </span> </div> <script> document.body.offsetTop; // This doesn't actually affect layout, but changing display type requires re-attach. spanner.style.display = "flow-root"; </script>
web/js/openlayers/tests/Layer/WMS/Post.html
spatindsaongo/geos
<html> <head> <script src="../../../lib/OpenLayers.js"></script> <script type="text/javascript"> var isMozilla = (navigator.userAgent.indexOf("compatible") == -1); var isOpera = (navigator.userAgent.indexOf("Opera") != -1); var layer; var name = 'Test Layer'; var url = "http://octo.metacarta.com/cgi-bin/mapserv"; var params = { map: '/mapdata/vmap_wms.map', layers: 'basic', format: 'image/jpeg'}; function test_Layer_WMS_Post_constructor (t) { t.plan( 2 ); var url = "http://octo.metacarta.com/cgi-bin/mapserv"; layer = new OpenLayers.Layer.WMS.Post(name, url, params); t.ok( layer.tileClass == OpenLayers.Tile.Image.IFrame, "instantiate OpenLayers.Tile.Image.IFrame tiles."); layer.destroy(); var options = { unsupportedBrowsers: [OpenLayers.Util.getBrowserName()]}; layer = new OpenLayers.Layer.WMS.Post(name, url, params, options); t.ok( layer.tileClass == OpenLayers.Tile.Image, "unsupported browser instantiate Image tiles."); layer.destroy(); } function test_Layer_WMS_Post_addtile (t) { t.plan( 3 ); layer = new OpenLayers.Layer.WMS.Post(name, url, params); var map = new OpenLayers.Map('map'); map.addLayer(layer); var bounds = new OpenLayers.Bounds(1,2,3,4); var pixel = new OpenLayers.Pixel(5,6); var tile = layer.addTile(bounds, pixel); if(isMozilla || isOpera) { t.ok( tile instanceof OpenLayers.Tile.Image, "tile is an instance of OpenLayers.Tile.Image"); } else { t.ok( tile instanceof OpenLayers.Tile.Image.IFrame, "tile is an instance of OpenLayers.Tile.Image.IFrame"); } map.destroy(); var browserName = OpenLayers.Util.getBrowserName(); var options = { unsupportedBrowsers: [browserName]}; // test the unsupported browser layer = new OpenLayers.Layer.WMS.Post(name, url, params, options); map = new OpenLayers.Map('map'); map.addLayer(layer); tile = layer.addTile(bounds, pixel); t.ok( tile instanceof OpenLayers.Tile.Image, "unsupported browser: tile is an instance of Tile.Image"); layer.destroy(); // test a supported browser OpenLayers.Util.getBrowserName = function () { return 'not_' + browserName }; layer = new OpenLayers.Layer.WMS.Post(name, url, params, options); map.addLayer(layer); var tile2 = layer.addTile(bounds, pixel); t.ok( tile2 instanceof OpenLayers.Tile.Image.IFrame, "supported browser: tile is an instance of Tile.Image.IFrame"); map.destroy(); } </script> </head> <body> <div id="map" style="width:500px;height:550px"></div> </body> </html>
web/public/js/lib/ext-3.4.1/docs/source/BaseItem.html
dinubalti/FirstSymfony
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> <style type="text/css"> .highlight { display: block; background-color: #ddd; } </style> <script type="text/javascript"> function highlight() { document.getElementById(location.hash.replace(/#/, "")).className = "highlight"; } </script> </head> <body onload="prettyPrint(); highlight();"> <pre class="prettyprint lang-js"><span id='Ext-menu-BaseItem-method-constructor'><span id='Ext-menu-BaseItem'>/** </span></span> * @class Ext.menu.BaseItem * @extends Ext.Component * The base class for all items that render into menus. BaseItem provides default rendering, activated state * management and base configuration options shared by all menu components. * @constructor * Creates a new BaseItem * @param {Object} config Configuration options * @xtype menubaseitem */ Ext.menu.BaseItem = Ext.extend(Ext.Component, { <span id='Ext-menu-BaseItem-property-parentMenu'> /** </span> * @property parentMenu * @type Ext.menu.Menu * The parent Menu of this Item. */ <span id='Ext-menu-BaseItem-cfg-handler'> /** </span> * @cfg {Function} handler * A function that will handle the click event of this menu item (optional). * The handler is passed the following parameters:&lt;div class=&quot;mdetail-params&quot;&gt;&lt;ul&gt; * &lt;li&gt;&lt;code&gt;b&lt;/code&gt; : Item&lt;div class=&quot;sub-desc&quot;&gt;This menu Item.&lt;/div&gt;&lt;/li&gt; * &lt;li&gt;&lt;code&gt;e&lt;/code&gt; : EventObject&lt;div class=&quot;sub-desc&quot;&gt;The click event.&lt;/div&gt;&lt;/li&gt; * &lt;/ul&gt;&lt;/div&gt; */ <span id='Ext-menu-BaseItem-cfg-scope'> /** </span> * @cfg {Object} scope * The scope (&lt;tt&gt;&lt;b&gt;this&lt;/b&gt;&lt;/tt&gt; reference) in which the handler function will be called. */ <span id='Ext-menu-BaseItem-cfg-canActivate'> /** </span> * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false) */ canActivate : false, <span id='Ext-menu-BaseItem-cfg-activeClass'> /** </span> * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to &quot;x-menu-item-active&quot;) */ activeClass : &quot;x-menu-item-active&quot;, <span id='Ext-menu-BaseItem-cfg-hideOnClick'> /** </span> * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true) */ hideOnClick : true, <span id='Ext-menu-BaseItem-cfg-clickHideDelay'> /** </span> * @cfg {Number} clickHideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 1) */ clickHideDelay : 1, <span id='Ext-menu-BaseItem-property-ctype'> // private </span> ctype : &quot;Ext.menu.BaseItem&quot;, <span id='Ext-menu-BaseItem-property-actionMode'> // private </span> actionMode : &quot;container&quot;, <span id='Ext-menu-BaseItem-method-initComponent'> initComponent : function(){ </span> Ext.menu.BaseItem.superclass.initComponent.call(this); this.addEvents( <span id='Ext-menu-BaseItem-event-click'> /** </span> * @event click * Fires when this item is clicked * @param {Ext.menu.BaseItem} this * @param {Ext.EventObject} e */ 'click', <span id='Ext-menu-BaseItem-event-activate'> /** </span> * @event activate * Fires when this item is activated * @param {Ext.menu.BaseItem} this */ 'activate', <span id='Ext-menu-BaseItem-event-deactivate'> /** </span> * @event deactivate * Fires when this item is deactivated * @param {Ext.menu.BaseItem} this */ 'deactivate' ); if(this.handler){ this.on(&quot;click&quot;, this.handler, this.scope); } }, <span id='Ext-menu-BaseItem-method-onRender'> // private </span> onRender : function(container, position){ Ext.menu.BaseItem.superclass.onRender.apply(this, arguments); if(this.ownerCt &amp;&amp; this.ownerCt instanceof Ext.menu.Menu){ this.parentMenu = this.ownerCt; }else{ this.container.addClass('x-menu-list-item'); this.mon(this.el, { scope: this, click: this.onClick, mouseenter: this.activate, mouseleave: this.deactivate }); } }, <span id='Ext-menu-BaseItem-method-setHandler'> /** </span> * Sets the function that will handle click events for this item (equivalent to passing in the {@link #handler} * config property). If an existing handler is already registered, it will be unregistered for you. * @param {Function} handler The function that should be called on click * @param {Object} scope The scope (&lt;code&gt;this&lt;/code&gt; reference) in which the handler function is executed. Defaults to this menu item. */ setHandler : function(handler, scope){ if(this.handler){ this.un(&quot;click&quot;, this.handler, this.scope); } this.on(&quot;click&quot;, this.handler = handler, this.scope = scope); }, <span id='Ext-menu-BaseItem-method-onClick'> // private </span> onClick : function(e){ if(!this.disabled &amp;&amp; this.fireEvent(&quot;click&quot;, this, e) !== false &amp;&amp; (this.parentMenu &amp;&amp; this.parentMenu.fireEvent(&quot;itemclick&quot;, this, e) !== false)){ this.handleClick(e); }else{ e.stopEvent(); } }, <span id='Ext-menu-BaseItem-method-activate'> // private </span> activate : function(){ if(this.disabled){ return false; } var li = this.container; li.addClass(this.activeClass); this.region = li.getRegion().adjust(2, 2, -2, -2); this.fireEvent(&quot;activate&quot;, this); return true; }, <span id='Ext-menu-BaseItem-method-deactivate'> // private </span> deactivate : function(){ this.container.removeClass(this.activeClass); this.fireEvent(&quot;deactivate&quot;, this); }, <span id='Ext-menu-BaseItem-method-shouldDeactivate'> // private </span> shouldDeactivate : function(e){ return !this.region || !this.region.contains(e.getPoint()); }, <span id='Ext-menu-BaseItem-method-handleClick'> // private </span> handleClick : function(e){ var pm = this.parentMenu; if(this.hideOnClick){ if(pm.floating){ this.clickHideDelayTimer = pm.hide.defer(this.clickHideDelay, pm, [true]); }else{ pm.deactivateActive(); } } }, <span id='Ext-menu-BaseItem-method-beforeDestroy'> beforeDestroy: function(){ </span> clearTimeout(this.clickHideDelayTimer); Ext.menu.BaseItem.superclass.beforeDestroy.call(this); }, <span id='Ext-menu-BaseItem-method-expandMenu'> // private. Do nothing </span> expandMenu : Ext.emptyFn, <span id='Ext-menu-BaseItem-method-hideMenu'> // private. Do nothing </span> hideMenu : Ext.emptyFn }); Ext.reg('menubaseitem', Ext.menu.BaseItem);</pre> </body> </html>
task/task4.50/app/css/base.css
shanlanmi/2016IFEspring
/*# sourceMappingURL=base.css.map */
lib/three.js-master/docs/api/lights/shadows/SpotLightShadow.html
TyLindberg/lahacks2017
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <base href="../../../" /> <script src="list.js"></script> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> [page:LightShadow] &rarr; <h1>[name]</h1> <div class="desc"> This used internally by [page:SpotLight SpotLights] for calculating shadows. </div> <h2>Example</h2> <div> <code> //Create a WebGLRenderer and turn on shadows in the renderer var renderer = new THREE.WebGLRenderer(); renderer.shadowMap.enabled = true; renderer.shadowMap.type = THREE.PCFSoftShadowMap; // default THREE.PCFShadowMap //Create a SpotLight and turn on shadows for the light var light = new THREE.SpotLight( 0xffffff ); light.castShadow = true; // default false scene.add( light ); //Set up shadow properties for the light light.shadow.mapSize.width = 512; // default light.shadow.mapSize.height = 512; // default light.shadow.camera.near = 0.5; // default light.shadow.camera.far = 500 // default //Create a sphere that cast shadows (but does not receive them) var sphereGeometry = new THREE.SphereBufferGeometry( 5, 32, 32 ); var sphereMaterial = new THREE.MeshStandardMaterial( { color: 0xff0000 } ); var sphere = new THREE.Mesh( sphereGeometry, sphereMaterial ); sphere.castShadow = true; //default is false sphere.receiveShadow = false; //default scene.add( sphere ); //Create a plane that receives shadows (but does not cast them) var planeGeometry = new THREE.PlaneBufferGeometry( 20, 20, 32, 32 ); var planeMaterial = new THREE.MeshStandardMaterial( { color: 0x00ff00 } ) var plane = new THREE.Mesh( planeGeometry, planeMaterial ); plane.receiveShadow = true; scene.add( plane ); //Create a helper for the shadow camera (optional) var helper = new THREE.CameraHelper( light.shadow.camera ); scene.add( helper ); </code> </div> <h2>Constructor</h2> The constructor creates a [page:PerspectiveCamera PerspectiveCamera] to manage the shadow's view of the world. <h2>Properties</h2> See the base [page:LightShadow LightShadow] class for common properties. <h3>[property:Camera camera]</h3> <div> The light's view of the world. This is used to generate a depth map of the scene; objects behind other objects from the light's perspective will be in shadow.<br /><br /> The default is a [page:PerspectiveCamera] with [page:PerspectiveCamera.fov fov] of 90, [page:PerspectiveCamera.aspect aspect] of 1, [page:PerspectiveCamera.near near] clipping plane at 0.5 and [page:PerspectiveCamera.far far] clipping plane at 500. </div> <h3>[property:Boolean isSpotLightShadow]</h3> <div> Used to check whether this or derived classes are spot light shadows. Default is *true*.<br /><br /> You should not change this, as it used internally for optimisation. </div> <h2>Methods</h2> See the base [page:LightShadow LightShadow] class for common methods. <h3>[method:SpotLightShadow update]( [page:SpotLight light] )</h3> <div> Updates the internal perspective [page:.camera camera] based on the passed in [page:SpotLight light]. </div> <h2>Source</h2> [link:https://github.com/mrdoob/three.js/blob/master/src/lights/[name].js src/lights/[name].js] </body> </html>
docs/api/class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source-members.html
mixerp6/mixerp
<!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.10"/> <title>Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="mixerp.png"/></td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>Packages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> </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('class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.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">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a>, including all inherited members.</p> <table class="directory"> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>Parameters</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>Query</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0" class="even"><td class="entry"><b>RunningTotalFieldIndices</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a></td><td class="entry"></td></tr> <tr bgcolor="#f0f0f0"><td class="entry"><b>RunningTotalTextColumnIndex</b> (defined in <a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</a>)</td><td class="entry"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_report_writer_1_1_data_source.html">MixERP.Net.Core.Modules.BackOffice.Data.ReportWriter.DataSource</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.10 </li> </ul> </div> </body> </html>
webkit/LayoutTests/fast/events/touch/create-touch-event.html
danialbehzadi/Nokia-RM-1013-2.0.0.11
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <head> <link rel="stylesheet" href="../../js/resources/js-test-style.css"> <script src="../../js/resources/js-test-pre.js"></script> </head> <body> <p id="description"></p> <div id="console"></div> <script src="resources/create-touch-event.js"></script> <script src="../../js/resources/js-test-post.js"></script> </body> </html>
tests/wpt/web-platform-tests/css/cssom-view/scroll-behavior-main-frame-root.html
danlrobertson/servo
<!DOCTYPE html> <title>Testing scrollOptions' behavior for Element.scroll* and scroll-behavior on the root of the main frame</title> <meta name="timeout" content="long"/> <link rel="author" title="Frédéric Wang" href="mailto:fwang@igalia.com"> <link rel="help" href="https://drafts.csswg.org/cssom-view/#propdef-scroll-behavior"> <link rel="help" href="https://drafts.csswg.org/cssom-view/#scrolling-box"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="support/scroll-behavior.js"></script> <style> body { margin: 0; } .autoBehavior { scroll-behavior: auto; } .smoothBehavior { scroll-behavior: smooth; } </style> <div id="log"> </div> <div id="pageContent" style="position: absolute; left: 0; top: 0;"> <div id="elementToReveal" style="position: absolute; display: inline-block; width: 10px; height: 15px; background: black;"></div> </div> <script> var pageLoaded = async_test("Page loaded"); var scrollingElement, styledElement, elementToRevealLeft, elementToRevealTop; window.addEventListener("load", pageLoaded.step_func_done(function() { scrollingElement = document.scrollingElement; styledElement = document.documentElement; pageContent.style.width = (10 + window.innerWidth) * 5 + "px"; pageContent.style.height = (20 + window.innerHeight) * 6 + "px"; elementToRevealLeft = (10 + window.innerWidth) * 3; elementToRevealTop = (20 + window.innerHeight) * 4; elementToReveal.style.left = elementToRevealLeft + "px"; elementToReveal.style.top = elementToRevealTop + "px"; add_completion_callback(() => { resetScroll(scrollingElement); }); ["scroll", "scrollTo", "scrollBy", "scrollIntoView"].forEach((scrollFunction) => { promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "autoBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, null, elementToRevealLeft, elementToRevealTop); assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Should set scrollLeft immediately"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Should set scrollTop immediately"); return new Promise((resolve) => { resolve(); }); }, `Main frame with auto scroll-behavior ; ${scrollFunction}() with default behavior`); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "autoBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, "auto", elementToRevealLeft, elementToRevealTop); assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Should set scrollLeft immediately"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Should set scrollTop immediately"); return new Promise((resolve) => { resolve(); }); }, `Main frame with auto scroll-behavior ; ${scrollFunction}() with auto behavior`); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "autoBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, "instant", elementToRevealLeft, elementToRevealTop); assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Should set scrollLeft immediately"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Should set scrollTop immediately"); return new Promise((resolve) => { resolve(); }); }, `Main frame with auto scroll-behavior ; ${scrollFunction}() with instant behavior`); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "autoBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, "smooth", elementToRevealLeft, elementToRevealTop); assert_less_than(scrollingElement.scrollLeft, elementToRevealLeft, "Should not set scrollLeft immediately"); assert_less_than(scrollingElement.scrollTop, elementToRevealTop, "Should not set scrollTop immediately"); return waitForScrollEnd(scrollingElement).then(() => { assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Final value of scrollLeft"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Final value of scrollTop"); }); }, `Main frame with auto scroll-behavior ; ${scrollFunction}() with smooth behavior`); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "smoothBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, null, elementToRevealLeft, elementToRevealTop); assert_less_than(scrollingElement.scrollLeft, elementToRevealLeft, "Should not set scrollLeft immediately"); assert_less_than(scrollingElement.scrollTop, elementToRevealTop, "Should not set scrollTop immediately"); return waitForScrollEnd(scrollingElement).then(() => { assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Final value of scrollLeft"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Final value of scrollTop"); }); }, `Main frame with smooth scroll-behavior ; ${scrollFunction}() with default behavior`); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "smoothBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, "auto", elementToRevealLeft, elementToRevealTop); assert_less_than(scrollingElement.scrollLeft, elementToRevealLeft, "Should not set scrollLeft immediately"); assert_less_than(scrollingElement.scrollTop, elementToRevealTop, "Should not set scrollTop immediately"); return waitForScrollEnd(scrollingElement).then(() => { assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Final value of scrollLeft"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Final value of scrollTop"); }); }, `Main frame with smooth scroll-behavior ; ${scrollFunction}() with auto behavior`); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "smoothBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, "instant", elementToRevealLeft, elementToRevealTop); assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Should set scrollLeft immediately"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Should set scrollTop immediately"); return new Promise((resolve) => { resolve(); }); }, `Main frame with smooth scroll-behavior ; ${scrollFunction}() with instant behavior`); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "smoothBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, scrollFunction, "smooth", elementToRevealLeft, elementToRevealTop); assert_less_than(scrollingElement.scrollLeft, elementToRevealLeft, "Should not set scrollLeft immediately"); assert_less_than(scrollingElement.scrollTop, elementToRevealTop, "Should not set scrollTop immediately"); return waitForScrollEnd(scrollingElement).then(() => { assert_equals(scrollingElement.scrollLeft, elementToRevealLeft, "Final value of scrollLeft"); assert_equals(scrollingElement.scrollTop, elementToRevealTop, "Final value of scrollTop"); }); }, `Main frame with smooth scroll-behavior ; ${scrollFunction}() with smooth behavior`); }); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "smoothBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, "scroll", "smooth", elementToRevealLeft, elementToRevealTop); scrollNode(scrollingElement, "scroll", "smooth", elementToRevealLeft / 2, elementToRevealTop / 2); return waitForScrollEnd(scrollingElement).then(() => { assert_equals(scrollingElement.scrollLeft, elementToRevealLeft / 2, "Final value of scrollLeft"); assert_equals(scrollingElement.scrollTop, elementToRevealTop / 2, "Final value of scrollTop"); }); }, "Aborting an ongoing smooth scrolling on the main frame with another smooth scrolling"); promise_test(() => { resetScroll(scrollingElement); setScrollBehavior(styledElement, "smoothBehavior"); assert_equals(scrollingElement.scrollLeft, 0); assert_equals(scrollingElement.scrollTop, 0); scrollNode(scrollingElement, "scroll", "smooth", elementToRevealLeft, elementToRevealTop); scrollNode(scrollingElement, "scroll", "instant", 0, 0); return waitForScrollEnd(scrollingElement).then(() => { assert_equals(scrollingElement.scrollLeft, 0, "Final value of scrollLeft"); assert_equals(scrollingElement.scrollTop, 0, "Final value of scrollTop"); }); }, "Aborting an ongoing smooth scrolling on the main frame with an instant scrolling"); })); </script>
help/help/src/sakai_screensteps_myWorkspaceInstructorGuide/What-is-the-My-Workspace-Tool-Menu-.html
marktriggs/nyu-sakai-10.4
<!DOCTYPE html> <html lang="en"> <head> <title>What is the My Workspace Tool Menu?</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta content="sakai.myworkspace.toolmenu" name="description"> <meta content="My Workspace, landing page, navigation" name="search"> <link href="/library/skin/tool_base.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/skin/neo-default/tool.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/skin/neo-default/help.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <link href="/library/js/jquery/featherlight/0.4.0/featherlight.min.css" media="screen" rel="stylesheet" type="text/css" charset="utf-8"> <script src="/library/js/jquery/jquery-1.9.1.min.js" type="text/javascript" charset="utf-8"></script><script src="/library/js/jquery/featherlight/0.4.0/featherlight.min.js" type="text/javascript" charset="utf-8"></script><script type="text/javascript" charset="utf-8"> $(document).ready(function(){ $("a[rel^='featherlight']").featherlight({ type: { image:true }, closeOnClick: 'anywhere' }); }); </script> </head> <body> <div id="wrapper"> <div id="article-content"> <div id="article-header"> <h1 class="article-title">What is the My Workspace Tool Menu?</h1> </div> <div id="steps-container"> <div id="step-6169" class="step-container"> <h2 class="step-title">My Workspace Tool Menu.</h2> <div class="step-image-container"> <img src="/library/image/help/en/What-is-the-My-Workspace-Tool-Menu-/My-Workspace-Tool-Menu.png" width="166" height="401" class="step-image" alt="My Workspace Tool Menu."> </div> <div class="step-instructions"> <p>The My Workspace Tool Menu contains links to user account information and preferences. These links include:</p> <ul> <li>Profile</li> <li>Membership&nbsp;</li> <li>Schedule&nbsp;</li> <li>Resources&nbsp;</li> <li>Announcements&nbsp;</li> <li>Worksite Setup&nbsp;</li> <li>Preferences&nbsp;</li> <li>Account&nbsp;</li> <li>Help&nbsp;</li> </ul> <p><em>Note: You may also see links to system-wide resources in this menu if they have been added by your institution. Also note that the tools displayed in the Tool Menu will be different depending on which Sakai site you are currently viewing.</em></p> </div> </div> <div class="clear"></div> <div id="step-6170" class="step-container"> <h3 class="step-title">Collapsing/Expanding the Tool Menu</h3> <div class="step-image-container"> <img src="/library/image/help/en/What-is-the-My-Workspace-Tool-Menu-/Collapsing-Expanding-the-Tool-Menu.png" width="46" height="304" class="step-image" alt="Collapsing/Expanding the Tool Menu"> </div> <div class="step-instructions"><p>You may expand and collapse the Tool Menu by clicking on the arrow tab in the upper right portion of the menu. When the menu is collapsed, the menu links are represented by their associated icons.</p></div> </div> <div class="clear"></div> </div> </div> </div> </body> </html>
third_party/blink/web_tests/external/wpt/css/compositing/mix-blend-mode/mix-blend-mode-with-transform-and-preserve-3D.html
chromium/chromium
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS Test: mix-blend-mode between an element and its child having 3D transform and preserve 3D</title> <link rel="author" title="Mirela Budăeș" href="mailto:mbudaes@adobe.com"> <link rel="author" title="Ion Roșca" href="mailto:rosca@adobe.com"> <link rel="reviewer" title="Mihai Țică" href="mailto:mitica@adobe.com"> <link rel="help" href="https://drafts.fxtf.org/compositing-1/#mix-blend-mode"> <meta name="assert" content="Test checks that mix-blend-mode overrides the behavior of transform-style:preserve-3d"> <link rel="match" href="reference/mix-blend-mode-with-transform-and-preserve-3D-ref.html"> <style type="text/css"> div { height: 150px; width: 150px; } .container { position: relative; z-index: 1; background-color: lime;/*rgb(0,255,0);*/ } .transformed { transform-style: preserve-3d; transform: rotateY(50deg); background-color: aqua;/*rgb(0,255,255);*/ mix-blend-mode: difference; } .child { transform-origin: top left; transform: rotateX(40deg); background-color: red;/*rgb(255,0,0);*/ } </style> </head> <body> <p>You should see 2 small rectangles (yellow and blue) drawn inside a lime container.<br> The edges for all the rectangles should be either horizontal, or vertical (not skewed).</p> <div class="container"> <div class="transformed"> <div class="child"></div> </div> </div> </body> </html>
src/site/resources/release-notes/release-notes.html
elfreefer/1-podam
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Strict//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <link rel="stylesheet" href="../css/podam.css" type="text/css"> <title>PODAM - Release Notes</title> </head> <a href="../index.html">Home</a> <br /> <body> <h1>4.7.2.RELEASE - 2nd February 2015</h1> <h2>Enhancement</h2> <ul> <li>[<a href='https://github.com/mtedone/podam/pull/73'>Enhancement</a>] - Skipping methods starting with "set" and having non single parameter instead of throwing exception </li> </ul> <h2>Bug</h2> <ul> <li>[<a href='https://github.com/mtedone/podam/pull/74'>Bug Fix</a>] - Properly handle immutable default values </li> </ul> <h1>4.7.1.RELEASE - 17th January 2015</h1> <h2>Bug</h2> <ul> <li>[<a href='https://github.com/mtedone/podam/pull/72'>Bug</a>] - Properly handle default values for collection and map types </li> </ul> <h1>3.0.5.RELEASE - 27th July 2013</h1> <h2>Enhancement</h2> <ul> <li>[<a href='https://github.com/mtedone/podam/pull/13'>Enhancement</a>] - Adding support for excluding fields based on custom annotations </li> </ul> <h1>3.0.4.RELEASE - 20th June 2013</h1> <h2>Bug</h2> <ul> <li>[<a href='https://github.com/mtedone/podam/pull/10'>Bug Fix</a>] - Resolve generics parameters in a safe and uniform way </li> </ul> </body> </html>
utils/ant/apache-ant-1.9.4/manual/api/org/apache/tools/ant/taskdefs/Recorder.ActionChoices.html
byronka/xenos
<!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_65) on Tue Apr 29 23:14:31 EDT 2014 --> <TITLE> Recorder.ActionChoices (Apache Ant API) </TITLE> <META NAME="date" CONTENT="2014-04-29"> <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="Recorder.ActionChoices (Apache Ant API)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/tools/ant/taskdefs/Recorder.html" title="class in org.apache.tools.ant.taskdefs"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/tools/ant/taskdefs/Recorder.VerbosityLevelChoices.html" title="class in org.apache.tools.ant.taskdefs"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/tools/ant/taskdefs/Recorder.ActionChoices.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Recorder.ActionChoices.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.apache.tools.ant.types.EnumeratedAttribute">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.apache.tools.ant.taskdefs</FONT> <BR> Class Recorder.ActionChoices</H2> <PRE> java.lang.Object <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html" title="class in org.apache.tools.ant.types">org.apache.tools.ant.types.EnumeratedAttribute</A> <IMG SRC="../../../../../resources/inherit.gif" ALT="extended by "><B>org.apache.tools.ant.taskdefs.Recorder.ActionChoices</B> </PRE> <DL> <DT><B>Enclosing class:</B><DD><A HREF="../../../../../org/apache/tools/ant/taskdefs/Recorder.html" title="class in org.apache.tools.ant.taskdefs">Recorder</A></DD> </DL> <HR> <DL> <DT><PRE>public static class <B>Recorder.ActionChoices</B><DT>extends <A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html" title="class in org.apache.tools.ant.types">EnumeratedAttribute</A></DL> </PRE> <P> A list of possible values for the <code>setAction()</code> method. Possible values include: start and stop. <P> <P> <HR> <P> <!-- =========== FIELD SUMMARY =========== --> <A NAME="field_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Field Summary</B></FONT></TH> </TR> </TABLE> &nbsp;<A NAME="fields_inherited_from_class_org.apache.tools.ant.types.EnumeratedAttribute"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Fields inherited from class org.apache.tools.ant.types.<A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html" title="class in org.apache.tools.ant.types">EnumeratedAttribute</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#value">value</A></CODE></TD> </TR> </TABLE> &nbsp; <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/taskdefs/Recorder.ActionChoices.html#Recorder.ActionChoices()">Recorder.ActionChoices</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.lang.String[]</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../../org/apache/tools/ant/taskdefs/Recorder.ActionChoices.html#getValues()">getValues</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This is the only method a subclass needs to implement.</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_org.apache.tools.ant.types.EnumeratedAttribute"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class org.apache.tools.ant.types.<A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html" title="class in org.apache.tools.ant.types">EnumeratedAttribute</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#containsValue(java.lang.String)">containsValue</A>, <A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#getIndex()">getIndex</A>, <A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#getInstance(java.lang.Class, java.lang.String)">getInstance</A>, <A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#getValue()">getValue</A>, <A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#indexOfValue(java.lang.String)">indexOfValue</A>, <A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#setValue(java.lang.String)">setValue</A>, <A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#toString()">toString</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="Recorder.ActionChoices()"><!-- --></A><H3> Recorder.ActionChoices</H3> <PRE> public <B>Recorder.ActionChoices</B>()</PRE> <DL> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="getValues()"><!-- --></A><H3> getValues</H3> <PRE> public java.lang.String[] <B>getValues</B>()</PRE> <DL> <DD>This is the only method a subclass needs to implement.. <P> <DD><DL> <DT><B>Specified by:</B><DD><CODE><A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html#getValues()">getValues</A></CODE> in class <CODE><A HREF="../../../../../org/apache/tools/ant/types/EnumeratedAttribute.html" title="class in org.apache.tools.ant.types">EnumeratedAttribute</A></CODE></DL> </DD> <DD><DL> <DT><B>Returns:</B><DD>an array holding all possible values of the enumeration. The order of elements must be fixed so that <tt>indexOfValue(String)</tt> always return the same index for the same value.</DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../../org/apache/tools/ant/taskdefs/Recorder.html" title="class in org.apache.tools.ant.taskdefs"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../../org/apache/tools/ant/taskdefs/Recorder.VerbosityLevelChoices.html" title="class in org.apache.tools.ant.taskdefs"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../../index.html?org/apache/tools/ant/taskdefs/Recorder.ActionChoices.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="Recorder.ActionChoices.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;<A HREF="#fields_inherited_from_class_org.apache.tools.ant.types.EnumeratedAttribute">FIELD</A>&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
ajax/libs/vkui/4.27.2/cssm/components/Tabbar/Tabbar.min.css
cdnjs/cdnjs
.vkuiTabbar{position:fixed;z-index:2;bottom:0;left:0;width:100%;height:48px;height:var(--tabbar_height);padding-bottom:0;padding-bottom:var(--safe-area-inset-bottom);box-sizing:content-box;background:#fff;background:var(--header_alternate_background)}.vkuiTabbar__in{display:flex;justify-content:center;overflow:hidden}.vkuiTabbar--ios.vkuiTabbar--shadow::before{position:absolute;bottom:100%;left:0;width:100%;height:1px;background:#d7d8d9;background:var(--separator_common);-webkit-transform-origin:center bottom;transform-origin:center bottom;content:""}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:2dppx){.vkuiTabbar--ios::before{-webkit-transform:scaleY(.5);transform:scaleY(.5)}}@media (-webkit-min-device-pixel-ratio:3),(min-resolution:3dppx){.vkuiTabbar--ios::before{-webkit-transform:scaleY(.33);transform:scaleY(.33)}}.vkuiTabbar--android.vkuiTabbar--shadow,.vkuiTabbar--vkcom.vkuiTabbar--shadow{box-shadow:0-2px 4px 0 rgba(0,0,0,.06),0 0 2px 0 rgba(0,0,0,.08)}
src/irc/doc/classIrc_1_1Rfc-members.html
Mudlet-cn/mudlet
<!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>LibIrcClient-Qt: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.6.1 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="pages.html"><span>Related&nbsp;Pages</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>Irc::Rfc Member List</h1>This is the complete list of members for <a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a>, including all inherited members.<table> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ae60f860cb99df2003c1d6c337ebb48bb">ERR_ALREADYREGISTRED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a757da230f6336c6493c27e4828c7d3ba">ERR_BADCHANMASK</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a2ad3949c8bd43fbc04925b1f738609f6">ERR_BADCHANNELKEY</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aaef47281ecb2c9339228c25b5599e4b2">ERR_BADMASK</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a44fa693f68c15090a1c844bdd28cdb03">ERR_BANLISTFULL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac0c1bbb1f8d7dd852f30c67cca629700">ERR_BANNEDFROMCHAN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ace5721031d242a6659e10317ac6ace86">ERR_CANNOTSENDTOCHAN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a7eaaa121bb526e331c389700367c9d59">ERR_CANTKILLSERVER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9d9dabce55c5ff37bc60e5bdbbaaddec">ERR_CHANNELISFULL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af565816ee88f3b22d7b8982ac4a58c7b">ERR_CHANOPRIVSNEEDED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a501bc9e82dfc834054a1512186994217">ERR_ERRONEUSNICKNAME</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a1513cb460442cc7fe04d375d6337fba7">ERR_FILEERROR</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a4bd8e05cbc60a91138c087afe3f8478c">ERR_INVITEONLYCHAN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ada0db22e1970d7ecb5b44476ead51b94">ERR_KEYSET</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a67cc982ea98dc2734e8dee72da3dc2c5">ERR_NEEDMOREPARAMS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a1e430922a13b1287825f03c3a6577fb5">ERR_NICKCOLLISION</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aebd94767482efb4685b52f499d448f08">ERR_NICKNAMEINUSE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a3189523b134d8b22a5306e36bda487e5">ERR_NOADMININFO</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9b2819215bc82c90d5c86a614fcb12ee">ERR_NOCHANMODES</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af1fcc226df147a9fa3f5c3146f3cdb70">ERR_NOLOGIN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a63dddfc59bda0cb19c9d51d9b228c4ee">ERR_NOMOTD</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac818b356358ea90eae7540ef15fdec39">ERR_NONICKNAMEGIVEN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9fa32de0b37dac70ee923eba686b372b">ERR_NOOPERHOST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a1209ba3dd11e3d087fbae2d4b444f0bc">ERR_NOORIGIN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a3f133365f23baffba9469595ce2de2e7">ERR_NOPERMFORHOST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aa1156700e813c3fba54439b0e9c2ff04">ERR_NOPRIVILEGES</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ad9c4ac36c40c73198cfee8f27d61f19d">ERR_NORECIPIENT</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a616e2140869c743b20931421f914a9d8">ERR_NOSUCHCHANNEL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a1c6c344154bac6199a20a4a16eb0e2fb">ERR_NOSUCHNICK</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a0e2f7df19dd5437b51f7d5308a99029f">ERR_NOSUCHSERVER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac2a95874ba5a1d55f35e5c8534660466">ERR_NOSUCHSERVICE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a0670b715744f437f67323dc7add41b80">ERR_NOTEXTTOSEND</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a52a326bb5931e881ec74c263c5b7470b">ERR_NOTONCHANNEL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0afe88b4fd8b1658ddce0c90e74532607d">ERR_NOTOPLEVEL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a77b33d702a20e396b3735d7cadd32a2d">ERR_NOTREGISTERED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab726c9ef047010d675362a6dc15dfe6c">ERR_PASSWDMISMATCH</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a1d1a206183821472882abac576b04474">ERR_RESTRICTED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab5f7484cddaa7580c99eb97f9db3517a">ERR_SUMMONDISABLED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a595c5867874b236a28100531d60e867c">ERR_TOOMANYCHANNELS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a74ae2ade5567317eef836234aae3dfea">ERR_TOOMANYTARGETS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a3aae0874710381f47812ce452a5f3fe2">ERR_UMODEUNKNOWNFLAG</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a0d8d21247bec2b006439501f2506a0b2">ERR_UNAVAILRESOURCE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aa4522ac41778fb958efabb3f980d85c9">ERR_UNIQOPPRIVSNEEDED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ad4287b363f41d99f179a3f7be9a07bb2">ERR_UNKNOWNCOMMAND</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aac65102d5c45be84bd5c9f6b76db53b0">ERR_UNKNOWNMODE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a117ca690ccb87605fdefc206e86a26f5">ERR_USERNOTINCHANNEL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab062362f42a7bb724308921817698c2a">ERR_USERONCHANNEL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a6352e440bb06a7fb2f5a0bc5a415d32f">ERR_USERSDISABLED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a24870463ef33c5f596bc82e2f6ff310c">ERR_USERSDONTMATCH</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a4eda0d3fe55e610d6bf23374448ba899">ERR_WASNOSUCHNICK</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af88ec7b6dea9a0cc007b6c5853c41019">ERR_WILDTOPLEVEL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0abdfc5813eb75bdc32f76a84a5f1f1e2f">ERR_YOUREBANNEDCREEP</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0afe14483154c6cedf88b50614c093c66f">ERR_YOUWILLBEBANNED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0">Numeric</a> enum name</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ae00aeb37313d5d7c702c0ab284afa1df">RPL_ADMINEMAIL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a24dfa585a54abafac91963dbfa983af4">RPL_ADMINLOC1</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af6d80c4d9bf778a3c51afc9e86972592">RPL_ADMINLOC2</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a2b6769394f50c9df3ef1464221cfe50d">RPL_ADMINME</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a75e6f9dd4779002e77b762f6270ef7a5">RPL_AWAY</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a4690fd1b6ad8a630c0577a3766e9aee0">RPL_BANLIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a5173c9aaeca3883aeece7a05dedeb742">RPL_BOUNCE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a7cdee12958ab85ec8f031aef5269fc47">RPL_CHANNELCREATED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a3b7670abba32a2a04e23e9ef0acf441f">RPL_CHANNELMODEIS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9c0aeaa564b9ee27f7a144ae10b7266c">RPL_CHANNELURL</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a7288b76673b8fd25ebdf3b7f30d43bcb">RPL_CREATED</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ae679d34c6fe563aa222bfea59e72b7b6">RPL_ENDOFBANLIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0afd6d2d2fc3b35f70d558ada6b87d1eb5">RPL_ENDOFEXCEPTLIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a4841c0cc7c336daa716e030f94cb1e33">RPL_ENDOFINFO</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ad6a64fe50c43a8b0e6e6a0ffafa8ecc7">RPL_ENDOFINVITELIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac8cb80fbe41fd0263de034c7eca7fd98">RPL_ENDOFLINKS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a98f246159c8d4ef4989e68c3caa12090">RPL_ENDOFMOTD</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a0c60418e0f8414210c148fedf2987549">RPL_ENDOFNAMES</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a80edeccddf1afeef503a8d7cfd44a011">RPL_ENDOFSTATS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab1b01f6d2bbfd524c5d35a4d5b3edf14">RPL_ENDOFUSERS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ae51c7281473c06d4364e1aa1eda58017">RPL_ENDOFWHO</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9c0ea1aab41941cfa7de3374d05f8fb8">RPL_ENDOFWHOIS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a795bfd575504fafc7504b84a64a7ac8f">RPL_ENDOFWHOWAS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af6407a68c4de1963685119cbcdf68f4e">RPL_EXCEPTLIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab7b46ae862e4642d905c690f403e2cab">RPL_INFO</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a69bfae1a2e420e0290d02d8b87f54e4b">RPL_INVITELIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a104f752eca092983af21ee0efe875676">RPL_INVITING</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af592c1e1b53e5182dbcef319e6fbb383">RPL_ISON</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab6cecf5d45845bdc9f103772c99c0e7d">RPL_LINKS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af1e233e17c33ad532152050b6599c3f9">RPL_LIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a6da70f7577795dad1c0e1cbf8369748c">RPL_LISTEND</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a3e752a743c6b6d360732e8906c426c8a">RPL_LUSERCHANNELS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a0dddaa7582b7801beb9a2cdaa87f7451">RPL_LUSERCLIENT</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a93afdfe8cd76b44bc0befb7edb453a5f">RPL_LUSERME</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a7b63bb806715091b5f04cde174af5387">RPL_LUSEROP</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a5ba9f88436dc3a5c3ca85afce2ada624">RPL_LUSERUNKNOWN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a79be5e6d0232577c0b007bf9725a0280">RPL_MOTD</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a13d4b27e15e96621b86d5bf018c0886a">RPL_MOTDSTART</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a6fd746860752478d1309d2f94a17bb72">RPL_MYINFO</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a8453290efb55cd12a2cafe5111bdd738">RPL_NAMREPLY</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab2e11a7d219ebe2546ecf479cee59a18">RPL_NOTOPIC</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9cb28d35a3745c936eabab7e01533fa6">RPL_NOUSERS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a2f6211e64aa5efeab91d78d8db4c80d7">RPL_NOWAWAY</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a511ed2d0114d4a11e7a215d789807f13">RPL_REHASHING</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a3d9604fbbc6938f1b680d2ff7fac3591">RPL_SERVLIST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af88507b267a604e1b7b84a8477f6984d">RPL_SERVLISTEND</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a56f53a4a846444cc4d3ebaf30b41eebe">RPL_STATSCOMMANDS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a5f7519ce349ec4a5d21aae69848950fc">RPL_STATSLINKINFO</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a0244aacb00764b302bfd0328a58a7a05">RPL_STATSOLINE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac78dfca24df036e6e8eefa54836b32b2">RPL_STATSUPTIME</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a8631d720d4f7774f0dde4f2571eda495">RPL_SUMMONING</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af21f91097f1e6569d69878feb74aa3fd">RPL_TIME</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aed02562cc3c97740b01110553ddb4ed5">RPL_TOPIC</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0adf13a12c4100eff6d9a2c44264b50c4f">RPL_TOPICSET</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af71a55a5e0c566d3f90f926656f9e55b">RPL_TRACECLASS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac97ca470b0f44ef6129a9cc9c87332ab">RPL_TRACECONNECTING</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a649f48041240a831e081e17cdfdb9468">RPL_TRACEEND</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0abc4c9c13d1e78d7bc656f14c68edda7f">RPL_TRACEHANDSHAKE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a4dda7e5a5f5f0ef57b389e8f0413b9bf">RPL_TRACELINK</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a68c4f4a0eee1c5c5fe17f123b374c838">RPL_TRACELOG</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a7376e0fc3b5119cf0d61d4c9d368543b">RPL_TRACENEWTYPE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a8507abe0c65a2d5a67a9f1d654ea2e44">RPL_TRACEOPERATOR</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a511becfdd73c423818b11c1e3b094c83">RPL_TRACESERVER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9037f0616433e72a858e285fa2050dae">RPL_TRACESERVICE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ab7b50c124c7ebc1e6a2d911ed9b8f6bc">RPL_TRACEUNKNOWN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0af20a67ac26979d8c2ad99aae90925b83">RPL_TRACEUSER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a1c3cdedd35d8861e2e809e59bdeb955d">RPL_TRYAGAIN</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a007e5b7c092dd631c274a59475fcd3c8">RPL_UMODEIS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a0ad183667a90fde163f488193a5e0c64">RPL_UNAWAY</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a24e8fba38fcc42b7f28ad10af4353cbb">RPL_UNIQOPIS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ae33f2b4655439d4be7cb9efcc7d0edae">RPL_USERHOST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a7d1883b8ae092f64c9d7d272c2c9f0ac">RPL_USERS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac8b3d1f7569b5690840e1d10451052e7">RPL_USERSSTART</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a83ab80f681e33cb71c6022ee5d847543">RPL_VERSION</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac7954ab2f43ad61011765495356e2e4e">RPL_WELCOME</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a3fa6130263589f29a03c4882893d6003">RPL_WHOISCHANNELS</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ae4429767ec0f8e9ffd046df666c22392">RPL_WHOISIDLE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a6f9e24882934cc0c541ed1f9960651bf">RPL_WHOISOPERATOR</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aac289fef58aacfdf8e1aa7e5f0fc2696">RPL_WHOISSERVER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a44c5483071d20c1c27946a83fd4373a1">RPL_WHOISUSER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0aca1b43a126dddf8df2545cd1224a1310">RPL_WHOREPLY</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0afcc7696ba02bb86cdb1eb9f0ad4e6925">RPL_WHOWASUSER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0a9dab43b32611440f30315ed24cb62c8b">RPL_YOUREOPER</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0abbd162ee2b8d55d16a23f1e65c0ef781">RPL_YOURESERVICE</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a007d52034a01f6c193aeb435cdf864d0ac500627a4da0aba6632b8423001ecec6">RPL_YOURHOST</a> enum value</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td></td></tr> <tr class="memlist"><td><a class="el" href="classIrc_1_1Rfc.html#a9f4f95d5b84ad311059e3497bf48e03c">toString</a>(uint code)</td><td><a class="el" href="classIrc_1_1Rfc.html">Irc::Rfc</a></td><td><code> [static]</code></td></tr> </table></div> <hr size="1"/><address style="text-align: right;"><small>Generated on Fri Nov 5 20:00:41 2010 for LibIrcClient-Qt by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.6.1 </small></address> </body> </html>
wp-includes/css/dist/block-editor/style-rtl.css
uicestone/HenriedFinance
/** * Colors */ /** * Breakpoints & Media Queries */ /** * Colors */ /** * Often re-used variables */ /** * Grid System. * https://make.wordpress.org/design/2019/10/31/proposal-a-consistent-spacing-system-for-wordpress/ */ /** * Breakpoint mixins */ /** * Long content fade mixin * * Creates a fading overlay to signify that the content is longer * than the space allows. */ /** * Button states and focus styles */ /** * Applies editor left position to the selector passed as argument */ /** * Styles that are reused verbatim in a few places */ /** * Allows users to opt-out of animations via OS-level preferences. */ /** * Reset default styles for JavaScript UI based pages. * This is a WP-admin agnostic reset */ /** * Reset the WP Admin page styles for Gutenberg-like pages. */ .block-editor-block-icon { display: flex; align-items: center; justify-content: center; width: 24px; height: 24px; margin: 0; border-radius: 4px; } .block-editor-block-icon.has-colors svg { fill: currentColor; } .block-editor-block-icon svg { min-width: 20px; min-height: 20px; max-width: 24px; max-height: 24px; } .block-editor-block-inspector .components-base-control { margin-bottom: 24px; } .block-editor-block-inspector .components-base-control:last-child { margin-bottom: 8px; } .block-editor-block-inspector .components-panel__body { border: none; border-top: 1px solid #e2e4e7; } .block-editor-block-inspector .block-editor-block-card { padding: 16px; } .block-editor-block-inspector__no-blocks { display: block; font-size: 13px; background: #fff; padding: 32px 16px; text-align: center; } .block-editor-block-list__layout .block-editor-block-list__block.is-selected.is-dragging::before { border: none; } .block-editor-block-list__layout .block-editor-block-list__block.is-selected.is-dragging > * { background: #f8f9f9; } .block-editor-block-list__layout .block-editor-block-list__block.is-selected.is-dragging > * > * { visibility: hidden; } .block-editor-block-list__layout .block-editor-block-list__block.is-selected .reusable-block-edit-panel * { z-index: 1; } /** * General Post Content Layout */ .block-editor-block-list__layout { padding-right: 14px; padding-left: 14px; position: relative; } @media (min-width: 600px) { .block-editor-block-list__layout { padding-right: 58px; padding-left: 58px; } } .block-editor-block-list__layout .block-editor-block-list__layout { padding-right: 0; padding-left: 0; } /** * Notices & Block Selected/Hover Styles. */ .block-editor-block-list__layout .block-editor-block-list__block { position: relative; overflow-wrap: break-word; /** * Notices */ /** * Block border layout */ } .block-editor-block-list__layout .block-editor-block-list__block .components-placeholder .components-with-notices-ui { margin: -10px 0 12px 0; } .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui { margin: 0 0 12px 0; width: 100%; } .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice { margin-right: 0; margin-left: 0; } .block-editor-block-list__layout .block-editor-block-list__block .components-with-notices-ui .components-notice .components-notice__content { font-size: 13px; } .block-editor-block-list__layout .block-editor-block-list__block::before { z-index: 0; content: ""; position: absolute; border: 1px solid transparent; border-right: none; box-shadow: none; pointer-events: none; transition: border-color 0.1s linear, border-style 0.1s linear, box-shadow 0.1s linear; outline: 1px solid transparent; left: -14px; right: -14px; top: -14px; bottom: -14px; } @media (prefers-reduced-motion: reduce) { .block-editor-block-list__layout .block-editor-block-list__block::before { transition-duration: 0s; } } .block-editor-block-list__layout .block-editor-block-list__block.is-selected::before { border-color: rgba(66, 88, 99, 0.4); box-shadow: inset -3px 0 0 0 #555d66; } .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-selected::before { border-color: rgba(255, 255, 255, 0.45); box-shadow: inset -3px 0 0 0 #d7dade; } @media (min-width: 600px) { .block-editor-block-list__layout .block-editor-block-list__block.is-selected::before { box-shadow: 3px 0 0 0 #555d66; } .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-selected::before { box-shadow: 3px 0 0 0 #d7dade; } } .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::before { border-color: #007cba; box-shadow: inset -3px 0 0 0 #007cba; } @media (min-width: 600px) { .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block.is-selected::before { box-shadow: 3px 0 0 0 #007cba; } } .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected) { opacity: 0.5; transition: opacity 0.1s linear; } @media (prefers-reduced-motion: reduce) { .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected) { transition-duration: 0s; } } .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected):not(.is-focused) .block-editor-block-list__block, .block-editor-block-list__layout .block-editor-block-list__block.is-focus-mode:not(.is-multi-selected).is-focused { opacity: 1; } .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #0085ba; } body.admin-color-sunrise .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #d1864a; } body.admin-color-ocean .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #a3b9a2; } body.admin-color-midnight .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #e14d43; } body.admin-color-ectoplasm .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #a7b656; } body.admin-color-coffee .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #c2a68c; } body.admin-color-blue .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #82b4cb; } body.admin-color-light .block-editor-block-list__layout .block-editor-block-list__block.is-drop-target::before { border-top: 3px solid #0085ba; } /** * Cross-Block Selection */ .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-block-collapsed), .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .is-block-content { box-shadow: 0 0 0 2px #007cba; border-radius: 1px; outline: 2px solid transparent; } .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected:not(.is-block-collapsed), .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .is-block-content { box-shadow: 0 0 0 2px #fff; } .block-editor-block-list__layout .block-editor-block-list__block.is-multi-selected .components-placeholder ::selection { background: transparent; } /** * Block styles and alignments */ .block-editor-block-list__layout .block-editor-block-list__block.has-warning { min-height: 36px; } .block-editor-block-list__layout .block-editor-block-list__block.has-warning > * { pointer-events: none; -webkit-user-select: none; -ms-user-select: none; user-select: none; } .block-editor-block-list__layout .block-editor-block-list__block.has-warning .block-editor-warning { pointer-events: all; } .block-editor-block-list__layout .block-editor-block-list__block.has-warning::before { border-color: rgba(145, 151, 162, 0.25); border-right: 1px solid rgba(145, 151, 162, 0.25); } .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.has-warning::before { border-color: rgba(255, 255, 255, 0.35); } .block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-selected::before { border-color: rgba(66, 88, 99, 0.4); border-right-color: transparent; } .is-dark-theme .block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-selected::before { border-color: rgba(255, 255, 255, 0.45); } .block-editor-block-list__layout .block-editor-block-list__block.has-warning::after { content: ""; position: absolute; background-color: rgba(248, 249, 249, 0.4); top: -14px; bottom: -14px; left: -14px; right: -14px; } .block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-multi-selected::after { background-color: transparent; } .block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-selected::after { bottom: 22px; } @media (min-width: 600px) { .block-editor-block-list__layout .block-editor-block-list__block.has-warning.is-selected::after { bottom: -14px; } } .block-editor-block-list__layout .block-editor-block-list__block.is-reusable.is-selected::before { border-right-color: transparent; border-style: dashed; border-width: 1px; } .block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks.has-overlay::after { display: none; } .block-editor-block-list__layout .block-editor-block-list__block.is-reusable > .block-editor-inner-blocks.has-overlay .block-editor-inner-blocks.has-overlay::after { display: block; } .is-navigate-mode .block-editor-block-list__layout .block-editor-block-list__block { cursor: default; } .block-editor-block-list__layout .block-editor-block-list__block[data-align="left"], .block-editor-block-list__layout .block-editor-block-list__block[data-align="right"] { z-index: 21; width: 100%; height: 0; } .block-editor-block-list__layout .block-editor-block-list__block[data-align="left"]::before, .block-editor-block-list__layout .block-editor-block-list__block[data-align="right"]::before { content: none; } .block-editor-block-list__layout .block-editor-block-list__block[data-align="left"] > .is-block-content { float: left; margin-right: 2em; } .block-editor-block-list__layout .block-editor-block-list__block[data-align="right"] > .is-block-content { float: right; margin-left: 2em; } .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"], .block-editor-block-list__layout .block-editor-block-list__block[data-align="wide"] { clear: both; } .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] { margin-right: -14px; margin-left: -14px; } @media (min-width: 600px) { .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"] { margin-right: -58px; margin-left: -58px; } } .block-editor-block-list__layout .block-editor-block-list__block[data-align="full"]::before { right: 0; left: 0; border-right-width: 0; border-left-width: 0; } .block-editor-block-list__layout .block-editor-block-list__block[data-clear="true"] { float: none; } .block-editor-block-list__layout .block-editor-block-list__block .block-editor-block-list__layout .block-editor-default-block-appender .block-editor-inserter { right: auto; left: 8px; } /** * In-Canvas Inserter */ .block-editor-block-list .block-editor-inserter { margin: 8px; cursor: move; cursor: grab; } .block-editor-block-list__insertion-point { position: relative; z-index: 6; margin-top: -14px; } .block-editor-block-list__insertion-point-indicator { position: absolute; top: calc(50% - 1px); height: 2px; right: 0; left: 0; background: #0085ba; } body.admin-color-sunrise .block-editor-block-list__insertion-point-indicator { background: #d1864a; } body.admin-color-ocean .block-editor-block-list__insertion-point-indicator { background: #a3b9a2; } body.admin-color-midnight .block-editor-block-list__insertion-point-indicator { background: #e14d43; } body.admin-color-ectoplasm .block-editor-block-list__insertion-point-indicator { background: #a7b656; } body.admin-color-coffee .block-editor-block-list__insertion-point-indicator { background: #c2a68c; } body.admin-color-blue .block-editor-block-list__insertion-point-indicator { background: #82b4cb; } body.admin-color-light .block-editor-block-list__insertion-point-indicator { background: #0085ba; } .block-editor-block-list__insertion-point-inserter { display: none; justify-content: center; cursor: text; } @media (min-width: 480px) { .block-editor-block-list__insertion-point-inserter { display: flex; } } .block-editor-block-list__insertion-point-inserter.is-inserter-hidden .block-editor-inserter__toggle { opacity: 0; pointer-events: none; } .block-editor-block-list__block-popover-inserter { position: absolute; top: -9999em; margin-bottom: 14px; } .block-editor-block-list__block-popover-inserter.is-visible { position: static; } .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle, .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle { border-radius: 50%; color: #007cba; background: #fff; height: 28px; width: 28px; padding: 0; justify-content: center; } .block-editor-block-list__insertion-point-inserter .block-editor-inserter__toggle:not(:disabled):not([aria-disabled="true"]):hover, .block-editor-block-list__block-popover-inserter .block-editor-inserter__toggle:not(:disabled):not([aria-disabled="true"]):hover { box-shadow: none; } .block-editor-block-list__block > .block-editor-block-list__insertion-point { position: absolute; top: -16px; height: 28px; bottom: auto; right: 14px; left: 14px; } .block-editor-block-list__block[data-align="full"] > .block-editor-block-list__insertion-point { right: 0; left: 0; } .block-editor-block-list__block .block-editor-block-list__block-html-textarea { display: block; margin: 0; width: 100%; border: none; outline: none; box-shadow: none; resize: none; overflow: hidden; font-family: Menlo, Consolas, monaco, monospace; font-size: 14px; line-height: 150%; transition: padding 0.2s linear; } @media (prefers-reduced-motion: reduce) { .block-editor-block-list__block .block-editor-block-list__block-html-textarea { transition-duration: 0s; } } .block-editor-block-list__block .block-editor-block-list__block-html-textarea:focus { box-shadow: none; } /** * Block Toolbar when contextual. */ .block-editor-block-contextual-toolbar .block-editor-block-toolbar { width: 100%; } @media (min-width: 600px) { .block-editor-block-contextual-toolbar .block-editor-block-toolbar { width: auto; border-left: none; } } /** * Block Label for Navigation/Selection Mode */ .block-editor-block-list__breadcrumb { display: block; line-height: 1; z-index: 22; } .block-editor-block-list__breadcrumb .components-toolbar { display: flex; background: #fff; border: 1px solid #007cba; border-right: none; box-shadow: inset -3px 0 0 0 #007cba; height: 38px; font-size: 13px; line-height: 29px; padding-right: 8px; padding-left: 8px; } .block-editor-block-list__breadcrumb .components-toolbar .components-button { box-shadow: none; } .is-dark-theme .block-editor-block-list__breadcrumb .components-toolbar { border-color: rgba(255, 255, 255, 0.45); } @media (min-width: 600px) { .block-editor-block-list__breadcrumb .components-toolbar { box-shadow: 3px 0 0 0 #007cba; } } .block-editor-block-list__block .block-editor-warning { z-index: 5; position: relative; margin-left: -14px; margin-right: -14px; margin-bottom: -14px; transform: translateY(-14px); } .block-editor-block-list__block .block-editor-warning.block-editor-block-list__block-crash-warning { margin-bottom: auto; } .block-editor-block-list__insertion-point-popover { z-index: 28; } .block-editor-block-list__insertion-point-popover .components-popover__content { background: none; border: none; box-shadow: none; overflow-y: visible; } .components-popover.block-editor-block-list__block-popover { z-index: 29; } .components-popover.block-editor-block-list__block-popover .components-popover__content { margin: 0 !important; min-width: auto; background: none; border: none; box-shadow: none; overflow-y: visible; pointer-events: none; } .components-popover.block-editor-block-list__block-popover .components-popover__content > * { pointer-events: all; } .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar, .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb { margin-bottom: 13px; margin-right: -14px; } .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-contextual-toolbar[data-align="full"], .components-popover.block-editor-block-list__block-popover .components-popover__content .block-editor-block-list__breadcrumb[data-align="full"] { margin-right: 0; } .is-dragging-components-draggable .components-popover.block-editor-block-list__block-popover { opacity: 0; } .block-editor-block-list__block .block-list-appender { margin: 14px 0; } .has-background .block-editor-block-list__block .block-list-appender { margin: 32px 14px; } .block-list-appender.is-drop-target > div::before { content: ""; position: absolute; left: -14px; right: -14px; top: -14px; bottom: -14px; border: 3px solid #0085ba; } body.admin-color-sunrise .block-list-appender.is-drop-target > div::before { border: 3px solid #d1864a; } body.admin-color-ocean .block-list-appender.is-drop-target > div::before { border: 3px solid #a3b9a2; } body.admin-color-midnight .block-list-appender.is-drop-target > div::before { border: 3px solid #e14d43; } body.admin-color-ectoplasm .block-list-appender.is-drop-target > div::before { border: 3px solid #a7b656; } body.admin-color-coffee .block-list-appender.is-drop-target > div::before { border: 3px solid #c2a68c; } body.admin-color-blue .block-list-appender.is-drop-target > div::before { border: 3px solid #82b4cb; } body.admin-color-light .block-list-appender.is-drop-target > div::before { border: 3px solid #0085ba; } .block-list-appender > .block-editor-inserter { display: block; } .block-editor-block-breadcrumb { list-style: none; padding: 0; margin: 0; } .block-editor-block-breadcrumb li { display: inline-block; margin: 0; } .block-editor-block-breadcrumb li:not(:last-child)::after { content: "\2192"; } .block-editor-block-breadcrumb__button.components-button { height: 24px; line-height: 24px; padding: 0; } .block-editor-block-breadcrumb__button.components-button:hover { text-decoration: underline; } .block-editor-block-breadcrumb__button.components-button:focus { color: #191e23; outline-offset: -1px; outline: 1px dotted #555d66; outline-offset: -2px; box-shadow: none; } .block-editor-block-breadcrumb__current { cursor: default; } .block-editor-block-breadcrumb__button.components-button, .block-editor-block-breadcrumb__current { color: #555d66; padding: 0 8px; font-size: inherit; } .block-editor-block-card { display: flex; align-items: flex-start; } .block-editor-block-card__icon { border: 1px solid #ccd0d4; padding: 7px; margin-left: 10px; height: 36px; width: 36px; } .block-editor-block-card__content { flex-grow: 1; } .block-editor-block-card__title { font-weight: 500; margin-bottom: 5px; } .block-editor-block-card__description { font-size: 13px; } .block-editor-block-card .block-editor-block-icon { margin-right: -2px; margin-left: 10px; padding: 0 3px; width: 36px; height: 24px; } /** * Invalid block comparison */ .block-editor-block-compare { overflow: auto; height: auto; } @media (min-width: 600px) { .block-editor-block-compare { max-height: 70%; } } .block-editor-block-compare__wrapper { display: flex; padding-bottom: 16px; } .block-editor-block-compare__wrapper > div { display: flex; justify-content: space-between; flex-direction: column; width: 50%; padding: 0 0 0 16px; min-width: 200px; } .block-editor-block-compare__wrapper > div button { float: left; } .block-editor-block-compare__wrapper .block-editor-block-compare__converted { border-right: 1px solid #ddd; padding-right: 15px; padding-left: 0; } .block-editor-block-compare__wrapper .block-editor-block-compare__html { font-family: Menlo, Consolas, monaco, monospace; font-size: 12px; color: #23282d; border-bottom: 1px solid #ddd; padding-bottom: 15px; line-height: 1.7; } .block-editor-block-compare__wrapper .block-editor-block-compare__html span { background-color: #e6ffed; padding-top: 3px; padding-bottom: 3px; } .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__added { background-color: #acf2bd; } .block-editor-block-compare__wrapper .block-editor-block-compare__html span.block-editor-block-compare__removed { background-color: #d94f4f; } .block-editor-block-compare__wrapper .block-editor-block-compare__preview { padding: 0; padding-top: 14px; } .block-editor-block-compare__wrapper .block-editor-block-compare__preview p { font-size: 12px; margin-top: 0; } .block-editor-block-compare__wrapper .block-editor-block-compare__action { margin-top: 14px; } .block-editor-block-compare__wrapper .block-editor-block-compare__heading { font-size: 1em; font-weight: 400; margin: 0.67em 0; } .block-editor-block-mobile-toolbar { display: flex; flex-direction: row; border-left: 1px solid #e2e4e7; } .block-editor-block-mobile-toolbar .block-editor-block-mover__control { width: 36px; height: 36px; border-radius: 4px; padding: 3px; margin: 0; justify-content: center; align-items: center; } .block-editor-block-mobile-toolbar .block-editor-block-mover__control .dashicon { margin: auto; } .block-editor-block-mobile-toolbar .block-editor-block-mover { display: flex; margin-left: auto; } .block-editor-block-mobile-toolbar .block-editor-block-mover .block-editor-block-mover__control { float: right; } @media (min-width: 600px) { .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal) { display: block; position: absolute; top: 37px; right: -38px; opacity: 0; background: #fff; border: 1px solid rgba(66, 88, 99, 0.4); border-radius: 4px; transition: box-shadow 0.2s ease-out; } } @media (min-width: 600px) and (prefers-reduced-motion: reduce) { .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal) { transition-duration: 0s; } } @media (min-width: 600px) { .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal).is-visible { animation: edit-post__fade-in-animation 0.2s ease-out 0s; animation-fill-mode: forwards; } } @media (min-width: 600px) and (prefers-reduced-motion: reduce) { .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal).is-visible { animation-duration: 1ms; } } @media (min-width: 600px) { .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__control { display: flex; align-items: center; justify-content: center; padding: 0; border: none; width: 28px; height: 24px; color: rgba(14, 28, 46, 0.62); } .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__control svg { width: 28px; height: 24px; padding: 2px 5px; } .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__control[aria-disabled="true"] { cursor: default; pointer-events: none; color: rgba(14, 28, 46, 0.62); } .block-editor-block-contextual-toolbar:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal) .block-editor-block-mover__control:focus:not(:disabled) { background-color: transparent; } } @media (min-width: 600px) { .block-editor-block-list__block:not([data-align="wide"]):not([data-align="full"]) .block-editor-block-mover:not(.is-horizontal) { margin-top: 0; } } .block-editor-block-mover__control-drag-handle { cursor: move; cursor: grab; fill: currentColor; } .block-editor-block-mover__control-drag-handle, .block-editor-block-mover__control-drag-handle:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):hover, .block-editor-block-mover__control-drag-handle:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):active, .block-editor-block-mover__control-drag-handle:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):focus { box-shadow: none; background: none; color: rgba(10, 24, 41, 0.7); } .block-editor-block-mover__control-drag-handle:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):active { cursor: grabbing; } .block-editor-block-mover__description { display: none; } .block-editor-block-mover.is-horizontal .block-editor-block-mover__control-drag-handle { display: none; } .block-editor-block-navigation__container { padding: 7px; } .block-editor-block-navigation__label { margin: 0 0 8px; color: #6c7781; } .block-editor-block-navigation__list, .block-editor-block-navigation__paragraph { padding: 0; margin: 0; } .block-editor-block-navigation__list .block-editor-button-block-appender { outline: none; background: none; padding: 8px; margin-right: 0.8em; width: 36px; border-radius: 4px; } .block-editor-block-navigation__list .block-editor-button-block-appender:hover:not(:disabled):not([aria-disabled="true"]) { color: #191e23; border: none; box-shadow: none; background: #f3f4f5; outline: none; } .block-editor-block-navigation__list .block-editor-button-block-appender:focus:not(:disabled):not([aria-disabled="true"]) { color: #191e23; border: none; box-shadow: none; outline-offset: -2px; outline: 1px dotted #555d66; } .block-editor-block-navigation__list .block-editor-block-navigation__list { margin-top: 2px; border-right: 2px solid #a2aab2; margin-right: 1em; } .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__list { margin-right: 1.5em; } .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item { position: relative; } .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item::before { position: absolute; right: 0; background: #a2aab2; width: 0.5em; height: 2px; content: ""; top: calc(50% - 1px); } .block-editor-block-navigation__list .block-editor-block-navigation__list .block-editor-block-navigation__item-button { margin-right: 0.8em; width: calc(100% - 0.8em); } .block-editor-block-navigation__list .block-editor-block-navigation__list > li:last-child { position: relative; } .block-editor-block-navigation__list .block-editor-block-navigation__list > li:last-child::after { position: absolute; content: ""; background: #fff; top: 19px; bottom: 0; right: -2px; width: 2px; } .block-editor-block-navigation__item-button { display: flex; align-items: center; width: 100%; padding: 6px; text-align: right; color: #40464d; border-radius: 4px; } .block-editor-block-navigation__item-button .block-editor-block-icon { margin-left: 6px; } .block-editor-block-navigation__item-button:hover:not(:disabled):not([aria-disabled="true"]) { color: #191e23; border: none; box-shadow: none; background: #f3f4f5; } .block-editor-block-navigation__item-button:focus:not(:disabled):not([aria-disabled="true"]) { color: #191e23; border: none; box-shadow: none; outline-offset: -2px; outline: 1px dotted #555d66; } .block-editor-block-navigation__item-button.is-selected, .block-editor-block-navigation__item-button.is-selected:focus { color: #32373c; background: #edeff0; } .components-popover.block-editor-block-navigation__popover { z-index: 99998; } .block-editor-block-preview__container { position: relative; width: 100%; overflow: hidden; } .block-editor-block-preview__container.is-ready { overflow: visible; } .block-editor-block-preview__content { position: absolute; top: 0; right: 0; transform-origin: top right; text-align: initial; margin: 0; overflow: visible; min-height: auto; } .block-editor-block-preview__content .block-editor-block-list__layout, .block-editor-block-preview__content .block-editor-block-list__block { padding: 0; } .block-editor-block-preview__content > div section { height: auto; } .block-editor-block-preview__content .block-editor-block-list__insertion-point, .block-editor-block-preview__content .block-editor-block-drop-zone, .block-editor-block-preview__content .reusable-block-indicator, .block-editor-block-preview__content .block-list-appender { display: none; } .block-editor-block-settings-menu .components-dropdown-menu__toggle svg { transform: rotate(-90deg); } .block-editor-block-settings-menu__popover .components-dropdown-menu__menu { padding: 0; } .block-editor-block-styles { display: flex; flex-wrap: wrap; justify-content: space-between; } .block-editor-block-styles__item { width: calc(50% - 4px); margin: 4px 0; flex-shrink: 0; cursor: pointer; overflow: hidden; border-radius: 4px; padding: 6px; padding-top: calc(50% * 0.75 - 4px * 1.5); } .block-editor-block-styles__item:focus { color: #191e23; box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2; outline: 2px solid transparent; } .block-editor-block-styles__item:hover { background: #f3f4f5; color: #191e23; } .block-editor-block-styles__item.is-active { color: #191e23; box-shadow: inset 0 0 0 2px #555d66; outline: 2px solid transparent; outline-offset: -2px; } .block-editor-block-styles__item.is-active:focus { color: #191e23; box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2, inset 0 0 0 2px #555d66; outline: 4px solid transparent; outline-offset: -4px; } .block-editor-block-styles__item-preview { outline: 1px solid transparent; padding: 0; border: 1px solid rgba(25, 30, 35, 0.2); border-radius: 4px; display: flex; overflow: hidden; background: #fff; padding-top: 75%; margin-top: -75%; } .block-editor-block-styles__item-preview .block-editor-block-preview__container { padding-top: 0; margin: 0; margin-top: -75%; } .block-editor-block-styles__item-label { text-align: center; padding: 4px 2px; } .block-editor-block-switcher { position: relative; height: 36px; } .components-button.block-editor-block-switcher__toggle, .components-button.block-editor-block-switcher__no-switcher-icon { margin: 0; display: block; height: 36px; padding: 3px; } .components-button.block-editor-block-switcher__no-switcher-icon { width: 48px; } .components-button.block-editor-block-switcher__no-switcher-icon .block-editor-block-icon { margin-left: auto; margin-right: auto; } .components-button.block-editor-block-switcher__no-switcher-icon:disabled { border-radius: 0; opacity: 0.84; } .components-button.block-editor-block-switcher__no-switcher-icon:disabled .block-editor-block-icon.has-colors { color: #555d66 !important; background: #f3f4f5 !important; } .components-button.block-editor-block-switcher__toggle { width: auto; } .components-button.block-editor-block-switcher__toggle:active, .components-button.block-editor-block-switcher__toggle:not(:disabled):not([aria-disabled="true"]):hover, .components-button.block-editor-block-switcher__toggle:not([aria-disabled="true"]):focus { outline: none; box-shadow: none; background: none; border: none; } .components-button.block-editor-block-switcher__toggle .block-editor-block-icon, .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform { width: 42px; height: 30px; position: relative; margin: 0 auto; padding: 3px; display: flex; align-items: center; transition: all 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); } @media (prefers-reduced-motion: reduce) { .components-button.block-editor-block-switcher__toggle .block-editor-block-icon, .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform { transition-duration: 0s; } } .components-button.block-editor-block-switcher__toggle .block-editor-block-icon::after { content: ""; pointer-events: none; display: block; width: 0; height: 0; border-right: 3px solid transparent; border-left: 3px solid transparent; border-top: 5px solid; margin-right: 4px; margin-left: 2px; } .components-button.block-editor-block-switcher__toggle .block-editor-block-switcher__transform { margin-top: 6px; border-radius: 4px; } .components-button.block-editor-block-switcher__toggle[aria-expanded="true"] .block-editor-block-icon, .components-button.block-editor-block-switcher__toggle[aria-expanded="true"] .block-editor-block-switcher__transform, .components-button.block-editor-block-switcher__toggle:not(:disabled):hover .block-editor-block-icon, .components-button.block-editor-block-switcher__toggle:not(:disabled):hover .block-editor-block-switcher__transform, .components-button.block-editor-block-switcher__toggle:not(:disabled):focus .block-editor-block-icon, .components-button.block-editor-block-switcher__toggle:not(:disabled):focus .block-editor-block-switcher__transform { transform: translateY(-36px); } .components-button.block-editor-block-switcher__toggle:not(:disabled):focus .block-editor-block-icon, .components-button.block-editor-block-switcher__toggle:not(:disabled):focus .block-editor-block-switcher__transform { box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; outline: 2px solid transparent; } .components-popover.block-editor-block-switcher__popover .components-popover__content { min-width: 300px; max-width: calc(340px * 2); display: flex; background: #fff; box-shadow: 0 3px 30px rgba(25, 30, 35, 0.1); } .block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__container { min-width: 300px; max-width: 340px; width: 50%; } @media (min-width: 782px) { .block-editor-block-switcher__popover .components-popover__content { position: relative; } .block-editor-block-switcher__popover .components-popover__content .block-editor-block-switcher__preview { border-right: 1px solid #e2e4e7; box-shadow: 0 3px 30px rgba(25, 30, 35, 0.1); background: #fff; width: 300px; height: auto; position: -webkit-sticky; position: sticky; -ms-grid-row-align: stretch; align-self: stretch; top: 0; padding: 10px; } } .block-editor-block-switcher__popover .components-popover__content .components-panel__body { border: 0; position: relative; z-index: 1; } .block-editor-block-switcher__popover .components-popover__content .components-panel__body + .components-panel__body { border-top: 1px solid #e2e4e7; } .block-editor-block-switcher__popover .block-editor-block-styles { margin: 0 -3px; } .block-editor-block-switcher__popover .block-editor-block-types-list { margin: 8px -8px -8px; } .block-editor-block-switcher__preview-title { margin-bottom: 10px; color: #6c7781; } .block-editor-block-toolbar { display: flex; flex-grow: 1; width: 100%; overflow: auto; position: relative; border-right: 1px solid #b5bcc2; transition: border-color 0.1s linear, box-shadow 0.1s linear; } @media (prefers-reduced-motion: reduce) { .block-editor-block-toolbar { transition-duration: 0s; } } @media (min-width: 600px) { .block-editor-block-toolbar { overflow: inherit; border-right: none; box-shadow: 3px 0 0 0 #555d66; } .is-dark-theme .block-editor-block-toolbar { box-shadow: 3px 0 0 0 #d7dade; } } .block-editor-block-toolbar .components-toolbar { border: 0; border-top: 1px solid #b5bcc2; border-bottom: 1px solid #b5bcc2; border-left: 1px solid #b5bcc2; line-height: 0; } .has-fixed-toolbar .block-editor-block-toolbar { box-shadow: none; border-right: 1px solid #e2e4e7; } .has-fixed-toolbar .block-editor-block-toolbar .components-toolbar { border-color: #e2e4e7; } .block-editor-block-toolbar__slot { display: inline-block; line-height: 0; } @supports ((position: -webkit-sticky) or (position: sticky)) { .block-editor-block-toolbar__slot { display: inline-flex; } } .block-editor-block-types-list { list-style: none; padding: 4px; margin-right: -4px; margin-left: -4px; overflow: hidden; display: flex; flex-wrap: wrap; } .block-editor-block-variation-picker .components-placeholder__instructions { margin-bottom: 0; } .block-editor-block-variation-picker .components-placeholder__fieldset { flex-direction: column; } .block-editor-block-variation-picker.has-many-variations .components-placeholder__fieldset { max-width: 90%; } .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations { display: flex; justify-content: flex-start; flex-direction: row; flex-wrap: wrap; width: 100%; margin: 16px 0; padding: 0; list-style: none; } .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations > li { list-style: none; margin: 4px 0 4px 8px; flex-shrink: 1; max-width: 100px; } .block-editor-block-variation-picker__variations.block-editor-block-variation-picker__variations .block-editor-block-variation-picker__variation { padding: 8px; } .block-editor-block-variation-picker__variation { width: 100%; } .block-editor-block-variation-picker__variation.components-button.has-icon { justify-content: center; } .block-editor-block-variation-picker__variation.components-button.has-icon.is-secondary { background-color: #fff; } .block-editor-block-variation-picker__variation.components-button { height: auto; padding: 0; } .block-editor-block-variation-picker__variation::before { content: ""; padding-bottom: 100%; } .block-editor-block-variation-picker__variation:first-child { margin-right: 0; } .block-editor-block-variation-picker__variation:last-child { margin-left: 0; } .block-editor-button-block-appender { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 14px; outline: 1px dashed #8d96a0; width: 100%; height: auto; color: #555d66; background: rgba(237, 239, 240, 0.8); } .block-editor-button-block-appender:hover, .block-editor-button-block-appender:focus { outline: 1px dashed #555d66; color: #191e23; } .block-editor-button-block-appender:active { outline: 1px dashed #191e23; color: #191e23; } .is-dark-theme .block-editor-button-block-appender { background: rgba(50, 55, 60, 0.7); color: #f8f9f9; } .is-dark-theme .block-editor-button-block-appender:hover, .is-dark-theme .block-editor-button-block-appender:focus { outline: 1px dashed #fff; } .block-editor-color-gradient-control__color-indicator { margin-bottom: 8px; } .block-editor-color-gradient-control__button-tabs { display: block; margin-bottom: 8px; } .block-editor-panel-color-gradient-settings .component-color-indicator { vertical-align: text-bottom; } .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator { display: inline-block; } .block-editor-panel-color-gradient-settings.is-opened .block-editor-panel-color-gradient-settings__panel-title .component-color-indicator { display: none; } .block-editor-contrast-checker > .components-notice { margin: 0; } .block-editor-default-block-appender { clear: both; margin-right: auto; margin-left: auto; position: relative; } .block-editor-default-block-appender[data-root-client-id=""] .block-editor-default-block-appender__content:hover { outline: 1px solid transparent; } .block-editor-default-block-appender textarea.block-editor-default-block-appender__content { font-family: "Noto Serif", serif; font-size: 16px; border: none; background: none; box-shadow: none; display: block; cursor: text; width: 100%; outline: 1px solid transparent; transition: 0.2s outline; resize: none; margin-top: 28px; margin-bottom: 28px; padding: 0 14px 0 50px; color: rgba(14, 28, 46, 0.62); } @media (prefers-reduced-motion: reduce) { .block-editor-default-block-appender textarea.block-editor-default-block-appender__content { transition-duration: 0s; } } .is-dark-theme .block-editor-default-block-appender textarea.block-editor-default-block-appender__content { color: rgba(255, 255, 255, 0.65); } .block-editor-default-block-appender .components-drop-zone__content-icon { display: none; } .block-editor-default-block-appender__content { min-height: 28px; line-height: 1.8; } .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter, .block-editor-default-block-appender .block-editor-inserter { position: absolute; top: 0; height: 28px; } .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter .components-button.has-icon, .block-editor-default-block-appender .block-editor-inserter .components-button.has-icon { width: 28px; height: 28px; padding: 0; } .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter .components-button svg, .block-editor-default-block-appender .block-editor-inserter .components-button svg { display: block; margin: auto; } .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle, .block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle { margin-left: 0; } .block-editor-block-list__empty-block-inserter.block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):hover, .block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):hover { box-shadow: none; } .block-editor-block-list__empty-block-inserter, .block-editor-default-block-appender .block-editor-inserter { left: 8px; } @media (min-width: 600px) { .block-editor-block-list__empty-block-inserter, .block-editor-default-block-appender .block-editor-inserter { display: flex; height: 100%; } } .block-editor-block-list__empty-block-inserter:disabled, .block-editor-default-block-appender .block-editor-inserter:disabled { display: none; } .block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle, .block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle { border-radius: 50%; width: 28px; height: 28px; padding: 0; } .block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle:not(:hover), .block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle:not(:hover) { color: rgba(10, 24, 41, 0.7); } .is-dark-theme .block-editor-block-list__empty-block-inserter .block-editor-inserter__toggle:not(:hover), .is-dark-theme .block-editor-default-block-appender .block-editor-inserter .block-editor-inserter__toggle:not(:hover) { color: rgba(255, 255, 255, 0.75); } @media (min-width: 600px) { .block-editor-default-block-appender .block-editor-inserter { align-items: center; } } html.block-editor-editor-skeleton__html-container { position: fixed; width: 100%; } @media (min-width: 782px) { html.block-editor-editor-skeleton__html-container { position: initial; width: initial; } } .block-editor-editor-skeleton { display: flex; flex-direction: column; height: auto; max-height: 100%; position: fixed; top: 46px; right: 0; left: 0; bottom: 0; } @media (min-width: 782px) { .block-editor-editor-skeleton { top: 32px; } .is-fullscreen-mode .block-editor-editor-skeleton { top: 0; } } .block-editor-editor-skeleton { /* Set left position when auto-fold is not on the body element. */ right: 0; } @media (min-width: 782px) { .block-editor-editor-skeleton { right: 160px; } } .auto-fold .block-editor-editor-skeleton { /* Auto fold is when on smaller breakpoints, nav menu auto collapses. */ } @media (min-width: 782px) { .auto-fold .block-editor-editor-skeleton { right: 36px; } } @media (min-width: 961px) { .auto-fold .block-editor-editor-skeleton { right: 160px; } } /* Sidebar manually collapsed. */ .folded .block-editor-editor-skeleton { right: 0; } @media (min-width: 782px) { .folded .block-editor-editor-skeleton { right: 36px; } } /* Mobile menu opened. */ @media (max-width: 782px) { .auto-fold .wp-responsive-open .block-editor-editor-skeleton { right: 190px; } } /* In small screens with responsive menu expanded there is small white space. */ @media (max-width: 600px) { .auto-fold .wp-responsive-open .block-editor-editor-skeleton { margin-right: -18px; } } body.is-fullscreen-mode .block-editor-editor-skeleton { right: 0 !important; } .block-editor-editor-skeleton__body { flex-grow: 1; display: flex; overflow: auto; overscroll-behavior-y: none; } .block-editor-editor-skeleton__content { flex-grow: 1; display: flex; flex-direction: column; } @media (min-width: 782px) { .block-editor-editor-skeleton__content { overflow: auto; } } .block-editor-editor-skeleton__sidebar { display: none; } @media (min-width: 782px) { .block-editor-editor-skeleton__sidebar { display: block; z-index: 100000; position: fixed !important; top: -9999em; bottom: auto; right: auto; left: 0; width: 280px; } .block-editor-editor-skeleton__sidebar:focus { top: auto; bottom: 0; } } .is-sidebar-opened .block-editor-editor-skeleton__sidebar { display: block; width: auto; flex-shrink: 0; position: absolute; z-index: 100000; top: 0; left: 0; bottom: 0; right: 0; background: #fff; } @media (min-width: 782px) { .is-sidebar-opened .block-editor-editor-skeleton__sidebar { overflow: auto; border-right: 1px solid #e2e4e7; position: relative !important; z-index: 90; } } .block-editor-editor-skeleton__header { flex-shrink: 0; height: auto; border-bottom: 1px solid #e2e4e7; z-index: 30; position: -webkit-sticky; position: sticky; top: 0; } @media (min-width: 600px) { .block-editor-editor-skeleton__header { position: initial; top: 0; } } .block-editor-editor-skeleton__footer { height: auto; flex-shrink: 0; overflow: auto; border-top: 1px solid #e2e4e7; display: none; } @media (min-width: 782px) { .block-editor-editor-skeleton__footer { display: block; } } .block-editor-editor-skeleton__publish { z-index: 100000; position: fixed !important; top: -9999em; bottom: auto; right: auto; left: 0; width: 280px; } .block-editor-editor-skeleton__publish:focus { top: auto; bottom: 0; } .block-editor-link-control { position: relative; min-width: 360px; } .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"] { width: calc(100% - 32px); display: block; padding: 11px 16px; margin: 16px; padding-left: 36px; position: relative; border: 1px solid #e1e1e1; border-radius: 4px; /* Fonts smaller than 16px causes mobile safari to zoom. */ font-size: 16px; } @media (min-width: 600px) { .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"] { font-size: 13px; } } .block-editor-link-control .block-editor-link-control__search-input.block-editor-link-control__search-input input[type="text"]:focus { color: #191e23; border-color: #007cba; box-shadow: 0 0 0 1px #007cba; outline: 2px solid transparent; } .block-editor-link-control__search-actions { position: absolute; /* * Actions must be positioned on top of URLInput, since the input will grow * when suggestions are rendered. * * Compensate for: * - Input margin ($grid-size-large) * - Border (1px) * - Vertically, for the difference in height between the input (40px) and * the icon buttons. * - Horizontally, pad to the minimum of: default input padding, or the * equivalent of the vertical padding. */ top: 19px; left: 19px; } .block-editor-link-control__search-results-wrapper { position: relative; margin-top: -15px; } .block-editor-link-control__search-results-wrapper::before, .block-editor-link-control__search-results-wrapper::after { content: ""; position: absolute; right: -1px; left: 16px; display: block; pointer-events: none; z-index: 100; } .block-editor-link-control__search-results-wrapper::before { height: 8px; top: 0; bottom: auto; background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%); } .block-editor-link-control__search-results-wrapper::after { height: 16px; bottom: 0; top: auto; background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%); } .block-editor-link-control__search-results-label { padding: 15px 30px 0 30px; display: block; font-size: 1.1em; } .block-editor-link-control__search-results { margin: 0; padding: 8px 16px 16px; max-height: 200px; overflow-y: auto; } .block-editor-link-control__search-results.is-loading { opacity: 0.2; } .block-editor-link-control__search-item { position: relative; display: flex; align-items: center; font-size: 13px; cursor: pointer; background: #fff; width: 100%; border: none; text-align: right; padding: 10px 15px; border-radius: 5px; height: auto; } .block-editor-link-control__search-item:hover, .block-editor-link-control__search-item:focus { background-color: #e9e9e9; } .block-editor-link-control__search-item.is-selected { background: #f2f2f2; } .block-editor-link-control__search-item.is-selected .block-editor-link-control__search-item-type { background: #fff; } .block-editor-link-control__search-item.is-current { background: transparent; border: 0; width: 100%; cursor: default; padding: 16px; padding-right: 24px; } .block-editor-link-control__search-item .block-editor-link-control__search-item-header { display: block; margin-left: 24px; overflow: hidden; white-space: nowrap; } .block-editor-link-control__search-item .block-editor-link-control__search-item-icon { margin-left: 1em; min-width: 24px; } .block-editor-link-control__search-item .block-editor-link-control__search-item-info, .block-editor-link-control__search-item .block-editor-link-control__search-item-title { max-width: 230px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; } .block-editor-link-control__search-item .block-editor-link-control__search-item-title { display: block; margin-bottom: 0.2em; font-weight: 500; } .block-editor-link-control__search-item .block-editor-link-control__search-item-title mark { font-weight: 700; color: #000; background-color: transparent; } .block-editor-link-control__search-item .block-editor-link-control__search-item-title span { font-weight: normal; } .block-editor-link-control__search-item .block-editor-link-control__search-item-info { display: block; color: #999; font-size: 0.9em; line-height: 1.3; } .block-editor-link-control__search-item .block-editor-link-control__search-item-type { display: block; padding: 3px 8px; margin-right: auto; font-size: 0.9em; background-color: #f3f4f5; border-radius: 2px; } .block-editor-link-control__search-results div[role="menu"] > .block-editor-link-control__search-item.block-editor-link-control__search-item { padding: 10px; } .block-editor-link-control__settings { border-top: 1px solid #e1e1e1; margin: 0; padding: 16px 24px; } .block-editor-link-control__settings :last-child { margin-bottom: 0; } .block-editor-link-control__setting { margin-bottom: 16px; } .block-editor-link-control__setting :last-child { margin-bottom: 0; } .block-editor-link-control .block-editor-link-control__search-input .components-spinner { display: block; } .block-editor-link-control .block-editor-link-control__search-input .components-spinner.components-spinner { position: absolute; right: auto; bottom: auto; /* * Position spinner to the left of the actions. * * Compensate for: * - Input margin ($grid-size-large) * - Border (1px) * - Vertically, for the difference in height between the input (40px) * and the spinner. * - Horizontally, adjust for the width occupied by the icon buttons, * then artificially create spacing that mimics as if the spinner * were center-padded to the same width as an icon button. */ top: 28px; left: 62px; } .block-editor-link-control__search-item-action { margin-right: auto; flex-shrink: 0; } .block-editor-image-size-control { margin-bottom: 1em; } .block-editor-image-size-control .block-editor-image-size-control__row { display: flex; justify-content: space-between; } .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width, .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height { margin-bottom: 0.5em; } .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width input, .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height input { line-height: 1.25; } .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__width { margin-left: 5px; } .block-editor-image-size-control .block-editor-image-size-control__row .block-editor-image-size-control__height { margin-right: 5px; } .block-editor-inner-blocks.has-overlay::after { content: ""; position: absolute; top: -14px; left: -14px; bottom: -14px; right: -14px; z-index: 60; } [data-align="full"] .has-overlay::after { left: 0; right: 0; } .block-editor-inserter { display: inline-block; background: none; border: none; padding: 0; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; line-height: 1.4; } @media (min-width: 782px) { .block-editor-inserter { position: relative; } } @media (min-width: 782px) { .block-editor-inserter__popover > .components-popover__content { overflow-y: visible; height: 432px; } } .block-editor-inserter__toggle { transition: color 0.2s ease; } @media (prefers-reduced-motion: reduce) { .block-editor-inserter__toggle { transition-duration: 0s; } } .block-editor-inserter__menu { height: 100%; display: flex; width: auto; } @media (min-width: 782px) { .block-editor-inserter__menu { width: 400px; position: relative; } .block-editor-inserter__menu.has-help-panel { width: 700px; } } .block-editor-inserter__main-area { width: auto; display: flex; flex-direction: column; height: 100%; } @media (min-width: 782px) { .block-editor-inserter__main-area { width: 400px; position: relative; } } .block-editor-inserter__inline-elements { margin-top: -1px; } .block-editor-inserter__menu.is-bottom::after { border-bottom-color: #fff; } .components-popover.block-editor-inserter__popover { z-index: 99998; } .components-popover input[type="search"].block-editor-inserter__search { display: block; margin: 16px; padding: 11px 16px; position: relative; z-index: 1; border-radius: 4px; /* Fonts smaller than 16px causes mobile safari to zoom. */ font-size: 16px; } @media (min-width: 600px) { .components-popover input[type="search"].block-editor-inserter__search { font-size: 13px; } } .components-popover input[type="search"].block-editor-inserter__search:focus { color: #191e23; border-color: #007cba; box-shadow: 0 0 0 1px #007cba; outline: 2px solid transparent; } .block-editor-inserter__results { flex-grow: 1; overflow: auto; position: relative; z-index: 1; padding: 0 16px 16px 16px; } .block-editor-inserter__results:focus { outline: 1px dotted #555d66; } @media (min-width: 782px) { .block-editor-inserter__results { height: 394px; } } .block-editor-inserter__results [role="presentation"] + .components-panel__body { border-top: none; } .block-editor-inserter__popover .block-editor-block-types-list { margin: 0 -8px; } .block-editor-inserter__reusable-blocks-panel { position: relative; text-align: left; } .block-editor-inserter__manage-reusable-blocks { margin: 16px 16px 0 0; } .block-editor-inserter__no-results { font-style: italic; padding: 24px; text-align: center; } .block-editor-inserter__child-blocks { padding: 0 16px; } .block-editor-inserter__parent-block-header { display: flex; align-items: center; } .block-editor-inserter__parent-block-header h2 { font-size: 13px; } .block-editor-inserter__parent-block-header .block-editor-block-icon { margin-left: 8px; } .block-editor-inserter__menu-help-panel { display: none; border-right: 1px solid #e2e4e7; width: 300px; height: 100%; padding: 20px; overflow-y: auto; } @media (min-width: 782px) { .block-editor-inserter__menu-help-panel { display: flex; flex-direction: column; } } .block-editor-inserter__menu-help-panel .block-editor-block-card { padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid #e2e4e7; animation: edit-post__fade-in-animation 0.2s ease-out 0s; animation-fill-mode: forwards; } @media (prefers-reduced-motion: reduce) { .block-editor-inserter__menu-help-panel .block-editor-block-card { animation-duration: 1ms; } } .block-editor-inserter__menu-help-panel .block-editor-inserter__preview { display: flex; flex-grow: 2; } .block-editor-inserter__menu-help-panel-no-block { display: flex; height: 100%; flex-direction: column; animation: edit-post__fade-in-animation 0.2s ease-out 0s; animation-fill-mode: forwards; } @media (prefers-reduced-motion: reduce) { .block-editor-inserter__menu-help-panel-no-block { animation-duration: 1ms; } } .block-editor-inserter__menu-help-panel-no-block .block-editor-inserter__menu-help-panel-no-block-text { flex-grow: 1; } .block-editor-inserter__menu-help-panel-no-block .block-editor-inserter__menu-help-panel-no-block-text h4 { font-size: 18px; } .block-editor-inserter__menu-help-panel-no-block .components-notice { margin: 0; } .block-editor-inserter__menu-help-panel-no-block h4 { margin-top: 0; } .block-editor-inserter__menu-help-panel-hover-area { flex-grow: 1; margin-top: 20px; padding: 20px; border: 1px dotted #e2e4e7; display: flex; align-items: center; text-align: center; } .block-editor-inserter__menu-help-panel-title { font-size: 18px; font-weight: 600; margin-bottom: 20px; } .block-editor-inserter__preview-content { border: 1px solid #e2e4e7; border-radius: 4px; min-height: 150px; display: -ms-grid; display: grid; flex-grow: 2; } .block-editor-inserter__preview-content .block-editor-block-preview__container { margin-left: 0; margin-right: 0; padding: 10px; } .block-editor-inserter__preview-content-missing { flex: 1; display: flex; justify-content: center; color: #606a73; border: 1px solid #e2e4e7; border-radius: 4px; align-items: center; } .block-editor-block-types-list__list-item { display: block; width: 33.33%; padding: 0; margin: 0 0 12px; } .components-button.block-editor-block-types-list__item { display: flex; flex-direction: column; width: 100%; font-size: 13px; color: #32373c; padding: 0 4px; align-items: stretch; justify-content: center; cursor: pointer; background: transparent; word-break: break-word; border-radius: 4px; border: 1px solid transparent; transition: all 0.05s ease-in-out; position: relative; height: auto; } @media (prefers-reduced-motion: reduce) { .components-button.block-editor-block-types-list__item { transition-duration: 0s; } } .components-button.block-editor-block-types-list__item:disabled { opacity: 0.6; cursor: default; } .components-button.block-editor-block-types-list__item:not(:disabled):hover::before { content: ""; display: block; background: #f3f4f5; color: #191e23; position: absolute; z-index: -1; border-radius: 4px; top: 0; left: 0; bottom: 0; right: 0; } .components-button.block-editor-block-types-list__item:not(:disabled):hover .block-editor-block-types-list__item-icon, .components-button.block-editor-block-types-list__item:not(:disabled):hover .block-editor-block-types-list__item-title { color: inherit; } .components-button.block-editor-block-types-list__item:not(:disabled):active, .components-button.block-editor-block-types-list__item:not(:disabled):focus { position: relative; color: #191e23; box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2; outline: 2px solid transparent; background: transparent; } .components-button.block-editor-block-types-list__item:not(:disabled):active .block-editor-block-types-list__item-icon, .components-button.block-editor-block-types-list__item:not(:disabled):active .block-editor-block-types-list__item-title, .components-button.block-editor-block-types-list__item:not(:disabled):focus .block-editor-block-types-list__item-icon, .components-button.block-editor-block-types-list__item:not(:disabled):focus .block-editor-block-types-list__item-title { color: inherit; } .components-button.block-editor-block-types-list__item:not(:disabled).is-active { color: #191e23; box-shadow: inset 0 0 0 2px #555d66; outline: 2px solid transparent; outline-offset: -2px; } .components-button.block-editor-block-types-list__item:not(:disabled).is-active:focus { color: #191e23; box-shadow: 0 0 0 1px #fff, 0 0 0 3px #00a0d2, inset 0 0 0 2px #555d66; outline: 4px solid transparent; outline-offset: -4px; } .block-editor-block-types-list__item-icon { padding: 12px 20px; border-radius: 4px; color: #555d66; transition: all 0.05s ease-in-out; } @media (prefers-reduced-motion: reduce) { .block-editor-block-types-list__item-icon { transition-duration: 0s; } } .block-editor-block-types-list__item-icon .block-editor-block-icon { margin-right: auto; margin-left: auto; } .block-editor-block-types-list__item-icon svg { transition: all 0.15s ease-out; } @media (prefers-reduced-motion: reduce) { .block-editor-block-types-list__item-icon svg { transition-duration: 0s; } } .block-editor-block-types-list__item-title { padding: 4px 2px 8px; } .modal-open .block-editor-media-replace-flow__options { display: none; } .block-editor-media-replace-flow__indicator { margin-right: 4px; } .block-editor-media-replace-flow__indicator::after { content: ""; pointer-events: none; display: block; width: 0; height: 0; border-right: 3px solid transparent; border-left: 3px solid transparent; border-top: 5px solid; margin-right: 4px; margin-left: 2px; } .block-editor-media-flow__url-input { padding: 0 15px; max-width: 255px; padding-bottom: 10px; } .block-editor-media-flow__url-input input { max-width: 180px; } .block-editor-media-replace-flow__link-viewer .components-external-link__icon { display: none; } .block-editor-media-replace-flow__link-viewer .components-visually-hidden { position: initial; } .block-editor-media-replace-flow__link-viewer .components-button { flex-shrink: 0; } .block-editor-media-placeholder__url-input-container .block-editor-media-placeholder__button { margin-bottom: 0; } .block-editor-media-placeholder__url-input-form { display: flex; } .block-editor-media-placeholder__url-input-form input[type="url"].block-editor-media-placeholder__url-input-field { width: 100%; flex-grow: 1; border: none; border-radius: 0; margin: 2px; } @media (min-width: 600px) { .block-editor-media-placeholder__url-input-form input[type="url"].block-editor-media-placeholder__url-input-field { width: 300px; } } .block-editor-media-placeholder__url-input-submit-button { flex-shrink: 1; } .block-editor-media-placeholder__button { margin-bottom: 0.5rem; } .block-editor-media-placeholder__button .dashicon { vertical-align: middle; margin-bottom: 3px; } .block-editor-media-placeholder__button:hover { color: #23282d; } .block-editor-media-placeholder__cancel-button.is-link { margin: 1em; display: block; } .block-editor-media-placeholder.is-appender { min-height: 100px; outline: 1px dashed #8d96a0; } .block-editor-media-placeholder.is-appender:hover { outline: 1px dashed #555d66; cursor: pointer; } .is-dark-theme .block-editor-media-placeholder.is-appender:hover { outline: 1px dashed #fff; } .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__upload-button { margin-left: 4px; } .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__upload-button.components-button:hover, .block-editor-media-placeholder.is-appender .block-editor-media-placeholder__upload-button.components-button:focus { box-shadow: none; border: 1px solid #555d66; } .block-editor-multi-selection-inspector__card { display: flex; align-items: flex-start; padding: 16px; } .block-editor-multi-selection-inspector__card-content { flex-grow: 1; } .block-editor-multi-selection-inspector__card-title { font-weight: 500; margin-bottom: 5px; } .block-editor-multi-selection-inspector__card-description { font-size: 13px; } .block-editor-multi-selection-inspector__card .block-editor-block-icon { margin-right: -2px; margin-left: 10px; padding: 0 3px; width: 36px; height: 24px; } .block-editor .block-editor-plain-text { box-shadow: none; font-family: inherit; font-size: inherit; color: inherit; line-height: inherit; border: none; padding: 0; margin: 0; width: 100%; } .block-editor-responsive-block-control { margin-bottom: 28px; border-bottom: 1px solid #d7dade; padding-bottom: 14px; } .block-editor-responsive-block-control:last-child { padding-bottom: 0; border-bottom: 0; } .block-editor-responsive-block-control__title { margin: 0; margin-bottom: 0.6em; margin-right: -3px; } .block-editor-responsive-block-control__label { font-weight: 600; margin-bottom: 0.6em; margin-right: -3px; } .block-editor-responsive-block-control__inner { margin-right: -1px; } .block-editor-responsive-block-control__toggle { margin-right: 1px; } .block-editor-responsive-block-control .components-base-control__help { border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; } .block-editor-format-toolbar .components-dropdown-menu__toggle .components-dropdown-menu__indicator::after { margin: 7px; } .block-editor-rich-text__editable > p:first-child { margin-top: 0; } .block-editor-rich-text__editable a { color: #007fac; } .block-editor-rich-text__editable code { padding: 2px; border-radius: 2px; color: #23282d; background: #f3f4f5; font-family: Menlo, Consolas, monaco, monospace; font-size: inherit; } .block-editor-rich-text__editable [data-rich-text-placeholder] { pointer-events: none; } .block-editor-rich-text__editable [data-rich-text-placeholder]::after { content: attr(data-rich-text-placeholder); opacity: 0.62; } .block-editor-rich-text__editable:focus { outline: none; } .block-editor-rich-text__editable:focus [data-rich-text-format-boundary] { border-radius: 2px; } .block-editor-rich-text__editable:focus:not(.keep-placeholder-on-focus) [data-rich-text-placeholder]::after { display: none; } figcaption.block-editor-rich-text__editable [data-rich-text-placeholder]::before { opacity: 0.8; } .components-popover.block-editor-rich-text__inline-format-toolbar { z-index: 99998; } .components-popover.block-editor-rich-text__inline-format-toolbar .components-popover__content { min-width: auto; margin-bottom: 6px; } .components-popover.block-editor-rich-text__inline-format-toolbar .components-toolbar { border: none; } .block-editor-skip-to-selected-block { position: absolute; top: -9999em; } .block-editor-skip-to-selected-block:focus { height: auto; width: auto; display: block; font-size: 14px; font-weight: 600; padding: 15px 23px 14px; background: #f1f1f1; color: #11a0d2; line-height: normal; box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6); text-decoration: none; outline: none; z-index: 100000; } body.admin-color-sunrise .block-editor-skip-to-selected-block:focus { color: #c8b03c; } body.admin-color-ocean .block-editor-skip-to-selected-block:focus { color: #a89d8a; } body.admin-color-midnight .block-editor-skip-to-selected-block:focus { color: #77a6b9; } body.admin-color-ectoplasm .block-editor-skip-to-selected-block:focus { color: #c77430; } body.admin-color-coffee .block-editor-skip-to-selected-block:focus { color: #9fa47b; } body.admin-color-blue .block-editor-skip-to-selected-block:focus { color: #d9ab59; } body.admin-color-light .block-editor-skip-to-selected-block:focus { color: #c75726; } .block-editor-tool-selector__help { padding: 16px; border-top: 1px solid #e2e4e7; color: #6c7781; } .block-editor-block-list__block .block-editor-url-input, .components-popover .block-editor-url-input, .block-editor-url-input { flex-grow: 1; position: relative; padding: 1px; } .block-editor-block-list__block .block-editor-url-input input[type="text"], .components-popover .block-editor-url-input input[type="text"], .block-editor-url-input input[type="text"] { width: 100%; padding: 8px; border: none; border-radius: 0; margin-right: 0; margin-left: 0; /* Fonts smaller than 16px causes mobile safari to zoom. */ font-size: 16px; } @media (min-width: 600px) { .block-editor-block-list__block .block-editor-url-input input[type="text"], .components-popover .block-editor-url-input input[type="text"], .block-editor-url-input input[type="text"] { width: 300px; } } @media (min-width: 600px) { .block-editor-block-list__block .block-editor-url-input input[type="text"], .components-popover .block-editor-url-input input[type="text"], .block-editor-url-input input[type="text"] { font-size: 13px; } } .block-editor-block-list__block .block-editor-url-input input[type="text"]::-ms-clear, .components-popover .block-editor-url-input input[type="text"]::-ms-clear, .block-editor-url-input input[type="text"]::-ms-clear { display: none; } .block-editor-block-list__block .block-editor-url-input.has-border input[type="text"], .components-popover .block-editor-url-input.has-border input[type="text"], .block-editor-url-input.has-border input[type="text"] { border: 1px solid #555d66; border-radius: 4px; } .block-editor-block-list__block .block-editor-url-input.is-full-width, .components-popover .block-editor-url-input.is-full-width, .block-editor-url-input.is-full-width { width: 100%; } .block-editor-block-list__block .block-editor-url-input.is-full-width input[type="text"], .components-popover .block-editor-url-input.is-full-width input[type="text"], .block-editor-url-input.is-full-width input[type="text"] { width: 100%; } .block-editor-block-list__block .block-editor-url-input.is-full-width__suggestions, .components-popover .block-editor-url-input.is-full-width__suggestions, .block-editor-url-input.is-full-width__suggestions { width: 100%; } .block-editor-block-list__block .block-editor-url-input .components-spinner, .components-popover .block-editor-url-input .components-spinner, .block-editor-url-input .components-spinner { position: absolute; left: 8px; bottom: 17px; margin: 0; } .block-editor-url-input__suggestions { max-height: 200px; transition: all 0.15s ease-in-out; padding: 4px 0; width: 302px; overflow-y: auto; } @media (prefers-reduced-motion: reduce) { .block-editor-url-input__suggestions { transition-duration: 0s; } } .block-editor-url-input__suggestions, .block-editor-url-input .components-spinner { display: none; } @media (min-width: 600px) { .block-editor-url-input__suggestions, .block-editor-url-input .components-spinner { display: inherit; } } .block-editor-url-input__suggestion { padding: 4px 8px; color: #6c7781; display: block; font-size: 13px; cursor: pointer; background: #fff; width: 100%; border: none; text-align: right; border: none; box-shadow: none; } .block-editor-url-input__suggestion:hover { background: #e2e4e7; } .block-editor-url-input__suggestion:focus, .block-editor-url-input__suggestion.is-selected { background: rgb(0, 113, 158); color: #fff; outline: none; } body.admin-color-sunrise .block-editor-url-input__suggestion:focus, body.admin-color-sunrise .block-editor-url-input__suggestion.is-selected { background: rgb(178, 114, 63); } body.admin-color-ocean .block-editor-url-input__suggestion:focus, body.admin-color-ocean .block-editor-url-input__suggestion.is-selected { background: rgb(139, 157, 138); } body.admin-color-midnight .block-editor-url-input__suggestion:focus, body.admin-color-midnight .block-editor-url-input__suggestion.is-selected { background: rgb(191, 65, 57); } body.admin-color-ectoplasm .block-editor-url-input__suggestion:focus, body.admin-color-ectoplasm .block-editor-url-input__suggestion.is-selected { background: rgb(142, 155, 73); } body.admin-color-coffee .block-editor-url-input__suggestion:focus, body.admin-color-coffee .block-editor-url-input__suggestion.is-selected { background: rgb(165, 141, 119); } body.admin-color-blue .block-editor-url-input__suggestion:focus, body.admin-color-blue .block-editor-url-input__suggestion.is-selected { background: rgb(111, 153, 173); } body.admin-color-light .block-editor-url-input__suggestion:focus, body.admin-color-light .block-editor-url-input__suggestion.is-selected { background: rgb(0, 113, 158); } .components-toolbar > .block-editor-url-input__button { position: inherit; } .block-editor-url-input__button .block-editor-url-input__back { margin-left: 4px; overflow: visible; } .block-editor-url-input__button .block-editor-url-input__back::after { content: ""; position: absolute; display: block; width: 1px; height: 24px; left: -1px; background: #e2e4e7; } .block-editor-url-input__button-modal { box-shadow: 0 3px 30px rgba(25, 30, 35, 0.1); border: 1px solid #e2e4e7; background: #fff; } .block-editor-url-input__button-modal-line { display: flex; flex-direction: row; flex-grow: 1; flex-shrink: 1; min-width: 0; align-items: flex-start; } .block-editor-url-input__button-modal-line .components-button { flex-shrink: 0; width: 36px; height: 36px; } .block-editor-url-popover__additional-controls { border-top: 1px solid #e2e4e7; } .block-editor-url-popover__additional-controls > div[role="menu"] .components-button:not(:disabled):not([aria-disabled="true"]):not(.is-secondary) > svg { box-shadow: none; } .block-editor-url-popover__additional-controls div[role="menu"] > .components-button { padding-right: 2px; } .block-editor-url-popover__row { display: flex; } .block-editor-url-popover__row > :not(.block-editor-url-popover__settings-toggle) { flex-grow: 1; } .block-editor-url-popover .components-button.has-icon { padding: 3px; } .block-editor-url-popover .components-button.has-icon > svg { padding: 5px; border-radius: 4px; height: 30px; width: 30px; } .block-editor-url-popover .components-button.has-icon:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):hover { box-shadow: none; } .block-editor-url-popover .components-button.has-icon:not(:disabled):not([aria-disabled="true"]):not(.is-secondary):hover > svg { color: #555d66; box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; } .block-editor-url-popover .components-button.has-icon:not(:disabled):focus { box-shadow: none; } .block-editor-url-popover .components-button.has-icon:not(:disabled):focus > svg { box-shadow: inset 0 0 0 1px #555d66, inset 0 0 0 2px #fff; outline: 2px solid transparent; } .block-editor-url-popover__settings-toggle { flex-shrink: 0; border-radius: 0; border-right: 1px solid #e2e4e7; margin-right: 1px; } .block-editor-url-popover__settings-toggle[aria-expanded="true"] .dashicon { transform: rotate(-180deg); } .block-editor-url-popover__input-container .components-base-control:last-child, .block-editor-url-popover__input-container .components-base-control:last-child .components-base-control__field { margin-bottom: 0; } .block-editor-url-popover__settings { display: block; padding: 16px; border-top: 1px solid #e2e4e7; } .block-editor-url-popover__link-editor, .block-editor-url-popover__link-viewer { display: flex; } .block-editor-url-popover__link-editor .block-editor-url-input .components-base-control__field, .block-editor-url-popover__link-viewer .block-editor-url-input .components-base-control__field { margin-bottom: 0; } .block-editor-url-popover__link-editor .block-editor-url-input .components-spinner, .block-editor-url-popover__link-viewer .block-editor-url-input .components-spinner { bottom: 9px; } .block-editor-url-popover__link-viewer-url { margin: 7px; flex-grow: 1; flex-shrink: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 150px; max-width: 500px; } .block-editor-url-popover__link-viewer-url.has-invalid-link { color: #d94f4f; } .block-editor-warning { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: nowrap; background-color: #fff; border: 1px solid #e2e4e7; text-align: right; padding: 10px 14px 14px; } .is-selected .block-editor-warning { border-color: rgba(66, 88, 99, 0.4); } @media (min-width: 600px) { .is-selected .block-editor-warning { border-right-color: transparent; } } .is-dark-theme .is-selected .block-editor-warning { border-color: rgba(255, 255, 255, 0.45); } .block-editor-warning .block-editor-warning__message { line-height: 1.4; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif; font-size: 13px; margin: 1em 0; } .block-editor-warning p.block-editor-warning__message.block-editor-warning__message { min-height: auto; } .block-editor-warning .block-editor-warning__contents { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; align-items: baseline; width: 100%; } .block-editor-warning .block-editor-warning__actions { display: flex; } .block-editor-warning .block-editor-warning__action { margin: 0 0 0 6px; } .block-editor-warning__secondary { margin: 5px -4px 0 0; height: 36px; } .block-editor-warning__secondary .components-button.has-icon { width: auto; padding: 0 2px; } @media (min-width: 600px) { .block-editor-warning__secondary { margin-right: 4px; } .block-editor-warning__secondary .components-button.has-icon { padding: 0 4px; } } .block-editor-warning__secondary .components-button svg { transform: rotate(-90deg); } .block-editor-writing-flow { display: flex; flex-direction: column; } .block-editor-writing-flow__click-redirect { cursor: text; } .html-anchor-control .components-external-link { display: block; margin-top: 8px; }
tests/wpt/web-platform-tests/css/css-text/i18n/css3-text-line-break-jazh-305.html
CJ8664/servo
<!DOCTYPE html> <html lang="en" > <head> <meta charset="utf-8"/> <title>CSS3 Text, linebreaks: 303B VERTICAL IDEOGRAPHIC ITERATION MARK (strict,zh)</title> <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'> <link rel='help' href='https://drafts.csswg.org/css-text-3/#line-break'> <link rel="match" href="reference/css3-text-line-break-jazh-305-ref.html"> <meta name='flags' content=''> <meta name="assert" content="The browser will NOT allow 303B VERTICAL IDEOGRAPHIC ITERATION MARK at the beginning of a line."> <style type='text/css'> @font-face { font-family: 'mplus-1p-regular'; src: url('support/mplus-1p-regular.woff') format('woff'); /* filesize: 803K */ } .test, .ref { font-size: 30px; font-family: mplus-1p-regular, sans-serif; width: 93px; padding: 0; border: 1px solid orange; line-height: 1em; } .name { font-size: 10px; } .test { line-break: strict; } </style> </head> <body> <p class='instructions'>Test passes if the two orange boxes are identical.</p> <div class='test' lang='zh'>中中中&#x303B;文</div> <div class='ref'>中中<br/>中&#x303B;文</div></div> <!--Notes: <p class='notes'>For more information about expected line break behavior and line break classes, see <a href='http://www.unicode.org/reports/tr14/'>Unicode Standard Annex #14 Line Breaking Properties</a>. --> </body> </html>
help/literate/templates/template-project.html
featuresnap/FAKE
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <!-- The {page-title} parameters will be replaced with the document title extracted from the <h1> element or file name, if there is no <h1> heading --> <title>{page-title}</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content="{page-description}"> <meta name="author" content="{page-author}"> <script src="https://code.jquery.com/jquery-1.8.0.js"></script> <script src="https://code.jquery.com/ui/1.8.23/jquery-ui.js"></script> <script src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/js/bootstrap.min.js"></script> <script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <link href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.2.1/css/bootstrap-combined.min.css" rel="stylesheet"> <link type="text/css" rel="stylesheet" href="content/style.css" /> <script src="content/tips.js" type="text/javascript"></script> <!-- HTML5 shim, for IE6-8 support of HTML5 elements --> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="masthead"> <ul class="nav nav-pills pull-right"> <li><a href="http://fsharp.org">fsharp.org</a></li> <li><a href="{github-link}">github page</a></li> </ul> <h3 class="muted">{project-name}</h3> </div> <hr /> <div class="row"> <div class="span9" id="main"> {document} {tooltips} </div> <div class="span3"> <a href="index.html"> <img src="pics/logo.png" style="width:140px;height:140px;margin:10px 0px 0px 35px;border-style:none;" /> </a> <ul class="nav nav-list" id="menu"> <li class="nav-header">{project-name}</li> <li><a href="index.html">Home page</a></li> <li class="divider"></li> <li><a href="https://nuget.org/packages/Fake">Get FAKE via NuGet</a></li> <li><a href="{github-link}">Source Code on GitHub</a></li> <li><a href="https://github.com/fsharp/FAKE/blob/master/License.txt">License (Apache 2)</a></li> <li><a href="RELEASE_NOTES.html">Release Notes</a></li> <li><a href="contributing.html">Contributing to FAKE</a></li> <li><a href="users.html">Who is using FAKE?</a></li> <li><a href="http://stackoverflow.com/questions/tagged/f%23-fake">Ask a question</a></li> <li class="nav-header">Tutorials</li> <li><a href="gettingstarted.html">Getting started</a></li> <li><a href="cache.html">Build script caching</a></li> <li class="divider"></li> <li><a href="nuget.html">NuGet package restore</a></li> <li><a href="fxcop.html">Using FxCop in a build</a></li> <li><a href="assemblyinfo.html">Generating AssemblyInfo</a></li> <li><a href="create-nuget-package.html">Create NuGet packages</a></li> <li><a href="specifictargets.html">Running specific targets</a></li> <li><a href="commandline.html">Running FAKE from command line</a></li> <li><a href="parallel-build.html">Running targets in parallel</a></li> <li><a href="fsc.html">Using the F# compiler from FAKE</a></li> <li><a href="customtasks.html">Creating custom tasks</a></li> <li><a href="soft-dependencies.html">Soft dependencies</a></li> <li><a href="teamcity.html">TeamCity integration</a></li> <li><a href="canopy.html">Running canopy tests</a></li> <li><a href="octopusdeploy.html">Octopus Deploy</a></li> <li><a href="typescript.html">TypeScript support</a></li> <li><a href="azurewebjobs.html">Azure WebJobs support</a></li> <li><a href="azurecloudservices.html">Azure Cloud Services support</a></li> <li><a href="fluentmigrator.html">FluentMigrator support</a></li> <li><a href="androidpublisher.html">Android publisher</a></li> <li><a href="watch.html">File Watcher</a></li> <li class="divider"></li> <li><a href="deploy.html">Fake.Deploy</a></li> <li><a href="iis.html">Fake.IIS</a></li> <li class="nav-header">Reference</li> <li><a href="apidocs/index.html">API Reference</a></li> </ul> </div> </div> </div> <a href="{github-link}"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png" alt="Fork me on GitHub"></a> </body> </html>
wicket-core/src/test/java/org/apache/wicket/markup/parser/filter/HeaderSectionPageExpectedResult_5.html
dashorst/wicket
<!-- ==================================================================== Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html xmlns:wicket> <head> border header - header - wicket header</head> <body> <span wicket:id="border"><wicket:border> vorher <wicket:body> my body </wicket:body> nachher </wicket:border></span> </body> </html>
venv/lib/python3.4/site-packages/django_comments/templates/comments/approve.html
DanteOnline/free-art
{% extends "comments/base.html" %} {% load i18n %} {% block title %}{% trans "Approve a comment" %}{% endblock %} {% block content %} <h1>{% trans "Really make this comment public?" %}</h1> <blockquote>{{ comment|linebreaks }}</blockquote> <form action="." method="post">{% csrf_token %} {% if next %} <div><input type="hidden" name="next" value="{{ next }}" id="next"/></div>{% endif %} <p class="submit"> <input type="submit" name="submit" value="{% trans "Approve" %}"/> or <a href="{{ comment.get_absolute_url }}">cancel</a> </p> </form> {% endblock %}
tests/wpt/mozilla/tests/mozilla/referrer-policy/unsafe-url/attr-referrer/cross-origin/http-https/iframe-tag/generic.keep-origin-redirect.http.html
jaysonsantos/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'unsafe-url'</title> <meta name="description" content="Check that all sub-resources get the stripped referrer URL."> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-unsafe-url"> <meta name="assert" content="The referrer URL is stripped-referrer when a document served over http requires an https sub-resource via iframe-tag using the attr-referrer delivery method with keep-origin-redirect and when the target request is cross-origin."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <!-- TODO(kristijanburnik): Minify and merge both: --> <script src="/_mozilla/mozilla/referrer-policy/generic/common.js"></script> <script src="/_mozilla/mozilla/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script> </head> <body> <script> ReferrerPolicyTestCase( { "referrer_policy": "unsafe-url", "delivery_method": "attr-referrer", "redirection": "keep-origin-redirect", "origin": "cross-origin", "source_protocol": "http", "target_protocol": "https", "subresource": "iframe-tag", "subresource_path": "/referrer-policy/generic/subresource/document.py", "referrer_url": "stripped-referrer" }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
vendor/js/esri/arcgis_js_api/library/3.12/3.12compact/dojox/mobile/themes/blackberry/IconMenu-compat.css
aconyteds/Esri-Ozone-Map-Widget
.mblIconMenuItemSel {background-color: #0869c6;}.dj_gecko .mblIconMenuItem {-moz-box-sizing: border-box;}.dj_gecko .mblIconMenuItemSel {background-image: -moz-linear-gradient(top, #088eef 0%, #0869c6 50%, #0851ad 100%);}.dj_ff3 .mblIconMenu {-moz-border-radius: 6px;}.dj_ff3 .mblIconMenuItemIcon img {border: 1px solid red;}.dj_ff3 .mblIconMenuItemFirstRow.mblIconMenuItemFirstColumn {-moz-border-top-left-radius: 0;}.dj_ff3 .mblIconMenuItemFirstRow.mblIconMenuItemLastColumn {-moz-border-top-right-radius: 0;}.dj_ff3 .mblIconMenuItemLastRow.mblIconMenuItemFirstColumn {-moz-border-bottom-left-radius: 0;}.dj_ff3 .mblIconMenuItemLastRow.mblIconMenuItemLastColumn {-moz-border-bottom-right-radius: 0;}
third_party/WebKit/LayoutTests/fast/css/invalidation/targeted-id-style-invalidation.html
vadimtk/chrome4sdp
<!DOCTYPE html> <script src="../../../resources/js-test.js"></script> <style> div { width: 100px } #outer1on #inner1on { width: 200px } #outer2on { width: 150px } #outer3on#nomatch1 { width: 300px; } </style> <div id="outer"> <div id="mid"> <div id="inner1on"> <div id="innerChild"> </div> </div> <div id="inner2"> </div> </div> </div> <div id="outer2"> <div id="inner3"></div> </div> <div id="outer3"> <div class="nomatch"></div> <div class="outer3"></div> </div> <script> description("Test that adding and removing ids only updates the elements that are affected."); function insertStyleSheet(css) { var styleElement = document.createElement("style"); styleElement.textContent = css; (document.head || document.documentElement).appendChild(styleElement); } var outer = document.getElementById('outer'); var inner = document.getElementById('inner1on'); var outer2 = document.getElementById('outer2'); var outer3 = document.getElementById('outer3'); // Style recalc should happen on "inner" and "outer", but not "inner2" or "mid". outer.offsetTop; outer.id = 'outer1on'; shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "2"); shouldBe("getComputedStyle(inner).width", '"200px"'); // Style recalc should happen on "inner", but not "innerChild". inner.offsetTop; inner.id = ''; shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); shouldBe("getComputedStyle(inner).width", '"100px"'); // Style recalc should happen on "outer2", but not "inner3". outer2.offsetTop; outer2.id = 'outer2on'; shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); shouldBe("getComputedStyle(outer2).width", '"150px"'); // Style recalc should happen on "outer3", but none of its children. outer3.offsetTop; outer3.id = 'outer3on'; shouldBe("internals.updateStyleAndReturnAffectedElementCount()", "1"); </script>
theme/templates/choices/buttons/other-web-frameworks.html
mattmakai/fullstackpython.com
<a href="/other-web-frameworks.html" class="btn btn-success btn-full"><svg width="28" height="30" viewBox="0 0 1792 1792" xmlns="http://www.w3.org/2000/svg"><path d="M1088 1256v240q0 16-12 28t-28 12h-240q-16 0-28-12t-12-28v-240q0-16 12-28t28-12h240q16 0 28 12t12 28zm316-600q0 54-15.5 101t-35 76.5-55 59.5-57.5 43.5-61 35.5q-41 23-68.5 65t-27.5 67q0 17-12 32.5t-28 15.5h-240q-15 0-25.5-18.5t-10.5-37.5v-45q0-83 65-156.5t143-108.5q59-27 84-56t25-76q0-42-46.5-74t-107.5-32q-65 0-108 29-35 25-107 115-13 16-31 16-12 0-25-8l-164-125q-13-10-15.5-25t5.5-28q160-266 464-266 80 0 161 31t146 83 106 127.5 41 158.5z" fill="#fff"/></svg></a> <p class="under-btn">What other Python web frameworks exist?</p>
source/android/PholarImageProcess/libraries/opencv/javadoc/org/opencv/photo/TonemapMantiuk.html
jsharp83/jsharp83.github.io
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_65) on Tue Jun 23 19:39:41 MSK 2015 --> <TITLE> TonemapMantiuk </TITLE> <META NAME="date" CONTENT="2015-06-23"> <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="TonemapMantiuk"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> OpenCV 3.0.0</EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../org/opencv/photo/TonemapDurand.html" title="class in org.opencv.photo"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../org/opencv/photo/TonemapReinhard.html" title="class in org.opencv.photo"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/opencv/photo/TonemapMantiuk.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TonemapMantiuk.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.opencv.photo</FONT> <BR> Class TonemapMantiuk</H2> <PRE> java.lang.Object <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../org/opencv/core/Algorithm.html" title="class in org.opencv.core">org.opencv.core.Algorithm</A> <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><A HREF="../../../org/opencv/photo/Tonemap.html" title="class in org.opencv.photo">org.opencv.photo.Tonemap</A> <IMG SRC="../../../resources/inherit.gif" ALT="extended by "><B>org.opencv.photo.TonemapMantiuk</B> </PRE> <HR> <DL> <DT><PRE>public class <B>TonemapMantiuk</B><DT>extends <A HREF="../../../org/opencv/photo/Tonemap.html" title="class in org.opencv.photo">Tonemap</A></DL> </PRE> <P> <HR> <P> <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;float</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../org/opencv/photo/TonemapMantiuk.html#getSaturation()">getSaturation</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;float</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../org/opencv/photo/TonemapMantiuk.html#getScale()">getScale</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../org/opencv/photo/TonemapMantiuk.html#setSaturation(float)">setSaturation</A></B>(float&nbsp;saturation)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../org/opencv/photo/TonemapMantiuk.html#setScale(float)">setScale</A></B>(float&nbsp;scale)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_org.opencv.photo.Tonemap"><!-- --></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.opencv.photo.<A HREF="../../../org/opencv/photo/Tonemap.html" title="class in org.opencv.photo">Tonemap</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../org/opencv/photo/Tonemap.html#getGamma()">getGamma</A>, <A HREF="../../../org/opencv/photo/Tonemap.html#process(org.opencv.core.Mat, org.opencv.core.Mat)">process</A>, <A HREF="../../../org/opencv/photo/Tonemap.html#setGamma(float)">setGamma</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_org.opencv.core.Algorithm"><!-- --></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.opencv.core.<A HREF="../../../org/opencv/core/Algorithm.html" title="class in org.opencv.core">Algorithm</A></B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><A HREF="../../../org/opencv/core/Algorithm.html#clear()">clear</A>, <A HREF="../../../org/opencv/core/Algorithm.html#getDefaultName()">getDefaultName</A>, <A HREF="../../../org/opencv/core/Algorithm.html#save(java.lang.String)">save</A></CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="getSaturation()"><!-- --></A><H3> getSaturation</H3> <PRE> public float <B>getSaturation</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="getScale()"><!-- --></A><H3> getScale</H3> <PRE> public float <B>getScale</B>()</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setSaturation(float)"><!-- --></A><H3> setSaturation</H3> <PRE> public void <B>setSaturation</B>(float&nbsp;saturation)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <HR> <A NAME="setScale(float)"><!-- --></A><H3> setScale</H3> <PRE> public void <B>setScale</B>(float&nbsp;scale)</PRE> <DL> <DD><DL> </DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> <a href=http://docs.opencv.org>OpenCV 3.0.0 Documentation</a></EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../org/opencv/photo/TonemapDurand.html" title="class in org.opencv.photo"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../org/opencv/photo/TonemapReinhard.html" title="class in org.opencv.photo"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../index.html?org/opencv/photo/TonemapMantiuk.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="TonemapMantiuk.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;CONSTR&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
demos/canvas-blocks/index.html
patrickmedaugh/advanced-js-fundamentals-ck
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Canvas Blocks</title> <link href="style.css" rel="stylesheet"> </head> <body> <canvas id="game" class="game-canvas" width="400px" height="300px"></canvas> <script src="helpers.js"></script> <script src="script.js"></script> </body> </html>
webkit/Source/WebKit/qt/tests/qwebframe/resources/testiframe2.html
mogoweb/webkit_for_android5.1
</html> <html> <head> <title></title> <style type="text/css"> <!-- #content { background: #fff; position: absolute; top: 0px; left: 0px; width: 800px; height: 800px; } --> </style> </head> <body> <div id="content"> </div> </body> </html>
transcoders/traceur/third_party/closure-library/closure/goog/math/bezier_test.html
AndrewBarton/WebParrot
<!DOCTYPE html> <html> <!-- Copyright 2007 The Closure Library Authors. All Rights Reserved. Use of this source code is governed by the Apache License, Version 2.0. See the COPYING file for details. --> <head> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Closure Unit Tests - goog.math.Bezier</title> <script src="../base.js"></script> <script> goog.require('goog.math.Bezier'); goog.require('goog.testing.jsunit'); </script> </head> <body> <script> function testEquals() { var input = new goog.math.Bezier(1, 2, 3, 4, 5, 6, 7, 8); assert(input.equals(input)); } function testClone() { var input = new goog.math.Bezier(1, 2, 3, 4, 5, 6, 7, 8); assertNotEquals('Clone returns a new object', input, input.clone()) assert('Contents of clone match original', input.equals(input.clone())); } function testFlip() { var input = new goog.math.Bezier(1, 1, 2, 2, 3, 3, 4, 4); var compare = new goog.math.Bezier(4, 4, 3, 3, 2, 2, 1, 1); var flipped = input.clone(); flipped.flip(); assert('Flipped behaves as expected', compare.equals(flipped)); flipped.flip(); assert('Flipping twice gives original', input.equals(flipped)); } function testGetPoint() { var input = new goog.math.Bezier(0, 1, 1, 2, 2, 3, 3, 4); assert(goog.math.Coordinate.equals(input.getPoint(0), new goog.math.Coordinate(0, 1))); assert(goog.math.Coordinate.equals(input.getPoint(1), new goog.math.Coordinate(3, 4))); assert(goog.math.Coordinate.equals(input.getPoint(0.5), new goog.math.Coordinate(1.5, 2.5))); } function testSubdivide() { var input = new goog.math.Bezier(0, 1, 1, 2, 2, 3, 3, 4); input.subdivide(1/3, 2/3); assert(goog.math.nearlyEquals(1, input.x0)); assert(goog.math.nearlyEquals(2, input.y0)); assert(goog.math.nearlyEquals(2, input.x3)); assert(goog.math.nearlyEquals(3, input.y3)); } function testSolvePositionFromXValue() { var eps = 1e-6; var bezier = new goog.math.Bezier(0, 0, 0.25, 0.1, 0.25, 1, 1, 1); var pt = bezier.getPoint(0.5); assertRoughlyEquals(0.3125, pt.x, eps); assertRoughlyEquals(0.5375, pt.y, eps); assertRoughlyEquals(0.321, bezier.solvePositionFromXValue(bezier.getPoint(0.321).x), eps); } function testSolveYValueFromXValue() { var eps = 1e-6; // The following two examples are taken from // http://www.netzgesta.de/dev/cubic-bezier-timing-function.html. // The timing values shown in that page are 1 - <value> so the // bezier curves in this test are constructed with 1 - ctrl points. E.g. // ctrl points (0.25, 0.1, 0.25, 1.0) become (0.75, 0.9, 0.75 0) here. // Default example. var bezier = new goog.math.Bezier(1, 1, 0.75, 0.9, 0.75, 0, 0, 0); assertRoughlyEquals(0.024374631, bezier.solveYValueFromXValue(0.2), eps); assertRoughlyEquals(0.317459494, bezier.solveYValueFromXValue(0.6), eps); assertRoughlyEquals(0.905205002, bezier.solveYValueFromXValue(0.9), eps); // Ease-in example. var bezier2 = new goog.math.Bezier(1, 1, 0.58, 1, 0, 0, 0, 0); assertRoughlyEquals(0.308366667, bezier2.solveYValueFromXValue(0.2), eps); assertRoughlyEquals(0.785139061, bezier2.solveYValueFromXValue(0.6), eps); assertRoughlyEquals(0.982973389, bezier2.solveYValueFromXValue(0.9), eps); } </script> </body> </html>
rules/rules-rgaa3.2016/src/test/resources/testcases/rgaa32016/Rgaa32016Rule101301/css/Rgaa32016.Test.10.13.1-3NMI-19.css
dzc34/Asqatasun
#hidden-text{ visibility : hidden; }
third_party/blink/web_tests/external/wpt/mathml/presentation-markup/operators/mo-form-dynamic.html
nwjs/chromium.src
<!DOCTYPE html> <html class="reftest-wait"> <head> <meta charset="utf-8"/> <title>&lt;mo&gt; dynamic form</title> <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> <link rel="help" href="https://w3c.github.io/mathml-core/#dom-and-javascript"> <meta name="assert" content="This test verifies that the form of the operators (and thus their spacing) is updated when you change the child list."> <link rel="match" href="mo-form-dynamic-ref.html"> <script> window.addEventListener("load", () => { // force initial layout so we're sure what we're testing against document.documentElement.getBoundingClientRect(); for (var i = 1; i <= 6; i++) { var row = document.getElementById("row" + i); var x = document.getElementById("x" + i); x.parentNode.removeChild(x); row.insertBefore(x, row.firstElementChild); } document.documentElement.classList.remove('reftest-wait'); }) </script> </head> <body> <p>The test should render the same as the static reference.</p> _<math><merror id="row1"><mo>+</mo><mi>y</mi></merror></math>_ _<math id="row2"><mo>+</mo><mi>y</mi></math>_ _<math><mphantom id="row3"><mo>+</mo><mi>y</mi></mphantom></math>_ _<math><mrow id="row4"><mo>+</mo><mi>y</mi></mrow></math>_ _<math><msqrt id="row5"><mo>+</mo><mi>y</mi></msqrt></math>_ _<math><mstyle id="row6"><mo>+</mo><mi>y</mi></mstyle></math>_ _<math><merror><mi id="x1">x</mi><mo>−</mo><mi>y</mi></merror></math>_ _<math><mi id="x2">x</mi><mo>−</mo><mi>y</mi></math>_ _<math><mphantom><mi id="x3">x</mi><mo>−</mo><mi>y</mi></mphantom></math>_ _<math><mrow><mi id="x4">x</mi><mo>−</mo><mi>y</mi></mrow></math>_ _<math><msqrt><mi id="x5">x</mi><mo>−</mo><mi>y</mi></msqrt></math>_ _<math><mstyle><mi id="x6">x</mi><mo>−</mo><mi>y</mi></mstyle></math>_ <script src="/mathml/support/feature-detection.js"></script> <script>MathMLFeatureDetection.ensure_for_match_reftest("has_operator_spacing");</script> </body> </html>