path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
doc/index.html
harshen/jquery-countdownTimer
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JSDoc: Home</title> <script src="scripts/prettify/prettify.js"> </script> <script src="scripts/prettify/lang-css.js"> </script> <!--[if lt IE 9]> <script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <link type="text/css" rel="stylesheet" href="styles/prettify-tomorrow.css"> <link type="text/css" rel="stylesheet" href="styles/jsdoc-default.css"> </head> <body> <div id="main"> <h1 class="page-title">Home</h1> <h3> </h3> <section> <article><h1><a href="https://www.npmjs.com/package/countdowntimer/">jQuery CountdownTimer Plugin</a></h1><p><a href="https://travis-ci.org/harshen/jQuery-countdownTimer/" title="Travis CI"><img src="https://travis-ci.org/harshen/jQuery-countdownTimer.svg" alt="Build Status"></a> <a href="https://david-dm.org/harshen/jQuery-countdownTimer/" title="Dependency Status"><img src="https://david-dm.org/harshen/jQuery-countdownTimer/status.svg" alt="Dependencies Status"></a> <a href="https://david-dm.org/harshen/jQuery-countdownTimer/#info=devDependencies" title="Dev Dependency Status"><img src="https://david-dm.org/harshen/jQuery-countdownTimer/dev-status.svg" alt="Dev Dependency Status"></a></p> <h2><a id="Introduction"></a>Introduction</h2><p><strong>CountdownTimer</strong> is a reverse count down jQuery plugin for displaying countdown as per need with its different configuration options. It is a perfect match for any coupon, auction site or product launch page. It also displays current time and comes with timezone and many regional languages support.</p> <ul> <li><a href="https://harshen.github.io/jQuery-countdownTimer/">Website</a></li> </ul> <h2><a href="https://www.paypal.me/harshenpandey/">Help the project</a></h2><p>This project is looking for help! <a href="https://www.paypal.me/harshenpandey/">You can donate through Paypal</a> and help spread the word. If you've used the plugin, or plan to use, consider a donation - any amount will help.</p> <h2 id="table-of-contents">Table of contents</h2><ul> <li><a href="#features">Features</a></li> <li><a href="#maindoc">Main</a></li> <li><a href="#getting-started">Getting started</a></li> <li><a href="#options">Options</a></li> <li><a href="#methods">Methods</a></li> <li><a href="#usage-examples">Usage examples</a></li> <li><a href="#browser-support">Browser support</a></li> <li><a href="#dependencies">Dependencies</a></li> <li><a href="#support">Support</a></li> <li><a href="#license">License</a></li> </ul> <h2 id="features">Features</h2><ul> <li>Supports jQuery v1.5+</li> <li>Supports 27 <a href="#options">options</a></li> <li>Supports 5 <a href="#methods">methods</a></li> <li>Supports more than 50 regional languages</li> <li>Supports different timezones</li> <li>Supports different sizes</li> <li>Supports Pause / Resume Timer</li> <li>Supports Start / Stop Timer</li> <li>Supports time expire callback</li> <li>Supports custom styling</li> <li>Cross-browser support</li> </ul> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="maindoc">Main</h2><pre class="prettyprint source lang-text"><code>dist/ ├── js/ | ├── jQuery.countdownTimer.js (37.16 kB) | ├── jQuery.countdownTimer.min.js (compressed - 18.28 kB) | ├── localisation/ | └── jQuery.countdownTimer-[region-code].js (regional language support js files) ├── css/ └── jQuery.countdownTimer.css</code></pre><p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="getting-started">Getting Started</h2><h3>Install</h3><pre class="prettyprint source lang-shell"><code>npm install countdowntimer</code></pre><h3>Include files</h3><p>Include jQuery, the plugin and its css file on a page.</p> <pre class="prettyprint source lang-html"><code>&lt;script type=&quot;text/javascript&quot; src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js&quot;>&lt;/script> &lt;script type=&quot;text/javascript&quot; src=&quot;js/jQuery.countdownTimer.js&quot;>&lt;/script> &lt;!-- Good alternative is to include minified file jQuery.countdownTimer.min.js --> &lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;css/jQuery.countdownTimer.css&quot; /> &lt;!-- For regional language support, include below file --> &lt;!--&lt;script type=&quot;text/javascript&quot; src=&quot;js/localisation/jQuery.countdownTimer-[region-code].js&quot;>&lt;/script>--></code></pre><h3>Usage</h3><p>Add a div and span element.</p> <pre class="prettyprint source lang-html"><code>&lt;div id=&quot;countdowntimer&quot;>&lt;span id=&quot;future_date&quot;>&lt;/span>&lt;/div></code></pre><p>Initialize the <code>countdowntimer</code> method with the required options on the span element id.</p> <pre class="prettyprint source lang-js"><code>&lt;script type=&quot;text/javascript&quot;> $(function(){ $(&quot;#future_date&quot;).countdowntimer({ dateAndTime : &quot;2020/01/01 00:00:00&quot;, size : &quot;lg&quot; }); }); &lt;/script></code></pre><h4>FAQ</h4><p>How to set countdown time in hours, minutes seconds?</p> <blockquote> <p>Just specify <code>hours</code> <code>minutes</code> <code>seconds</code> options with the required time while calling the plugin method.</p> </blockquote> <p>How to remove seconds from the timer?</p> <blockquote> <p>Use <code>displayFormat</code> option as for example displayFormat: &quot;YODHM&quot;.</p> </blockquote> <p>How to reset the timer?</p> <blockquote> <p>Use the plugins stop function or <code>stopButton</code> option and provide button id to it.</p> </blockquote> <p>How to modify countdowntimer display with our own styling?</p> <blockquote> <p>Use <code>size, borderColor, fontColor, backgroundColor</code> options. Moreover <code>regexpMatchFormat and regexpReplaceWith</code> provide custom display formatting as per need.</p> </blockquote> <h4>Notes</h4><ul> <li><p>Don't use timer options (hours, minutes, seconds), dateAndTime and currentTime simultaneously as all these options display different time.</p> </li> <li><p><code>regexpMatchFormat and regexpReplaceWith</code> will not function if used simultaneously with <code>timeSeparator, labelsFormat and/or displayFormat</code> options as regex options provide custom display formatting.</p> <blockquote> <p>If you are using regexp options, use them with size.</p> </blockquote> </li> <li><p><code>pauseButton, stopButton</code> options and plugins pause and stop methods can be used for user defined timer (i.e. setting hours, minutes and/or seconds options). It cannot be used for <code>startDate, dateAndTime and currentTime</code> options as these times depend on either a future date or current date-time.</p> </li> <li><p><code>labelsFormat</code> has entirely different display. If used with <code>size and/or timeSeparator</code>, it gains priority over the latter two and they won't function.</p> </li> </ul> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="options">Options</h2><h3>Overview</h3><p>Following are the different options provided for initialising the <code>countdowntimer</code> method with their default values.</p> <pre class="prettyprint source lang-js"><code>hours : 0 // Set hours. minutes : 0 // Set minutes. seconds : 60 // Set seconds. startDate : new Date() // Set a start date. dateAndTime : new Date(&quot;1970/01/01 00:00:00&quot;) // Set end date for start date. currentTime : false // Show current time. size : &quot;sm&quot; // Set timer size. borderColor : &quot;#F0068E&quot; // Set timer border Color. fontColor : &quot;#FFFFFF&quot; // Set timer font Color. backgroundColor : &quot;#000000&quot; // Set timer background Color. timeSeparator : &quot;:&quot; // Set time separator. tickInterval : 1 // Set timer interval. timeUp : null // Provide time expire callback function. expiryUrl : null // Provide url to load on expire. regexpMatchFormat : null // Provide regular expression format to match. regexpReplaceWith : null // Provide regular expression string to replace regexpMatchFormat. pauseButton : null // Provide pause button id. stopButton : null // Provide stop button id. beforeExpiryTime : null // Set a time before expire. beforeExpiryTimeFunction : null // Provide callback function at before expire time. padZeroes : true // Pad zeroes to digits if &lt; 10. displayFormat : &quot;HMS&quot; // Timer display format. labelsFormat : false // Timer display with labels. timeZone : null // Set target date timezone. **Regional Options** digits : ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'] labels : ['Years', 'Months', 'Days', 'Hours', 'Minutes', 'Seconds'] isRTL : false</code></pre><h3>Details</h3><h4>hours</h4><ul> <li>Type: <code>Number</code></li> <li>Default: <code>0</code></li> <li>Provide the hours as a number to countdown to zero. It can take positive values including 0. Can be used with minutes and/or seconds. If used with them, minutes and seconds take values from 0 to 59.</li> </ul> <h4>minutes</h4><ul> <li>Type: <code>Number</code></li> <li>Default: <code>0</code></li> <li>Provide the minutes as a number to countdown to zero. It can take positive values including 0. Can be used with hours and/or seconds. If used with them, minutes and seconds take values from 0 to 59.</li> </ul> <h4>seconds</h4><ul> <li>Type: <code>Number</code></li> <li>Default: <code>60</code></li> <li>Provide the seconds as a number to countdown to zero. It can take positive values including 0. Can be used with hours and/or minutes. If used with them, minutes and seconds take values from 0 to 59.</li> </ul> <h4>startDate</h4><ul> <li>Type: <code>Javascript Date</code></li> <li>Default: <code>new Date()</code></li> <li>Provide the startDate as Javascript Date to countdown till dateAndTime. startDate takes value in format &quot;YYYY/MM/DD HH:MM:SS&quot; where HH is a 24 - hours format. If startDate occurs in future, timer will show zeroes till startDate is equal to current date time. It can also be set to server date and time as given below.</li> </ul> <pre class="prettyprint source lang-js"><code>&lt;?php echo date('Y/m/d H:i:s'); ?></code></pre><h4>dateAndTime</h4><ul> <li>Type: <code>Javascript Date</code></li> <li>Default: <code>new Date(&quot;1970/01/01 00:00:00&quot;)</code></li> <li>Provide the dateAndTime as Javascript Date for startDate to countdown. dateAndTime takes value in format &quot;YYYY/MM/DD HH:MM:SS&quot; where HH is a 24 - hours format. If no startDate is provided, dateAndTime will take the startDate as current date time to countdown. It can also be set to server date and time as given below.</li> </ul> <pre class="prettyprint source lang-js"><code>&lt;?php echo date('Y/m/d H:i:s'); ?></code></pre><h4>currentTime</h4><ul> <li>Type: <code>Boolean</code></li> <li>Default: <code>false</code></li> <li>Show current local time or target region time (by using <code>timeZone</code>). Shows time in a 24 - hour format. Default display is of format HH:MM:SS.</li> </ul> <h4>size</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>sm</code></li> <li><p>The size option defines the countdowntimer size and can be set to below values (use bootstrap sizes notation).</p> <ul> <li><p>xl - Extra large</p> </li> <li><p>lg - Large</p> </li> <li><p>md - Medium</p> </li> <li><p>sm - Small</p> </li> <li><p>xs - Extra small</p> </li> </ul> </li> </ul> <h4>borderColor</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>#F0068E</code></li> <li>Set the border color of the countdowntimer with this option.</li> </ul> <h4>fontColor</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>#FFFFFF</code></li> <li>Set the font color of the countdowntimer with this option.</li> </ul> <h4>backgroundColor</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>#000000</code></li> <li>Set the background color of the countdowntimer with this option.</li> </ul> <h4>timeSeparator</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>:</code></li> <li>Set the separator between digits of different time periods of the countdowntimer with this option.</li> </ul> <h4>tickInterval</h4><ul> <li>Type: <code>Number</code></li> <li>Default: <code>1</code></li> <li>Set the interval in seconds and timer will update the display as per the interval. Note that the time period resolution is limited to the minimum value displayed in your format. So, if you are not showing seconds, you should only use intervals that are multiples of a minute (eg - tickInterval : 60).</li> </ul> <h4>timeUp</h4><ul> <li>Type: <code>Function</code></li> <li>Default: <code>null</code></li> <li>The name of the callback function that is invoked when the countdown reaches zero. Within the function <code>this</code> refers to the division that holds the widget. No parameters are passed in. Provide the name to this option without quotes.</li> </ul> <h4>expiryUrl</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>null</code></li> <li>The Url to load when the countdowntimer reaches zero. Provide it in quotes.</li> </ul> <h4>regexpMatchFormat</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>null</code></li> <li>Set the Regular expression format to be matched and replaced with regexpReplaceWith option for advanced formatting of timer display.</li> </ul> <h4>regexpReplaceWith</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>null</code></li> <li>The replacement text to replace the regular expression match given in regexpMatchFormat option.</li> </ul> <h4>pauseButton</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>null</code></li> <li>Set the ID of the button which will Pause / Resume the timer. Provide ID in quotes. The text of button toggles between &quot;Pause&quot; and &quot;Resume&quot;.</li> </ul> <h4>stopButton</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>null</code></li> <li>Set the ID of the button which will Stop / Start the timer. It stops and resets the timer to the timer options (hours, minutes, seconds) set while calling the plugin function. Provide ID in quotes. The text of button toggles between &quot;Stop&quot; and &quot;Start&quot;.</li> </ul> <h4>beforeExpiryTime</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>null</code></li> <li>The time before expiry when beforeExpiryTimeFunction needs to be called. Format:- &quot;DD:HH:MM:SS&quot; (eg - beforeExpiryTime : &quot;01:02:03:05&quot;).</li> </ul> <h4>beforeExpiryTimeFunction</h4><ul> <li>Type: <code>Function</code></li> <li>Default: <code>null</code></li> <li>The name of the callback function that is invoked before the countdown reaches zero at a time set in beforeExpiryTime option. Within the function <code>this</code> refers to the division that holds the widget. No parameters are passed in. Provide the name to this option without quotes.</li> </ul> <h4>padZeroes</h4><ul> <li>Type: <code>Boolean</code></li> <li>Default: <code>true</code></li> <li>Pads zero to digits of different time periods if less than two digits. Set to false to remove zeroes.</li> </ul> <h4>displayFormat</h4><ul> <li>Type: <code>String</code></li> <li>Default: <code>HMS</code></li> <li><p>Set the display format for countdowntimer. Use the following characters (in order, or out of order) to indicate which time periods you want to display.</p> <ul> <li>Y - Years</li> <li>O - Months</li> <li>D - Days</li> <li>H - Hours</li> <li>M - Minutes</li> <li>S - Seconds</li> </ul> <ul> <li><p>If any time period is not displayed, its time value is added to its superior.</p> </li> <li><p>Usage examples (In order)</p> <ul> <li>YODHMS</li> <li>ODHMS</li> <li>DHMS</li> <li>HMS</li> <li>MS</li> <li>S</li> <li>M</li> <li>H</li> <li>D</li> <li>O</li> <li>Y</li> </ul> </li> <li><p>You can also use the characters out of given order.</p> </li> </ul> </li> </ul> <h4>labelsFormat</h4><ul> <li>Type: <code>Boolean</code></li> <li>Default: <code>false</code></li> <li>Gives enhanced display to countdowntimer by adding time period labels. Can be used with regionalOptions to provide regional language support.</li> </ul> <h4>timeZone</h4><ul> <li>Type: <code>Number</code></li> <li>Default: <code>null</code></li> <li><p>Set the target region timezone with this option. When used, it will countdown with respect to the time in that region. Set hours or minutes in it (works for both UTC + val and UTC - val). Can be used with startDate, dateAndTime and currentTime options.</p> </li> <li><p>Usage examples</p> <ul> <li><p>Time Zone of Los Angeles (Pacific Daylight Time) UTC-7</p> <ul> <li>timeZone : -7</li> <li>timeZone : -420</li> </ul> </li> <li><p>Time Zone of Singapore (SGT) UTC+8</p> <ul> <li>timeZone : +8</li> <li>timeZone : +480</li> </ul> </li> </ul> </li> </ul> <h4>digits</h4><ul> <li>Type: <code>String Array</code></li> <li>Default: <code>['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']</code></li> <li>Included in regionalOptions is digits array for timer display in regional language digits. For regionalOptions to function, include the localisation js file after the plugin js file.</li> </ul> <h4>labels</h4><ul> <li>Type: <code>String Array</code></li> <li>Default: <code>['Years', 'Months', 'Days', 'Hours', 'Minutes', 'Seconds']</code></li> <li>Included in regionalOptions is labels array for timer display in regional language time period labels. For regionalOptions to function, include the localisation js file after the plugin js file.</li> </ul> <h4>isRTL</h4><ul> <li>Type: <code>Boolean</code></li> <li>Default: <code>false</code></li> <li>Set to true for languages that read right-to-left, or false for left-to-right. Included in regionalOptions. For regionalOptions to function, include the localisation js file after the plugin js file.</li> </ul> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="methods">Methods</h2><h4>pause</h4><ul> <li><p>Use it to Pause / Resume the user defined countdowntimer (hours, minutes, seconds timer).</p> <pre class="prettyprint source lang-js"><code> jQuery(&quot;#hms_timer&quot;).countdowntimer(&quot;pause&quot;, &quot;pause&quot;); jQuery(&quot;#hms_timer&quot;).countdowntimer(&quot;pause&quot;, &quot;resume&quot;);</code></pre></li> </ul> <h4>stop</h4><ul> <li><p>Use it to Stop / Start the user defined countdowntimer (hours, minutes, seconds timer). When stopped, timer resets to defined values.</p> <pre class="prettyprint source lang-js"><code> jQuery(&quot;#hms_timer&quot;).countdowntimer(&quot;stop&quot;, &quot;stop&quot;); jQuery(&quot;#hms_timer&quot;).countdowntimer(&quot;stop&quot;, &quot;start&quot;);</code></pre></li> </ul> <h4>destroy</h4><ul> <li><p>Use it to destroy the countdowntimer.</p> <pre class="prettyprint source lang-js"><code> jQuery(&quot;#hms_timer&quot;).countdowntimer(&quot;destroy&quot;);</code></pre></li> </ul> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="usage-examples">Usage examples</h2><p>Following are the different code samples for using <code>countdowntimer</code> method.</p> <ul> <li><p>Reverse countdown till a specific future date from today. (for eg:- 2020/01/01 00:00:00)</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ dateAndTime : &quot;2020/01/01 00:00:00&quot;‚ labelsFormat : true, displayFormat : &quot;YODHMS&quot;, padZeroes : false, timeZone : -7, beforeExpiryTime : &quot;01:01:05:05&quot;, beforeExpiryTimeFunction : beforeExpiryFunc, timeUp : timeIsUp, expiryUrl : &quot;https://www.npmjs.com/package/countdowntimer&quot; }); function beforeExpiryFunc() { //Your code } function timeIsUp() { //Your code } });</code></pre></li> <li><p>Reverse countdown to zero from time set to hours, minutes &amp; seconds.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ hours : 3‚ minutes : 10‚ seconds : 10‚ displayFormat : &quot;HM&quot;, size : &quot;lg&quot;, timeSeparator : &quot;/&quot;, pauseButton : &quot;pbtnId&quot;, stopButton : &quot;sbtnId&quot; }); });</code></pre></li> <li><p>Reverse countdown to zero from time set to hours and minutes.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ hours : 3‚ minutes : 10‚ size : &quot;lg&quot; }); function urfunc() { if(yourcond === true) { jQuery(&quot;#cdt&quot;).countdowntimer(&quot;pause&quot;, &quot;pause&quot;); } else { jQuery(&quot;#cdt&quot;).countdowntimer(&quot;pause&quot;, &quot;resume&quot;); } if(yourothercond === true) { jQuery(&quot;#cdt&quot;).countdowntimer(&quot;stop&quot;, &quot;stop&quot;); } else { jQuery(&quot;#cdt&quot;).countdowntimer(&quot;stop&quot;, &quot;start&quot;); } jQuery(&quot;#cdt&quot;).countdowntimer(&quot;destroy&quot;); } });</code></pre></li> <li><p>Reverse countdown to zero from time set to minutes and seconds.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ minutes : 20‚ seconds : 10‚ size : &quot;lg&quot; }); });</code></pre></li> <li><p>Reverse countdown to zero from time set to hours and seconds.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ hours : 2‚ seconds : 10‚ size : &quot;lg&quot; }); });</code></pre></li> <li><p>Reverse countdown to zero from time set to only hours.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ hours : 2‚ size : &quot;lg&quot;, tickInterval : 60 }); });</code></pre></li> <li><p>Reverse countdown to zero from time set to only minutes.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ minutes : 2‚ size : &quot;lg&quot; }); });</code></pre></li> <li><p>Reverse countdown to zero from time set to only seconds.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ seconds : 25‚ size : &quot;lg&quot; }); });</code></pre></li> <li><p>Display current time.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ currentTime : true‚ size : &quot;lg&quot;, borderColor : &quot;#5D09FA&quot;, backgroundColor : &quot;#FAF209&quot;, fontColor : &quot;#FA0909&quot;, timeZone : -420 }); });</code></pre></li> <li><p>Reverse countdown between a given start date (which can be server date and time or any given date) and end date.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ startDate : &quot;2017/10/10 12:00:00&quot;, dateAndTime : &quot;2020/10/10 12:00:00&quot;, size : &quot;lg&quot; }); });</code></pre></li> <li><p>For taking startDate as current server date and time.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ startDate : &quot;&lt;?php echo date('Y/m/d H:i:s'); ?>&quot;, dateAndTime : &quot;2020/10/10 12:00:00&quot;, size : &quot;lg&quot;, regexpMatchFormat : &quot;([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2}):([0-9]{1,2})&quot;, regexpReplaceWith : &quot;$1&lt;sup>years&lt;/sup> / $2&lt;sup>months&lt;/sup> / $3&lt;sup>days&lt;/sup> / $4&lt;sup>hours&lt;/sup> / $5&lt;sup>minutes&lt;/sup> / $6&lt;sup>seconds&lt;/sup>&quot; }); });</code></pre></li> <li><p>If no options are provided, by default timer of 60 seconds is displayed in small size.</p> <pre class="prettyprint source lang-js"><code> $(function(){ $(&quot;#cdt&quot;).countdowntimer({ }); });</code></pre></li> </ul> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="browser-support">Browser support</h2><ul> <li>Chrome (latest)</li> <li>Firefox (latest)</li> <li>Safari (latest)</li> <li>Opera (latest)</li> <li>Edge (latest)</li> <li>Internet Explorer 9+</li> </ul> <p>As a jQuery plugin, you also need to see the <a href="http://jquery.com/browser-support/">jQuery Browser Support</a>.</p> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="dependencies">Dependencies</h2><p>jQuery greater than or equal to version 1.5.</p> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="support">Support</h2><p>Please post bug reports and other contributions (enhancements, features) to the GitHub issue tracker.</p> <p><a href="#table-of-contents">⬆ back to top</a></p> <h2 id="license">License</h2><p>Copyright © <a href="https://remote.com/harshen">Harshen Pandey</a></p> <p>Licensed under the <a href="https://github.com/harshen/jQuery-countdownTimer/blob/master/LICENSE.md">MIT</a> and <a href="https://github.com/harshen/jQuery-countdownTimer/blob/master/LICENSE-GPL.md">GPLv3</a> license.</p> <p><a href="#table-of-contents">⬆ back to top</a></p></article> </section> </div> <nav> <h2><a href="index.html">Home</a></h2> </nav> <br class="clear"> <footer> Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Tue Oct 24 2017 02:24:57 GMT+0530 (IST) </footer> <script> prettyPrint(); </script> <script src="scripts/linenumber.js"> </script> </body> </html>
Source/hdf5-1.6.10/doc/html/cpplus_RM/H5CompType_8h.html
glentner/Gadget
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns="http://www.w3.org/TR/REC-html40"> <!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * Copyright by The HDF Group. * * Copyright by the Board of Trustees of the University of Illinois. * * All rights reserved. * * * * This file is part of HDF5. The full HDF5 copyright notice, including * * terms governing use, modification, and redistribution, is contained in * * the files COPYING and Copyright.html. COPYING can be found at the root * * of the source code distribution tree; Copyright.html can be found at the * * root level of an installed copy of the electronic HDF5 document set and * * is linked from the top-level documents page. It can also be found at * * http://hdfgroup.org/HDF5/doc/Copyright.html. If you do not have * * access to either file, you may request a copy from help@hdfgroup.org. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * --> <head> <meta http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <meta name=ProgId content=Word.Document> <meta name=Generator content="Microsoft Word 10"> <meta name=Originator content="Microsoft Word 10"> <link rel=File-List href="header_files/filelist.xml"> <link rel=Edit-Time-Data href="header_files/editdata.mso"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);} .shape {behavior:url(#default#VML);} </style> <![endif]--> <title>Main Page</title> <!--[if gte mso 9]><xml> <o:DocumentProperties> <o:Author>Randy Ribler</o:Author> <o:Template>Normal</o:Template> <o:LastAuthor>Randy Ribler</o:LastAuthor> <o:Revision>6</o:Revision> <o:TotalTime>16</o:TotalTime> <o:Created>2004-07-23T05:34:00Z</o:Created> <o:LastSaved>2004-07-23T06:03:00Z</o:LastSaved> <o:Pages>1</o:Pages> <o:Words>5</o:Words> <o:Characters>32</o:Characters> <o:Company>LC</o:Company> <o:Lines>1</o:Lines> <o:Paragraphs>1</o:Paragraphs> <o:CharactersWithSpaces>36</o:CharactersWithSpaces> <o:Version>10.2625</o:Version> </o:DocumentProperties> </xml><![endif]--><!--[if gte mso 9]><xml> <w:WordDocument> <w:SpellingState>Clean</w:SpellingState> <w:GrammarState>Clean</w:GrammarState> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> </w:WordDocument> </xml><![endif]--> <link rel=Stylesheet type="text/css" media=all href=RM_stylesheet.css> <style> <!-- /* Style Definitions */ p.MsoNormal, li.MsoNormal, div.MsoNormal {mso-style-parent:""; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman"; mso-believe-normal-left:yes;} h1 {mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; text-align:center; mso-pagination:widow-orphan; mso-outline-level:1; font-size:24.0pt; font-family:"Times New Roman"; font-weight:bold;} h2 {mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; mso-pagination:widow-orphan; mso-outline-level:2; font-size:18.0pt; font-family:"Times New Roman"; font-weight:bold;} a:link, span.MsoHyperlink {color:#252E78; text-decoration:underline; text-underline:single;} a:visited, span.MsoHyperlinkFollowed {color:#3D2185; text-decoration:underline; text-underline:single;} p {mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} address {margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; font-style:italic;} pre {margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt; font-size:10.0pt; font-family:"Courier New"; mso-fareast-font-family:"Times New Roman";} p.formuladsp, li.formuladsp, div.formuladsp {mso-style-name:formuladsp; mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; text-align:center; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} p.mdtable, li.mdtable, div.mdtable {mso-style-name:mdtable; mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; mso-pagination:widow-orphan; background:#F4F4FB; border:none; mso-border-alt:solid #868686 .75pt; padding:0in; mso-padding-alt:0in 0in 0in 0in; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} p.mdrow, li.mdrow, div.mdrow {mso-style-name:mdrow; mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} p.mdescleft, li.mdescleft, div.mdescleft {mso-style-name:mdescleft; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; background:#FAFAFA; font-size:10.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman"; font-style:italic;} p.mdescright, li.mdescright, div.mdescright {mso-style-name:mdescright; margin:0in; margin-bottom:.0001pt; mso-pagination:widow-orphan; background:#FAFAFA; font-size:10.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman"; font-style:italic;} p.memitemleft, li.memitemleft, div.memitemleft {mso-style-name:memitemleft; margin:3.0pt; mso-pagination:widow-orphan; background:#FAFAFA; border:none; mso-border-top-alt:solid #E0E0E0 .75pt; padding:0in; mso-padding-alt:1.0pt 0in 0in 0in; font-size:9.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} p.memitemright, li.memitemright, div.memitemright {mso-style-name:memitemright; margin:3.0pt; mso-pagination:widow-orphan; background:#FAFAFA; border:none; mso-border-top-alt:solid #E0E0E0 .75pt; padding:0in; mso-padding-alt:1.0pt 0in 0in 0in; font-size:10.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman";} p.search, li.search, div.search {mso-style-name:search; mso-margin-top-alt:auto; margin-right:0in; mso-margin-bottom-alt:auto; margin-left:0in; mso-pagination:widow-orphan; font-size:12.0pt; font-family:"Times New Roman"; mso-fareast-font-family:"Times New Roman"; font-weight:bold;} @page Section1 {size:8.5in 11.0in; margin:1.0in 1.25in 1.0in 1.25in; mso-header-margin:.5in; mso-footer-margin:.5in; mso-paper-source:0;} div.Section1 {page:Section1;} --> </style> <!--[if gte mso 10]> <style> /* Style Definitions */ table.MsoNormalTable {mso-style-name:"Table Normal"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; mso-style-noshow:yes; mso-style-parent:""; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman";} table.MsoTableGrid {mso-style-name:"Table Grid"; mso-tstyle-rowband-size:0; mso-tstyle-colband-size:0; border:solid windowtext 1.0pt; mso-border-alt:solid windowtext .5pt; mso-padding-alt:0in 5.4pt 0in 5.4pt; mso-border-insideh:.5pt solid windowtext; mso-border-insidev:.5pt solid windowtext; mso-para-margin:0in; mso-para-margin-bottom:.0001pt; mso-pagination:widow-orphan; font-size:10.0pt; font-family:"Times New Roman";} </style> <![endif]--><![if mso 9]> <style> p.MsoNormal {margin-left:15.0pt;} </style> <![endif]><!--[if gte mso 9]><xml> <o:shapedefaults v:ext="edit" spidmax="4098"> <o:colormru v:ext="edit" colors="#060"/> <o:colormenu v:ext="edit" strokecolor="#060"/> </o:shapedefaults></xml><![endif]--><!--[if gte mso 9]><xml> <o:shapelayout v:ext="edit"> <o:idmap v:ext="edit" data="1"/> </o:shapelayout></xml><![endif]--> </head> <body bgcolor=white lang=EN-US link="#252E78" vlink="#3D2185" style='tab-interval: .5in;margin-left:15.0pt;margin-right:15.0pt'> <div class=Section1> <p class=MsoNormal style='margin-top:0in;margin-right:15.0pt;margin-bottom: 0in;margin-left:15.0pt;margin-bottom:.0001pt'><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f"> <v:stroke joinstyle="miter"/> <v:formulas> <v:f eqn="if lineDrawn pixelLineWidth 0"/> <v:f eqn="sum @0 1 0"/> <v:f eqn="sum 0 0 @1"/> <v:f eqn="prod @2 1 2"/> <v:f eqn="prod @3 21600 pixelWidth"/> <v:f eqn="prod @3 21600 pixelHeight"/> <v:f eqn="sum @0 0 1"/> <v:f eqn="prod @6 1 2"/> <v:f eqn="prod @7 21600 pixelWidth"/> <v:f eqn="sum @8 21600 0"/> <v:f eqn="prod @7 21600 pixelHeight"/> <v:f eqn="sum @10 21600 0"/> </v:formulas> <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/> <o:lock v:ext="edit" aspectratio="t"/> </v:shapetype><v:shape id="_x0000_s1026" type="#_x0000_t75" style='position:absolute; left:0;text-align:left;margin-left:30pt;margin-top:9pt;width:72.75pt;height:57.75pt; z-index:1'> <v:imagedata src="header_files/image001.jpg" o:title="NCSAlogo"/> </v:shape><![endif]--><![if !vml]><span style='mso-ignore:vglayout;position: absolute;z-index:1;left:0px;margin-left:40px;margin-top:12px;width:97px; height:77px'><img width=97 height=77 src="header_files/image002.jpg" v:shapes="_x0000_s1026"></span><![endif]><span style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'><span style='font-size:22.0pt'><o:p></o:p></span></b></p> <div align=center> <table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0 style='margin-left:103.45pt;border-collapse:collapse;border:none;mso-border-bottom-alt: solid #006600 2.25pt;mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt'> <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes;height:29.25pt'> <td width=443 valign=top style='width:332.6pt;border:none;border-bottom:solid #006600 2.25pt; padding:0in 5.4pt 0in 5.4pt;height:29.25pt'> <p class=MsoNormal><b style='mso-bidi-font-weight:normal'><span style='font-size:22.0pt'>HDF5 C++ API Reference Manual</span></b></p> </td> </tr> </table> </div> <p class=MsoNormal><o:p>&nbsp;</o:p></p> <p class=MsoNormal><o:p>&nbsp;</o:p></p> <p class=MsoNormal><o:p>&nbsp;</o:p></p> </div> </body> </html> <!-- Generated by Doxygen 1.4.7 --> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li id="current"><a href="files.html"><span>Files</span></a></li> <li><a href="examples.html"><span>Examples</span></a></li> </ul></div> <div class="tabs"> <ul> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>File&nbsp;Members</span></a></li> </ul></div> <h1>H5CompType.h File Reference</h1> <p> <a href="H5CompType_8h-source.html">Go to the source code of this file.</a><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Namespaces</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">namespace &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="namespaceH5.html">H5</a></td></tr> <tr><td colspan="2"><br><h2>Classes</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">class &nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classH5_1_1CompType.html">H5::CompType</a></td></tr> </table> <hr size="1"><address style="align: right;"><small>Generated on Wed Nov 4 14:13:07 2009 by&nbsp; <a href="http://www.doxygen.org/index.html"> <img src="doxygen.png" alt="doxygen" align="middle" border="0"></a> 1.4.7 </small></address> </body> </html>
xsltforms/testsuite/XForms1.1/Edition1/Appendix/G/G.1/g1d.css
Timathom/timathom.github.io
@namespace xforms url(http://www.w3.org/2002/xforms); *:read-only { background-color:pink; } *:read-write { background-color:orange; } xf\:label.title, xforms|label.title { font-size: 15pt; font-weight: bold; color: #000099; margin-bottom: 2em; }
aquamacs/doc/Aquamacs Help/dired-x/Special-Marking-Function.html
davidswelt/aquamacs-emacs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta name="generator" content= "HTML Tidy for Mac OS X (vers 31 October 2006 - Apple Inc. build 16.1), see www.w3.org" /> <title>Special Marking Function - Dired Extra Version 2 User's Manual</title> <meta http-equiv="Content-Type" content="text/html" /> <meta name="description" content= "Dired Extra Version 2 User's Manual" /> <meta name="generator" content="makeinfo 4.13" /> <link title="Top" rel="start" href="index.html#Top" /> <link rel="up" href= "Advanced-Mark-Commands.html#Advanced-Mark-Commands" title= "Advanced Mark Commands" /> <link rel="prev" href= "Advanced-Cleaning-Variables.html#Advanced-Cleaning-Variables" title="Advanced Cleaning Variables" /> <link href="http://www.gnu.org/software/texinfo/" rel= "generator-home" title="Texinfo Homepage" /><!-- Copyright (C) 1994, 1995, 1999, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover texts being ``A GNU Manual'', and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled ``GNU Free Documentation License''. (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and modify this GNU manual. Buying copies from the FSF supports it in developing GNU and promoting software freedom.'' --> <meta http-equiv="Content-Style-Type" content="text/css" /> <style type="text/css"> /*<![CDATA[*/ <!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --> /*]]>*/ </style> </head> <body> <div class="node"> <a name="Special-Marking-Function" id= "Special-Marking-Function"></a> <p>Previous:&nbsp;<a rel="previous" accesskey="p" href= "Advanced-Cleaning-Variables.html#Advanced-Cleaning-Variables">Advanced Cleaning Variables</a>, Up:&nbsp;<a rel="up" accesskey="u" href="Advanced-Mark-Commands.html#Advanced-Mark-Commands">Advanced Mark Commands</a></p> <hr /> </div><!-- node-name, next, previous, up --> <h3 class="section">7.3 Special Marking Function</h3> <dl> <dt><kbd>M-(</kbd></dt> <dd> <a name="index-M_002d_0028-65" id= "index-M_002d_0028-65"></a><a name= "index-dired_002dmark_002dsexp-66" id= "index-dired_002dmark_002dsexp-66"></a><a name= "index-Lisp-expression_002c-marking-files-with-in-Dired-67" id= "index-Lisp-expression_002c-marking-files-with-in-Dired-67"></a><a name="index-Mark-file-by-Lisp-expression-68" id= "index-Mark-file-by-Lisp-expression-68"></a>(<code>dired-mark-sexp</code>) Mark files for which <var>predicate</var> returns non-<code>nil</code>. With a prefix argument, unflag those files instead. <p>The <var>predicate</var> is a Lisp expression that can refer to the following symbols:</p> <dl> <dt><code>inode</code></dt> <dd>[<i>integer</i>] the inode of the file (only for &lsquo;<samp><span class="samp">ls -i</span></samp>&rsquo; output)<br /></dd> <dt><code>s</code></dt> <dd>[<i>integer</i>] the size of the file for &lsquo;<samp><span class="samp">ls -s</span></samp>&rsquo; output (usually in blocks or, with &lsquo;<samp><span class="samp">-k</span></samp>&rsquo;, in KBytes)<br /></dd> <dt><code>mode</code></dt> <dd>[<i>string</i>] file permission bits, e.g., &lsquo;<samp><span class= "samp">-rw-r--r--</span></samp>&rsquo;<br /></dd> <dt><code>nlink</code></dt> <dd>[<i>integer</i>] number of links to file<br /></dd> <dt><code>uid</code></dt> <dd>[<i>string</i>] owner<br /></dd> <dt><code>gid</code></dt> <dd>[<i>string</i>] group (If the gid is not displayed by &lsquo;<samp><span class="samp">ls</span></samp>&rsquo;, this will still be set (to the same as uid))<br /></dd> <dt><code>size</code></dt> <dd>[<i>integer</i>] file size in bytes<br /></dd> <dt><code>time</code></dt> <dd>[<i>string</i>] the time that &lsquo;<samp><span class= "samp">ls</span></samp>&rsquo; displays, e.g., &lsquo;<samp><span class="samp">Feb 12 14:17</span></samp>&rsquo;<br /></dd> <dt><code>name</code></dt> <dd>[<i>string</i>] the name of the file<br /></dd> <dt><code>sym</code></dt> <dd>[<i>string</i>] if file is a symbolic link, the linked-to name, else <code>""</code></dd> </dl> <p class="noindent">For example, use</p> <pre class="example"> (equal 0 size) </pre> <p>to mark all zero length files.</p> <p>To find out all not yet compiled Emacs Lisp files in a directory, Dired all <samp><span class= "file">.el</span></samp> files in the lisp directory using the wildcard &lsquo;<samp><span class= "samp">*.el</span></samp>&rsquo;. Then use <kbd>M-(</kbd> with</p> <pre class="example"> (not (file-exists-p (concat name "c"))) </pre> <p>to mark all <samp><span class="file">.el</span></samp> files without a corresponding <samp><span class= "file">.elc</span></samp> file.</p> </dd> </dl> </body> </html>
php-manual/cairomatrix.initrotate.html
Sliim/sleemacs
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <title>Creates a new rotated matrix</title> </head> <body><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="cairomatrix.initidentity.html">CairoMatrix::initIdentity</a></div> <div class="next" style="text-align: right; float: right;"><a href="cairomatrix.initscale.html">CairoMatrix::initScale</a></div> <div class="up"><a href="class.cairomatrix.html">CairoMatrix</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div><hr /><div id="cairomatrix.initrotate" class="refentry"> <div class="refnamediv"> <h1 class="refname">CairoMatrix::initRotate</h1> <h1 class="refname">cairo_matrix_init_rotate</h1> <p class="verinfo">(PECL cairo &gt;= 0.1.0)</p><p class="refpurpose"><span class="refname">CairoMatrix::initRotate</span> -- <span class="refname">cairo_matrix_init_rotate</span> &mdash; <span class="dc-title">Creates a new rotated matrix</span></p> </div> <div class="refsect1 description" id="refsect1-cairomatrix.initrotate-description"> <h3 class="title">Description</h3> <p class="para">Object oriented style (method):</p> <div class="methodsynopsis dc-description"> <span class="modifier">public</span> <span class="modifier">static</span> <span class="type"><span class="type void">void</span></span> <span class="methodname"><strong>CairoMatrix::initRotate</strong></span> ( <span class="methodparam"><span class="type">float</span> <code class="parameter">$radians</code></span> )</div> <p class="para rdfs-comment">Procedural style:</p> <div class="methodsynopsis dc-description"> <span class="type">object</span> <span class="methodname"><strong>cairo_matrix_init_rotate</strong></span> ( <span class="methodparam"><span class="type">float</span> <code class="parameter">$radians</code></span> )</div> <p class="para rdfs-comment"> Creats a new matrix to a transformation that rotates by radians provided </p> </div> <div class="refsect1 parameters" id="refsect1-cairomatrix.initrotate-parameters"> <h3 class="title">Parameters</h3> <p class="para"> <dl> <dt> <span class="term"><em><code class="parameter">radians</code></em></span> <dd> <p class="para"> angle of rotation, in radians. The direction of rotation is defined such that positive angles rotate in the direction from the positive X axis toward the positive Y axis. With the default axis orientation of cairo, positive angles rotate in a clockwise direction. </p> </dd> </dt> </dl> </p> </div> <div class="refsect1 returnvalues" id="refsect1-cairomatrix.initrotate-returnvalues"> <h3 class="title">Return Values</h3> <p class="para"> Returns a new CairoMatrix object that can be used with surfaces, contexts, and patterns. </p> </div> <div class="refsect1 examples" id="refsect1-cairomatrix.initrotate-examples"> <h3 class="title">Examples</h3> <p class="para"> <div class="example" id="example-2927"> <p><strong>Example #1 Object oriented style</strong></p> <div class="example-contents"> <div class="phpcode"><code><span style="color: #000000"> <span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">/*&nbsp;Create&nbsp;a&nbsp;new&nbsp;Matrix&nbsp;*/<br /></span><span style="color: #0000BB">$matrix&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">CairoMatrix</span><span style="color: #007700">::</span><span style="color: #0000BB">initRotate</span><span style="color: #007700">(</span><span style="color: #0000BB">0.3</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span> </span> </code></div> </div> </div> </p> <p class="para"> <div class="example" id="example-2928"> <p><strong>Example #2 Procedural style</strong></p> <div class="example-contents"> <div class="phpcode"><code><span style="color: #000000"> <span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">/*&nbsp;Create&nbsp;a&nbsp;new&nbsp;Matrix&nbsp;*/<br /></span><span style="color: #0000BB">$matrix&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #0000BB">cairo_matrix_init_rotate</span><span style="color: #007700">(</span><span style="color: #0000BB">0.3</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span> </span> </code></div> </div> </div> </p> </div> <div class="refsect1 seealso" id="refsect1-cairomatrix.initrotate-seealso"> <h3 class="title">See Also</h3> <p class="para"> <ul class="simplelist"> <li class="member"> <span class="methodname"><a href="cairomatrix.construct.html" class="methodname" rel="rdfs-seeAlso">CairoMatrix::__construct()</a> - Creates a new CairoMatrix object</span></li> <li class="member"> <span class="methodname"><a href="cairomatrix.initidentity.html" class="methodname" rel="rdfs-seeAlso">CairoMatrix::initIdentity()</a> - Creates a new identity matrix</span></li> <li class="member"> <span class="methodname"><a href="cairomatrix.initscale.html" class="methodname" rel="rdfs-seeAlso">CairoMatrix::initScale()</a> - Creates a new scaling matrix</span></li> <li class="member"> <span class="methodname"><a href="cairomatrix.inittranslate.html" class="methodname" rel="rdfs-seeAlso">CairoMatrix::initTranslate()</a> - Creates a new translation matrix</span></li> </ul> </p> </div> </div><hr /><div class="manualnavbar" style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="cairomatrix.initidentity.html">CairoMatrix::initIdentity</a></div> <div class="next" style="text-align: right; float: right;"><a href="cairomatrix.initscale.html">CairoMatrix::initScale</a></div> <div class="up"><a href="class.cairomatrix.html">CairoMatrix</a></div> <div class="home"><a href="index.html">PHP Manual</a></div> </div></body></html>
Libraries/MessageRoutingEngine/doc/info/s1products/server/util/ByteUtil.html
S1Products/S1WifiServer
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="ja"> <head> <!-- Generated by javadoc (version 1.7.0_13) on Fri Mar 08 17:34:15 KST 2013 --> <title>ByteUtil</title> <meta name="date" content="2013-03-08"> <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="ByteUtil"; } //--> </script> <noscript> <div>ƒuƒ‰ƒEƒU‚ÌJavaScript‚ª–³Œø‚ɂȂÁ‚Ä‚¢‚Ü‚·B</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="ƒiƒrƒQ[ƒVƒ‡ƒ“EƒŠƒ“ƒN‚ðƒXƒLƒbƒv"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="ƒiƒrƒQ[ƒVƒ‡ƒ“"> <li><a href="../../../../overview-summary.html">ŠT—v</a></li> <li><a href="package-summary.html">ƒpƒbƒP[ƒW</a></li> <li class="navBarCell1Rev">ƒNƒ‰ƒX</li> <li><a href="class-use/ByteUtil.html">Žg—p</a></li> <li><a href="package-tree.html">ŠK‘wƒcƒŠ[</a></li> <li><a href="../../../../deprecated-list.html">”ñ„§</a></li> <li><a href="../../../../index-files/index-1.html">õˆø</a></li> <li><a href="../../../../help-doc.html">ƒwƒ‹ƒv</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>‘O‚̃Nƒ‰ƒX</li> <li><a href="../../../../info/s1products/server/util/SleepUtil.html" title="info.s1products.server.util“à‚̃Nƒ‰ƒX"><span class="strong">ŽŸ‚̃Nƒ‰ƒX</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?info/s1products/server/util/ByteUtil.html" target="_top">ƒtƒŒ[ƒ€</a></li> <li><a href="ByteUtil.html" target="_top">ƒtƒŒ[ƒ€‚È‚µ</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">‚·‚ׂẴNƒ‰ƒX</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>ŠT—v:&nbsp;</li> <li>ƒlƒXƒg&nbsp;|&nbsp;</li> <li>ƒtƒB[ƒ‹ƒh&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">ƒRƒ“ƒXƒgƒ‰ƒNƒ^</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">ƒƒ\ƒbƒh</a></li> </ul> <ul class="subNavList"> <li>Ú×:&nbsp;</li> <li>ƒtƒB[ƒ‹ƒh&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">ƒRƒ“ƒXƒgƒ‰ƒNƒ^</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">ƒƒ\ƒbƒh</a></li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">info.s1products.server.util</div> <h2 title="ƒNƒ‰ƒX ByteUtil" class="title">ƒNƒ‰ƒX ByteUtil</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>info.s1products.server.util.ByteUtil</li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <hr> <br> <pre>public class <span class="strong">ByteUtil</span> extends java.lang.Object</pre> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>ƒRƒ“ƒXƒgƒ‰ƒNƒ^‚ÌŠT—v</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="ƒRƒ“ƒXƒgƒ‰ƒNƒ^‚ÌŠT—v•\AƒRƒ“ƒXƒgƒ‰ƒNƒ^‚ÌƒŠƒXƒg‚¨‚æ‚Ñà–¾"> <caption><span>ƒRƒ“ƒXƒgƒ‰ƒNƒ^</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">ƒRƒ“ƒXƒgƒ‰ƒNƒ^‚Æà–¾</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#ByteUtil()">ByteUtil</a></strong>()</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>ƒƒ\ƒbƒh‚ÌŠT—v</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="ƒƒ\ƒbƒh‚ÌŠT—v•\Aƒƒ\ƒbƒh‚ÌƒŠƒXƒg‚¨‚æ‚Ñà–¾"> <caption><span>ƒƒ\ƒbƒh</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">CüŽq‚ƃ^ƒCƒv</th> <th class="colLast" scope="col">ƒƒ\ƒbƒh‚Æà–¾</th> </tr> <tr class="altColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#align(int)">align</a></strong>(int&nbsp;index)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#append(byte[], byte[])">append</a></strong>(byte[]&nbsp;bytes1, byte[]&nbsp;bytes2)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#appendNullToLeft(byte[], int)">appendNullToLeft</a></strong>(byte[]&nbsp;data, int&nbsp;place)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#appendNullToRight(byte[], int)">appendNullToRight</a></strong>(byte[]&nbsp;data, int&nbsp;place)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#copy(byte[], int)">copy</a></strong>(byte[]&nbsp;bytes, int&nbsp;start)</code> <div class="block">Copy byte array from start position</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#copy(byte[], int, int)">copy</a></strong>(byte[]&nbsp;bytes, int&nbsp;start, int&nbsp;end)</code> <div class="block">Copy byte array from start to end position</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toBytes(double)">toBytes</a></strong>(double&nbsp;value)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toBytes(float)">toBytes</a></strong>(float&nbsp;value)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toBytes(int)">toBytes</a></strong>(int&nbsp;value)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static byte[]</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toBytes(long)">toBytes</a></strong>(long&nbsp;value)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static java.awt.Color</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toColor(byte[])">toColor</a></strong>(byte[]&nbsp;bytes)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static double</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toDouble(byte[])">toDouble</a></strong>(byte[]&nbsp;bytes)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static float</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toFloat(byte[])">toFloat</a></strong>(byte[]&nbsp;bytes)</code>&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static int</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toInt(byte[])">toInt</a></strong>(byte[]&nbsp;bytes)</code>&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><code>static long</code></td> <td class="colLast"><code><strong><a href="../../../../info/s1products/server/util/ByteUtil.html#toLong(byte[])">toLong</a></strong>(byte[]&nbsp;bytes)</code>&nbsp;</td> </tr> </table> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>ƒNƒ‰ƒX‚©‚çŒp³‚³‚ꂽƒƒ\ƒbƒh&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>ƒRƒ“ƒXƒgƒ‰ƒNƒ^‚̏ڍ×</h3> <a name="ByteUtil()"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>ByteUtil</h4> <pre>public&nbsp;ByteUtil()</pre> </li> </ul> </li> </ul> <!-- ============ METHOD DETAIL ========== --> <ul class="blockList"> <li class="blockList"><a name="method_detail"> <!-- --> </a> <h3>ƒƒ\ƒbƒh‚̏ڍ×</h3> <a name="appendNullToLeft(byte[], int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>appendNullToLeft</h4> <pre>public static&nbsp;byte[]&nbsp;appendNullToLeft(byte[]&nbsp;data, int&nbsp;place)</pre> </li> </ul> <a name="appendNullToRight(byte[], int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>appendNullToRight</h4> <pre>public static&nbsp;byte[]&nbsp;appendNullToRight(byte[]&nbsp;data, int&nbsp;place)</pre> </li> </ul> <a name="append(byte[], byte[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>append</h4> <pre>public static&nbsp;byte[]&nbsp;append(byte[]&nbsp;bytes1, byte[]&nbsp;bytes2)</pre> </li> </ul> <a name="align(int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>align</h4> <pre>public static&nbsp;int&nbsp;align(int&nbsp;index)</pre> </li> </ul> <a name="copy(byte[], int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>copy</h4> <pre>public static&nbsp;byte[]&nbsp;copy(byte[]&nbsp;bytes, int&nbsp;start)</pre> <div class="block">Copy byte array from start position</div> <dl><dt><span class="strong">ƒpƒ‰ƒ[ƒ^:</span></dt><dd><code>bytes</code> - Source byte array</dd><dd><code>start</code> - Start position</dd> <dt><span class="strong">–ß‚è’l:</span></dt><dd>Copied byte array</dd></dl> </li> </ul> <a name="copy(byte[], int, int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>copy</h4> <pre>public static&nbsp;byte[]&nbsp;copy(byte[]&nbsp;bytes, int&nbsp;start, int&nbsp;end)</pre> <div class="block">Copy byte array from start to end position</div> <dl><dt><span class="strong">ƒpƒ‰ƒ[ƒ^:</span></dt><dd><code>bytes</code> - Source byte array</dd><dd><code>start</code> - Start position</dd><dd><code>end</code> - End position</dd> <dt><span class="strong">–ß‚è’l:</span></dt><dd>Copied byte array</dd></dl> </li> </ul> <a name="toInt(byte[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toInt</h4> <pre>public static&nbsp;int&nbsp;toInt(byte[]&nbsp;bytes)</pre> </li> </ul> <a name="toLong(byte[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toLong</h4> <pre>public static&nbsp;long&nbsp;toLong(byte[]&nbsp;bytes)</pre> </li> </ul> <a name="toFloat(byte[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toFloat</h4> <pre>public static&nbsp;float&nbsp;toFloat(byte[]&nbsp;bytes)</pre> </li> </ul> <a name="toDouble(byte[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toDouble</h4> <pre>public static&nbsp;double&nbsp;toDouble(byte[]&nbsp;bytes)</pre> </li> </ul> <a name="toColor(byte[])"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toColor</h4> <pre>public static&nbsp;java.awt.Color&nbsp;toColor(byte[]&nbsp;bytes)</pre> </li> </ul> <a name="toBytes(int)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toBytes</h4> <pre>public static&nbsp;byte[]&nbsp;toBytes(int&nbsp;value)</pre> </li> </ul> <a name="toBytes(long)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toBytes</h4> <pre>public static&nbsp;byte[]&nbsp;toBytes(long&nbsp;value)</pre> </li> </ul> <a name="toBytes(float)"> <!-- --> </a> <ul class="blockList"> <li class="blockList"> <h4>toBytes</h4> <pre>public static&nbsp;byte[]&nbsp;toBytes(float&nbsp;value)</pre> </li> </ul> <a name="toBytes(double)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>toBytes</h4> <pre>public static&nbsp;byte[]&nbsp;toBytes(double&nbsp;value)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="ƒiƒrƒQ[ƒVƒ‡ƒ“EƒŠƒ“ƒN‚ðƒXƒLƒbƒv"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="ƒiƒrƒQ[ƒVƒ‡ƒ“"> <li><a href="../../../../overview-summary.html">ŠT—v</a></li> <li><a href="package-summary.html">ƒpƒbƒP[ƒW</a></li> <li class="navBarCell1Rev">ƒNƒ‰ƒX</li> <li><a href="class-use/ByteUtil.html">Žg—p</a></li> <li><a href="package-tree.html">ŠK‘wƒcƒŠ[</a></li> <li><a href="../../../../deprecated-list.html">”ñ„§</a></li> <li><a href="../../../../index-files/index-1.html">õˆø</a></li> <li><a href="../../../../help-doc.html">ƒwƒ‹ƒv</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>‘O‚̃Nƒ‰ƒX</li> <li><a href="../../../../info/s1products/server/util/SleepUtil.html" title="info.s1products.server.util“à‚̃Nƒ‰ƒX"><span class="strong">ŽŸ‚̃Nƒ‰ƒX</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?info/s1products/server/util/ByteUtil.html" target="_top">ƒtƒŒ[ƒ€</a></li> <li><a href="ByteUtil.html" target="_top">ƒtƒŒ[ƒ€‚È‚µ</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">‚·‚ׂẴNƒ‰ƒX</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>ŠT—v:&nbsp;</li> <li>ƒlƒXƒg&nbsp;|&nbsp;</li> <li>ƒtƒB[ƒ‹ƒh&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">ƒRƒ“ƒXƒgƒ‰ƒNƒ^</a>&nbsp;|&nbsp;</li> <li><a href="#method_summary">ƒƒ\ƒbƒh</a></li> </ul> <ul class="subNavList"> <li>Ú×:&nbsp;</li> <li>ƒtƒB[ƒ‹ƒh&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">ƒRƒ“ƒXƒgƒ‰ƒNƒ^</a>&nbsp;|&nbsp;</li> <li><a href="#method_detail">ƒƒ\ƒbƒh</a></li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
aplicacao/badminton/lib/commons-email-1.3/apidocs/org/apache/commons/mail/package-summary.html
diegoheusser/testes-fisicos
<!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>org.apache.commons.mail (Commons Email 1.3.1 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="org.apache.commons.mail (Commons Email 1.3.1 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 class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Package</li> <li><a href="../../../../org/apache/commons/mail/resolver/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/commons/mail/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;org.apache.commons.mail</h1> <div class="docSummary"> <div class="block"> Commons-Email aims to provide a API for sending email.</div> </div> <p>See:&nbsp;<a href="#package_description">Description</a></p> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Interface Summary table, listing interfaces, and an explanation"> <caption><span>Interface Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Interface</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/DataSourceResolver.html" title="interface in org.apache.commons.mail">DataSourceResolver</a></td> <td class="colLast"> <div class="block">Creates a <code>DataSource</code> based on an URL.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/ByteArrayDataSource.html" title="class in org.apache.commons.mail">ByteArrayDataSource</a></td> <td class="colLast"> <div class="block">This class implements a typed DataSource from:<br> - an InputStream<br> - a byte array<br> - a String<br></div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/DefaultAuthenticator.html" title="class in org.apache.commons.mail">DefaultAuthenticator</a></td> <td class="colLast"> <div class="block">This is a very simple authentication object that can be used for any transport needing basic userName and password type authentication.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/Email.html" title="class in org.apache.commons.mail">Email</a></td> <td class="colLast"> <div class="block">The base class for all email messages.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/EmailAttachment.html" title="class in org.apache.commons.mail">EmailAttachment</a></td> <td class="colLast"> <div class="block">This class models an email attachment.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/EmailConstants.html" title="class in org.apache.commons.mail">EmailConstants</a></td> <td class="colLast"> <div class="block">Constants used by Email classes.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/HtmlEmail.html" title="class in org.apache.commons.mail">HtmlEmail</a></td> <td class="colLast"> <div class="block">An HTML multipart email.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/ImageHtmlEmail.html" title="class in org.apache.commons.mail">ImageHtmlEmail</a></td> <td class="colLast"> <div class="block">Small wrapper class on top of HtmlEmail which encapsulates the required logic to retrieve images that are contained in "&lt;img src=../&gt;" elements in the HTML code.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/MultiPartEmail.html" title="class in org.apache.commons.mail">MultiPartEmail</a></td> <td class="colLast"> <div class="block">A multipart email.</div> </td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/SimpleEmail.html" title="class in org.apache.commons.mail">SimpleEmail</a></td> <td class="colLast"> <div class="block">This class is used to send simple internet email messages without attachments.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Exception Summary table, listing exceptions, and an explanation"> <caption><span>Exception Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Exception</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../org/apache/commons/mail/EmailException.html" title="class in org.apache.commons.mail">EmailException</a></td> <td class="colLast"> <div class="block">Exception thrown when a checked error occurs in commons-email.</div> </td> </tr> </tbody> </table> </li> </ul> <a name="package_description"> <!-- --> </a> <h2 title="Package org.apache.commons.mail Description">Package org.apache.commons.mail Description</h2> <div class="block"><p> Commons-Email aims to provide a API for sending email. It is built on top of the Java Mail API, which it aims to simplify. All help is gratefully received. </p></div> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev Package</li> <li><a href="../../../../org/apache/commons/mail/resolver/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/commons/mail/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2001-2013 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.</small></p> </body> </html>
Server-Package-V2/quiz/average_word_problems.iframe.html
lanacademy/Server-Package-V2
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="chrome=1"> <title>LAN Academy V2</title> <!-- Viewport --> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- CSS --> <link rel="stylesheet" href="/etc/css/normalize.css"> <link rel="stylesheet" href="/etc/css/styles.css"> <!-- JS --> <!--[if lt IE 9]> <script src="/etc/js/html5shiv.js"></script> <![endif]--> <!-- Favicons --> <link rel="shortcut icon" href="/etc/css/img/favicon.ico"> <link rel="apple-touch-icon" href="/etc/css/img/apple-touch-icon.png"> <link href="/etc/css/playlist.css" rel="/tylesheet" type="text/css"> <!--Video--> <link href="/etc/js/video-js.css" rel="stylesheet" type="text/css"> <link href="/etc/js/video.playlist.css" rel="stylesheet" type="text/css"> <script src="/etc/js/jquery-1.9.1.min.js"></script> <script src="/etc/js/autoellipsis.min.jquery.js"></script> <script src="/etc/js/video.js"></script> <script src="/etc/js/video.playlist.js"></script> </head> <body> <header class="clearfix"> <div class="wrapper"> <h1 class="logo"> <a href="/">LAN Academy LMS</a> </h1> <!--Nav--> <nav> <ul> <li><a href="/learn.php?=/var/www/static/content">Video Courses</a></li> <li><a href="/typing">Typing Games</a></li> <li><a href="/quiz">Math Practice</a></li> </ul> </nav> <!--/ responsive-nav --> </div> <!--/ wrapper --> </header> <section class="main clearfix"> <div class="wrapper"> <!--Add left sidebar here, change width of tasters--> <div class="tasters" style="width:100%;"> <article> <!--Title --> <div class="title-head"><h3>Exercise: average word problems</h3></div><!--Dir Listing--> <iframe src="/static/khan-exercises/exercises/average_word_problems.html" seamless height="820px" scrolling="no" width="100%"></iframe> </article> </div><!--/ tasters --> </div> <!--/ wrapper --> </section><!--/ main --> <footer> <div class="wrapper"> <p>© Copyleft LAN Academy 2013 <a href="css/acknowledgments.html">Acknowledgments</a> </p> </div> </footer> <!--Other js--> <script type="text/javascript"> var playerWidth = 600; var playerHeight = 400; </script> <script src="/etc/js/custom.js"></script> </body> </html>
web/css/firstpage.css
largetimmo/CarpooWeb
body{ background-color: white; } #heading{ background-color: white; } h1{ text-align: center; } #description{ text-align: center; } .result{ background-color: #c8c8c8; } #searching_box{ background-color: #efefef; } #content{ margin-top: 3em; background-color: #4b4f54; } #heading1{ color: #fff; }
client/views/stations/dj.html
jfols/youdj
<template name="djStation"> <h2>DJ Controller</h2> <h3>Up Next</h3> {{#each station.queue}} {{> track}} {{/each}} <hr> <iframe class="iframe" width="100%" height="450" scrolling="no" frameborder="no" src="{{currentTrackUrl}}"></iframe> <hr> <form> <fieldset> <legend>Search For Tracks</legend> <div class="form-group"> <label for="searchQuery">Search:</label> <input type="text" class="form-control" id="searchQuery" placeholder=""> </div> </fieldset> <button class="btn btn-primary search">Search</button> </form> {{#each searchResultsTracks}} {{> trackSearchResult}} {{/each}} </template>
production/files/游戏分析-付费转化/styles.css
yan3328906/FW-Dashboard
body { margin:0px; background-image:none; position:static; left:auto; width:1419px; margin-left:0; margin-right:0; text-align:left; } #base { position:absolute; z-index:0; } #u0 { position:absolute; left:200px; top:200px; width:1219px; height:1250px; opacity:0.3; } #u0_img { position:absolute; left:0px; top:0px; width:1219px; height:1250px; } #u1 { position:absolute; left:2px; top:617px; width:1215px; visibility:hidden; word-wrap:break-word; } #u2 { position:absolute; left:231px; top:220px; width:199px; height:70px; } #u2_img { position:absolute; left:0px; top:0px; width:199px; height:70px; } #u3 { position:absolute; left:2px; top:27px; width:195px; visibility:hidden; word-wrap:break-word; } #u4 { position:absolute; left:200px; top:300px; width:1219px; height:10px; } #u4_start { position:absolute; left:0px; top:-5px; width:18px; height:20px; } #u4_end { position:absolute; left:1202px; top:-5px; width:18px; height:20px; } #u4_line { position:absolute; left:0px; top:5px; width:1219px; height:1px; } #u5 { position:absolute; left:1322px; top:220px; width:88px; height:70px; } #u5_img { position:absolute; left:0px; top:0px; width:88px; height:70px; } #u6 { position:absolute; left:2px; top:27px; width:84px; visibility:hidden; word-wrap:break-word; } #u7 { position:absolute; left:461px; top:248px; width:85px; height:33px; font-size:28px; } #u7_img { position:absolute; left:0px; top:0px; width:85px; height:33px; } #u8 { position:absolute; left:0px; top:0px; width:85px; white-space:nowrap; } #u9 { position:absolute; left:558px; top:258px; width:23px; height:18px; } #u9_img { position:absolute; left:0px; top:0px; width:23px; height:18px; } #u10 { position:absolute; left:2px; top:1px; width:19px; visibility:hidden; word-wrap:break-word; } #u11 { position:absolute; left:584px; top:252px; width:97px; height:24px; font-size:20px; color:#666666; } #u11_img { position:absolute; left:0px; top:0px; width:97px; height:24px; } #u12 { position:absolute; left:0px; top:0px; width:97px; white-space:nowrap; } #u13 { position:absolute; left:683px; top:258px; width:16px; height:16px; } #u13_img { position:absolute; left:0px; top:0px; width:16px; height:16px; } #u14 { position:absolute; left:2px; top:0px; width:12px; visibility:hidden; word-wrap:break-word; } #u15 { position:absolute; left:703px; top:256px; width:23px; height:18px; } #u15_img { position:absolute; left:0px; top:0px; width:23px; height:18px; } #u16 { position:absolute; left:2px; top:1px; width:19px; visibility:hidden; word-wrap:break-word; } #u17 { position:absolute; left:726px; top:251px; width:41px; height:24px; font-size:20px; color:#666666; } #u17_img { position:absolute; left:0px; top:0px; width:41px; height:24px; } #u18 { position:absolute; left:0px; top:0px; width:41px; white-space:nowrap; } #u19 { position:absolute; left:772px; top:256px; width:16px; height:16px; } #u19_img { position:absolute; left:0px; top:0px; width:16px; height:16px; } #u20 { position:absolute; left:2px; top:0px; width:12px; visibility:hidden; word-wrap:break-word; } #u21 { position:absolute; left:201px; top:306px; width:229px; height:834px; } #u21_img { position:absolute; left:0px; top:0px; width:229px; height:834px; } #u22 { position:absolute; left:2px; top:409px; width:225px; visibility:hidden; word-wrap:break-word; } #u23 { position:absolute; left:243px; top:455px; width:158px; height:33px; font-family:'Arial Negreta', 'Arial'; font-weight:700; font-size:28px; color:#666666; } #u23_img { position:absolute; left:0px; top:0px; width:158px; height:33px; } #u24 { position:absolute; left:0px; top:0px; width:158px; white-space:nowrap; } #u25 { position:absolute; left:258px; top:340px; width:102px; height:100px; } #u25_img { position:absolute; left:0px; top:0px; width:102px; height:100px; } #u26 { position:absolute; left:2px; top:42px; width:98px; word-wrap:break-word; } #u27 { position:absolute; left:461px; top:440px; width:928px; height:458px; } #u27_img { position:absolute; left:0px; top:0px; width:928px; height:458px; } #u28 { position:absolute; left:2px; top:221px; width:924px; visibility:hidden; word-wrap:break-word; } #u29 { position:absolute; left:461px; top:507px; width:928px; height:10px; } #u29_start { position:absolute; left:0px; top:-5px; width:18px; height:20px; } #u29_end { position:absolute; left:911px; top:-5px; width:18px; height:20px; } #u29_line { position:absolute; left:0px; top:5px; width:928px; height:1px; } #u30 { position:absolute; left:498px; top:463px; width:73px; height:22px; font-size:18px; } #u30_img { position:absolute; left:0px; top:0px; width:73px; height:22px; } #u31 { position:absolute; left:0px; top:0px; width:73px; white-space:nowrap; } #u32 { position:absolute; left:491px; top:539px; width:879px; height:359px; overflow:hidden; } #u32_state0 { position:absolute; left:0px; top:0px; width:879px; height:359px; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u32_state0_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u33 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u33_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u34 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u35 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u35_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u36 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u37 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u37_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u38 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u39 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u39_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u40 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u41 { position:absolute; left:36px; top:308px; width:30px; height:32px; } #u41_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u42 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u43 { position:absolute; left:90px; top:308px; width:32px; height:32px; } #u43_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u44 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u45 { position:absolute; left:20px; top:30px; width:840px; height:240px; } #u45_img { position:absolute; left:0px; top:0px; width:840px; height:240px; } #u46 { position:absolute; left:2px; top:112px; width:836px; visibility:hidden; word-wrap:break-word; } #u32_state1 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u32_state1_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u47 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u47_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u48 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u49 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u49_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u50 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u51 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u51_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u52 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u53 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u53_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u54 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u55 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u55_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u56 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u57 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u57_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u58 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u59 { position:absolute; left:37px; top:90px; width:6px; height:10px; } #u59_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u60 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u61 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u61_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u62 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u63 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u63_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u64 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u65 { position:absolute; left:42px; top:163px; width:6px; height:10px; } #u65_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u66 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u67 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u67_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u68 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u69 { position:absolute; left:30px; top:300px; width:30px; height:32px; } #u69_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u70 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u71 { position:absolute; left:84px; top:300px; width:32px; height:32px; } #u71_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u72 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u73 { position:absolute; left:20px; top:40px; width:840px; height:230px; } #u73_img { position:absolute; left:0px; top:0px; width:840px; height:230px; } #u74 { position:absolute; left:2px; top:107px; width:836px; visibility:hidden; word-wrap:break-word; } #u32_state2 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u32_state2_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u75 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u75_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u76 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u77 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u77_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u78 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u79 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u79_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u80 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u81 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u81_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u82 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u83 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u83_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u84 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u85 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u85_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u86 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u87 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u87_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u88 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u89 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u89_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u90 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u91 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u91_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u92 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u93 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u93_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u94 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u95 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u95_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u96 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u97 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u97_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u98 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u99 { position:absolute; left:38px; top:300px; width:30px; height:32px; } #u99_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u100 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u101 { position:absolute; left:92px; top:300px; width:32px; height:32px; } #u101_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u102 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u103 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u103_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u104 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u105 { position:absolute; left:13px; top:40px; width:847px; height:240px; } #u105_img { position:absolute; left:0px; top:0px; width:847px; height:240px; } #u106 { position:absolute; left:2px; top:112px; width:843px; visibility:hidden; word-wrap:break-word; } #u32_state3 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u32_state3_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u107 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u107_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u108 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u109 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u109_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u110 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u111 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u111_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u112 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u113 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u113_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u114 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u115 { position:absolute; left:36px; top:318px; width:30px; height:32px; } #u115_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u116 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u117 { position:absolute; left:90px; top:318px; width:32px; height:32px; } #u117_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u118 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u119 { position:absolute; left:13px; top:30px; width:857px; height:250px; } #u119_img { position:absolute; left:0px; top:0px; width:857px; height:250px; } #u120 { position:absolute; left:2px; top:117px; width:853px; visibility:hidden; word-wrap:break-word; } #u32_state4 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u32_state4_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u121 { position:absolute; left:0px; top:0px; width:890px; height:200px; } #u121_img { position:absolute; left:0px; top:0px; width:890px; height:200px; } #u122 { position:absolute; left:2px; top:92px; width:886px; visibility:hidden; word-wrap:break-word; } #u123 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u123_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u124 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u125 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u125_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u126 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u127 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u127_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u128 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u129 { position:absolute; left:13px; top:30px; width:877px; height:170px; } #u129_img { position:absolute; left:0px; top:0px; width:877px; height:170px; } #u130 { position:absolute; left:2px; top:77px; width:873px; visibility:hidden; word-wrap:break-word; } #u131 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u131_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u132 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u133 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u133_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u134 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u135 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u135_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u136 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u137 { position:absolute; left:37px; top:90px; width:6px; height:10px; } #u137_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u138 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u139 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u139_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u140 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u141 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u141_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u142 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u143 { position:absolute; left:42px; top:163px; width:6px; height:10px; } #u143_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u144 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u145 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u145_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u146 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u147 { position:absolute; left:36px; top:210px; width:30px; height:32px; } #u147_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u148 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u149 { position:absolute; left:90px; top:210px; width:32px; height:32px; } #u149_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u150 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u151 { position:absolute; left:13px; top:30px; width:877px; height:143px; } #u151_img { position:absolute; left:0px; top:0px; width:877px; height:143px; } #u152 { position:absolute; left:2px; top:64px; width:873px; visibility:hidden; word-wrap:break-word; } #u153 { position:absolute; left:675px; top:33px; width:14px; height:11px; } #u153_img { position:absolute; left:0px; top:0px; width:14px; height:11px; } #u154 { position:absolute; left:2px; top:-2px; width:10px; visibility:hidden; word-wrap:break-word; } #u155 { position:absolute; left:676px; top:32px; width:32px; height:12px; font-size:9px; } #u155_img { position:absolute; left:0px; top:0px; width:32px; height:12px; } #u156 { position:absolute; left:0px; top:0px; width:32px; word-wrap:break-word; } #u32_state5 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u32_state5_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u157 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u157_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u158 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u159 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u159_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u160 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u161 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u161_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u162 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u163 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u163_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u164 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u165 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u165_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u166 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u167 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u167_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u168 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u169 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u169_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u170 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u171 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u171_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u172 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u173 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u173_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u174 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u175 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u175_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u176 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u177 { position:absolute; left:37px; top:90px; width:6px; height:10px; } #u177_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u178 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u179 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u179_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u180 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u181 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u181_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u182 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u183 { position:absolute; left:42px; top:164px; width:5px; height:7px; font-size:7px; } #u183_img { position:absolute; left:0px; top:0px; width:5px; height:7px; } #u184 { position:absolute; left:0px; top:0px; width:5px; white-space:nowrap; } #u185 { position:absolute; left:31px; top:308px; width:30px; height:32px; } #u185_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u186 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u187 { position:absolute; left:85px; top:308px; width:32px; height:32px; } #u187_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u188 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u189 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u189_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u190 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u191 { position:absolute; left:26px; top:40px; width:834px; height:240px; } #u191_img { position:absolute; left:0px; top:0px; width:834px; height:240px; } #u192 { position:absolute; left:2px; top:112px; width:830px; visibility:hidden; word-wrap:break-word; } #u193 { position:absolute; left:630px; top:40px; width:41px; height:22px; } #u193_img { position:absolute; left:0px; top:0px; width:41px; height:22px; } #u194 { position:absolute; left:2px; top:3px; width:37px; visibility:hidden; word-wrap:break-word; } #u195 { position:absolute; left:631px; top:43px; width:61px; height:13px; font-size:10px; } #u195_img { position:absolute; left:0px; top:0px; width:61px; height:13px; } #u196 { position:absolute; left:0px; top:0px; width:61px; white-space:nowrap; } #u197 { position:absolute; left:633px; top:69px; width:43px; height:22px; } #u197_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u198 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u199 { position:absolute; left:633px; top:95px; width:43px; height:22px; } #u199_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u200 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u201 { position:absolute; left:631px; top:122px; width:43px; height:22px; } #u201_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u202 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u203 { position:absolute; left:633px; top:149px; width:43px; height:22px; } #u203_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u204 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u205 { position:absolute; left:633px; top:174px; width:43px; height:22px; } #u205_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u206 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u207 { position:absolute; left:633px; top:199px; width:43px; height:22px; } #u207_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u208 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u209 { position:absolute; left:633px; top:228px; width:43px; height:22px; } #u209_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u210 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u211 { position:absolute; left:633px; top:253px; width:43px; height:22px; } #u211_img { position:absolute; left:0px; top:0px; width:43px; height:22px; } #u212 { position:absolute; left:2px; top:3px; width:39px; visibility:hidden; word-wrap:break-word; } #u213 { position:absolute; left:639px; top:69px; width:13px; height:13px; font-size:10px; } #u213_img { position:absolute; left:0px; top:0px; width:13px; height:13px; } #u214 { position:absolute; left:0px; top:0px; width:13px; white-space:nowrap; } #u215 { position:absolute; left:639px; top:95px; width:13px; height:13px; font-size:10px; } #u215_img { position:absolute; left:0px; top:0px; width:13px; height:13px; } #u216 { position:absolute; left:0px; top:0px; width:13px; white-space:nowrap; } #u217 { position:absolute; left:639px; top:122px; width:13px; height:13px; font-size:10px; } #u217_img { position:absolute; left:0px; top:0px; width:13px; height:13px; } #u218 { position:absolute; left:0px; top:0px; width:13px; white-space:nowrap; } #u219 { position:absolute; left:639px; top:149px; width:13px; height:13px; font-size:10px; } #u219_img { position:absolute; left:0px; top:0px; width:13px; height:13px; } #u220 { position:absolute; left:0px; top:0px; width:13px; white-space:nowrap; } #u221 { position:absolute; left:639px; top:174px; width:13px; height:13px; font-size:10px; } #u221_img { position:absolute; left:0px; top:0px; width:13px; height:13px; } #u222 { position:absolute; left:0px; top:0px; width:13px; white-space:nowrap; } #u223 { position:absolute; left:639px; top:203px; width:7px; height:13px; font-size:10px; } #u223_img { position:absolute; left:0px; top:0px; width:7px; height:13px; } #u224 { position:absolute; left:0px; top:0px; width:7px; white-space:nowrap; } #u225 { position:absolute; left:639px; top:231px; width:13px; height:13px; font-size:10px; } #u225_img { position:absolute; left:0px; top:0px; width:13px; height:13px; } #u226 { position:absolute; left:0px; top:0px; width:13px; white-space:nowrap; } #u227 { position:absolute; left:639px; top:258px; width:19px; height:13px; font-size:10px; } #u227_img { position:absolute; left:0px; top:0px; width:19px; height:13px; } #u228 { position:absolute; left:0px; top:0px; width:19px; white-space:nowrap; } #u229 { position:absolute; left:461px; top:942px; width:928px; height:458px; } #u229_img { position:absolute; left:0px; top:0px; width:928px; height:458px; } #u230 { position:absolute; left:2px; top:221px; width:924px; visibility:hidden; word-wrap:break-word; } #u231 { position:absolute; left:461px; top:1008px; width:928px; height:10px; } #u231_start { position:absolute; left:0px; top:-5px; width:18px; height:20px; } #u231_end { position:absolute; left:911px; top:-5px; width:18px; height:20px; } #u231_line { position:absolute; left:0px; top:5px; width:928px; height:1px; } #u232 { position:absolute; left:498px; top:964px; width:91px; height:22px; font-size:18px; } #u232_img { position:absolute; left:0px; top:0px; width:91px; height:22px; } #u233 { position:absolute; left:0px; top:0px; width:91px; white-space:nowrap; } #u234 { position:absolute; left:491px; top:1041px; width:879px; height:359px; overflow:hidden; } #u234_state0 { position:absolute; left:0px; top:0px; width:879px; height:359px; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u234_state0_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u235 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u235_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u236 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u237 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u237_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u238 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u239 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u239_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u240 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u241 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u241_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u242 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u243 { position:absolute; left:36px; top:300px; width:30px; height:32px; } #u243_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u244 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u245 { position:absolute; left:90px; top:300px; width:32px; height:32px; } #u245_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u246 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u247 { position:absolute; left:20px; top:35px; width:840px; height:235px; } #u247_img { position:absolute; left:0px; top:0px; width:840px; height:235px; } #u248 { position:absolute; left:2px; top:110px; width:836px; visibility:hidden; word-wrap:break-word; } #u234_state1 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u234_state1_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u249 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u249_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u250 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u251 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u251_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u252 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u253 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u253_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u254 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u255 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u255_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u256 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u257 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u257_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u258 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u259 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u259_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u260 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u261 { position:absolute; left:37px; top:90px; width:6px; height:10px; } #u261_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u262 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u263 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u263_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u264 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u265 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u265_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u266 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u267 { position:absolute; left:42px; top:163px; width:6px; height:10px; } #u267_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u268 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u269 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u269_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u270 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u271 { position:absolute; left:36px; top:298px; width:30px; height:32px; } #u271_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u272 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u273 { position:absolute; left:90px; top:298px; width:32px; height:32px; } #u273_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u274 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u275 { position:absolute; left:20px; top:40px; width:840px; height:230px; } #u275_img { position:absolute; left:0px; top:0px; width:840px; height:230px; } #u276 { position:absolute; left:2px; top:107px; width:836px; visibility:hidden; word-wrap:break-word; } #u234_state2 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u234_state2_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u277 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u277_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u278 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u279 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u279_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u280 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u281 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u281_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u282 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u283 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u283_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u284 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u285 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u285_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u286 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u287 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u287_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u288 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u289 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u289_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u290 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u291 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u291_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u292 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u293 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u293_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u294 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u295 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u295_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u296 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u297 { position:absolute; left:37px; top:90px; width:6px; height:10px; } #u297_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u298 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u299 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u299_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u300 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u301 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u301_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u302 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u303 { position:absolute; left:42px; top:163px; width:6px; height:10px; } #u303_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u304 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u305 { position:absolute; left:30px; top:300px; width:30px; height:32px; } #u305_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u306 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u307 { position:absolute; left:84px; top:300px; width:32px; height:32px; } #u307_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u308 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u309 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u309_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u310 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u311 { position:absolute; left:20px; top:40px; width:850px; height:240px; } #u311_img { position:absolute; left:0px; top:0px; width:850px; height:240px; } #u312 { position:absolute; left:2px; top:112px; width:846px; visibility:hidden; word-wrap:break-word; } #u234_state3 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u234_state3_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u313 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u313_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u314 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u315 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u315_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u316 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u317 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u317_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u318 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u319 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u319_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u320 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u321 { position:absolute; left:24px; top:318px; width:30px; height:32px; } #u321_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u322 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u323 { position:absolute; left:78px; top:318px; width:32px; height:32px; } #u323_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u324 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u325 { position:absolute; left:12px; top:39px; width:850px; height:240px; } #u325_img { position:absolute; left:0px; top:0px; width:850px; height:240px; } #u326 { position:absolute; left:2px; top:112px; width:846px; visibility:hidden; word-wrap:break-word; } #u234_state4 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u234_state4_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u327 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u327_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u328 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u329 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u329_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u330 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u331 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u331_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u332 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u333 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u333_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u334 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u335 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u335_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u336 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u337 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u337_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u338 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u339 { position:absolute; left:37px; top:90px; width:6px; height:10px; } #u339_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u340 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u341 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u341_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u342 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u343 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u343_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u344 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u345 { position:absolute; left:42px; top:163px; width:6px; height:10px; } #u345_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u346 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u347 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u347_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u348 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u349 { position:absolute; left:31px; top:300px; width:30px; height:32px; } #u349_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u350 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u351 { position:absolute; left:85px; top:300px; width:32px; height:32px; } #u351_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u352 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u353 { position:absolute; left:675px; top:33px; width:14px; height:11px; } #u353_img { position:absolute; left:0px; top:0px; width:14px; height:11px; } #u354 { position:absolute; left:2px; top:-2px; width:10px; visibility:hidden; word-wrap:break-word; } #u355 { position:absolute; left:676px; top:32px; width:32px; height:12px; font-size:9px; } #u355_img { position:absolute; left:0px; top:0px; width:32px; height:12px; } #u356 { position:absolute; left:0px; top:0px; width:32px; word-wrap:break-word; } #u357 { position:absolute; left:14px; top:44px; width:846px; height:236px; } #u357_img { position:absolute; left:0px; top:0px; width:846px; height:236px; } #u358 { position:absolute; left:2px; top:110px; width:842px; visibility:hidden; word-wrap:break-word; } #u234_state5 { position:absolute; left:0px; top:0px; width:879px; height:359px; visibility:hidden; -ms-overflow-x:hidden; overflow-x:hidden; -ms-overflow-y:hidden; overflow-y:hidden; background-image:none; } #u234_state5_content { position:absolute; left:0px; top:0px; width:1px; height:1px; } #u359 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u359_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u360 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u361 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u361_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u362 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u363 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u363_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u364 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u365 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u365_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u366 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u367 { position:absolute; left:13px; top:0px; width:109px; height:30px; } #u367_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u368 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u369 { position:absolute; left:122px; top:0px; width:109px; height:30px; } #u369_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u370 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u371 { position:absolute; left:231px; top:0px; width:109px; height:30px; } #u371_img { position:absolute; left:0px; top:0px; width:109px; height:30px; } #u372 { position:absolute; left:2px; top:7px; width:105px; word-wrap:break-word; } #u373 { position:absolute; left:20px; top:173px; width:30px; height:20px; } #u373_img { position:absolute; left:0px; top:0px; width:30px; height:20px; } #u374 { position:absolute; left:2px; top:2px; width:26px; visibility:hidden; word-wrap:break-word; } #u375 { position:absolute; left:30px; top:40px; width:6px; height:10px; } #u375_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u376 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u377 { position:absolute; left:31px; top:65px; width:6px; height:10px; } #u377_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u378 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u379 { position:absolute; left:37px; top:90px; width:6px; height:10px; } #u379_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u380 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u381 { position:absolute; left:36px; top:116px; width:6px; height:10px; } #u381_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u382 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u383 { position:absolute; left:38px; top:140px; width:6px; height:10px; } #u383_img { position:absolute; left:0px; top:0px; width:6px; height:10px; } #u384 { position:absolute; left:2px; top:-3px; width:2px; visibility:hidden; word-wrap:break-word; } #u385 { position:absolute; left:42px; top:164px; width:5px; height:7px; font-size:7px; } #u385_img { position:absolute; left:0px; top:0px; width:5px; height:7px; } #u386 { position:absolute; left:0px; top:0px; width:5px; white-space:nowrap; } #u387 { position:absolute; left:24px; top:310px; width:30px; height:32px; } #u387_img { position:absolute; left:0px; top:0px; width:30px; height:32px; } #u388 { position:absolute; left:2px; top:8px; width:26px; visibility:hidden; word-wrap:break-word; } #u389 { position:absolute; left:78px; top:310px; width:32px; height:32px; } #u389_img { position:absolute; left:0px; top:0px; width:32px; height:32px; } #u390 { position:absolute; left:2px; top:8px; width:28px; visibility:hidden; word-wrap:break-word; } #u391 { position:absolute; left:20px; top:180px; width:23px; height:20px; } #u391_img { position:absolute; left:0px; top:0px; width:23px; height:20px; } #u392 { position:absolute; left:2px; top:2px; width:19px; visibility:hidden; word-wrap:break-word; } #u393 { position:absolute; left:640px; top:57px; width:44px; height:13px; } #u393_img { position:absolute; left:0px; top:0px; width:44px; height:13px; } #u394 { position:absolute; left:2px; top:-2px; width:40px; visibility:hidden; word-wrap:break-word; } #u395 { position:absolute; left:640px; top:73px; width:44px; height:13px; } #u395_img { position:absolute; left:0px; top:0px; width:44px; height:13px; } #u396 { position:absolute; left:2px; top:-2px; width:40px; visibility:hidden; word-wrap:break-word; } #u397 { position:absolute; left:640px; top:105px; width:44px; height:13px; } #u397_img { position:absolute; left:0px; top:0px; width:44px; height:13px; } #u398 { position:absolute; left:2px; top:-2px; width:40px; visibility:hidden; word-wrap:break-word; } #u399 { position:absolute; left:640px; top:120px; width:44px; height:13px; } #u399_img { position:absolute; left:0px; top:0px; width:44px; height:13px; } #u400 { position:absolute; left:2px; top:-2px; width:40px; visibility:hidden; word-wrap:break-word; } #u401 { position:absolute; left:640px; top:135px; width:44px; height:13px; } #u401_img { position:absolute; left:0px; top:0px; width:44px; height:13px; } #u402 { position:absolute; left:2px; top:-2px; width:40px; visibility:hidden; word-wrap:break-word; } #u403 { position:absolute; left:640px; top:152px; width:44px; height:13px; } #u403_img { position:absolute; left:0px; top:0px; width:44px; height:13px; } #u404 { position:absolute; left:2px; top:-2px; width:40px; visibility:hidden; word-wrap:break-word; } #u405 { position:absolute; left:640px; top:167px; width:44px; height:13px; } #u405_img { position:absolute; left:0px; top:0px; width:44px; height:13px; } #u406 { position:absolute; left:2px; top:-2px; width:40px; visibility:hidden; word-wrap:break-word; } #u407 { position:absolute; left:14px; top:36px; width:856px; height:244px; } #u407_img { position:absolute; left:0px; top:0px; width:856px; height:244px; } #u408 { position:absolute; left:2px; top:114px; width:852px; visibility:hidden; word-wrap:break-word; } #u409 { position:absolute; left:1189px; top:251px; width:100px; height:30px; font-size:16px; } #u409_img { position:absolute; left:0px; top:0px; width:100px; height:30px; } #u410 { position:absolute; left:2px; top:6px; width:96px; word-wrap:break-word; } #u412 { position:absolute; left:202px; top:492px; width:228px; height:60px; font-size:18px; } #u412_img { position:absolute; left:0px; top:0px; width:228px; height:60px; } #u413 { position:absolute; left:2px; top:19px; width:224px; word-wrap:break-word; } #u414 { position:absolute; left:202px; top:552px; width:228px; height:60px; font-size:18px; } #u414_img { position:absolute; left:0px; top:0px; width:228px; height:60px; } #u415 { position:absolute; left:2px; top:19px; width:224px; word-wrap:break-word; } #u416 { position:absolute; left:202px; top:612px; width:228px; height:60px; font-size:18px; } #u416_img { position:absolute; left:0px; top:0px; width:228px; height:60px; } #u417 { position:absolute; left:2px; top:19px; width:224px; word-wrap:break-word; } #u418 { position:absolute; left:202px; top:672px; width:228px; height:60px; font-size:18px; } #u418_img { position:absolute; left:0px; top:0px; width:228px; height:60px; } #u419 { position:absolute; left:2px; top:19px; width:224px; word-wrap:break-word; } #u420 { position:absolute; left:202px; top:732px; width:228px; height:60px; font-size:18px; } #u420_img { position:absolute; left:0px; top:0px; width:228px; height:60px; } #u421 { position:absolute; left:2px; top:19px; width:224px; word-wrap:break-word; } #u422 { position:absolute; left:202px; top:792px; width:228px; height:60px; font-size:18px; } #u422_img { position:absolute; left:0px; top:0px; width:228px; height:60px; } #u423 { position:absolute; left:2px; top:19px; width:224px; word-wrap:break-word; } #u424 { position:absolute; left:200px; top:852px; width:228px; height:60px; font-size:18px; } #u424_img { position:absolute; left:0px; top:0px; width:228px; height:60px; } #u425 { position:absolute; left:2px; top:19px; width:224px; word-wrap:break-word; } #u426 { position:absolute; left:462px; top:326px; width:938px; height:80px; } #u426_img { position:absolute; left:0px; top:0px; width:938px; height:80px; } #u427 { position:absolute; left:2px; top:32px; width:934px; visibility:hidden; word-wrap:break-word; } #u428 { position:absolute; left:499px; top:351px; width:151px; height:33px; } #u428_img { position:absolute; left:0px; top:0px; width:151px; height:33px; } #u429 { position:absolute; left:2px; top:8px; width:147px; visibility:hidden; word-wrap:break-word; } #u430 { position:absolute; left:499px; top:384px; width:150px; height:50px; } #u430_img { position:absolute; left:0px; top:0px; width:150px; height:50px; } #u431 { position:absolute; left:2px; top:17px; width:146px; visibility:hidden; word-wrap:break-word; } #u432 { position:absolute; left:624px; top:351px; width:26px; height:31px; overflow:hidden; background-image:url('../../resources/images/transparent.gif'); } #u433 { position:absolute; left:1249px; top:351px; width:140px; height:31px; } #u433_input { position:absolute; left:0px; top:0px; width:140px; height:31px; background-image:; font-family:'Arial'; font-size:16px; color:#000000; font-weight:normal; font-style:normal; text-decoration:none; }
hvz/templates/game/choose_oz.html
zombiezen/turbohvz
<?xml version="1.0"?> <!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" xmlns:py="http://genshi.edgewall.org/" xmlns:xi="http://www.w3.org/2001/XInclude"> <py:def function="page_title">Choose Original Zombie</py:def> <py:def function="head_info"></py:def> <py:def function="page_parents"> <a href="${tg.url('/game/index')}">Games</a> <a href="${tg.hvz.game_link(game)}">Game <span py:replace="game.game_id">[#]</span></a> </py:def> <py:match path="content"> <py:choose> <py:when test="game.state == game.STATE_CHOOSE_ZOMBIE - 1"> <p>You must now select the original zombie for the game. After you have selected the original zombie, he or she will receive an email notification of his or her condition.</p> <span py:replace="tg.display(form, {'game_id': game.game_id, 'original_zombie': 'random'}, options={'original_zombie': options})"></span> <p><a href="${tg.hvz.game_link(game)}">Cancel</a></p> </py:when> <py:otherwise> <p>The game requested is not choosing an original zombie right now.</p> </py:otherwise> </py:choose> </py:match> <xi:include href="../master.html" /> </html>
doc/interpreter/octave.html/XREFunidinv.html
xmjiao/octave-debian
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <!-- Created by GNU Texinfo 6.3, http://www.gnu.org/software/texinfo/ --> <!-- This file redirects to the location of a node or anchor --> <head> <title>GNU Octave: XREFunidinv</title> <meta name="description" content="GNU Octave: XREFunidinv"> <meta name="keywords" content="GNU Octave: XREFunidinv"> <meta name="resource-type" content="document"> <meta name="distribution" content="global"> <meta name="Generator" content="makeinfo"> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <style type="text/css"> <!-- a.summary-letter {text-decoration: none} blockquote.indentedblock {margin-right: 0em} blockquote.smallindentedblock {margin-right: 0em; font-size: smaller} blockquote.smallquotation {font-size: smaller} div.display {margin-left: 3.2em} div.example {margin-left: 3.2em} div.lisp {margin-left: 3.2em} div.smalldisplay {margin-left: 3.2em} div.smallexample {margin-left: 3.2em} div.smalllisp {margin-left: 3.2em} kbd {font-style: oblique} pre.display {font-family: inherit} pre.format {font-family: inherit} pre.menu-comment {font-family: serif} pre.menu-preformatted {font-family: serif} pre.smalldisplay {font-family: inherit; font-size: smaller} pre.smallexample {font-size: smaller} pre.smallformat {font-family: inherit; font-size: smaller} pre.smalllisp {font-size: smaller} span.nolinebreak {white-space: nowrap} span.roman {font-family: initial; font-weight: normal} span.sansserif {font-family: sans-serif; font-weight: normal} ul.no-bullet {list-style: none} --> </style> <link rel="stylesheet" type="text/css" href="octave.css"> <meta http-equiv="Refresh" content="0; url=Distributions.html#XREFunidinv"> </head> <body lang="en"> <p>The node you are looking for is at <a href="Distributions.html#XREFunidinv">XREFunidinv</a>.</p> </body>
aquamacs/doc/Aquamacs Help/woman/Navigation.html
davidswelt/aquamacs-emacs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"> <head> <meta name="generator" content= "HTML Tidy for Mac OS X (vers 31 October 2006 - Apple Inc. build 16.1), see www.w3.org" /> <title>Navigation - WoMan: Browse Unix Manual Pages "W.O. (without) Man"</title> <meta http-equiv="Content-Type" content="text/html" /> <meta name="description" content= "WoMan: Browse Unix Manual Pages &quot;W.O. (without) Man&quot;" /> <meta name="generator" content="makeinfo 4.13" /> <link title="Top" rel="start" href="index.html#Top" /> <link rel="up" href="Browsing.html#Browsing" title="Browsing" /> <link rel="prev" href="Fonts.html#Fonts" title="Fonts" /> <link rel="next" href="References.html#References" title= "References" /> <link href="http://www.gnu.org/software/texinfo/" rel= "generator-home" title="Texinfo Homepage" /><!-- This file documents WoMan: A program to browse Unix manual pages `W.O. (without) man'. Copyright (C) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.3 or any later version published by the Free Software Foundation; with no Invariant Sections, with the Front-Cover texts being ``A GNU Manual,'' and with the Back-Cover Texts as in (a) below. A copy of the license is included in the section entitled ``GNU Free Documentation License.'' (a) The FSF's Back-Cover Text is: ``You have the freedom to copy and modify this GNU manual. Buying copies from the FSF supports it in developing GNU and promoting software freedom.'' --> <meta http-equiv="Content-Style-Type" content="text/css" /> <style type="text/css"> /*<![CDATA[*/ <!-- pre.display { font-family:inherit } pre.format { font-family:inherit } pre.smalldisplay { font-family:inherit; font-size:smaller } pre.smallformat { font-family:inherit; font-size:smaller } pre.smallexample { font-size:smaller } pre.smalllisp { font-size:smaller } span.sc { font-variant:small-caps } span.roman { font-family:serif; font-weight:normal; } span.sansserif { font-family:sans-serif; font-weight:normal; } --> /*]]>*/ </style> </head> <body> <div class="node"> <a name="Navigation" id="Navigation"></a> <p>Next:&nbsp;<a rel="next" accesskey="n" href= "References.html#References">References</a>, Previous:&nbsp;<a rel="previous" accesskey="p" href= "Fonts.html#Fonts">Fonts</a>, Up:&nbsp;<a rel="up" accesskey= "u" href="Browsing.html#Browsing">Browsing</a></p> <hr /> </div><!-- node-name, next, previous, up --> <h3 class="section">4.2 Navigation</h3> <p><a name="index-navigation-27" id="index-navigation-27"></a> Man (and hence WoMan) mode can be thought of as a superset of view mode. The buffer cannot be edited, so keys that would normally self-insert are used for navigation. The WoMan key bindings are a minor modification of the <code>man</code> key bindings.</p> <dl> <dt><kbd>&lt;SPC&gt;</kbd></dt> <dd><a name="index-SPC-28" id="index-SPC-28"></a><a name= "index-scroll_002dup-29" id="index-scroll_002dup-29"></a>Scroll the man page up the window (<code>scroll-up</code>).<br /></dd> <dt><kbd>&lt;DEL&gt;</kbd></dt> <dd><a name="index-DEL-30" id="index-DEL-30"></a><a name= "index-scroll_002ddown-31" id= "index-scroll_002ddown-31"></a>Scroll the man page down the window (<code>scroll-down</code>).<br /></dd> <dt><kbd>n</kbd></dt> <dd><a name="index-n-32" id="index-n-32"></a><a name= "index-Man_002dnext_002dsection-33" id= "index-Man_002dnext_002dsection-33"></a>Move point to the Nth next section&mdash;default 1 (<code>Man-next-section</code>).<br /></dd> <dt><kbd>p</kbd></dt> <dd><a name="index-p-34" id="index-p-34"></a><a name= "index-Man_002dprevious_002dsection-35" id= "index-Man_002dprevious_002dsection-35"></a>Move point to Nth previous section&mdash;default 1 (<code>Man-previous-section</code>).<br /></dd> <dt><kbd>g</kbd></dt> <dd><a name="index-g-36" id="index-g-36"></a><a name= "index-Man_002dgoto_002dsection-37" id= "index-Man_002dgoto_002dsection-37"></a>Move point to the specified section (<code>Man-goto-section</code>).<br /></dd> <dt><kbd>s</kbd></dt> <dd><a name="index-s-38" id="index-s-38"></a><a name= "index-Man_002dgoto_002dsee_002dalso_002dsection-39" id= "index-Man_002dgoto_002dsee_002dalso_002dsection-39"></a>Move point to the &ldquo;SEE ALSO&rdquo; section (<code>Man-goto-see-also-section</code>). Actually the section moved to is described by <code>Man-see-also-regexp</code>.</dd> </dl> </body> </html>
WebDesing/03.JavaScript-Part1/02.Conditional-statements/Conditional-statements-HW/02.ExaminesTwoIntegerVariables/ExaminesThreeIntegerVariables.html
emilVenkov12/TelerikCourses
<html> <head> <title></title> <link href="styles/js-console.css" rel="stylesheet" /> <script src="scripts/examineVariables.js"></script> </head> <body> <p>2. Write a script that shows the sign (+ or -) of the product of three real numbers without calculating it. Use a sequence of if statements.</p> <label for="inputFirstNum">Enter first number: </label> <input type="text" id="inputFirstNum" value = '2'> <label for="inputSecondNum">Enter second number: </label> <input type="text" id="inputSecondNum" value = '2'> <label for="inputThirdNum">Enter third number: </label> <input type="text" id="inputThirdNum" value = "-1"> <button onClick="examineVariables(document.getElementById('inputFirstNum').value, document.getElementById('inputSecondNum').value, document.getElementById('inputThirdNum').value)">Examine!</button> <div id="js-console"></div> <script src="scripts/js-console.js"></script> </body> </html>
layout/generic/test/test_bug394173.html
tmhorne/celtx
<!DOCTYPE HTML> <html> <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=394173 --> <head> <title>Test for Bug 394173</title> <script type="text/javascript" src="/MochiKit/MochiKit.js"></script> <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> <style>.fl:first-letter { } </style> </head> <body> <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=394173">Mozilla Bug 394173</a> <div id="content"> <iframe src="data:text/html;charset=utf-8,%3Chtml%3E%0A%3Chead%3E%0A%3Cstyle%3E%0Adiv%3A%3Afirst-letter%20%7B%20%7D%0Aspan%3A%3Aafter%20%7B%20content%3A%22before%20text%22%3B%20%7D%0A%3C/style%3E%0A%3C/head%3E%0A%3Cbody%3E%0A%3Cdiv%20style%3D%22position%3A%20fixed%3B%20direction%3A%20rtl%3B%22%3E%0A%20%20%3Cspan%20style%3D%22%20direction%3A%20ltr%3B%20unicode-bidi%3A%20bidi-override%3B%20font-size%3A%2070px%3B%20%22%3E%0A%20%20%20%20%3Cspan%20style%3D%22display%3A%20table%3B%20position%3A%20fixed%3B%22%3E%3C/span%3E%0A%20%20%3C/span%3E%0A%3C/div%3E%0A%3Cscript%3E%0Afunction%20doe%28i%29%7B%0Adocument.documentElement.setAttribute%28%27style%27%2C%20%27%27%29%3B%0A%7D%0AsetTimeout%28doe%2C100%29%3B%0A%3C/script%3E%0A%3C/body%3E%0A%3C/html%3E" style="width:200px;height: 200px;"></iframe> </div> <pre id="test"> <script class="testbody" type="text/javascript"> function boom() { /** Test for Bug 394173 **/ ok(true, "Should not crash"); SimpleTest.finish(); } setTimeout(boom, 500); SimpleTest.waitForExplicitFinish(); </script> </pre> </body> </html>
alloc/heap/constant.EMPTY.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `EMPTY` constant in crate `alloc`."> <meta name="keywords" content="rust, rustlang, rust-lang, EMPTY"> <title>alloc::heap::EMPTY - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <a href='../../alloc/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a> <p class='location'><a href='../index.html'>alloc</a>::<wbr><a href='index.html'>heap</a></p><script>window.sidebarCurrent = {name: 'EMPTY', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>alloc</a>::<wbr><a href='index.html'>heap</a>::<wbr><a class='constant' href=''>EMPTY</a></span><span class='out-of-band'><span class='since' title='Stable since Rust version '></span><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-58' class='srclink' href='../../src/alloc/up/src/liballoc/heap.rs.html#127' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const EMPTY: *mut ()<code> = </code><code>1 as *mut ()</code></pre><div class='stability'><em class='stab unstable'>Unstable (<code>heap_api</code> <a href="https://github.com/rust-lang/rust/issues/27700">#27700</a>)<p>: the precise API and guarantees it provides may be tweaked slightly, especially to possibly take into account the types being stored to make room for a future tracing garbage collector</p> </em></div><div class='docblock'><p>An arbitrary non-null address to represent zero-size allocations.</p> <p>This preserves the non-null invariant for types like <code>Box&lt;T&gt;</code>. The address may overlap with non-zero-size memory allocations.</p> </div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "alloc"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
script/script_thread/static.STACK_ROOTS.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `STACK_ROOTS` static in crate `script`."> <meta name="keywords" content="rust, rustlang, rust-lang, STACK_ROOTS"> <title>script::script_thread::STACK_ROOTS - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>script</a>::<wbr><a href='index.html'>script_thread</a></p><script>window.sidebarCurrent = {name: 'STACK_ROOTS', ty: 'static', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content static"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>script</a>::<wbr><a href='index.html'>script_thread</a>::<wbr><a class='static' href=''>STACK_ROOTS</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span></span></h1> <pre class='rust static'>pub static STACK_ROOTS: <a class='struct' href='../../std/thread/local/struct.LocalKey.html' title='std::thread::local::LocalKey'>LocalKey</a>&lt;<a class='struct' href='../../core/cell/struct.Cell.html' title='core::cell::Cell'>Cell</a>&lt;<a class='enum' href='../../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a class='struct' href='../../script/dom/bindings/js/struct.RootCollectionPtr.html' title='script::dom::bindings::js::RootCollectionPtr'>RootCollectionPtr</a>&gt;&gt;&gt;<code> = </code><code>{ ::std::thread::LocalKey::new(__getit, __init) }</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "script"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
gleam/ffi/constant.S.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `S` constant in crate `gleam`."> <meta name="keywords" content="rust, rustlang, rust-lang, S"> <title>gleam::ffi::S - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>gleam</a>::<wbr><a href='index.html'>ffi</a></p><script>window.sidebarCurrent = {name: 'S', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>gleam</a>::<wbr><a href='index.html'>ffi</a>::<wbr><a class='constant' href=''>S</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-3416' class='srclink' href='../../src/gleam///home/servo/buildbot/slave/doc/build/target/debug/build/gleam-9662459d59abad25/out/gl_bindings.rs.html#1313' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const S: <a class='type' href='../../gleam/gl/types/type.GLenum.html' title='gleam::gl::types::GLenum'>GLenum</a><code> = </code><code>0x2000</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "gleam"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
script/dom/bindings/codegen/Bindings/HTMLLinkElementBinding/constant.sAttributes.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `sAttributes` constant in crate `script`."> <meta name="keywords" content="rust, rustlang, rust-lang, sAttributes"> <title>script::dom::bindings::codegen::Bindings::HTMLLinkElementBinding::sAttributes - Rust</title> <link rel="stylesheet" type="text/css" href="../../../../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../../../../../index.html'>script</a>::<wbr><a href='../../../../index.html'>dom</a>::<wbr><a href='../../../index.html'>bindings</a>::<wbr><a href='../../index.html'>codegen</a>::<wbr><a href='../index.html'>Bindings</a>::<wbr><a href='index.html'>HTMLLinkElementBinding</a></p><script>window.sidebarCurrent = {name: 'sAttributes', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../../../../../index.html'>script</a>::<wbr><a href='../../../../index.html'>dom</a>::<wbr><a href='../../../index.html'>bindings</a>::<wbr><a href='../../index.html'>codegen</a>::<wbr><a href='../index.html'>Bindings</a>::<wbr><a href='index.html'>HTMLLinkElementBinding</a>::<wbr><a class='constant' href=''>sAttributes</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-289366' class='srclink' href='../../../../../../src/script///home/servo/buildbot/slave/doc/build/target/debug/build/script-49135cd7c70c0a0f/out/Bindings/HTMLLinkElementBinding.rs.html#583-644' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>const sAttributes: <a href='../../../../../../std/primitive.slice.html'>&amp;'static [</a><a class='struct' href='../../../../../../js/jsapi/struct.JSPropertySpec.html' title='js::jsapi::JSPropertySpec'>JSPropertySpec</a><a href='../../../../../../std/primitive.slice.html'>]</a><code> = </code><code>&[ JSPropertySpec { name: b"href\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &href_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &href_setterinfo } }, JSPropertySpec { name: b"rel\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &rel_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &rel_setterinfo } }, JSPropertySpec { name: b"relList\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &relList_getterinfo }, setter: JSNativeWrapper { op: None, info: 0 as *const JSJitInfo } }, JSPropertySpec { name: b"media\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &media_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &media_setterinfo } }, JSPropertySpec { name: b"hreflang\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &hreflang_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &hreflang_setterinfo } }, JSPropertySpec { name: b"type\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &type_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &type_setterinfo } }, JSPropertySpec { name: b"charset\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &charset_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &charset_setterinfo } }, JSPropertySpec { name: b"rev\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &rev_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &rev_setterinfo } }, JSPropertySpec { name: b"target\0" as *const u8 as *const libc::c_char, flags: ((JSPROP_SHARED | JSPROP_ENUMERATE) & 0xFF) as u8, getter: JSNativeWrapper { op: Some(generic_getter), info: &target_getterinfo }, setter: JSNativeWrapper { op: Some(generic_setter), info: &target_setterinfo } }, JSPropertySpec { name: 0 as *const libc::c_char, flags: 0, getter: JSNativeWrapper { op: None, info: 0 as *const JSJitInfo }, setter: JSNativeWrapper { op: None, info: 0 as *const JSJitInfo } } ]</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../../../../../"; window.currentCrate = "script"; window.playgroundUrl = ""; </script> <script src="../../../../../../jquery.js"></script> <script src="../../../../../../main.js"></script> <script async src="../../../../../../search-index.js"></script> </body> </html>
assets/static/default-theme/css/site.css
SingleSO/singleso
html, body { height: 100%; } .wrap { min-height: 100%; height: auto; margin: 0 auto -60px; padding: 0 0 60px; } .wrap > .container { padding: 70px 15px 20px; } .footer { height: 60px; background-color: #F5F5F5; border-top: 1px solid #DDDDDD; padding-top: 20px; } .jumbotron { text-align: center; background-color: transparent; } .jumbotron .btn { font-size: 21px; padding: 14px 24px; } .not-set { color: #CC5555; font-style: italic; } /* add sorting icons to gridview sort links */ a.asc:after, a.desc:after { position: relative; top: 1px; display: inline-block; font-family: 'Glyphicons Halflings'; font-style: normal; font-weight: normal; line-height: 1; padding-left: 5px; } a.asc:after { content: /*"\e113"*/ "\e151"; } a.desc:after { content: /*"\e114"*/ "\e152"; } .sort-numerical a.asc:after { content: "\e153"; } .sort-numerical a.desc:after { content: "\e154"; } .sort-ordinal a.asc:after { content: "\e155"; } .sort-ordinal a.desc:after { content: "\e156"; } .grid-view th { white-space: nowrap; } .hint-block { display: block; margin-top: 5px; color: #999999; } .error-summary { color: #A94442; background: #FDF7F7; border-left: 3px solid #EED3D7; padding: 10px 20px; margin: 0 0 15px 0; } .logout-panel .logout-list { font-size: 1.25em; } .logout-panel .logout-list, .logout-panel .logout-list li { margin: 0; padding: 0; list-style: none; } .logout-panel .logout-list .logout-list-status { font-size: 1.5em; width: 1em; height: 1em; line-height: 1; vertical-align: bottom; display: inline-block; position: relative; overflow: hidden; } .logout-panel .logout-list .logout-list-status:before { display: inline-block; height: 100%; } .logout-panel .logout-list [data-status="pending"] .logout-list-status:before { content: '?'; } .logout-panel .logout-list [data-status="success"] .logout-list-status:before { content: '\2713 '; color: #009900; } .logout-panel .logout-list [data-status="failure"] .logout-list-status:before { content: '\2718 '; color: #DD0000; } .logout-panel .logout-list [data-status="loading"] .logout-list-status:before { content: '...'; position: absolute; word-wrap: break-word; overflow-wrap: break-word; -webkit-animation: logout-list-status-icon 1s linear infinite; -moz-animation: logout-list-status-icon 1s linear infinite; -o-animation: logout-list-status-icon 1s linear infinite; animation: logout-list-status-icon 1s linear infinite; } @-webkit-keyframes logout-list-status-icon { 0% { width: 0; } 75% { width: 100%; } } @-moz-keyframes logout-list-status-icon { 0% { width: 0; } 75% { width: 100%; } } @-o-keyframes logout-list-status-icon { 0% { width: 0; } 75% { width: 100%; } } @keyframes logout-list-status-icon { 0% { width: 0; } 75% { width: 100%; } }
core/intrinsics/fn.powif32.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `powif32` fn in crate `core`."> <meta name="keywords" content="rust, rustlang, rust-lang, powif32"> <title>core::intrinsics::powif32 - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <a href='../../core/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a> <p class='location'><a href='../index.html'>core</a>::<wbr><a href='index.html'>intrinsics</a></p><script>window.sidebarCurrent = {name: 'powif32', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>core</a>::<wbr><a href='index.html'>intrinsics</a>::<wbr><a class='fn' href=''>powif32</a></span><span class='out-of-band'><span class='since' title='Stable since Rust version '></span><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-6104' class='srclink' href='../../src/core/up/src/libcore/intrinsics.rs.html#438' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub unsafe extern &quot;rust-intrinsic&quot; fn powif32(a: f32, x: i32) -&gt; f32</pre><div class='stability'><em class='stab unstable'>Unstable (<code>core_intrinsics</code>)<p>: intrinsics are unlikely to ever be stabilized, instead they should be used through stabilized interfaces in the rest of the standard library</p> </em></div><div class='docblock'><p>Raises an <code>f32</code> to an integer power.</p> </div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "core"; window.playgroundUrl = "https://play.rust-lang.org/"; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script src="../../playpen.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
src/adtechmedia-website/frontend/demo-pages/bloomberg/assets.bwbx.io/business/public/stylesheets/noscript-78e39895f8.css
AdTechMedia/adtechmedia-website
@media screen and (min-width: 63.75em) and (max-width: 79.9375em) { .brief { max-height: 114.375rem } } @media screen and (min-width: 63.75em) { .brief { overflow: hidden } .brief:after { content: none } } @media screen and (min-width: 80em) and (max-width: 9999em) { .brief { max-height: 128.125rem } }
tests/wpt/web-platform-tests/referrer-policy/gen/worker-classic.http-rp/unset/fetch/same-http.keep-origin.http.html
UK992/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/` --> <html> <head> <title>Referrer-Policy: Referrer Policy is not explicitly defined</title> <meta charset='utf-8'> <meta name="description" content="Check that referrer URL follows no-referrer-when-downgrade policy when no explicit Referrer Policy is set."> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policies"> <meta name="assert" content="Referrer Policy: Expects stripped-referrer for fetch to same-http origin and keep-origin redirection from http context."> <meta name="referrer" content="no-referrer"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/security-features/resources/common.sub.js"></script> <script src="../../../../generic/test-case.sub.js"></script> </head> <body> <script> TestCase( { "expectation": "stripped-referrer", "origin": "same-http", "redirection": "keep-origin", "source_context_list": [ { "policyDeliveries": [], "sourceContextType": "worker-classic" } ], "source_scheme": "http", "subresource": "fetch", "subresource_policy_deliveries": [] }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
freetype/freetype/constant.FT_LOAD_RENDER.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `FT_LOAD_RENDER` constant in crate `freetype`."> <meta name="keywords" content="rust, rustlang, rust-lang, FT_LOAD_RENDER"> <title>freetype::freetype::FT_LOAD_RENDER - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>freetype</a>::<wbr><a href='index.html'>freetype</a></p><script>window.sidebarCurrent = {name: 'FT_LOAD_RENDER', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>freetype</a>::<wbr><a href='index.html'>freetype</a>::<wbr><a class='constant' href=''>FT_LOAD_RENDER</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-258' class='srclink' href='../../src/freetype/freetype.rs.html#344' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const FT_LOAD_RENDER: <a class='primitive' href='../../std/primitive.i32.html'>i32</a><code> = </code><code>1 &lt;&lt; 2</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "freetype"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
std/intrinsics/fn.atomic_min_acq.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `atomic_min_acq` fn in crate `std`."> <meta name="keywords" content="rust, rustlang, rust-lang, atomic_min_acq"> <title>std::intrinsics::atomic_min_acq - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <a href='../../std/index.html'><img src='https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='logo' width='100'></a> <p class='location'><a href='../index.html'>std</a>::<wbr><a href='index.html'>intrinsics</a></p><script>window.sidebarCurrent = {name: 'atomic_min_acq', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'>Function <a href='../index.html'>std</a>::<wbr><a href='index.html'>intrinsics</a>::<wbr><a class='fn' href=''>atomic_min_acq</a></span><span class='out-of-band'><span class='since' title='Stable since Rust version '></span><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-5948' class='srclink' href='../../core/intrinsics/fn.atomic_min_acq.html?gotosrc=5948' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub unsafe extern &quot;rust-intrinsic&quot; fn atomic_min_acq&lt;T&gt;(dst: <a class='primitive' href='../primitive.pointer.html'>*mut T</a>, src: T) -&gt; T</pre><div class='stability'><em class='stab unstable'>Unstable (<code>core_intrinsics</code>)<p>: intrinsics are unlikely to ever be stabilized, instead they should be used through stabilized interfaces in the rest of the standard library</p> </em></div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "std"; window.playgroundUrl = "https://play.rust-lang.org/"; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script src="../../playpen.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
js/jsapi/fn.JS_GetRuntime.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `JS_GetRuntime` fn in crate `js`."> <meta name="keywords" content="rust, rustlang, rust-lang, JS_GetRuntime"> <title>js::jsapi::JS_GetRuntime - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>js</a>::<wbr><a href='index.html'>jsapi</a></p><script>window.sidebarCurrent = {name: 'JS_GetRuntime', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>js</a>::<wbr><a href='index.html'>jsapi</a>::<wbr><a class='fn' href=''>JS_GetRuntime</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-8646' class='srclink' href='../../src/js/jsapi_linux_64.rs.html#6497' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub unsafe extern fn JS_GetRuntime(cx: <a class='primitive' href='../../std/primitive.pointer.html'>*mut </a><a class='enum' href='../../js/jsapi/enum.JSContext.html' title='js::jsapi::JSContext'>JSContext</a>) -&gt; <a class='primitive' href='../../std/primitive.pointer.html'>*mut </a><a class='enum' href='../../js/jsapi/enum.JSRuntime.html' title='js::jsapi::JSRuntime'>JSRuntime</a></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "js"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
servo/gl/constant.COMPRESSED_INTENSITY.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `COMPRESSED_INTENSITY` constant in crate `servo`."> <meta name="keywords" content="rust, rustlang, rust-lang, COMPRESSED_INTENSITY"> <title>servo::gl::COMPRESSED_INTENSITY - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>servo</a>::<wbr><a href='index.html'>gl</a></p><script>window.sidebarCurrent = {name: 'COMPRESSED_INTENSITY', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>servo</a>::<wbr><a href='index.html'>gl</a>::<wbr><a class='constant' href=''>COMPRESSED_INTENSITY</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-4364' class='srclink' href='../../export/gleam/ffi/constant.COMPRESSED_INTENSITY.html?gotosrc=4364' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const COMPRESSED_INTENSITY: <a href='../../std/primitive.u32.html'>u32</a><code> = </code><code>34028</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "servo"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
script/dom/bindings/codegen/Bindings/HTMLScriptElementBinding/static.InterfaceObjectClass.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `InterfaceObjectClass` static in crate `script`."> <meta name="keywords" content="rust, rustlang, rust-lang, InterfaceObjectClass"> <title>script::dom::bindings::codegen::Bindings::HTMLScriptElementBinding::InterfaceObjectClass - Rust</title> <link rel="stylesheet" type="text/css" href="../../../../../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../../../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../../../../../index.html'>script</a>::<wbr><a href='../../../../index.html'>dom</a>::<wbr><a href='../../../index.html'>bindings</a>::<wbr><a href='../../index.html'>codegen</a>::<wbr><a href='../index.html'>Bindings</a>::<wbr><a href='index.html'>HTMLScriptElementBinding</a></p><script>window.sidebarCurrent = {name: 'InterfaceObjectClass', ty: 'static', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content static"> <h1 class='fqn'><span class='in-band'><a href='../../../../../index.html'>script</a>::<wbr><a href='../../../../index.html'>dom</a>::<wbr><a href='../../../index.html'>bindings</a>::<wbr><a href='../../index.html'>codegen</a>::<wbr><a href='../index.html'>Bindings</a>::<wbr><a href='index.html'>HTMLScriptElementBinding</a>::<wbr><a class='static' href=''>InterfaceObjectClass</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-54557' class='srclink' href='../../../../../../src/script/home/servo/buildbot/slave/doc/build/target/debug/build/script-4d3bb93218cab884/out/Bindings/HTMLScriptElementBinding.rs.html#687-692' title='goto source code'>[src]</a></span></h1> <pre class='rust static'>static InterfaceObjectClass: <a class='struct' href='../../../../../../script/dom/bindings/interface/struct.NonCallbackInterfaceObjectClass.html' title='script::dom::bindings::interface::NonCallbackInterfaceObjectClass'>NonCallbackInterfaceObjectClass</a><code> = </code><code>NonCallbackInterfaceObjectClass::new(InterfaceConstructorBehavior::throw(), b&quot;function HTMLScriptElement() {\n [native code]\n}&quot;, PrototypeList::ID::HTMLScriptElement, 4)</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../../../../../"; window.currentCrate = "script"; window.playgroundUrl = ""; </script> <script src="../../../../../../jquery.js"></script> <script src="../../../../../../main.js"></script> <script defer src="../../../../../../search-index.js"></script> </body> </html>
tests/wpt/web-platform-tests/secure-payment-confirmation/secure-payment-confirmation.tenative.https.html
KiChjang/servo
<!DOCTYPE html> <meta charset="utf-8"> <meta name="timeout" content="long"> <title>Test for 'secure-payment-confirmation' payment method</title> <link rel="help" href="https://github.com/rsolomakhin/secure-payment-confirmation"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script> 'use strict'; const details = {total: {label: 'Total', amount: {value: '0.01', currency: 'USD'}}}; test(() => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { // All valid parameters. action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }, 'Valid payment method data does not throw exceptions.'); test(() => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { // Omitted action field. credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }, 'The action field is optional.'); test(() => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), // Omitted timeout field. fallbackUrl: 'https://fallback.example/url' }, }], details); }, 'The timeout field is optional.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }, {supportedMethods: 'basic-card'}], details); }); }, 'Extra payment method not allowed afterward.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{supportedMethods: 'basic-card'}, { supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Extra payment method not allowed beforehand.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details, {requestShipping: true}); }); }, 'Cannot request shipping information.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details, {requestPayerName: true}); }); }, 'Cannot request payer name.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details, {requestPayerEmail: true}); }); }, 'Cannot request payer email.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details, {requestPayerPhone: true}); }); }, 'Cannot request payer phone.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { // Invalid action parameter. action: 'authorize', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Invalid action parameter throws an exception.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', // Omitted credentialIds field. networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'The credentialIds field is required.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], // Omitted networkData field. timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'The networkData field is required.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, // Omitted fallbackUrl field. }, }], details); }); }, 'The fallbackUrl field is required.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', relyingPartyId: 'relying-party.example', // Empty credentialIds field. credentialIds: [], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Empty credentialIds field throws exception.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], // Null networkData field. networkData: null, timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Null networkData field throws exception.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], // Empty networkData field. networkData: [], timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Empty networkData field throws exception.'); test(() => { assert_throws_js(RangeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), // Timeout longer than 1 hour. timeout: 1000 * 60 * 60 + 1, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Timeout longer than 1 hour throws exception.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', // Large credentialIds value. credentialIds: [Uint8Array.from( 'x'.repeat(1024 * 1024), c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Large credentialIds value throws exception.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], // Large networkData value. networkData: Uint8Array.from('x'.repeat(1024 * 1024), c => c.charCodeAt(0)), timeout: 60000, fallbackUrl: 'https://fallback.example/url' }, }], details); }); }, 'Large networkData value throws exception.'); test(() => { assert_throws_js(TypeError, () => { new PaymentRequest([{ supportedMethods: 'secure-payment-confirmation', data: { action: 'authenticate', credentialIds: [Uint8Array.from('x', c => c.charCodeAt(0))], networkData: Uint8Array.from('x', c => c.charCodeAt(0)), timeout: 60000, // Large fallbackUrl value. fallbackUrl: 'https://fallback.example/ur' + 'l'.repeat(1024 * 1024) }, }], details); }); }, 'Large fallbackUrl value throws exception.'); </script>
dom/tests/mochitest/bugs/test_bug407839.html
tmhorne/celtx
<!DOCTYPE HTML> <html> <!-- https://bugzilla.mozilla.org/show_bug.cgi?id=407839 --> <head> <title>Test for Bug 407839</title> <meta http-equiv="Content-type" content="text/html;charset=UTF-8" /> <script type="text/javascript" src="/MochiKit/MochiKit.js"></script> <script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script> <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" /> </head> <body> <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=407839">Mozilla Bug 407839</a> <p id="display"></p> <div id="content" style="display: none"> </div> <iframe name="child" src="http://TEST1.example.org/tests/dom/tests/mochitest/bugs/iframe_bug407839-1.html"></iframe> <iframe name="idn" src="http://sub1.ält.example.org:8000/tests/dom/tests/mochitest/bugs/iframe_bug407839-2.html"></iframe> <pre id="test"> <script class="testbody" type="text/javascript"> /** Test for Bug 407839 **/ SimpleTest.waitForExplicitFinish(); var gNumMessages = 0; function receiveMessage(evt) { is(evt.data, "child-response", "got wrong response"); if (++gNumMessages == 2) { SimpleTest.finish(); } } window.addEventListener("message", receiveMessage, false); </script> </pre> </body> </html>
x11/xt/fn.XtIsWidget.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `XtIsWidget` fn in crate `x11`."> <meta name="keywords" content="rust, rustlang, rust-lang, XtIsWidget"> <title>x11::xt::XtIsWidget - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>xt</a></p><script>window.sidebarCurrent = {name: 'XtIsWidget', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>xt</a>::<wbr><a class='fn' href=''>XtIsWidget</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-60759' class='srclink' href='../../src/x11/link.rs.html#14' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub unsafe extern fn XtIsWidget(_1: <a class='type' href='../../x11/xt/type.Widget.html' title='x11::xt::Widget'>Widget</a>) -&gt; <a class='type' href='../../libc/types/os/arch/c95/type.c_char.html' title='libc::types::os::arch::c95::c_char'>c_char</a></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "x11"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
x11/xlib/fn.XkbAllocGeomProps.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `XkbAllocGeomProps` fn in crate `x11`."> <meta name="keywords" content="rust, rustlang, rust-lang, XkbAllocGeomProps"> <title>x11::xlib::XkbAllocGeomProps - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>xlib</a></p><script>window.sidebarCurrent = {name: 'XkbAllocGeomProps', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>xlib</a>::<wbr><a class='fn' href=''>XkbAllocGeomProps</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-17992' class='srclink' href='../../src/x11/link.rs.html#14' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub unsafe extern fn XkbAllocGeomProps(_2: <a class='type' href='../../x11/xlib/type.XkbGeometryPtr.html' title='x11::xlib::XkbGeometryPtr'>XkbGeometryPtr</a>, _1: <a class='type' href='../../libc/types/os/arch/c95/type.c_int.html' title='libc::types::os::arch::c95::c_int'>c_int</a>) -&gt; <a class='type' href='../../libc/types/os/arch/c95/type.c_int.html' title='libc::types::os::arch::c95::c_int'>c_int</a></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "x11"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
wayland_client/wayland/data_device/struct.WlDataDevice.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `WlDataDevice` struct in crate `wayland_client`."> <meta name="keywords" content="rust, rustlang, rust-lang, WlDataDevice"> <title>wayland_client::wayland::data_device::WlDataDevice - Rust</title> <link rel="stylesheet" type="text/css" href="../../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../../index.html'>wayland_client</a>::<wbr><a href='../index.html'>wayland</a>::<wbr><a href='index.html'>data_device</a></p><script>window.sidebarCurrent = {name: 'WlDataDevice', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content struct"> <h1 class='fqn'><span class='in-band'>Struct <a href='../../index.html'>wayland_client</a>::<wbr><a href='../index.html'>wayland</a>::<wbr><a href='index.html'>data_device</a>::<wbr><a class='struct' href=''>WlDataDevice</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-1074' class='srclink' href='../../../src/wayland_client/home/servo/buildbot/slave/doc/build/target/debug/build/wayland-client-a4c38b9fe523cc64/out/wayland_client_api.rs.html#1220-1223' title='goto source code'>[src]</a></span></h1> <pre class='rust struct'>pub struct WlDataDevice { ptr: <a class='primitive' href='../../../std/primitive.pointer.html'>*mut </a><a class='enum' href='../../../wayland_sys/client/enum.wl_proxy.html' title='wayland_sys::client::wl_proxy'>wl_proxy</a>, evq: <a class='struct' href='../../../alloc/arc/struct.Arc.html' title='alloc::arc::Arc'>Arc</a>&lt;<a class='primitive' href='../../../std/primitive.tuple.html'>(</a><a class='type' href='../../../wayland_client/events/type.EventFifo.html' title='wayland_client::events::EventFifo'>EventFifo</a>, <a class='struct' href='../../../core/sync/atomic/struct.AtomicBool.html' title='core::sync::atomic::AtomicBool'>AtomicBool</a><a class='primitive' href='../../../std/primitive.tuple.html'>)</a>&gt;, }</pre><div class='docblock'><p>data transfer device</p> <p>There is one wl_data_device per seat which can be obtained from the global wl_data_device_manager singleton.</p> <p>A wl_data_device provides access to inter-client data transfer mechanisms such as copy-and-paste and drag-and-drop.</p> </div><h2 class='fields'>Fields</h2><span id='structfield.ptr' class='structfield'><code>ptr: <a class='primitive' href='../../../std/primitive.pointer.html'>*mut </a><a class='enum' href='../../../wayland_sys/client/enum.wl_proxy.html' title='wayland_sys::client::wl_proxy'>wl_proxy</a></code> </span><span class='stab '></span><span id='structfield.evq' class='structfield'><code>evq: <a class='struct' href='../../../alloc/arc/struct.Arc.html' title='alloc::arc::Arc'>Arc</a>&lt;<a class='primitive' href='../../../std/primitive.tuple.html'>(</a><a class='type' href='../../../wayland_client/events/type.EventFifo.html' title='wayland_client::events::EventFifo'>EventFifo</a>, <a class='struct' href='../../../core/sync/atomic/struct.AtomicBool.html' title='core::sync::atomic::AtomicBool'>AtomicBool</a><a class='primitive' href='../../../std/primitive.tuple.html'>)</a>&gt;</code> </span><span class='stab '></span><h2 id='methods'>Methods</h2><h3 class='impl'><span class='in-band'><code>impl <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1171' class='srclink' href='../../../src/wayland_client/home/servo/buildbot/slave/doc/build/target/debug/build/wayland-client-a4c38b9fe523cc64/out/wayland_client_api.rs.html#1369-1426' title='goto source code'>[src]</a></span></h3> <div class='impl-items'><h4 id='method.start_drag' class='method'><code>fn <a href='#method.start_drag' class='fnname'>start_drag</a>(&amp;self, source: <a class='enum' href='../../../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;&amp;<a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataSource.html' title='wayland_client::sys::wayland::client::WlDataSource'>WlDataSource</a>&gt;, origin: &amp;<a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlSurface.html' title='wayland_client::sys::wayland::client::WlSurface'>WlSurface</a>, icon: <a class='enum' href='../../../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;&amp;<a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlSurface.html' title='wayland_client::sys::wayland::client::WlSurface'>WlSurface</a>&gt;, serial: <a class='primitive' href='../../../std/primitive.u32.html'>u32</a>)</code></h4> <div class='docblock'><p>start drag-and-drop operation</p> <p>This request asks the compositor to start a drag-and-drop operation on behalf of the client.</p> <p>The source argument is the data source that provides the data for the eventual data transfer. If source is NULL, enter, leave and motion events are sent only to the client that initiated the drag and the client is expected to handle the data passing internally.</p> <p>The origin surface is the surface where the drag originates and the client must have an active implicit grab that matches the serial.</p> <p>The icon surface is an optional (can be NULL) surface that provides an icon to be moved around with the cursor. Initially, the top-left corner of the icon surface is placed at the cursor hotspot, but subsequent wl_surface.attach request can move the relative position. Attach requests must be confirmed with wl_surface.commit as usual. The icon surface is given the role of a drag-and-drop icon. If the icon surface already has another role, it raises a protocol error.</p> <p>The current and pending input regions of the icon wl_surface are cleared, and wl_surface.set_input_region is ignored until the wl_surface is no longer used as the icon surface. When the use as an icon ends, the current and pending input regions become undefined, and the wl_surface is unmapped.</p> </div><h4 id='method.set_selection' class='method'><code>fn <a href='#method.set_selection' class='fnname'>set_selection</a>(&amp;self, source: <a class='enum' href='../../../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;&amp;<a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataSource.html' title='wayland_client::sys::wayland::client::WlDataSource'>WlDataSource</a>&gt;, serial: <a class='primitive' href='../../../std/primitive.u32.html'>u32</a>)</code></h4> <div class='docblock'><p>copy data to the selection</p> <p>This request asks the compositor to set the selection to the data from the source on behalf of the client.</p> <p>To unset the selection, set the source to NULL.</p> </div><h4 id='method.release' class='method'><code>fn <a href='#method.release' class='fnname'>release</a>(self)</code></h4> <div class='docblock'><p>destroy data device</p> <p>This request destroys the data device.</p> <p>Requires interface version <code>&gt;= 2</code>.</p> </div></div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><span class='in-band'><code>impl <a class='trait' href='../../../core/marker/trait.Sync.html' title='core::marker::Sync'>Sync</a> for <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1077' class='srclink' href='../../../src/wayland_client/home/servo/buildbot/slave/doc/build/target/debug/build/wayland-client-a4c38b9fe523cc64/out/wayland_client_api.rs.html#1225' title='goto source code'>[src]</a></span></h3> <div class='impl-items'></div><h3 class='impl'><span class='in-band'><code>impl <a class='trait' href='../../../core/marker/trait.Send.html' title='core::marker::Send'>Send</a> for <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1078' class='srclink' href='../../../src/wayland_client/home/servo/buildbot/slave/doc/build/target/debug/build/wayland-client-a4c38b9fe523cc64/out/wayland_client_api.rs.html#1226' title='goto source code'>[src]</a></span></h3> <div class='impl-items'></div><h3 class='impl'><span class='in-band'><code>impl <a class='trait' href='../../../wayland_client/trait.Proxy.html' title='wayland_client::Proxy'>Proxy</a> for <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1079' class='srclink' href='../../../src/wayland_client/home/servo/buildbot/slave/doc/build/target/debug/build/wayland-client-a4c38b9fe523cc64/out/wayland_client_api.rs.html#1227-1245' title='goto source code'>[src]</a></span></h3> <div class='impl-items'><h4 id='method.ptr' class='method'><code>fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.ptr' class='fnname'>ptr</a>(&amp;self) -&gt; <a class='primitive' href='../../../std/primitive.pointer.html'>*mut </a><a class='enum' href='../../../wayland_sys/client/enum.wl_proxy.html' title='wayland_sys::client::wl_proxy'>wl_proxy</a></code></h4> <h4 id='method.interface' class='method'><code>fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.interface' class='fnname'>interface</a>() -&gt; <a class='primitive' href='../../../std/primitive.pointer.html'>*mut </a><a class='struct' href='../../../wayland_sys/common/struct.wl_interface.html' title='wayland_sys::common::wl_interface'>wl_interface</a></code></h4> <h4 id='method.interface_name' class='method'><code>fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.interface_name' class='fnname'>interface_name</a>() -&gt; &amp;'static <a class='primitive' href='../../../std/primitive.str.html'>str</a></code></h4> <div class='docblock'><p>The internal name of this interface, as advertized by the registry if it is a global.</p> </div><h4 id='method.version' class='method'><code>fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.version' class='fnname'>version</a>() -&gt; <a class='primitive' href='../../../std/primitive.u32.html'>u32</a></code></h4> <div class='docblock'><p>The maximum version of this interface handled by the library.</p> </div><h4 id='method.id' class='method'><code>fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.id' class='fnname'>id</a>(&amp;self) -&gt; <a class='struct' href='../../../wayland_client/struct.ProxyId.html' title='wayland_client::ProxyId'>ProxyId</a></code></h4> <div class='docblock'><p>Get the id of this proxy</p> </div><h4 id='method.from_ptr' class='method'><code>unsafe fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.from_ptr' class='fnname'>from_ptr</a>(ptr: <a class='primitive' href='../../../std/primitive.pointer.html'>*mut </a><a class='enum' href='../../../wayland_sys/client/enum.wl_proxy.html' title='wayland_sys::client::wl_proxy'>wl_proxy</a>) -&gt; <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></h4> <div class='docblock'><p>Creates a proxy from a fresh ptr</p> </div><h4 id='method.from_ptr_no_own' class='method'><code>unsafe fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.from_ptr_no_own' class='fnname'>from_ptr_no_own</a>(ptr: <a class='primitive' href='../../../std/primitive.pointer.html'>*mut </a><a class='enum' href='../../../wayland_sys/client/enum.wl_proxy.html' title='wayland_sys::client::wl_proxy'>wl_proxy</a>) -&gt; <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></h4> <div class='docblock'><p>Creates a proxy from a ptr that is managed elsewhere <a href="../../../wayland_client/trait.Proxy.html#tymethod.from_ptr_no_own">Read more</a></p> </div><h4 id='method.set_evt_iterator' class='method'><code>fn <a href='../../../wayland_client/trait.Proxy.html#tymethod.set_evt_iterator' class='fnname'>set_evt_iterator</a>(&amp;mut self, evt: &amp;<a class='struct' href='../../../wayland_client/struct.EventIterator.html' title='wayland_client::EventIterator'>EventIterator</a>)</code></h4> <div class='docblock'><p>Set the event iterator associated to this proxy</p> </div></div><h3 class='impl'><span class='in-band'><code>impl <a class='trait' href='../../../core/fmt/trait.Debug.html' title='core::fmt::Debug'>Debug</a> for <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1095' class='srclink' href='../../../src/wayland_client/home/servo/buildbot/slave/doc/build/target/debug/build/wayland-client-a4c38b9fe523cc64/out/wayland_client_api.rs.html#1247-1251' title='goto source code'>[src]</a></span></h3> <div class='impl-items'><h4 id='method.fmt' class='method'><code>fn <a href='../../../core/fmt/trait.Debug.html#tymethod.fmt' class='fnname'>fmt</a>(&amp;self, fmt: &amp;mut <a class='struct' href='../../../core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -&gt; <a class='enum' href='../../../core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;<a class='primitive' href='../../../std/primitive.tuple.html'>()</a>,&nbsp;<a class='struct' href='../../../core/fmt/struct.Error.html' title='core::fmt::Error'>Error</a>&gt;</code></h4> <div class='docblock'><p>Formats the value using the given formatter.</p> </div></div><h3 class='impl'><span class='in-band'><code>impl <a class='trait' href='../../../core/ops/trait.Drop.html' title='core::ops::Drop'>Drop</a> for <a class='struct' href='../../../wayland_client/sys/wayland/client/struct.WlDataDevice.html' title='wayland_client::sys::wayland::client::WlDataDevice'>WlDataDevice</a></code></span><span class='out-of-band'><div class='ghost'></div><a id='src-1184' class='srclink' href='../../../src/wayland_client/home/servo/buildbot/slave/doc/build/target/debug/build/wayland-client-a4c38b9fe523cc64/out/wayland_client_api.rs.html#1428-1432' title='goto source code'>[src]</a></span></h3> <div class='impl-items'><h4 id='method.drop' class='method'><code>fn <a href='../../../core/ops/trait.Drop.html#tymethod.drop' class='fnname'>drop</a>(&amp;mut self)</code></h4> <div class='docblock'><p>A method called when the value goes out of scope. <a href="../../../core/ops/trait.Drop.html#tymethod.drop">Read more</a></p> </div></div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../../"; window.currentCrate = "wayland_client"; window.playgroundUrl = ""; </script> <script src="../../../jquery.js"></script> <script src="../../../main.js"></script> <script defer src="../../../search-index.js"></script> </body> </html>
layout/reftests/w3c-css/submitted/shapes1/shape-outside-circle-006.html
Yukarumya/Yukarum-Redfoxes
<!DOCTYPE html> <!-- Any copyright is dedicated to the Public Domain. - http://creativecommons.org/publicdomain/zero/1.0/ --> <html> <meta charset="utf-8"> <title>CSS Shape Test: float left, circle(closest-side at center) border-box</title> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="http://www.mozilla.org/"> <link rel="help" href="https://drafts.csswg.org/css-shapes-1/#supported-basic-shapes"> <link rel="match" href="shape-outside-circle-005-ref.html"> <meta name="flags" content=""> <meta name="assert" content="Test the boxes are wrapping around the left float shape defined by the basic shape circle(closest-side at center) border-box value."> <style> .container { width: 200px; line-height: 0; } .shape { float: left; shape-outside: circle(closest-side at center) border-box; clip-path: circle(closest-side at center) border-box; box-sizing: content-box; height: 40px; width: 40px; padding: 20px; border: 20px solid lightgreen; margin-right: 10px; /* Not affect layout of the boxes */ background-color: orange; } .box { display: inline-block; width: 60px; background-color: blue; } </style> <body class="container"> <div class="shape"></div> <div class="box" style="height: 12px;"></div> <!-- Box at corner --> <div class="box" style="height: 12px;"></div> <!-- Box at corner --> <div class="box" style="height: 36px;"></div> <div class="box" style="height: 36px;"></div> <div class="box" style="height: 12px;"></div> <!-- Box at corner --> <div class="box" style="height: 12px;"></div> <!-- Box at corner --> </body> </html>
doc/tcod_sys/TCOD_zip_put_float.v.html
surrsurus/edgequest
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="refresh" content="0;URL=fn.TCOD_zip_put_float.html"> </head> <body> <p>Redirecting to <a href="fn.TCOD_zip_put_float.html">fn.TCOD_zip_put_float.html</a>...</p> <script>location.replace("fn.TCOD_zip_put_float.html" + location.search + location.hash);</script> </body> </html>
script/dom/bindings/codegen/Bindings/DocumentBinding/constant.oninvalid_getterinfo.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `oninvalid_getterinfo` constant in crate `script`."> <meta name="keywords" content="rust, rustlang, rust-lang, oninvalid_getterinfo"> <title>script::dom::bindings::codegen::Bindings::DocumentBinding::oninvalid_getterinfo - Rust</title> <link rel="stylesheet" type="text/css" href="../../../../../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../../../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../../../../../index.html'>script</a>::<wbr><a href='../../../../index.html'>dom</a>::<wbr><a href='../../../index.html'>bindings</a>::<wbr><a href='../../index.html'>codegen</a>::<wbr><a href='../index.html'>Bindings</a>::<wbr><a href='index.html'>DocumentBinding</a></p><script>window.sidebarCurrent = {name: 'oninvalid_getterinfo', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../../../../../index.html'>script</a>::<wbr><a href='../../../../index.html'>dom</a>::<wbr><a href='../../../index.html'>bindings</a>::<wbr><a href='../../index.html'>codegen</a>::<wbr><a href='../index.html'>Bindings</a>::<wbr><a href='index.html'>DocumentBinding</a>::<wbr><a class='constant' href=''>oninvalid_getterinfo</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-28640' class='srclink' href='../../../../../../src/script/home/servo/buildbot/slave/doc/build/target/debug/build/script-4d3bb93218cab884/out/Bindings/DocumentBinding.rs.html#5323-5340' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>const oninvalid_getterinfo: <a class='struct' href='../../../../../../js/jsapi/struct.JSJitInfo.html' title='js::jsapi::JSJitInfo'>JSJitInfo</a><code> = </code><code>JSJitInfo{call: get_oninvalid as *const os::raw::c_void, protoID: PrototypeList::ID::Document as u16, depth: 2, _bitfield_1: JSJitInfo::new_bitfield_1(JSJitInfo_OpType::Getter as u8, JSJitInfo_AliasSet::AliasEverything as u8, JSValueType::JSVAL_TYPE_UNKNOWN as u8, true, false, false, false, false, false, 0 as u16),}</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../../../../../"; window.currentCrate = "script"; window.playgroundUrl = ""; </script> <script src="../../../../../../jquery.js"></script> <script src="../../../../../../main.js"></script> <script defer src="../../../../../../search-index.js"></script> </body> </html>
tests/wpt/web-platform-tests/referrer-policy/gen/worker-classic.http-rp/no-referrer/xhr/cross-https.swap-origin.http.html
UK992/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/` --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'no-referrer'</title> <meta charset='utf-8'> <meta name="description" content="Check that sub-resource never gets the 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-no-referrer"> <meta name="assert" content="Referrer Policy: Expects omitted for xhr to cross-https origin and swap-origin redirection from http context."> <meta name="referrer" content="unsafe-url"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/security-features/resources/common.sub.js"></script> <script src="../../../../generic/test-case.sub.js"></script> </head> <body> <script> TestCase( { "expectation": "omitted", "origin": "cross-https", "redirection": "swap-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "http-rp", "key": "referrerPolicy", "value": "no-referrer" } ], "sourceContextType": "worker-classic" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [] }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
gleam/ffi/VertexAttrib4sv/fn.is_loaded.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `is_loaded` fn in crate `gleam`."> <meta name="keywords" content="rust, rustlang, rust-lang, is_loaded"> <title>gleam::ffi::VertexAttrib4sv::is_loaded - Rust</title> <link rel="stylesheet" type="text/css" href="../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../../index.html'>gleam</a>::<wbr><a href='../index.html'>ffi</a>::<wbr><a href='index.html'>VertexAttrib4sv</a></p><script>window.sidebarCurrent = {name: 'is_loaded', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'>Function <a href='../../index.html'>gleam</a>::<wbr><a href='../index.html'>ffi</a>::<wbr><a href='index.html'>VertexAttrib4sv</a>::<wbr><a class='fn' href=''>is_loaded</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-53805' class='srclink' href='../../../src/gleam///home/servo/buildbot/slave/doc/build/target/debug/build/gleam-9662459d59abad25/out/gl_bindings.rs.html#19364-19366' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub fn is_loaded() -&gt; <a href='../../../std/primitive.bool.html'>bool</a></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../../"; window.currentCrate = "gleam"; window.playgroundUrl = ""; </script> <script src="../../../jquery.js"></script> <script src="../../../main.js"></script> <script async src="../../../search-index.js"></script> </body> </html>
cassandra-scripts/javadoc/org/apache/cassandra/exceptions/AuthenticationException.html
bkcloud/bkplatform
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_45) on Fri Dec 27 12:52:44 CST 2013 --> <title>AuthenticationException (apache-cassandra API)</title> <meta name="date" content="2013-12-27"> <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="AuthenticationException (apache-cassandra API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/AuthenticationException.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/exceptions/AlreadyExistsException.html" title="class in org.apache.cassandra.exceptions"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/exceptions/CassandraException.html" title="class in org.apache.cassandra.exceptions"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/exceptions/AuthenticationException.html" target="_top">Frames</a></li> <li><a href="AuthenticationException.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_org.apache.cassandra.exceptions.CassandraException">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <!-- ======== START OF CLASS DATA ======== --> <div class="header"> <div class="subTitle">org.apache.cassandra.exceptions</div> <h2 title="Class AuthenticationException" class="title">Class AuthenticationException</h2> </div> <div class="contentContainer"> <ul class="inheritance"> <li>java.lang.Object</li> <li> <ul class="inheritance"> <li>java.lang.Throwable</li> <li> <ul class="inheritance"> <li>java.lang.Exception</li> <li> <ul class="inheritance"> <li><a href="../../../../org/apache/cassandra/exceptions/CassandraException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.CassandraException</a></li> <li> <ul class="inheritance"> <li><a href="../../../../org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">org.apache.cassandra.exceptions.RequestValidationException</a></li> <li> <ul class="inheritance"> <li>org.apache.cassandra.exceptions.AuthenticationException</li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> <div class="description"> <ul class="blockList"> <li class="blockList"> <dl> <dt>All Implemented Interfaces:</dt> <dd>java.io.Serializable, <a href="../../../../org/apache/cassandra/exceptions/TransportException.html" title="interface in org.apache.cassandra.exceptions">TransportException</a></dd> </dl> <hr> <br> <pre>public class <span class="strong">AuthenticationException</span> extends <a href="../../../../org/apache/cassandra/exceptions/RequestValidationException.html" title="class in org.apache.cassandra.exceptions">RequestValidationException</a></pre> <dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../serialized-form.html#org.apache.cassandra.exceptions.AuthenticationException">Serialized Form</a></dd></dl> </li> </ul> </div> <div class="summary"> <ul class="blockList"> <li class="blockList"> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_summary"> <!-- --> </a> <h3>Constructor Summary</h3> <table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> <caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Constructor and Description</th> </tr> <tr class="altColor"> <td class="colOne"><code><strong><a href="../../../../org/apache/cassandra/exceptions/AuthenticationException.html#AuthenticationException(java.lang.String)">AuthenticationException</a></strong>(java.lang.String&nbsp;msg)</code>&nbsp;</td> </tr> </table> </li> </ul> <!-- ========== METHOD SUMMARY =========== --> <ul class="blockList"> <li class="blockList"><a name="method_summary"> <!-- --> </a> <h3>Method Summary</h3> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_org.apache.cassandra.exceptions.CassandraException"> <!-- --> </a> <h3>Methods inherited from class&nbsp;org.apache.cassandra.exceptions.<a href="../../../../org/apache/cassandra/exceptions/CassandraException.html" title="class in org.apache.cassandra.exceptions">CassandraException</a></h3> <code><a href="../../../../org/apache/cassandra/exceptions/CassandraException.html#code()">code</a></code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Throwable"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Throwable</h3> <code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_java.lang.Object"> <!-- --> </a> <h3>Methods inherited from class&nbsp;java.lang.Object</h3> <code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> </ul> <ul class="blockList"> <li class="blockList"><a name="methods_inherited_from_class_org.apache.cassandra.exceptions.TransportException"> <!-- --> </a> <h3>Methods inherited from interface&nbsp;org.apache.cassandra.exceptions.<a href="../../../../org/apache/cassandra/exceptions/TransportException.html" title="interface in org.apache.cassandra.exceptions">TransportException</a></h3> <code><a href="../../../../org/apache/cassandra/exceptions/TransportException.html#getMessage()">getMessage</a></code></li> </ul> </li> </ul> </li> </ul> </div> <div class="details"> <ul class="blockList"> <li class="blockList"> <!-- ========= CONSTRUCTOR DETAIL ======== --> <ul class="blockList"> <li class="blockList"><a name="constructor_detail"> <!-- --> </a> <h3>Constructor Detail</h3> <a name="AuthenticationException(java.lang.String)"> <!-- --> </a> <ul class="blockListLast"> <li class="blockList"> <h4>AuthenticationException</h4> <pre>public&nbsp;AuthenticationException(java.lang.String&nbsp;msg)</pre> </li> </ul> </li> </ul> </li> </ul> </div> </div> <!-- ========= END OF CLASS DATA ========= --> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li class="navBarCell1Rev">Class</li> <li><a href="class-use/AuthenticationException.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../org/apache/cassandra/exceptions/AlreadyExistsException.html" title="class in org.apache.cassandra.exceptions"><span class="strong">Prev Class</span></a></li> <li><a href="../../../../org/apache/cassandra/exceptions/CassandraException.html" title="class in org.apache.cassandra.exceptions"><span class="strong">Next Class</span></a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?org/apache/cassandra/exceptions/AuthenticationException.html" target="_top">Frames</a></li> <li><a href="AuthenticationException.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <div> <ul class="subNavList"> <li>Summary:&nbsp;</li> <li>Nested&nbsp;|&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li> <li><a href="#methods_inherited_from_class_org.apache.cassandra.exceptions.CassandraException">Method</a></li> </ul> <ul class="subNavList"> <li>Detail:&nbsp;</li> <li>Field&nbsp;|&nbsp;</li> <li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li> <li>Method</li> </ul> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &copy; 2013 The Apache Software Foundation</small></p> </body> </html>
bedrock/etc/templates/etc/firefox/retention/thank-you-a.html
kyoshino/bedrock
{# 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/. -#} {% extends "base-pebbles.html" %} {% add_lang_files "firefox/retention/thank-you" %} {% block page_title %} {{ _('Thank You') }} {% endblock %} {% block page_title_suffix %}{% endblock %} {% block page_desc %} {{ _('Thank you page.') }} {% endblock %} {# "noindex" pages should not have the canonical or hreflang tags: bug 1442331 #} {% block canonical_urls %}<meta name="robots" content="noindex,follow">{% endblock %} {% block page_css %} {{ css_bundle('etc-firefox-retention-thank-you-a') }} {% endblock %} {% block site_header %}{% endblock %} {% block content %} <main> <canvas id="confetti-canvas"></canvas> <header> <h1> {% if LANG.startswith('en') %} <span class="white">It’s all</span><br/> thanks to you {% else %} {{ _('It’s all thanks to you') }} {% endif %} </h1> <p> {{ _('Choosing Firefox helps Mozilla make the Internet a better place. Here’s what you can do next:') }} </p> </header> <section> <article> <h1>{{ _('Make Firefox your default browser') }}</h1> <div class="time">{{ _('1 min action') }}</div> <a data-link-type="link" data-link-name="Set as your default" href="https://support.mozilla.org/kb/make-firefox-your-default-browser">{{ _('Set as your default') }}</a> </article> <article> <h1>{{ _('Get Firefox on your phone') }}</h1> <div class="time">{{ _('2 min install') }}</div> <a data-link-type="link" data-link-name="Download Firefox" href="{{ url('firefox.mobile') }}">{{ _('Download Firefox') }}</a> </article> <article> <h1>{{ _('Tell your friends about Firefox') }}</h1> <div class="time">{{ _('1 min share') }}</div> <a data-link-type="link" data-link-name="Send a tweet" href="{{ 'https://www.twitter.com/intent/tweet?url=%s&text=%s%s'|format('https://mozilla.org/firefox/new'|urlencode, '%F0%9F%94%A5%2B%F0%9F%A6%8A=%F0%9F%99%8C%F0%9F%8F%BE%20', _('Join me in the fight for an open web by choosing Firefox!')|urlencode)|e }}">{{ _('Send a tweet') }}</a> </article> <article> <h1>{{ _('Make the Internet a safer place') }}</h1> <div class="time">{{ _('4 min read') }}</div> <a data-link-type="link" data-link-name="Make the Internet as Safer Place" href="{{ url('mozorg.internet-health.privacy-security') }}">{{ _('Learn more') }}</a> </article> </section> </main> <aside id="newsletter-subscribe"> <div class="content"> {{ email_newsletter_form(newsletters='mozilla-foundation', title=_('Stay in touch for more cool stuff'), subtitle=_('Get the latest & greatest from Firefox delivered straight to your inbox.'), button_class='button-light', spinner_color='#fff') }} </div> </aside> {% endblock %} {% block js %} {{ js_bundle('etc-firefox-retention-thank-you') }} {% endblock %} {% block body_id %}thank-you{% endblock %}
wayland_kbd/ffi/keysyms/constant.XKB_KEY_Arabic_zah.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `XKB_KEY_Arabic_zah` constant in crate `wayland_kbd`."> <meta name="keywords" content="rust, rustlang, rust-lang, XKB_KEY_Arabic_zah"> <title>wayland_kbd::ffi::keysyms::XKB_KEY_Arabic_zah - Rust</title> <link rel="stylesheet" type="text/css" href="../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../../index.html'>wayland_kbd</a>::<wbr><a href='../index.html'>ffi</a>::<wbr><a href='index.html'>keysyms</a></p><script>window.sidebarCurrent = {name: 'XKB_KEY_Arabic_zah', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../../index.html'>wayland_kbd</a>::<wbr><a href='../index.html'>ffi</a>::<wbr><a href='index.html'>keysyms</a>::<wbr><a class='constant' href=''>XKB_KEY_Arabic_zah</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-2453' class='srclink' href='../../../src/wayland_kbd/ffi/keysyms.rs.html#1050' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const XKB_KEY_Arabic_zah: <a href='../../../std/primitive.u32.html'>u32</a><code> = </code><code>0x05d8</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../../"; window.currentCrate = "wayland_kbd"; window.playgroundUrl = ""; </script> <script src="../../../jquery.js"></script> <script src="../../../main.js"></script> <script async src="../../../search-index.js"></script> </body> </html>
gleam/gl/TexImage3D/fn.is_loaded.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `is_loaded` fn in crate `gleam`."> <meta name="keywords" content="rust, rustlang, rust-lang, is_loaded"> <title>gleam::gl::TexImage3D::is_loaded - Rust</title> <link rel="stylesheet" type="text/css" href="../../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../../index.html'>gleam</a>::<wbr><a href='../index.html'>gl</a>::<wbr><a href='index.html'>TexImage3D</a></p><script>window.sidebarCurrent = {name: 'is_loaded', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'>Function <a href='../../index.html'>gleam</a>::<wbr><a href='../index.html'>gl</a>::<wbr><a href='index.html'>TexImage3D</a>::<wbr><a class='fn' href=''>is_loaded</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-6491' class='srclink' href='../../../src/gleam/home/servo/buildbot/slave/doc/build/target/debug/build/gleam-8cc6d4d4d5b87928/out/gl_bindings.rs.html#8619-8621' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub fn is_loaded() -&gt; <a class='primitive' href='../../../std/primitive.bool.html'>bool</a></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../../"; window.currentCrate = "gleam"; window.playgroundUrl = ""; </script> <script src="../../../jquery.js"></script> <script src="../../../main.js"></script> <script defer src="../../../search-index.js"></script> </body> </html>
ref/glm/doc/api/a00126_source.html
tmj-fstate/maszyna
<!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>0.9.9 API documenation: ulp.hpp Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="logo-mini.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">0.9.9 API documenation </div> </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="modules.html"><span>Modules</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_934f46a345653ef2b3014a1b37a162c1.html">G:</a></li><li class="navelem"><a class="el" href="dir_98f7f9d41f9d3029bd68cf237526a774.html">Source</a></li><li class="navelem"><a class="el" href="dir_9344afb825aed5e2f5be1d2015dde43c.html">G-Truc</a></li><li class="navelem"><a class="el" href="dir_45973f864e07b2505003ae343b7c8af7.html">glm</a></li><li class="navelem"><a class="el" href="dir_304be5dfae1339a7705426c0b536faf2.html">glm</a></li><li class="navelem"><a class="el" href="dir_7997edb062bdde9a99cb6835d42b0d9d.html">gtc</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">ulp.hpp</div> </div> </div><!--header--> <div class="contents"> <a href="a00126.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;</div> <div class="line"><a name="l00015"></a><span class="lineno"> 15</span>&#160;<span class="preprocessor">#pragma once</span></div> <div class="line"><a name="l00016"></a><span class="lineno"> 16</span>&#160;</div> <div class="line"><a name="l00017"></a><span class="lineno"> 17</span>&#160;<span class="comment">// Dependencies</span></div> <div class="line"><a name="l00018"></a><span class="lineno"> 18</span>&#160;<span class="preprocessor">#include &quot;../detail/setup.hpp&quot;</span></div> <div class="line"><a name="l00019"></a><span class="lineno"> 19</span>&#160;<span class="preprocessor">#include &quot;../detail/qualifier.hpp&quot;</span></div> <div class="line"><a name="l00020"></a><span class="lineno"> 20</span>&#160;<span class="preprocessor">#include &quot;../detail/type_int.hpp&quot;</span></div> <div class="line"><a name="l00021"></a><span class="lineno"> 21</span>&#160;<span class="preprocessor">#include &quot;../detail/compute_vector_relational.hpp&quot;</span></div> <div class="line"><a name="l00022"></a><span class="lineno"> 22</span>&#160;</div> <div class="line"><a name="l00023"></a><span class="lineno"> 23</span>&#160;<span class="preprocessor">#if GLM_MESSAGES == GLM_MESSAGES_ENABLED &amp;&amp; !defined(GLM_EXT_INCLUDED)</span></div> <div class="line"><a name="l00024"></a><span class="lineno"> 24</span>&#160;<span class="preprocessor"># pragma message(&quot;GLM: GLM_GTC_ulp extension included&quot;)</span></div> <div class="line"><a name="l00025"></a><span class="lineno"> 25</span>&#160;<span class="preprocessor">#endif</span></div> <div class="line"><a name="l00026"></a><span class="lineno"> 26</span>&#160;</div> <div class="line"><a name="l00027"></a><span class="lineno"> 27</span>&#160;<span class="keyword">namespace </span><a class="code" href="a00138.html">glm</a></div> <div class="line"><a name="l00028"></a><span class="lineno"> 28</span>&#160;{</div> <div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160;</div> <div class="line"><a name="l00034"></a><span class="lineno"> 34</span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> genType&gt;</div> <div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160; GLM_FUNC_DECL genType <a class="code" href="a00173.html#gad107ec3d9697ef82032a33338a73ebdd">next_float</a>(genType <span class="keyword">const</span>&amp; x);</div> <div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160;</div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> genType&gt;</div> <div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160; GLM_FUNC_DECL genType <a class="code" href="a00173.html#gaa399d5b6472a70e8952f9b26ecaacdec">prev_float</a>(genType <span class="keyword">const</span>&amp; x);</div> <div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160;</div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> genType&gt;</div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160; GLM_FUNC_DECL genType <a class="code" href="a00173.html#gad107ec3d9697ef82032a33338a73ebdd">next_float</a>(genType <span class="keyword">const</span>&amp; x, <a class="code" href="a00150.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> <span class="keyword">const</span>&amp; Distance);</div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;</div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> genType&gt;</div> <div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160; GLM_FUNC_DECL genType <a class="code" href="a00173.html#gaa399d5b6472a70e8952f9b26ecaacdec">prev_float</a>(genType <span class="keyword">const</span>&amp; x, <a class="code" href="a00150.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> <span class="keyword">const</span>&amp; Distance);</div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160;</div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> T&gt;</div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160; GLM_FUNC_DECL <a class="code" href="a00150.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">uint</a> <a class="code" href="a00173.html#ga72b3223069013f336d8c31812b7ada80">float_distance</a>(T <span class="keyword">const</span>&amp; x, T <span class="keyword">const</span>&amp; y);</div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160;</div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; <span class="keyword">template</span>&lt;<span class="keyword">typename</span> T, qualifier Q&gt;</div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160; GLM_FUNC_DECL vec&lt;2, uint, Q&gt; <a class="code" href="a00173.html#ga72b3223069013f336d8c31812b7ada80">float_distance</a>(vec&lt;2, T, Q&gt; <span class="keyword">const</span>&amp; x, vec&lt;2, T, Q&gt; <span class="keyword">const</span>&amp; y);</div> <div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160;</div> <div class="line"><a name="l00063"></a><span class="lineno"> 63</span>&#160;}<span class="comment">// namespace glm</span></div> <div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160;</div> <div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160;<span class="preprocessor">#include &quot;ulp.inl&quot;</span></div> <div class="ttc" id="a00173_html_ga72b3223069013f336d8c31812b7ada80"><div class="ttname"><a href="a00173.html#ga72b3223069013f336d8c31812b7ada80">glm::float_distance</a></div><div class="ttdeci">GLM_FUNC_DECL vec&lt; 2, uint, Q &gt; float_distance(vec&lt; 2, T, Q &gt; const &amp;x, vec&lt; 2, T, Q &gt; const &amp;y)</div><div class="ttdoc">Return the distance in the number of ULP between 2 vectors. </div></div> <div class="ttc" id="a00138_html"><div class="ttname"><a href="a00138.html">glm</a></div><div class="ttdef"><b>Definition:</b> <a href="a00015_source.html#l00020">common.hpp:20</a></div></div> <div class="ttc" id="a00173_html_gad107ec3d9697ef82032a33338a73ebdd"><div class="ttname"><a href="a00173.html#gad107ec3d9697ef82032a33338a73ebdd">glm::next_float</a></div><div class="ttdeci">GLM_FUNC_DECL genType next_float(genType const &amp;x, uint const &amp;Distance)</div><div class="ttdoc">Return the value(s) ULP distance after the input value(s). </div></div> <div class="ttc" id="a00150_html_ga91ad9478d81a7aaf2593e8d9c3d06a14"><div class="ttname"><a href="a00150.html#ga91ad9478d81a7aaf2593e8d9c3d06a14">glm::uint</a></div><div class="ttdeci">unsigned int uint</div><div class="ttdoc">Unsigned integer type. </div><div class="ttdef"><b>Definition:</b> <a href="a00107_source.html#l00288">type_int.hpp:288</a></div></div> <div class="ttc" id="a00173_html_gaa399d5b6472a70e8952f9b26ecaacdec"><div class="ttname"><a href="a00173.html#gaa399d5b6472a70e8952f9b26ecaacdec">glm::prev_float</a></div><div class="ttdeci">GLM_FUNC_DECL genType prev_float(genType const &amp;x, uint const &amp;Distance)</div><div class="ttdoc">Return the value(s) ULP distance before the input value(s). </div></div> </div><!-- fragment --></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.10 </small></address> </body> </html>
gleam/gl/type.GLchar.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `GLchar` type in crate `gleam`."> <meta name="keywords" content="rust, rustlang, rust-lang, GLchar"> <title>gleam::gl::GLchar - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>gleam</a>::<wbr><a href='index.html'>gl</a></p><script>window.sidebarCurrent = {name: 'GLchar', ty: 'type', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content type"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>gleam</a>::<wbr><a href='index.html'>gl</a>::<wbr><a class='type' href=''>GLchar</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-622' class='srclink' href='../../src/gleam/home/servo/buildbot/slave/doc/build/target/debug/build/gleam-8cc6d4d4d5b87928/out/gl_bindings.rs.html#44' title='goto source code'>[src]</a></span></h1> <pre class='rust typedef'>type GLchar = <a class='type' href='../../gleam/ffi/__gl_imports/raw/type.c_char.html' title='gleam::ffi::__gl_imports::raw::c_char'>c_char</a>;</pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "gleam"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
skia/skia/fn.SkiaGrGLInterfaceGLVersionGreaterThanOrEqualTo.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `SkiaGrGLInterfaceGLVersionGreaterThanOrEqualTo` fn in crate `skia`."> <meta name="keywords" content="rust, rustlang, rust-lang, SkiaGrGLInterfaceGLVersionGreaterThanOrEqualTo"> <title>skia::skia::SkiaGrGLInterfaceGLVersionGreaterThanOrEqualTo - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>skia</a>::<wbr><a href='index.html'>skia</a></p><script>window.sidebarCurrent = {name: 'SkiaGrGLInterfaceGLVersionGreaterThanOrEqualTo', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>skia</a>::<wbr><a href='index.html'>skia</a>::<wbr><a class='fn' href=''>SkiaGrGLInterfaceGLVersionGreaterThanOrEqualTo</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-595' class='srclink' href='../../src/skia/skia.rs.html#21' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub unsafe extern fn SkiaGrGLInterfaceGLVersionGreaterThanOrEqualTo(anInterface: <a class='type' href='../../skia/skia/type.SkiaGrGLInterfaceRef.html' title='skia::skia::SkiaGrGLInterfaceRef'>SkiaGrGLInterfaceRef</a>, major: <a href='../../std/primitive.i32.html'>i32</a>, minor: <a href='../../std/primitive.i32.html'>i32</a>) -&gt; <a href='../../std/primitive.bool.html'>bool</a></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "skia"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
wayland_kbd/keysyms/constant.XKB_KEY_braille_dots_245678.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `XKB_KEY_braille_dots_245678` constant in crate `wayland_kbd`."> <meta name="keywords" content="rust, rustlang, rust-lang, XKB_KEY_braille_dots_245678"> <title>wayland_kbd::keysyms::XKB_KEY_braille_dots_245678 - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a></p><script>window.sidebarCurrent = {name: 'XKB_KEY_braille_dots_245678', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>wayland_kbd</a>::<wbr><a href='index.html'>keysyms</a>::<wbr><a class='constant' href=''>XKB_KEY_braille_dots_245678</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-2025' class='srclink' href='../../src/wayland_kbd/ffi/keysyms.rs.html#2356' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const XKB_KEY_braille_dots_245678: <a class='primitive' href='../../std/primitive.u32.html'>u32</a><code> = </code><code>16787706</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "wayland_kbd"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
layout/table_wrapper/struct.TableWrapperFlow.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `TableWrapperFlow` struct in crate `layout`."> <meta name="keywords" content="rust, rustlang, rust-lang, TableWrapperFlow"> <title>layout::table_wrapper::TableWrapperFlow - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>layout</a>::<wbr><a href='index.html'>table_wrapper</a></p><script>window.sidebarCurrent = {name: 'TableWrapperFlow', ty: 'struct', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content struct"> <h1 class='fqn'><span class='in-band'>Struct <a href='../index.html'>layout</a>::<wbr><a href='index.html'>table_wrapper</a>::<wbr><a class='struct' href=''>TableWrapperFlow</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-89808' class='srclink' href='../../src/layout/table_wrapper.rs.html#47-55' title='goto source code'>[src]</a></span></h1> <pre class='rust struct'>pub struct TableWrapperFlow { pub block_flow: <a class='struct' href='../../layout/block/struct.BlockFlow.html' title='layout::block::BlockFlow'>BlockFlow</a>, pub column_intrinsic_inline_sizes: <a class='struct' href='../../collections/vec/struct.Vec.html' title='collections::vec::Vec'>Vec</a>&lt;<a class='struct' href='../../layout/table/struct.ColumnIntrinsicInlineSize.html' title='layout::table::ColumnIntrinsicInlineSize'>ColumnIntrinsicInlineSize</a>&gt;, pub table_layout: <a class='enum' href='../../layout/table_wrapper/enum.TableLayout.html' title='layout::table_wrapper::TableLayout'>TableLayout</a>, }</pre><div class='docblock'><p>A table wrapper flow based on a block formatting context.</p> </div><h2 class='fields'>Fields</h2> <table><tr class='stab '> <td id='structfield.block_flow'><code>block_flow</code></td><td></td></tr><tr class='stab '> <td id='structfield.column_intrinsic_inline_sizes'><code>column_intrinsic_inline_sizes</code></td><td><div class='docblock'><p>Intrinsic column inline sizes according to INTRINSIC § 4.1</p> </div></td></tr><tr class='stab '> <td id='structfield.table_layout'><code>table_layout</code></td><td><div class='docblock'><p>Table-layout property</p> </div></td></tr></table><h2 id='methods'>Methods</h2><h3 class='impl'><code>impl <a class='struct' href='../../layout/table_wrapper/struct.TableWrapperFlow.html' title='layout::table_wrapper::TableWrapperFlow'>TableWrapperFlow</a></code></h3><div class='impl-items'><h4 id='method.from_fragment' class='method'><code>fn <a href='#method.from_fragment' class='fnname'>from_fragment</a>(fragment: <a class='struct' href='../../layout/fragment/struct.Fragment.html' title='layout::fragment::Fragment'>Fragment</a>, float_kind: <a class='enum' href='../../core/option/enum.Option.html' title='core::option::Option'>Option</a>&lt;<a class='enum' href='../../layout/floats/enum.FloatKind.html' title='layout::floats::FloatKind'>FloatKind</a>&gt;) -&gt; <a class='struct' href='../../layout/table_wrapper/struct.TableWrapperFlow.html' title='layout::table_wrapper::TableWrapperFlow'>TableWrapperFlow</a></code></h4> <h4 id='method.border_padding_and_spacing' class='method'><code>fn <a href='#method.border_padding_and_spacing' class='fnname'>border_padding_and_spacing</a>(&amp;mut self) -&gt; <a href='../../std/primitive.tuple.html'>(<a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>, <a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>)</a></code></h4> <h4 id='method.calculate_table_column_sizes_for_automatic_layout' class='method'><code>fn <a href='#method.calculate_table_column_sizes_for_automatic_layout' class='fnname'>calculate_table_column_sizes_for_automatic_layout</a>(&amp;mut self, intermediate_column_inline_sizes: <a href='../../std/primitive.slice.html'>&amp;mut [</a><a class='struct' href='../../layout/table_wrapper/struct.IntermediateColumnInlineSize.html' title='layout::table_wrapper::IntermediateColumnInlineSize'>IntermediateColumnInlineSize</a><a href='../../std/primitive.slice.html'>]</a>)</code></h4> <div class='docblock'><p>Calculates table column sizes for automatic layout per INTRINSIC § 4.3.</p> </div><h4 id='method.compute_used_inline_size' class='method'><code>fn <a href='#method.compute_used_inline_size' class='fnname'>compute_used_inline_size</a>(&amp;mut self, layout_context: &amp;<a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>, parent_flow_inline_size: <a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>, intermediate_column_inline_sizes: <a href='../../std/primitive.slice.html'>&amp;[</a><a class='struct' href='../../layout/table_wrapper/struct.IntermediateColumnInlineSize.html' title='layout::table_wrapper::IntermediateColumnInlineSize'>IntermediateColumnInlineSize</a><a href='../../std/primitive.slice.html'>]</a>)</code></h4> </div><h2 id='implementations'>Trait Implementations</h2><h3 class='impl'><code>impl <a class='trait' href='../../layout/flow/trait.Flow.html' title='layout::flow::Flow'>Flow</a> for <a class='struct' href='../../layout/table_wrapper/struct.TableWrapperFlow.html' title='layout::table_wrapper::TableWrapperFlow'>TableWrapperFlow</a></code></h3><div class='impl-items'><h4 id='method.class' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.class' class='fnname'>class</a>(&amp;self) -&gt; <a class='enum' href='../../layout/flow/enum.FlowClass.html' title='layout::flow::FlowClass'>FlowClass</a></code></h4> <h4 id='method.as_mut_table_wrapper' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_table_wrapper' class='fnname'>as_mut_table_wrapper</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/table_wrapper/struct.TableWrapperFlow.html' title='layout::table_wrapper::TableWrapperFlow'>TableWrapperFlow</a></code></h4> <h4 id='method.as_table_wrapper' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_table_wrapper' class='fnname'>as_table_wrapper</a>(&amp;self) -&gt; &amp;<a class='struct' href='../../layout/table_wrapper/struct.TableWrapperFlow.html' title='layout::table_wrapper::TableWrapperFlow'>TableWrapperFlow</a></code></h4> <h4 id='method.as_mut_block' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_block' class='fnname'>as_mut_block</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/block/struct.BlockFlow.html' title='layout::block::BlockFlow'>BlockFlow</a></code></h4> <h4 id='method.as_block' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_block' class='fnname'>as_block</a>(&amp;self) -&gt; &amp;<a class='struct' href='../../layout/block/struct.BlockFlow.html' title='layout::block::BlockFlow'>BlockFlow</a></code></h4> <h4 id='method.mark_as_root' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.mark_as_root' class='fnname'>mark_as_root</a>(&amp;mut self)</code></h4> <h4 id='method.bubble_inline_sizes' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.bubble_inline_sizes' class='fnname'>bubble_inline_sizes</a>(&amp;mut self)</code></h4> <h4 id='method.assign_inline_sizes' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.assign_inline_sizes' class='fnname'>assign_inline_sizes</a>(&amp;mut self, layout_context: &amp;<a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>)</code></h4> <h4 id='method.assign_block_size' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.assign_block_size' class='fnname'>assign_block_size</a>&lt;'a&gt;(&amp;mut self, layout_context: &amp;'a <a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>&lt;'a&gt;)</code></h4> <h4 id='method.compute_absolute_position' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.compute_absolute_position' class='fnname'>compute_absolute_position</a>(&amp;mut self, layout_context: &amp;<a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>)</code></h4> <h4 id='method.place_float_if_applicable' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.place_float_if_applicable' class='fnname'>place_float_if_applicable</a>&lt;'a&gt;(&amp;mut self, layout_context: &amp;'a <a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>&lt;'a&gt;)</code></h4> <h4 id='method.assign_block_size_for_inorder_child_if_necessary' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.assign_block_size_for_inorder_child_if_necessary' class='fnname'>assign_block_size_for_inorder_child_if_necessary</a>&lt;'a&gt;(&amp;mut self, layout_context: &amp;'a <a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>&lt;'a&gt;, parent_thread_id: <a href='../../std/primitive.u8.html'>u8</a>) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> <h4 id='method.update_late_computed_inline_position_if_necessary' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.update_late_computed_inline_position_if_necessary' class='fnname'>update_late_computed_inline_position_if_necessary</a>(&amp;mut self, inline_position: <a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>)</code></h4> <h4 id='method.update_late_computed_block_position_if_necessary' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.update_late_computed_block_position_if_necessary' class='fnname'>update_late_computed_block_position_if_necessary</a>(&amp;mut self, block_position: <a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>)</code></h4> <h4 id='method.generated_containing_block_size' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.generated_containing_block_size' class='fnname'>generated_containing_block_size</a>(&amp;self, flow: <a class='struct' href='../../layout/flow/struct.OpaqueFlow.html' title='layout::flow::OpaqueFlow'>OpaqueFlow</a>) -&gt; <a class='struct' href='../../util/logical_geometry/struct.LogicalSize.html' title='util::logical_geometry::LogicalSize'>LogicalSize</a>&lt;<a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>&gt;</code></h4> <h4 id='method.build_display_list' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.build_display_list' class='fnname'>build_display_list</a>(&amp;mut self, layout_context: &amp;<a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>)</code></h4> <h4 id='method.repair_style' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.repair_style' class='fnname'>repair_style</a>(&amp;mut self, new_style: &amp;<a class='struct' href='../../alloc/arc/struct.Arc.html' title='alloc::arc::Arc'>Arc</a>&lt;<a class='struct' href='../../style/properties/struct.ComputedValues.html' title='style::properties::ComputedValues'>ComputedValues</a>&gt;)</code></h4> <h4 id='method.compute_overflow' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.compute_overflow' class='fnname'>compute_overflow</a>(&amp;self) -&gt; <a class='struct' href='../../euclid/rect/struct.Rect.html' title='euclid::rect::Rect'>Rect</a>&lt;<a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>&gt;</code></h4> <h4 id='method.iterate_through_fragment_border_boxes' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.iterate_through_fragment_border_boxes' class='fnname'>iterate_through_fragment_border_boxes</a>(&amp;self, iterator: &amp;mut <a class='trait' href='../../layout/fragment/trait.FragmentBorderBoxIterator.html' title='layout::fragment::FragmentBorderBoxIterator'>FragmentBorderBoxIterator</a>, level: <a href='../../std/primitive.i32.html'>i32</a>, stacking_context_position: &amp;<a class='struct' href='../../euclid/point/struct.Point2D.html' title='euclid::point::Point2D'>Point2D</a>&lt;<a class='struct' href='../../util/geometry/struct.Au.html' title='util::geometry::Au'>Au</a>&gt;)</code></h4> <h4 id='method.mutate_fragments' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.mutate_fragments' class='fnname'>mutate_fragments</a>(&amp;mut self, mutator: &amp;mut <a class='trait' href='../../core/ops/trait.FnMut.html' title='core::ops::FnMut'>FnMut</a>(&amp;mut <a class='struct' href='../../layout/fragment/struct.Fragment.html' title='layout::fragment::Fragment'>Fragment</a>))</code></h4> <h4 id='method.as_inline' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_inline' class='fnname'>as_inline</a>(&amp;self) -&gt; &amp;<a class='struct' href='../../layout/inline/struct.InlineFlow.html' title='layout::inline::InlineFlow'>InlineFlow</a></code></h4> <h4 id='method.as_mut_inline' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_inline' class='fnname'>as_mut_inline</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/inline/struct.InlineFlow.html' title='layout::inline::InlineFlow'>InlineFlow</a></code></h4> <h4 id='method.as_mut_table' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_table' class='fnname'>as_mut_table</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/table/struct.TableFlow.html' title='layout::table::TableFlow'>TableFlow</a></code></h4> <h4 id='method.as_table' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_table' class='fnname'>as_table</a>(&amp;self) -&gt; &amp;<a class='struct' href='../../layout/table/struct.TableFlow.html' title='layout::table::TableFlow'>TableFlow</a></code></h4> <h4 id='method.as_mut_table_colgroup' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_table_colgroup' class='fnname'>as_mut_table_colgroup</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/table_colgroup/struct.TableColGroupFlow.html' title='layout::table_colgroup::TableColGroupFlow'>TableColGroupFlow</a></code></h4> <h4 id='method.as_mut_table_rowgroup' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_table_rowgroup' class='fnname'>as_mut_table_rowgroup</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/table_rowgroup/struct.TableRowGroupFlow.html' title='layout::table_rowgroup::TableRowGroupFlow'>TableRowGroupFlow</a></code></h4> <h4 id='method.as_table_rowgroup' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_table_rowgroup' class='fnname'>as_table_rowgroup</a>(&amp;self) -&gt; &amp;<a class='struct' href='../../layout/table_rowgroup/struct.TableRowGroupFlow.html' title='layout::table_rowgroup::TableRowGroupFlow'>TableRowGroupFlow</a></code></h4> <h4 id='method.as_mut_table_row' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_table_row' class='fnname'>as_mut_table_row</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/table_row/struct.TableRowFlow.html' title='layout::table_row::TableRowFlow'>TableRowFlow</a></code></h4> <h4 id='method.as_table_row' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_table_row' class='fnname'>as_table_row</a>(&amp;self) -&gt; &amp;<a class='struct' href='../../layout/table_row/struct.TableRowFlow.html' title='layout::table_row::TableRowFlow'>TableRowFlow</a></code></h4> <h4 id='method.as_mut_table_caption' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_table_caption' class='fnname'>as_mut_table_caption</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/table_caption/struct.TableCaptionFlow.html' title='layout::table_caption::TableCaptionFlow'>TableCaptionFlow</a></code></h4> <h4 id='method.as_mut_table_cell' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_table_cell' class='fnname'>as_mut_table_cell</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/table_cell/struct.TableCellFlow.html' title='layout::table_cell::TableCellFlow'>TableCellFlow</a></code></h4> <h4 id='method.as_mut_multicol' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_mut_multicol' class='fnname'>as_mut_multicol</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../layout/multicol/struct.MulticolFlow.html' title='layout::multicol::MulticolFlow'>MulticolFlow</a></code></h4> <h4 id='method.as_table_cell' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.as_table_cell' class='fnname'>as_table_cell</a>(&amp;self) -&gt; &amp;<a class='struct' href='../../layout/table_cell/struct.TableCellFlow.html' title='layout::table_cell::TableCellFlow'>TableCellFlow</a></code></h4> <h4 id='method.column_intrinsic_inline_sizes' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.column_intrinsic_inline_sizes' class='fnname'>column_intrinsic_inline_sizes</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../collections/vec/struct.Vec.html' title='collections::vec::Vec'>Vec</a>&lt;<a class='struct' href='../../layout/table/struct.ColumnIntrinsicInlineSize.html' title='layout::table::ColumnIntrinsicInlineSize'>ColumnIntrinsicInlineSize</a>&gt;</code></h4> <h4 id='method.column_computed_inline_sizes' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.column_computed_inline_sizes' class='fnname'>column_computed_inline_sizes</a>(&amp;mut self) -&gt; &amp;mut <a class='struct' href='../../collections/vec/struct.Vec.html' title='collections::vec::Vec'>Vec</a>&lt;<a class='struct' href='../../layout/table/struct.ColumnComputedInlineSize.html' title='layout::table::ColumnComputedInlineSize'>ColumnComputedInlineSize</a>&gt;</code></h4> <h4 id='method.store_overflow' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.store_overflow' class='fnname'>store_overflow</a>(&amp;mut self, _: &amp;<a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>)</code></h4> <h4 id='method.compute_collapsible_block_start_margin' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.compute_collapsible_block_start_margin' class='fnname'>compute_collapsible_block_start_margin</a>(&amp;mut self, _layout_context: &amp;mut <a class='struct' href='../../layout/context/struct.LayoutContext.html' title='layout::context::LayoutContext'>LayoutContext</a>, _margin_collapse_info: &amp;mut <a class='struct' href='../../layout/model/struct.MarginCollapseInfo.html' title='layout::model::MarginCollapseInfo'>MarginCollapseInfo</a>)</code></h4> <h4 id='method.is_root' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.is_root' class='fnname'>is_root</a>(&amp;self) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> <h4 id='method.positioning' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.positioning' class='fnname'>positioning</a>(&amp;self) -&gt; <a class='enum' href='../../style/properties/longhands/position/computed_value/enum.T.html' title='style::properties::longhands::position::computed_value::T'>T</a></code></h4> <h4 id='method.is_fixed' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.is_fixed' class='fnname'>is_fixed</a>(&amp;self) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> <h4 id='method.contains_positioned_fragments' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.contains_positioned_fragments' class='fnname'>contains_positioned_fragments</a>(&amp;self) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> <h4 id='method.contains_relatively_positioned_fragments' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.contains_relatively_positioned_fragments' class='fnname'>contains_relatively_positioned_fragments</a>(&amp;self) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> <h4 id='method.is_absolute_containing_block' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.is_absolute_containing_block' class='fnname'>is_absolute_containing_block</a>(&amp;self) -&gt; <a href='../../std/primitive.bool.html'>bool</a></code></h4> <h4 id='method.layer_id' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.layer_id' class='fnname'>layer_id</a>(&amp;self) -&gt; <a class='struct' href='../../msg/compositor_msg/struct.LayerId.html' title='msg::compositor_msg::LayerId'>LayerId</a></code></h4> <h4 id='method.layer_id_for_overflow_scroll' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.layer_id_for_overflow_scroll' class='fnname'>layer_id_for_overflow_scroll</a>(&amp;self) -&gt; <a class='struct' href='../../msg/compositor_msg/struct.LayerId.html' title='msg::compositor_msg::LayerId'>LayerId</a></code></h4> <h4 id='method.remove_compositor_layers' class='method'><code>fn <a href='../../layout/flow/trait.Flow.html#method.remove_compositor_layers' class='fnname'>remove_compositor_layers</a>(&amp;self, _: <a class='struct' href='../../msg/constellation_msg/struct.ConstellationChan.html' title='msg::constellation_msg::ConstellationChan'>ConstellationChan</a>)</code></h4> </div><h3 class='impl'><code>impl <a class='trait' href='../../core/fmt/trait.Debug.html' title='core::fmt::Debug'>Debug</a> for <a class='struct' href='../../layout/table_wrapper/struct.TableWrapperFlow.html' title='layout::table_wrapper::TableWrapperFlow'>TableWrapperFlow</a></code></h3><div class='impl-items'><h4 id='method.fmt' class='method'><code>fn <a href='../../core/fmt/trait.Debug.html#method.fmt' class='fnname'>fmt</a>(&amp;self, f: &amp;mut <a class='struct' href='../../core/fmt/struct.Formatter.html' title='core::fmt::Formatter'>Formatter</a>) -&gt; <a class='type' href='../../core/fmt/type.Result.html' title='core::fmt::Result'>Result</a></code></h4> </div><h3 id='derived_implementations'>Derived Implementations </h3><h3 class='impl'><code>impl <a class='trait' href='../../rustc_serialize/serialize/trait.Encodable.html' title='rustc_serialize::serialize::Encodable'>Encodable</a> for <a class='struct' href='../../layout/table_wrapper/struct.TableWrapperFlow.html' title='layout::table_wrapper::TableWrapperFlow'>TableWrapperFlow</a></code></h3><div class='impl-items'><h4 id='method.encode' class='method'><code>fn <a href='../../rustc_serialize/serialize/trait.Encodable.html#method.encode' class='fnname'>encode</a>&lt;__S: <a class='trait' href='../../rustc_serialize/serialize/trait.Encoder.html' title='rustc_serialize::serialize::Encoder'>Encoder</a>&gt;(&amp;self, __arg_0: &amp;mut __S) -&gt; <a class='enum' href='../../core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;<a href='../../std/primitive.tuple.html'>()</a>, __S::Error&gt;</code></h4> </div></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "layout"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
18_03/legatoServicesSecStoreMain.html
legatoproject/legato-docs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html data-context="Build Apps" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> <title>Secure Storage - Legato Docs</title> <meta content="legato™ is an open source Linux-based embedded platform designed to simplify connected IoT application development" name="description"/> <meta content="legato, iot" name="keywords"/> <meta content="18.03.0" name="legato-version"/> <meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/> <link href="resources/images/legato.ico" rel="shortcut icon"/> <link href="resources/images/legato.ico" rel="icon" type="image/x-icon"/> <link href="resources/images/legato.ico" rel="shortcut icon" type="image/x-icon"/> <link href="resources/images/legato.ico" rel="apple-touch-icon" type="image/x-icon"/> <link href="resources/css/style.css" media="screen" rel="stylesheet" type="text/css"/> <link href="resources/css/font-awesome.css" rel="stylesheet" type="text/css"/> <!--[if IE]> <script src="resources/js/html5shiv.js"></script> <script src="resources/js/respond.js"></script> <![endif]--> <script src="https://code.jquery.com/jquery-2.2.3.min.js"></script> <script src="resources/js/main.js"></script> <script src="tocs/Build_Apps_API_Guides.json"></script> </head> <body> <noscript> <input class="modal-closing-trick" id="modal-closing-trick" type="checkbox"/> <div id="nojs"> <label for="modal-closing-trick"> <span>You seem to not have Javascript <a href="http://enable-javascript.com">enabled</a>, so site functionality like the search and navigation tree won't work.</span> </label> </div> </noscript> <div class="wrapper"> <div class="fa fa-bars documentation" id="menu-trigger"></div> <div id="top"> <header> <nav> <a class="navlink" href="/">Introduction</a><a class="navlink selected" href="buildAppsMain.html">Build Apps</a><a class="navlink" href="buildPlatformMain.html">Build Platform</a><a class="navlink" href="aboutMain.html">About</a> </nav> </header> </div> <div class="white" id="menudocumentation"> <header> <a href="/"> <img alt="Back to Legato Homepage" id="logo" src="resources/images/legato_logo.png"/></a> <h2>/ Build Apps</h2> <nav class="secondary"> <a href="getStarted.html">Get Started</a><a href="buildAppsConcepts.html">Concepts</a><a class="link-selected" href="apiGuidesMain.html">API Guides</a><a href="tools.html">Tools</a> </nav> <nav class="ui-front"> <i class="fa fa-search" id="search-icon"></i> <input id="searchbox" placeholder="Search"/> </nav> </header> </div> <div id="resizable"> <div id="left"> <div id="tree1"></div> </div> </div> <div class="content"> <div class="header"> <div class="headertitle"> <h1 class="title">Secure Storage </h1> </div> </div><div class="contents"> <div class="textblock"><table class="doxtable"> <tr> <th>Service </th><th>Description </th><th align="center">multi-app safe </th></tr> <tr> <td><a class="el" href="c_secStore.html">Secure Storage</a> </td><td>secure storage access </td><td align="center">x </td></tr> <tr> <td><a class="el" href="c_secStoreAdmin.html">Secure Storage Admin</a> </td><td>secure storage admin control </td><td align="center">x </td></tr> </table> <p><br/> </p> <hr/> <p class="copyright">Copyright (C) Sierra Wireless Inc. </p> </div></div> <br clear="left"/> </div> </div> <link href="resources/css/jqtree.css" rel="stylesheet" type="text/css"/> <script src="resources/js/tree.jquery.js" type="text/javascript"></script> <script src="resources/js/jquery.cookie.js"></script> <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script> <link href="resources/css/perfect-scrollbar.min.css" rel="stylesheet"/> <script src="resources/js/perfect-scrollbar.jquery.min.js"></script> </body> </html>
src/templates/docs/privacy/en-US.html
mozilla-b2g/marketplace-tv-front-end
<h3>Privacy Notice Summary</h3> <ul> <li>This notice is a summary of our privacy practices. To learn more about the information we collect from users and how we handle that information please read our <a href="https://www.mozilla.org/en-US/privacy/websites/" target="_blank">Mozilla Website Privacy Notice</a> and <a href="https://www.mozilla.org/en-US/about/legal/terms/mozilla/" target="_blank">Terms of Use</a>.</li> <li>Unless indicated otherwise, the Web Apps on the Web Apps Discovery Portal are not made by us and you should check their privacy policies before using them.</li> <li>The Web Apps Discovery Portal uses cookies and other web technologies to help us understand how users use the service through aggregate analytics.</li> <li>For more information on how to report claims of copyright or trademark infringement, please see: https://www.mozilla.org/about/legal/report-infringement/.</li> </ul>
libc/consts/os/sysconf/constant._SC_2_UPE.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `_SC_2_UPE` constant in crate `libc`."> <meta name="keywords" content="rust, rustlang, rust-lang, _SC_2_UPE"> <title>libc::consts::os::sysconf::_SC_2_UPE - Rust</title> <link rel="stylesheet" type="text/css" href="../../../../main.css"> <link rel="shortcut icon" href="https://doc.rust-lang.org/favicon.ico"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <a href='../../../../libc/index.html'><img src='http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png' alt='' width='100'></a> <p class='location'><a href='../../../index.html'>libc</a>::<wbr><a href='../../index.html'>consts</a>::<wbr><a href='../index.html'>os</a>::<wbr><a href='index.html'>sysconf</a></p><script>window.sidebarCurrent = {name: '_SC_2_UPE', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../../../index.html'>libc</a>::<wbr><a href='../../index.html'>consts</a>::<wbr><a href='../index.html'>os</a>::<wbr><a href='index.html'>sysconf</a>::<wbr><a class='constant' href=''>_SC_2_UPE</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-2941' class='srclink' href='../../../../src/libc/lib.rs.html#3792' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const _SC_2_UPE: <a class='type' href='../../../../libc/types/os/arch/c95/type.c_int.html' title='libc::types::os::arch::c95::c_int'>c_int</a><code> = </code><code>97</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../../../"; window.currentCrate = "libc"; window.playgroundUrl = "http://play.rust-lang.org/"; </script> <script src="../../../../jquery.js"></script> <script src="../../../../main.js"></script> <script src="../../../../playpen.js"></script> <script async src="../../../../search-index.js"></script> </body> </html>
19_02/basicTargetModem.html
legatoproject/legato-docs
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html data-context="Build Platform" xmlns="http://www.w3.org/1999/xhtml"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> <title>Configure Cell Modems - Legato Docs</title> <meta content="legato™ is an open source Linux-based embedded platform designed to simplify connected IoT application development" name="description"/> <meta content="legato, iot" name="keywords"/> <meta content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport"/> <meta content="19.02.0" name="legato-version"/> <link href="resources/images/legato.ico" rel="shortcut icon"/> <link href="resources/images/legato.ico" rel="icon" type="image/x-icon"/> <link href="resources/images/legato.ico" rel="shortcut icon" type="image/x-icon"/> <link href="resources/images/legato.ico" rel="apple-touch-icon" type="image/x-icon"/> <link href="resources/css/style.css" media="screen" rel="stylesheet" type="text/css"/> <link href="resources/css/font-awesome.css" rel="stylesheet" type="text/css"/> <!--[if IE]> <script src="resources/js/html5shiv.js"></script> <script src="resources/js/respond.js"></script> <![endif]--> <script src="https://code.jquery.com/jquery-2.2.3.min.js"></script> <script src="resources/js/main.js"></script> <script src="tocs/Build_Platform_Configure_SWI_Target.json"></script> </head> <body> <noscript> <input class="modal-closing-trick" id="modal-closing-trick" type="checkbox"/> <div id="nojs"> <label for="modal-closing-trick"> <span>You seem to not have Javascript <a href="http://enable-javascript.com">enabled</a>, so site functionality like the search and navigation tree won't work.</span> </label> </div> </noscript> <div class="wrapper"> <div class="fa fa-bars documentation" id="menu-trigger"></div> <div id="top"> <header> <nav> <a class="navlink" href="/">Introduction</a><a class="navlink" href="buildAppsMain.html">Build Apps</a><a class="navlink selected" href="buildPlatformMain.html">Build Platform</a><a class="navlink" href="aboutMain.html">About</a> </nav> </header> </div> <div class="white" id="menudocumentation"> <header> <a href="/"> <img alt="Back to Legato Homepage" id="logo" src="resources/images/legato_logo.png"/></a> <h2>/ Build Platform</h2> <nav class="secondary"> <a href="platformConstraints.html">Platform Constraints</a><a class="link-selected" href="basicTarget.html">Configure SWI Target</a><a href="raspbianMain.html">Configure Raspberry Pi</a> </nav> <nav class="ui-front"> <i class="fa fa-search" id="search-icon"></i> <input id="searchbox" placeholder="Search"/> </nav> </header> </div> <div id="resizable"> <div id="left"> <div id="tree1"></div> </div> </div> <div class="content"> <div class="header"> <div class="headertitle"> <h1 class="title">Configure Cell Modems </h1> </div> </div><div class="contents"> <div class="textblock"><p>To connect your Target to a Cell Network you must have an active sim card inserted into the target.</p> <p>All commands to configure the target are done with the <a class="el" href="toolsTarget_cm.html">cm</a> tool.</p> <h1><a class="anchor" id="targetModemConf"></a> Configure Cell Connection</h1> <p>Run <code>cm</code> <code>info</code> to display the info about the sim including the FSN (serial number) and IMEI.</p> <pre class="fragment"># cm info Device: WP8548 IMEI: 123456789101112 FSN: 123456789 Firmware: SWI9X15Y_07.11.18.00 r33561 CARMD-EV-FRMWR1 2016/11/18 10:03:20 Bootloader: SWI9X15Y_07.11.18.00 r33561 CARMD-EV-FRMWR1 2016/11/18 10:03:20 priIdPn: XXXXXXX priIdRev: 0X.XX skuId: XXXXXXX </pre><p>Next, run <code>cm</code> <code>radio</code> to display info about the mobile network that the SIM is registered on.</p> <pre class="fragment"># cm radio Power: ON Current Network Operator: &lt;your network operator&gt; Status: UMTS network (LE_MRC_RAT_UMTS) Signal: Strong signal strength (4) </pre><p>You will need to manually set the APN for your SIM card. Contact your Mobile carrier to find the APN settings that you will need.</p> <p>Run <code>cm</code> <code>data</code> to display the current connection data and APN settings (APN should be blank).</p> <pre class="fragment"># cm data Index: 1 APN: PDP Type: IPV4 Connected: no Auth type: CHAP User name: </pre><p>To update the APN run:</p> <pre class="fragment"># cm data apn &lt;your apn&gt; # cm data # displays the settings for verification </pre><dl class="section note"><dt>Note</dt><dd>If your Mobile Carrier supports different APN's for 3G and LTE make sure your settings correspond to the correct network. For example, the WP8548 module only supports 3G and the APN for the 3G network needs to be used.</dd></dl> <h1><a class="anchor" id="targetModemConnect"></a> Connect to a Mobile Network</h1> <p>Run <code>cm</code> <code>data</code> <code>connect</code> &amp;</p> <dl class="section note"><dt>Note</dt><dd>It may take a few minutes to connect; '&amp;' will run the process in the background.</dd></dl> <p>Once the device is connected the target will display: </p><pre class="fragment">Connected through interface 'rmnet0' </pre><h1><a class="anchor" id="targetModemDisconnect"></a> Disconnect to a Mobile Network</h1> <p>To disconnect, terminate the <code>cm</code> <code>data</code> <code>connect</code> background process by sending it a <code>SIGTERM</code> or <code>SIGINT</code> signal. This can be done using <code>kill</code> (SIGTERM) or by bringing the process back to the foreground and hitting <code>CTRL-C</code> (SIGINT).</p> <pre class="fragment"># kill %1 # [1]+ Terminated cm data connect # </pre><p>OR</p> <pre class="fragment"># fg cm data connect ^C # </pre><p class="copyright">Copyright (C) Sierra Wireless Inc. </p> </div></div> <br clear="left"/> </div> </div> <link href="resources/css/jqtree.css" rel="stylesheet" type="text/css"/> <script src="resources/js/tree.jquery.js" type="text/javascript"></script> <script src="resources/js/jquery.cookie.js"></script> <script src="https://code.jquery.com/ui/1.11.4/jquery-ui.min.js"></script> <link href="resources/css/perfect-scrollbar.min.css" rel="stylesheet"/> <script src="resources/js/perfect-scrollbar.jquery.min.js"></script> </body> </html>
x11/keysym/constant.XK_Greek_RHO.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `XK_Greek_RHO` constant in crate `x11`."> <meta name="keywords" content="rust, rustlang, rust-lang, XK_Greek_RHO"> <title>x11::keysym::XK_Greek_RHO - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>keysym</a></p><script>window.sidebarCurrent = {name: 'XK_Greek_RHO', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>keysym</a>::<wbr><a class='constant' href=''>XK_Greek_RHO</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-984' class='srclink' href='../../src/x11/keysym.rs.html#750' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const XK_Greek_RHO: <a class='type' href='../../std/os/raw/type.c_uint.html' title='std::os::raw::c_uint'>c_uint</a><code> = </code><code>2001</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "x11"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
servo/gl/GetTexGeniv/fn.is_loaded.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `is_loaded` fn in crate `servo`."> <meta name="keywords" content="rust, rustlang, rust-lang, is_loaded"> <title>servo::gl::GetTexGeniv::is_loaded - Rust</title> <link rel="stylesheet" type="text/css" href="../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../../index.html'>servo</a>::<wbr><a href='../index.html'>gl</a>::<wbr><a href='index.html'>GetTexGeniv</a></p><script>window.sidebarCurrent = {name: 'is_loaded', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'>Function <a href='../../index.html'>servo</a>::<wbr><a href='../index.html'>gl</a>::<wbr><a href='index.html'>GetTexGeniv</a>::<wbr><a class='fn' href=''>is_loaded</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-38971' class='srclink' href='../../../export/gleam/ffi/GetTexGeniv/fn.is_loaded.html?gotosrc=38971' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub fn is_loaded() -&gt; <a href='../../../std/primitive.bool.html'>bool</a></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../../"; window.currentCrate = "servo"; window.playgroundUrl = ""; </script> <script src="../../../jquery.js"></script> <script src="../../../main.js"></script> <script async src="../../../search-index.js"></script> </body> </html>
gleam/gl/GetQueryObjectuiv/fn.load_with.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `load_with` fn in crate `gleam`."> <meta name="keywords" content="rust, rustlang, rust-lang, load_with"> <title>gleam::gl::GetQueryObjectuiv::load_with - Rust</title> <link rel="stylesheet" type="text/css" href="../../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <p class='location'><a href='../../index.html'>gleam</a>::<wbr><a href='../index.html'>gl</a>::<wbr><a href='index.html'>GetQueryObjectuiv</a></p><script>window.sidebarCurrent = {name: 'load_with', ty: 'fn', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content fn"> <h1 class='fqn'><span class='in-band'>Function <a href='../../index.html'>gleam</a>::<wbr><a href='../index.html'>gl</a>::<wbr><a href='index.html'>GetQueryObjectuiv</a>::<wbr><a class='fn' href=''>load_with</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-4804' class='srclink' href='../../../src/gleam/home/servo/buildbot/slave/doc/build/target/debug/build/gleam-8cc6d4d4d5b87928/out/gl_bindings.rs.html#4193-4197' title='goto source code'>[src]</a></span></h1> <pre class='rust fn'>pub fn load_with&lt;F&gt;(loadfn: F) <span class='where'>where F: <a class='trait' href='../../../core/ops/trait.FnMut.html' title='core::ops::FnMut'>FnMut</a>(&amp;<a class='primitive' href='../../../std/primitive.str.html'>str</a>) -&gt; <a class='primitive' href='../../../std/primitive.pointer.html'>*const </a><a class='enum' href='../../../gleam/ffi/__gl_imports/raw/enum.c_void.html' title='gleam::ffi::__gl_imports::raw::c_void'>c_void</a></span></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../../"; window.currentCrate = "gleam"; window.playgroundUrl = ""; </script> <script src="../../../jquery.js"></script> <script src="../../../main.js"></script> <script defer src="../../../search-index.js"></script> </body> </html>
x11/keysym/constant.XK_kana_NU.html
susaing/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `XK_kana_NU` constant in crate `x11`."> <meta name="keywords" content="rust, rustlang, rust-lang, XK_kana_NU"> <title>x11::keysym::XK_kana_NU - Rust</title> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <section class="sidebar"> <p class='location'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>keysym</a></p><script>window.sidebarCurrent = {name: 'XK_kana_NU', ty: 'constant', relpath: ''};</script><script defer src="sidebar-items.js"></script> </section> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content constant"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>x11</a>::<wbr><a href='index.html'>keysym</a>::<wbr><a class='constant' href=''>XK_kana_NU</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-2455' class='srclink' href='../../src/x11/keysym.rs.html#527' title='goto source code'>[src]</a></span></h1> <pre class='rust const'>pub const XK_kana_NU: <a class='type' href='../../libc/types/os/arch/c95/type.c_uint.html' title='libc::types::os::arch::c95::c_uint'>c_uint</a><code> = </code><code>0x4c7</code></pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <div id="help" class="hidden"> <div> <div class="shortcuts"> <h1>Keyboard Shortcuts</h1> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> </dl> </div> <div class="infos"> <h1>Search Tricks</h1> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code>) </p> </div> </div> </div> <script> window.rootPath = "../../"; window.currentCrate = "x11"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script async src="../../search-index.js"></script> </body> </html>
tests/wpt/web-platform-tests/referrer-policy/gen/iframe.http-rp/origin/xhr/same-https.keep-origin.http.html
UK992/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by `common/security-features/tools/generate.py --spec referrer-policy/` --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'origin'</title> <meta charset='utf-8'> <meta name="description" content="Check that all subresources in all casses get only the origin portion of the referrer URL."> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-origin"> <meta name="assert" content="Referrer Policy: Expects origin for xhr to same-https origin and keep-origin redirection from http context."> <meta name="referrer" content="no-referrer"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/security-features/resources/common.sub.js"></script> <script src="../../../../generic/test-case.sub.js"></script> </head> <body> <script> TestCase( { "expectation": "origin", "origin": "same-https", "redirection": "keep-origin", "source_context_list": [ { "policyDeliveries": [ { "deliveryType": "http-rp", "key": "referrerPolicy", "value": "origin" } ], "sourceContextType": "iframe" } ], "source_scheme": "http", "subresource": "xhr", "subresource_policy_deliveries": [] }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
web-ext/options.html
csadilek/crec
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <style> .options { margin-top: 1px; margin-bottom: 5px; line-height: 20px; text-shadow: 0 1px 1px #fefffe; color: #333; font: message-box; font-size: 14px; } button { font: message-box; font-size: 14px; min-height: 30px; min-width: 79px; } input { min-width: 300px; font-size: 14px; float: right; } </style> </head> <body> <form class="options"> <label>Content recommendation endpoint <input type="text" id="crec-endpoint" > </label> <br> <br> <label>What are you interested in? <input type="text" id="crec-tokens" > </label> <br> <br> <button type="submit">Save</button> </form> <script src="options.js"></script> </body> </html>
bincode/rustc_serialize/type.DecodingResult.html
servo/doc.servo.org
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="generator" content="rustdoc"> <meta name="description" content="API documentation for the Rust `DecodingResult` type in crate `bincode`."> <meta name="keywords" content="rust, rustlang, rust-lang, DecodingResult"> <title>bincode::rustc_serialize::DecodingResult - Rust</title> <link rel="stylesheet" type="text/css" href="../../rustdoc.css"> <link rel="stylesheet" type="text/css" href="../../main.css"> </head> <body class="rustdoc"> <!--[if lte IE 8]> <div class="warning"> This old browser is unsupported and will most likely display funky things. </div> <![endif]--> <nav class="sidebar"> <a href='../../bincode/index.html'><img src='./icon.png' alt='logo' width='100'></a> <p class='location'><a href='../index.html'>bincode</a>::<wbr><a href='index.html'>rustc_serialize</a></p><script>window.sidebarCurrent = {name: 'DecodingResult', ty: 'type', relpath: ''};</script><script defer src="sidebar-items.js"></script> </nav> <nav class="sub"> <form class="search-form js-only"> <div class="search-container"> <input class="search-input" name="search" autocomplete="off" placeholder="Click or press ‘S’ to search, ‘?’ for more options…" type="search"> </div> </form> </nav> <section id='main' class="content type"> <h1 class='fqn'><span class='in-band'><a href='../index.html'>bincode</a>::<wbr><a href='index.html'>rustc_serialize</a>::<wbr><a class='type' href=''>DecodingResult</a></span><span class='out-of-band'><span id='render-detail'> <a id="toggle-all-docs" href="javascript:void(0)" title="collapse all docs"> [<span class='inner'>&#x2212;</span>] </a> </span><a id='src-701' class='srclink' href='../../src/bincode/rustc_serialize/reader.rs.html#61' title='goto source code'>[src]</a></span></h1> <pre class='rust typedef'>type DecodingResult&lt;T&gt; = <a class='enum' href='../../core/result/enum.Result.html' title='core::result::Result'>Result</a>&lt;T,&nbsp;<a class='enum' href='../../bincode/rustc_serialize/enum.DecodingError.html' title='bincode::rustc_serialize::DecodingError'>DecodingError</a>&gt;;</pre></section> <section id='search' class="content hidden"></section> <section class="footer"></section> <aside id="help" class="hidden"> <div> <h1 class="hidden">Help</h1> <div class="shortcuts"> <h2>Keyboard Shortcuts</h2> <dl> <dt>?</dt> <dd>Show this help dialog</dd> <dt>S</dt> <dd>Focus the search field</dd> <dt>&larrb;</dt> <dd>Move up in search results</dd> <dt>&rarrb;</dt> <dd>Move down in search results</dd> <dt>&#9166;</dt> <dd>Go to active search result</dd> <dt>+</dt> <dd>Collapse/expand all sections</dd> </dl> </div> <div class="infos"> <h2>Search Tricks</h2> <p> Prefix searches with a type followed by a colon (e.g. <code>fn:</code>) to restrict the search to a given type. </p> <p> Accepted types are: <code>fn</code>, <code>mod</code>, <code>struct</code>, <code>enum</code>, <code>trait</code>, <code>type</code>, <code>macro</code>, and <code>const</code>. </p> <p> Search functions by type signature (e.g. <code>vec -> usize</code> or <code>* -> vec</code>) </p> </div> </div> </aside> <script> window.rootPath = "../../"; window.currentCrate = "bincode"; window.playgroundUrl = ""; </script> <script src="../../jquery.js"></script> <script src="../../main.js"></script> <script defer src="../../search-index.js"></script> </body> </html>
rules/rgaa3-2016/src/test/resources/testcases/rgaa32016/Rgaa32016Rule010309/Rgaa32016.Test.01.03.09-4NA-05.html
Tanaguru/Tanaguru
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>Rgaa32016 Test.1.3.7 NA 05</title> </head> <body> <div> <h1>Rgaa32016 Test.1.3.6 NA 05</h1> <div class="test-detail" lang="fr"> Pour chaque image vectorielle porteuse d&apos;information (balise <code>svg</code>) et possédant une alternative, cette alternative est-elle <a href="http://references.modernisation.gouv.fr/sites/default/files/RGAA3_RC2-1/glossaire.htm#mRestitutionCorrecte">correctement restituée</a> par les technologies d&apos;assistance ? </div> <div class="testcase"> <svg id="id-informative-image" viewBox="0 0 220 50" xmlns="http://www.w3.org/2000/svg" role="img"> <rect x="5" y="5" rx="10" width="210" height="40" fill="none" stroke="grey" stroke-width="2" /> </svg> </div> <p class="test-explanation"> NMI : One svg is found on the page and is not identified by marker. </p> </div> </body> </html>
static/blog/css/style-n3.css
gdude2002/markdown-cms
/* Telephasic 1.1 by HTML5 UP html5up.net | @n33co Free for personal and commercial use under the CCA 3.0 license (html5up.net/license) */ /*********************************************************************************/ /* Basic */ /*********************************************************************************/ header { } header br { display: none; } /* Buttons */ .button { padding-left: 1.25em; padding-right: 1.25em; } /*********************************************************************************/ /* Wrappers */ /*********************************************************************************/ .wrapper { padding: 4em 2em 4em 2em; } #header-wrapper { padding: 7.5em 0 1em 0; } .homepage #header-wrapper { padding: 5em 0 4em 0; } #promo-wrapper { padding: 2em; } #footer-wrapper { padding: 4em 2em 4em 2em; } /*********************************************************************************/ /* Header */ /*********************************************************************************/ #nav { position: relative; margin: 0.5em 0 0 0; line-height: 2.25em; height: 5.50em; } #nav > ul { } #nav > ul > li, #nav > ul > li.break { margin-left: 0; } .dropotron.level-0 { margin-top: 1.1em; } /*********************************************************************************/ /* Hero */ /*********************************************************************************/ #hero { padding: 3.5em 4em 0 4em; } #hero h2 { font-size: 2.75em; } #hero p { } #hero p br { display: none; } /*********************************************************************************/ /* Promo */ /*********************************************************************************/ #promo { padding: 1.75em 2.5em 1.75em 2.5em; display: inline-block; } #promo .button { font-size: 1.25em; } #promo h2 { display: block; margin: 0 0 1em 0; font-size: 1.5em; } /*********************************************************************************/ /* Copyright */ /*********************************************************************************/ #copyright { padding-top: 2em; margin-top: 3em; }
report/html/com/rapidminer/operator/learner/functions/neuralnet/ImprovedNeuralNetLearner.html
cm-is-dog/rapidminer-studio-core
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../../../style.css'); @import url('../../../../../../tree.css'); </style> <script src="../../../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../../../clover.js" type="text/javascript"></script> <script src="../../../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../../../cloud.js" type="text/javascript"></script> <title>rapidminer-studio-core 转换结果 </title> </head> <body onload="onLoad('rapidminer-studio-core 转换结果 : com.rapidminer.operator.learner.functions.neuralnet.ImprovedNeuralNetLearner.java')"> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://www.atlassian.com/clover" title="Open Atlassian Clover home page"><span class="aui-header-logo-device">Clover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online Clover documentation" target="_blank" href="https://confluence.atlassian.com/display/CLOVER/Clover+Documentation+Home"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </div> <div class="aui-page-header-main" > <h1> rapidminer-studio-core 转换结果 </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../../" data-package-name="com.rapidminer.operator.learner.functions.neuralnet"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../../dashboard.html">Project Clover database 星期二 九月 5 2017 16:40:29 CST</a></li> <li><a href="pkg-summary.html"> Package com.rapidminer.operator.learner.functions.neuralnet</a></li> </ol> <h1 class="aui-h2-clover"> File ImprovedNeuralNetLearner.java </h1> <div class="aui-message aui-message-warning"> <p class="title"> <strong>Evaluation License</strong> </p> <p> This report was generated with an evaluation server license. <a href="http://www.atlassian.com/software/clover">Purchase Clover</a> or <a href="http://confluence.atlassian.com/x/JAgQCQ">configure your license.</a> </p> </div> <div class="aui-tabs horizontal-tabs" id="tabs-file"> <div class="tabs-pane aui-tabs-pane-100-pcnt active-pane" id="tabs-file-source"> <div>&#160;</div> <div style="display: table; width: 100%"> <div style="display: table-cell; "> <div class="dashboard-widget"> <header class="dashboard-widget-header"> <h3>Code metrics</h3> </header> <div class="dashboard-widget-content"> <div id="td-header-stats" class="aui-item" style="display: "> <div style="display: table"> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div> <div class="stats-box-value">210</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div> <div class="stats-box-value">106</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"> <label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label> </div> <div class="stats-box-value">-</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div> <div class="stats-box-value">-</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div> <div class="stats-box-value">-</div> </div> </div> <div class="subtle"> <small><strong>100%</strong> of code in this file is excluded from these metrics.</small> <label class="aui-button aui-button-subtle" onclick="toggleStats('td-header-stats', 'td-filtered-header-stats');" title="Include or exclude filtered elements from these statistics.">Remove Filter</label> </div> </div> <div id="td-filtered-header-stats" class="aui-item" style="display: none"> <div style="display: table"> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div> <div class="stats-box-value">41</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div> <div class="stats-box-value">5</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div> <div class="stats-box-value">210</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div> <div class="stats-box-value">106</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div> <div class="stats-box-value">10</div> </div> <div class="stats-box"> <div class="stats-box-label"> <label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label> </div> <div class="stats-box-value">0.24</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div> <div class="stats-box-value">8.2</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div> <div class="stats-box-value">5</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div> <div class="stats-box-value">2</div> </div> </div> <div class="subtle"> <small>These metrics include <strong class='bold'>100%</strong> of code marked as filtered.</small> <label class="aui-button aui-button-subtle" onclick="toggleStats('td-filtered-header-stats', 'td-header-stats');" title="Include or exclude filtered elements from these statistics.">Apply Filter</label> </div> </div> </div> </div> </div> </div> <h2>Classes</h2> <table class="aui aui-table-sortable"> <thead> <tr> <th>Class</th> <th>Line #</th> <th class=""> <label title="The total number of statements.">Total Statements</label> </th> <th class=""> <label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label> </th> <th class=""> <label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label> </th> <th>Actions</th> </tr> </thead> <tbody> <tr> <td id="ImprovedNeuralNetLearner"> <span><a href="#69" title="ImprovedNeuralNetLearner" onclick="closeDialogAndScrollTo('dialog-ImprovedNeuralNetLearner', '69');">ImprovedNeuralNetLearner</a></span> </td> <td>69<a name="sl-69"></a></td> <td class="">0</td> <td class="">0</td> <td class=""><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> <td><button data-dialog-id="dialog-ImprovedNeuralNetLearner" class="aui-button aui-button-link dialog-show-button">Show methods</button></td> </tr> </tbody> </table> <section role="dialog" id="dialog-ImprovedNeuralNetLearner" class="aui-layer aui-dialog2 aui-dialog2-xlarge" aria-hidden="true"> <header class="aui-dialog2-header"> <h1 class="aui-dialog2-header-main">Class ImprovedNeuralNetLearner</h1> <div class="aui-dialog2-header-secondary"> <input id="dialog-ImprovedNeuralNetLearner-method-filter" class="test-filter text" type="text" name="method-filter" placeholder="Type to filter methods..." autocomplete="off" onkeyup="filterMethods('dialog-ImprovedNeuralNetLearner-methods-body', 'dialog-ImprovedNeuralNetLearner-method-filter');"/> </div> </header> <div class="aui-dialog2-content"> <table class="aui aui-table-sortable"> <thead> <tr> <th id="ImprovedNeuralNetLearner"> Class<br/> <span><a href="#69" title="ImprovedNeuralNetLearner" onclick="closeDialogAndScrollTo('dialog-ImprovedNeuralNetLearner', '69');">ImprovedNeuralNetLearner</a></span> </th> <th>Line #<br/>69<a name="sl-69"></a></th> <th class=""><label title="The total number of statements.">Total Statements</label><br/>0</th> <th class=""><label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label><br/>0</th> <th class=""><label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label><br/><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></th> </tr> </thead> <tbody id="dialog-ImprovedNeuralNetLearner-methods-body"> <tr id="ImprovedNeuralNetLearner-1"> <td id="summary-110-2"> <span class="sortValue">ImprovedNeuralNetLearner(OperatorDescription)</span> &#160;&#160;<a href="?line=29#110" title="ImprovedNeuralNetLearner(OperatorDescription)" name="sl-110" onclick="closeDialogAndScrollTo('dialog-ImprovedNeuralNetLearner', '110');">ImprovedNeuralNetLearner(OperatorDescription)</a> </td> <td align="right"><span class="sortValue">110</span>110</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="ImprovedNeuralNetLearner-2"> <td id="summary-114-2"> <span class="sortValue">learn(ExampleSet)&#160;:&#160;Model</span> &#160;&#160;<a href="?line=29#114" title="learn(ExampleSet)&#160;:&#160;Model" name="sl-114" onclick="closeDialogAndScrollTo('dialog-ImprovedNeuralNetLearner', '114');">learn(ExampleSet)&#160;:&#160;Model</a> </td> <td align="right"><span class="sortValue">114</span>114</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="ImprovedNeuralNetLearner-3"> <td id="summary-135-2"> <span class="sortValue">getModelClass()&#160;:&#160;Class&lt;?&#160;extends&#160;PredictionModel&gt;</span> &#160;&#160;<a href="?line=29#135" title="getModelClass()&#160;:&#160;Class&lt;?&#160;extends&#160;PredictionModel&gt;" name="sl-135" onclick="closeDialogAndScrollTo('dialog-ImprovedNeuralNetLearner', '135');">getModelClass()&#160;:&#160;Class&lt;?&#160;extends&#160;PredictionModel&gt;</a> </td> <td align="right"><span class="sortValue">135</span>135</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="ImprovedNeuralNetLearner-4"> <td id="summary-143-2"> <span class="sortValue">supportsCapability(OperatorCapability)&#160;:&#160;boolean</span> &#160;&#160;<a href="?line=29#143" title="supportsCapability(OperatorCapability)&#160;:&#160;boolean" name="sl-143" onclick="closeDialogAndScrollTo('dialog-ImprovedNeuralNetLearner', '143');">supportsCapability(OperatorCapability)&#160;:&#160;boolean</a> </td> <td align="right"><span class="sortValue">143</span>143</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="ImprovedNeuralNetLearner-5"> <td id="summary-158-2"> <span class="sortValue">getParameterTypes()&#160;:&#160;List&lt;ParameterType&gt;</span> &#160;&#160;<a href="?line=29#158" title="getParameterTypes()&#160;:&#160;List&lt;ParameterType&gt;" name="sl-158" onclick="closeDialogAndScrollTo('dialog-ImprovedNeuralNetLearner', '158');">getParameterTypes()&#160;:&#160;List&lt;ParameterType&gt;</a> </td> <td align="right"><span class="sortValue">158</span>158</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> </tbody> </table> <div>&#160;</div> </div> <footer class="aui-dialog2-footer"> <div class="aui-dialog2-footer-actions"> <button class="aui-button aui-button-primary dialog-close-button" data-dialog-id="dialog-ImprovedNeuralNetLearner">Close</button> </div> <div class="aui-dialog2-footer-hint">Click on a class or a method name to jump to source.</div> </footer> </section> <div>&#160;</div> <h2>Contributing tests</h2> <div class="aui-message"> <p>No tests hitting this source file were found.</p> </div> <h2>Source view</h2> <div style="display: table; width: 100%;"> <div style="display: table-cell"> <button class="aui-button aui-button-link" title="Toggles all methods in the source to be either expanded or collapsed." onclick="toggleAllInlineMethods(this); return false;" id="method-expander"> Collapse all methods </button> </div> <div style="display: table-cell"> <div style="text-align: right; margin-bottom: 10px"> <button class="aui-button aui-button-subtle" id="popupHelp"> <span class="aui-icon aui-icon-small aui-iconfont-help"></span>&#160;Show legend </button> <script> AJS.InlineDialog(AJS.$("#popupHelp"), "helpDialog", function(content, trigger, showPopup) { content.css({"padding":"20px"}).html(SRC_FILE_LEGEND_TEXT); showPopup(); return false; }, { width: 700, hideDelay: 60000 } ); </script> </div> </div> </div> <table cellspacing="0" cellpadding="0" class="srcView" width="100%"> <tbody> <tr id="l1"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=1#src-1">1</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-1" class="srcLine"><span class="comment">/**</span></span></td> </tr> <tr id="l2"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=2#src-2">2</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-2" class="srcLine"><span class="comment"> * Copyright (C) 2001-2017 by RapidMiner and the contributors</span></span></td> </tr> <tr id="l3"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=3#src-3">3</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-3" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l4"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=4#src-4">4</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-4" class="srcLine"><span class="comment"> * Complete list of developers available at our web site:</span></span></td> </tr> <tr id="l5"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=5#src-5">5</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-5" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l6"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=6#src-6">6</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-6" class="srcLine"><span class="comment"> * http://rapidminer.com</span></span></td> </tr> <tr id="l7"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=7#src-7">7</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-7" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l8"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=8#src-8">8</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-8" class="srcLine"><span class="comment"> * This program is free software: you can redistribute it and/or modify it under the terms of the</span></span></td> </tr> <tr id="l9"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=9#src-9">9</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-9" class="srcLine"><span class="comment"> * GNU Affero General Public License as published by the Free Software Foundation, either version 3</span></span></td> </tr> <tr id="l10"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=10#src-10">10</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-10" class="srcLine"><span class="comment"> * of the License, or (at your option) any later version.</span></span></td> </tr> <tr id="l11"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=11#src-11">11</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-11" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l12"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=12#src-12">12</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-12" class="srcLine"><span class="comment"> * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without</span></span></td> </tr> <tr id="l13"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=13#src-13">13</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-13" class="srcLine"><span class="comment"> * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></span></td> </tr> <tr id="l14"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=14#src-14">14</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-14" class="srcLine"><span class="comment"> * Affero General Public License for more details.</span></span></td> </tr> <tr id="l15"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=15#src-15">15</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-15" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l16"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=16#src-16">16</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-16" class="srcLine"><span class="comment"> * You should have received a copy of the GNU Affero General Public License along with this program.</span></span></td> </tr> <tr id="l17"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=17#src-17">17</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-17" class="srcLine"><span class="comment"> * If not, see http://www.gnu.org/licenses/.</span></span></td> </tr> <tr id="l18"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=18#src-18">18</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-18" class="srcLine"><span class="comment">*/</span></span></td> </tr> <tr id="l19"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=19#src-19">19</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-19" class="srcLine"><span class="keyword">package</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../learner/pkg-summary.html">learner</a>.<a href="../../functions/pkg-summary.html">functions</a>.<a href="../neuralnet/pkg-summary.html">neuralnet</a>;</span></td> </tr> <tr id="l20"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=20#src-20">20</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-20" class="srcLine"></span></td> </tr> <tr id="l21"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=21#src-21">21</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-21" class="srcLine"><span class="keyword">import</span> java.util.List;</span></td> </tr> <tr id="l22"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=22#src-22">22</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-22" class="srcLine"></span></td> </tr> <tr id="l23"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=23#src-23">23</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-23" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../example/pkg-summary.html">example</a>.<a href="../../../../../../com/rapidminer/example/ExampleSet.html#ExampleSet">ExampleSet</a>;</span></td> </tr> <tr id="l24"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=24#src-24">24</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-24" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../example/pkg-summary.html">example</a>.<a href="../../../../../../com/rapidminer/example/Tools.html#Tools">Tools</a>;</span></td> </tr> <tr id="l25"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=25#src-25">25</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-25" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../../../../com/rapidminer/operator/Model.html#Model">Model</a>;</span></td> </tr> <tr id="l26"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=26#src-26">26</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-26" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../../../../com/rapidminer/operator/OperatorCapability.html#OperatorCapability">OperatorCapability</a>;</span></td> </tr> <tr id="l27"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=27#src-27">27</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-27" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../../../../com/rapidminer/operator/OperatorDescription.html#OperatorDescription">OperatorDescription</a>;</span></td> </tr> <tr id="l28"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=28#src-28">28</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-28" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../../../../com/rapidminer/operator/OperatorException.html#OperatorException">OperatorException</a>;</span></td> </tr> <tr id="l29"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=29#src-29">29</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-29" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../learner/pkg-summary.html">learner</a>.<a href="../../../../../../com/rapidminer/operator/learner/AbstractLearner.html#AbstractLearner">AbstractLearner</a>;</span></td> </tr> <tr id="l30"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=30#src-30">30</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-30" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../operator/pkg-summary.html">operator</a>.<a href="../../../learner/pkg-summary.html">learner</a>.<a href="../../../../../../com/rapidminer/operator/learner/PredictionModel.html#PredictionModel">PredictionModel</a>;</span></td> </tr> <tr id="l31"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=31#src-31">31</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-31" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../parameter/pkg-summary.html">parameter</a>.<a href="../../../../../../com/rapidminer/parameter/ParameterType.html#ParameterType">ParameterType</a>;</span></td> </tr> <tr id="l32"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=32#src-32">32</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-32" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../parameter/pkg-summary.html">parameter</a>.<a href="../../../../../../com/rapidminer/parameter/ParameterTypeBoolean.html#ParameterTypeBoolean">ParameterTypeBoolean</a>;</span></td> </tr> <tr id="l33"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=33#src-33">33</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-33" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../parameter/pkg-summary.html">parameter</a>.<a href="../../../../../../com/rapidminer/parameter/ParameterTypeDouble.html#ParameterTypeDouble">ParameterTypeDouble</a>;</span></td> </tr> <tr id="l34"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=34#src-34">34</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-34" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../parameter/pkg-summary.html">parameter</a>.<a href="../../../../../../com/rapidminer/parameter/ParameterTypeInt.html#ParameterTypeInt">ParameterTypeInt</a>;</span></td> </tr> <tr id="l35"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=35#src-35">35</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-35" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../parameter/pkg-summary.html">parameter</a>.<a href="../../../../../../com/rapidminer/parameter/ParameterTypeList.html#ParameterTypeList">ParameterTypeList</a>;</span></td> </tr> <tr id="l36"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=36#src-36">36</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-36" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../parameter/pkg-summary.html">parameter</a>.<a href="../../../../../../com/rapidminer/parameter/ParameterTypeString.html#ParameterTypeString">ParameterTypeString</a>;</span></td> </tr> <tr id="l37"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=37#src-37">37</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-37" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../tools/pkg-summary.html">tools</a>.<a href="../../../../../../com/rapidminer/tools/RandomGenerator.html#RandomGenerator">RandomGenerator</a>;</span></td> </tr> <tr id="l38"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=38#src-38">38</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-38" class="srcLine"></span></td> </tr> <tr id="l39"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=39#src-39">39</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-39" class="srcLine"></span></td> </tr> <tr id="l40"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=40#src-40">40</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-40" class="srcLine"><span class="comment">/**</span></span></td> </tr> <tr id="l41"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=41#src-41">41</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-41" class="srcLine"><span class="comment"> * &lt;p&gt;</span></span></td> </tr> <tr id="l42"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=42#src-42">42</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-42" class="srcLine"><span class="comment"> * This operator learns a model by means of a feed-forward neural network trained by a</span></span></td> </tr> <tr id="l43"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=43#src-43">43</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-43" class="srcLine"><span class="comment"> * backpropagation algorithm (multi-layer perceptron). The user can define the structure of the</span></span></td> </tr> <tr id="l44"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=44#src-44">44</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-44" class="srcLine"><span class="comment"> * neural network with the parameter list &amp;quot;hidden_layers&amp;quot;. Each list entry describes a new</span></span></td> </tr> <tr id="l45"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=45#src-45">45</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-45" class="srcLine"><span class="comment"> * hidden layer. The key of each entry must correspond to the layer name. The value of each entry</span></span></td> </tr> <tr id="l46"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=46#src-46">46</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-46" class="srcLine"><span class="comment"> * must be a number defining the size of the hidden layer. A size value of -1 indicates that the</span></span></td> </tr> <tr id="l47"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=47#src-47">47</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-47" class="srcLine"><span class="comment"> * layer size should be calculated from the number of attributes of the input example set. In this</span></span></td> </tr> <tr id="l48"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=48#src-48">48</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-48" class="srcLine"><span class="comment"> * case, the layer size will be set to (number of attributes + number of classes) / 2 + 1.</span></span></td> </tr> <tr id="l49"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=49#src-49">49</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-49" class="srcLine"><span class="comment"> * &lt;/p&gt;</span></span></td> </tr> <tr id="l50"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=50#src-50">50</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-50" class="srcLine"><span class="comment"> *</span></span></td> </tr> <tr id="l51"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=51#src-51">51</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-51" class="srcLine"><span class="comment"> * &lt;p&gt;</span></span></td> </tr> <tr id="l52"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=52#src-52">52</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-52" class="srcLine"><span class="comment"> * If the user does not specify any hidden layers, a default hidden layer with sigmoid type and size</span></span></td> </tr> <tr id="l53"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=53#src-53">53</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-53" class="srcLine"><span class="comment"> * (number of attributes + number of classes) / 2 + 1 will be created and added to the net. If only</span></span></td> </tr> <tr id="l54"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=54#src-54">54</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-54" class="srcLine"><span class="comment"> * a single layer without nodes is specified, the input nodes are directly connected to the output</span></span></td> </tr> <tr id="l55"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=55#src-55">55</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-55" class="srcLine"><span class="comment"> * nodes and no hidden layer will be used.</span></span></td> </tr> <tr id="l56"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=56#src-56">56</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-56" class="srcLine"><span class="comment"> * &lt;/p&gt;</span></span></td> </tr> <tr id="l57"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=57#src-57">57</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-57" class="srcLine"><span class="comment"> *</span></span></td> </tr> <tr id="l58"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=58#src-58">58</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-58" class="srcLine"><span class="comment"> * &lt;p&gt;</span></span></td> </tr> <tr id="l59"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=59#src-59">59</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-59" class="srcLine"><span class="comment"> * The used activation function is the usual sigmoid function. Therefore, the values ranges of the</span></span></td> </tr> <tr id="l60"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=60#src-60">60</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-60" class="srcLine"><span class="comment"> * attributes should be scaled to -1 and +1. This is also done by this operator if not specified</span></span></td> </tr> <tr id="l61"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=61#src-61">61</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-61" class="srcLine"><span class="comment"> * otherwise by the corresponding parameter setting. The type of the output node is sigmoid if the</span></span></td> </tr> <tr id="l62"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=62#src-62">62</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-62" class="srcLine"><span class="comment"> * learning data describes a classification task and linear for numerical regression tasks.</span></span></td> </tr> <tr id="l63"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=63#src-63">63</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-63" class="srcLine"><span class="comment"> * &lt;/p&gt;</span></span></td> </tr> <tr id="l64"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=64#src-64">64</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-64" class="srcLine"><span class="comment"> *</span></span></td> </tr> <tr id="l65"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=65#src-65">65</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-65" class="srcLine"><span class="comment"> * </span><span class="comment">@rapidminer.index Neural Net</span></span></td> </tr> <tr id="l66"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=66#src-66">66</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-66" class="srcLine"><span class="comment"> *</span></span></td> </tr> <tr id="l67"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=67#src-67">67</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-67" class="srcLine"><span class="comment"> * </span><span class="javadoc">@author</span><span class="comment"> Ingo Mierswa</span></span></td> </tr> <tr id="l68"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=68#src-68">68</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-68" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="69" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-69' onclick="toggleInlineStats(this, 'inlinestats-69');"/> <td align="center" valign="middle"> <table id="inlinestats-69" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-69'), 'inlinestats-69');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 0</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l69"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=69#src-69">69</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" id="id-69"><span class="spacer"></span><span id="src-69" class="srcLine"><span class="keyword">public</span> <span class="keyword">class</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/neuralnet/ImprovedNeuralNetLearner.html#ImprovedNeuralNetLearner">ImprovedNeuralNetLearner</a> <span class="keyword">extends</span> <a href="../../../../../../com/rapidminer/operator/learner/AbstractLearner.html#AbstractLearner">AbstractLearner</a> {</span></td> </tr> <tr id="l70"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=70#src-70">70</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-70" class="srcLine"></span></td> </tr> <tr id="l71"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=71#src-71">71</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-71" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l72"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=72#src-72">72</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-72" class="srcLine"><span class="comment"> * The parameter name for &amp;quot;The number of hidden layers. Only used if no layers are defined</span></span></td> </tr> <tr id="l73"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=73#src-73">73</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-73" class="srcLine"><span class="comment"> * by the list hidden_layer_types.&amp;quot;</span></span></td> </tr> <tr id="l74"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=74#src-74">74</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-74" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr id="l75"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=75#src-75">75</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-75" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_HIDDEN_LAYERS = <span class="string">&quot;hidden_layers&quot;</span>;</span></td> </tr> <tr id="l76"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=76#src-76">76</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-76" class="srcLine"></span></td> </tr> <tr id="l77"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=77#src-77">77</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-77" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l78"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=78#src-78">78</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-78" class="srcLine"><span class="comment"> * The parameter name for &amp;quot;The number of training cycles used for the neural network</span></span></td> </tr> <tr id="l79"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=79#src-79">79</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-79" class="srcLine"><span class="comment"> * training.&amp;quot;</span></span></td> </tr> <tr id="l80"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=80#src-80">80</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-80" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr id="l81"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=81#src-81">81</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-81" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_TRAINING_CYCLES = <span class="string">&quot;training_cycles&quot;</span>;</span></td> </tr> <tr id="l82"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=82#src-82">82</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-82" class="srcLine"></span></td> </tr> <tr id="l83"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=83#src-83">83</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-83" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l84"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=84#src-84">84</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-84" class="srcLine"><span class="comment"> * The parameter name for &amp;quot;The optimization is stopped if the training error gets below</span></span></td> </tr> <tr id="l85"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=85#src-85">85</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-85" class="srcLine"><span class="comment"> * this epsilon value.&amp;quot;</span></span></td> </tr> <tr id="l86"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=86#src-86">86</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-86" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr id="l87"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=87#src-87">87</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-87" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_ERROR_EPSILON = <span class="string">&quot;error_epsilon&quot;</span>;</span></td> </tr> <tr id="l88"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=88#src-88">88</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-88" class="srcLine"></span></td> </tr> <tr id="l89"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=89#src-89">89</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-89" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l90"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=90#src-90">90</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-90" class="srcLine"><span class="comment"> * The parameter name for &amp;quot;The learning rate determines by how much we change the weights</span></span></td> </tr> <tr id="l91"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=91#src-91">91</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-91" class="srcLine"><span class="comment"> * at each step.&amp;quot;</span></span></td> </tr> <tr id="l92"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=92#src-92">92</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-92" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr id="l93"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=93#src-93">93</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-93" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_LEARNING_RATE = <span class="string">&quot;learning_rate&quot;</span>;</span></td> </tr> <tr id="l94"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=94#src-94">94</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-94" class="srcLine"></span></td> </tr> <tr id="l95"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=95#src-95">95</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-95" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l96"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=96#src-96">96</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-96" class="srcLine"><span class="comment"> * The parameter name for &amp;quot;The momentum simply adds a fraction of the previous weight</span></span></td> </tr> <tr id="l97"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=97#src-97">97</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-97" class="srcLine"><span class="comment"> * update to the current one (prevent local maxima and smoothes optimization directions).&amp;quot;</span></span></td> </tr> <tr id="l98"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=98#src-98">98</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-98" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr id="l99"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=99#src-99">99</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-99" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_MOMENTUM = <span class="string">&quot;momentum&quot;</span>;</span></td> </tr> <tr id="l100"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=100#src-100">100</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-100" class="srcLine"></span></td> </tr> <tr id="l101"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=101#src-101">101</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-101" class="srcLine"> <span class="comment">/** Indicates if the learning rate should be cooled down. */</span></span></td> </tr> <tr id="l102"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=102#src-102">102</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-102" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_DECAY = <span class="string">&quot;decay&quot;</span>;</span></td> </tr> <tr id="l103"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=103#src-103">103</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-103" class="srcLine"></span></td> </tr> <tr id="l104"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=104#src-104">104</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-104" class="srcLine"> <span class="comment">/** Indicates if the input data should be shuffled before learning. */</span></span></td> </tr> <tr id="l105"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=105#src-105">105</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-105" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_SHUFFLE = <span class="string">&quot;shuffle&quot;</span>;</span></td> </tr> <tr id="l106"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=106#src-106">106</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-106" class="srcLine"></span></td> </tr> <tr id="l107"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=107#src-107">107</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-107" class="srcLine"> <span class="comment">/** Indicates if the input data should be normalized between -1 and 1 before learning. */</span></span></td> </tr> <tr id="l108"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=108#src-108">108</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-108" class="srcLine"> <span class="keyword">public</span> <span class="keyword">static</span> <span class="keyword">final</span> String PARAMETER_NORMALIZE = <span class="string">&quot;normalize&quot;</span>;</span></td> </tr> <tr id="l109"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=109#src-109">109</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-109" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="110" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-110' onclick="toggleInlineStats(this, 'inlinestats-110');"/> <td align="center" valign="middle"> <table id="inlinestats-110" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-110'), 'inlinestats-110');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l110"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=110#src-110">110</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-110"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 110,112);" id="img-110" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-110" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">public</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/neuralnet/ImprovedNeuralNetLearner.html#ImprovedNeuralNetLearner">ImprovedNeuralNetLearner</a>(<a href="../../../../../../com/rapidminer/operator/OperatorDescription.html#OperatorDescription">OperatorDescription</a> description) {</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-110'), 110,112);" id="e110" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l111"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=111#src-111">111</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-111" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">super</span>(description);</span></span></td> </tr> <tr id="l112"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=112#src-112">112</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-112" class="srcLine"> }</span></td> </tr> <tr id="l113"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=113#src-113">113</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-113" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="114" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-114' onclick="toggleInlineStats(this, 'inlinestats-114');"/> <td align="center" valign="middle"> <table id="inlinestats-114" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-114'), 'inlinestats-114');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l114"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=114#src-114">114</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-114"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 114,133);" id="img-114" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-114" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-114'), 114,133);" id="e114" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l115"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=115#src-115">115</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-115" class="srcLine"> <span class="keyword">public</span> <a href="../../../../../../com/rapidminer/operator/Model.html#Model">Model</a> learn(<a href="../../../../../../com/rapidminer/example/ExampleSet.html#ExampleSet">ExampleSet</a> exampleSet) <span class="keyword">throws</span> <a href="../../../../../../com/rapidminer/operator/OperatorException.html#OperatorException">OperatorException</a> {</span></td> </tr> <tr id="l116"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=116#src-116">116</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-116" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <a href="../../../../../../com/rapidminer/example/Tools.html#Tools">Tools</a>.onlyNonMissingValues(exampleSet, getOperatorClassName(), <span class="keyword">this</span>, <span class="keyword">new</span> String[0]);</span></span></td> </tr> <tr id="l117"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=117#src-117">117</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-117" class="srcLine"></span></td> </tr> <tr id="l118"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=118#src-118">118</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-118" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <a href="../../../../../../com/rapidminer/operator/learner/functions/neuralnet/ImprovedNeuralNetModel.html#ImprovedNeuralNetModel">ImprovedNeuralNetModel</a> model = <span class="keyword">new</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/neuralnet/ImprovedNeuralNetModel.html#ImprovedNeuralNetModel">ImprovedNeuralNetModel</a>(exampleSet);</span></span></td> </tr> <tr id="l119"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=119#src-119">119</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-119" class="srcLine"></span></td> </tr> <tr id="l120"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=120#src-120">120</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-120" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> List&lt;String[]&gt; hiddenLayers = getParameterList(PARAMETER_HIDDEN_LAYERS);</span></span></td> </tr> <tr id="l121"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=121#src-121">121</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-121" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">int</span> maxCycles = getParameterAsInt(PARAMETER_TRAINING_CYCLES);</span></span></td> </tr> <tr id="l122"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=122#src-122">122</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-122" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">double</span> maxError = getParameterAsDouble(PARAMETER_ERROR_EPSILON);</span></span></td> </tr> <tr id="l123"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=123#src-123">123</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-123" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">double</span> learningRate = getParameterAsDouble(PARAMETER_LEARNING_RATE);</span></span></td> </tr> <tr id="l124"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=124#src-124">124</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-124" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">double</span> momentum = getParameterAsDouble(PARAMETER_MOMENTUM);</span></span></td> </tr> <tr id="l125"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=125#src-125">125</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-125" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">boolean</span> decay = getParameterAsBoolean(PARAMETER_DECAY);</span></span></td> </tr> <tr id="l126"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=126#src-126">126</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-126" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">boolean</span> shuffle = getParameterAsBoolean(PARAMETER_SHUFFLE);</span></span></td> </tr> <tr id="l127"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=127#src-127">127</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-127" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">boolean</span> normalize = getParameterAsBoolean(PARAMETER_NORMALIZE);</span></span></td> </tr> <tr id="l128"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=128#src-128">128</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-128" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <a href="../../../../../../com/rapidminer/tools/RandomGenerator.html#RandomGenerator">RandomGenerator</a> randomGenerator = <a href="../../../../../../com/rapidminer/tools/RandomGenerator.html#RandomGenerator">RandomGenerator</a>.getRandomGenerator(<span class="keyword">this</span>);</span></span></td> </tr> <tr id="l129"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=129#src-129">129</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-129" class="srcLine"></span></td> </tr> <tr id="l130"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=130#src-130">130</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-130" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> model.train(exampleSet, hiddenLayers, maxCycles, maxError, learningRate, momentum, decay, shuffle, normalize,</span></span></td> </tr> <tr id="l131"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=131#src-131">131</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-131" class="srcLine"> randomGenerator, <span class="keyword">this</span>);</span></td> </tr> <tr id="l132"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=132#src-132">132</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-132" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> model;</span></span></td> </tr> <tr id="l133"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=133#src-133">133</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-133" class="srcLine"> }</span></td> </tr> <tr id="l134"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=134#src-134">134</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-134" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="135" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-135' onclick="toggleInlineStats(this, 'inlinestats-135');"/> <td align="center" valign="middle"> <table id="inlinestats-135" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-135'), 'inlinestats-135');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l135"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=135#src-135">135</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-135"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 135,138);" id="img-135" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-135" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-135'), 135,138);" id="e135" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l136"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=136#src-136">136</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-136" class="srcLine"> <span class="keyword">public</span> Class&lt;? <span class="keyword">extends</span> <a href="../../../../../../com/rapidminer/operator/learner/PredictionModel.html#PredictionModel">PredictionModel</a>&gt; getModelClass() {</span></td> </tr> <tr id="l137"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=137#src-137">137</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-137" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> <span class="keyword">return</span> <a href="../../../../../../com/rapidminer/operator/learner/functions/neuralnet/ImprovedNeuralNetModel.html#ImprovedNeuralNetModel">ImprovedNeuralNetModel</a>.<span class="keyword">class</span>;</span></span></td> </tr> <tr id="l138"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=138#src-138">138</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-138" class="srcLine"> }</span></td> </tr> <tr id="l139"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=139#src-139">139</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-139" class="srcLine"></span></td> </tr> <tr id="l140"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=140#src-140">140</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-140" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l141"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=141#src-141">141</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-141" class="srcLine"><span class="comment"> * Returns true for all types of attributes and numerical and binominal labels.</span></span></td> </tr> <tr id="l142"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=142#src-142">142</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-142" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="143" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-143' onclick="toggleInlineStats(this, 'inlinestats-143');"/> <td align="center" valign="middle"> <table id="inlinestats-143" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-143'), 'inlinestats-143');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l143"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=143#src-143">143</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-143"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 143,156);" id="img-143" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-143" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-143'), 143,156);" id="e143" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l144"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=144#src-144">144</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-144" class="srcLine"> <span class="keyword">public</span> <span class="keyword">boolean</span> supportsCapability(<a href="../../../../../../com/rapidminer/operator/OperatorCapability.html#OperatorCapability">OperatorCapability</a> lc) {</span></td> </tr> <tr id="l145"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=145#src-145">145</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-145" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">switch</span> (lc) {</span></span></td> </tr> <tr id="l146"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=146#src-146">146</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-146" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">case</span> NUMERICAL_ATTRIBUTES:</span></span></td> </tr> <tr id="l147"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=147#src-147">147</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-147" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">case</span> POLYNOMINAL_LABEL:</span></span></td> </tr> <tr id="l148"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=148#src-148">148</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-148" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">case</span> BINOMINAL_LABEL:</span></span></td> </tr> <tr id="l149"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=149#src-149">149</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-149" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">case</span> NUMERICAL_LABEL:</span></span></td> </tr> <tr id="l150"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=150#src-150">150</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-150" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">case</span> WEIGHTED_EXAMPLES:</span></span></td> </tr> <tr id="l151"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=151#src-151">151</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-151" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">return</span> <span class="keyword">true</span>;</span></span></td> </tr> <tr id="l152"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=152#src-152">152</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-152" class="srcLine"> <span class="comment">// $CASES-OMITTED$</span></span></td> </tr> <tr id="l153"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=153#src-153">153</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-153" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">default</span>:</span></span></td> </tr> <tr id="l154"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=154#src-154">154</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-154" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;switch"> <span class="keyword">return</span> <span class="keyword">false</span>;</span></span></td> </tr> <tr id="l155"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=155#src-155">155</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-155" class="srcLine"> }</span></td> </tr> <tr id="l156"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=156#src-156">156</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-156" class="srcLine"> }</span></td> </tr> <tr id="l157"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=157#src-157">157</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-157" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="158" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-158' onclick="toggleInlineStats(this, 'inlinestats-158');"/> <td align="center" valign="middle"> <table id="inlinestats-158" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-158'), 'inlinestats-158');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l158"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=158#src-158">158</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-158"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 158,209);" id="img-158" src="../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-158" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-158'), 158,209);" id="e158" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l159"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=159#src-159">159</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-159" class="srcLine"> <span class="keyword">public</span> List&lt;<a href="../../../../../../com/rapidminer/parameter/ParameterType.html#ParameterType">ParameterType</a>&gt; getParameterTypes() {</span></td> </tr> <tr id="l160"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=160#src-160">160</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-160" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> List&lt;<a href="../../../../../../com/rapidminer/parameter/ParameterType.html#ParameterType">ParameterType</a>&gt; types = <span class="keyword">super</span>.getParameterTypes();</span></span></td> </tr> <tr id="l161"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=161#src-161">161</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-161" class="srcLine"></span></td> </tr> <tr id="l162"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=162#src-162">162</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-162" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> <a href="../../../../../../com/rapidminer/parameter/ParameterType.html#ParameterType">ParameterType</a> type = <span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeList.html#ParameterTypeList">ParameterTypeList</a>(</span></span></td> </tr> <tr id="l163"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=163#src-163">163</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-163" class="srcLine"> PARAMETER_HIDDEN_LAYERS,</span></td> </tr> <tr id="l164"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=164#src-164">164</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-164" class="srcLine"> <span class="string">&quot;Describes the name and the size of all hidden layers.&quot;</span>,</span></td> </tr> <tr id="l165"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=165#src-165">165</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-165" class="srcLine"> <span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeString.html#ParameterTypeString">ParameterTypeString</a>(<span class="string">&quot;hidden_layer_name&quot;</span>, <span class="string">&quot;The name of the hidden layer.&quot;</span>),</span></td> </tr> <tr id="l166"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=166#src-166">166</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-166" class="srcLine"> <span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeInt.html#ParameterTypeInt">ParameterTypeInt</a>(</span></td> </tr> <tr id="l167"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=167#src-167">167</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-167" class="srcLine"> <span class="string">&quot;hidden_layer_sizes&quot;</span>,</span></td> </tr> <tr id="l168"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=168#src-168">168</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-168" class="srcLine"> <span class="string">&quot;The size of the hidden layers. A size of &lt; 0 leads to a layer size of (number_of_attributes + number of classes) / 2 + 1.&quot;</span>,</span></td> </tr> <tr id="l169"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=169#src-169">169</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-169" class="srcLine"> -1, Integer.MAX_VALUE, -1));</span></td> </tr> <tr id="l170"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=170#src-170">170</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-170" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> type.setExpert(<span class="keyword">false</span>);</span></span></td> </tr> <tr id="l171"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=171#src-171">171</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-171" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(type);</span></span></td> </tr> <tr id="l172"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=172#src-172">172</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-172" class="srcLine"></span></td> </tr> <tr id="l173"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=173#src-173">173</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-173" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> type = <span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeInt.html#ParameterTypeInt">ParameterTypeInt</a>(PARAMETER_TRAINING_CYCLES,</span></span></td> </tr> <tr id="l174"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=174#src-174">174</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-174" class="srcLine"> <span class="string">&quot;The number of training cycles used for the neural network training.&quot;</span>, 1, Integer.MAX_VALUE, 500);</span></td> </tr> <tr id="l175"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=175#src-175">175</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-175" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> type.setExpert(<span class="keyword">false</span>);</span></span></td> </tr> <tr id="l176"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=176#src-176">176</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-176" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(type);</span></span></td> </tr> <tr id="l177"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=177#src-177">177</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-177" class="srcLine"></span></td> </tr> <tr id="l178"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=178#src-178">178</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-178" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> type = <span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeDouble.html#ParameterTypeDouble">ParameterTypeDouble</a>(PARAMETER_LEARNING_RATE,</span></span></td> </tr> <tr id="l179"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=179#src-179">179</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-179" class="srcLine"> <span class="string">&quot;The learning rate determines by how much we change the weights at each step. May not be 0.&quot;</span>,</span></td> </tr> <tr id="l180"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=180#src-180">180</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-180" class="srcLine"> Double.MIN_VALUE, 1.0d, 0.3d);</span></td> </tr> <tr id="l181"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=181#src-181">181</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-181" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> type.setExpert(<span class="keyword">false</span>);</span></span></td> </tr> <tr id="l182"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=182#src-182">182</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-182" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(type);</span></span></td> </tr> <tr id="l183"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=183#src-183">183</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-183" class="srcLine"></span></td> </tr> <tr id="l184"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=184#src-184">184</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-184" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(<span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeDouble.html#ParameterTypeDouble">ParameterTypeDouble</a>(</span></span></td> </tr> <tr id="l185"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=185#src-185">185</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-185" class="srcLine"> PARAMETER_MOMENTUM,</span></td> </tr> <tr id="l186"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=186#src-186">186</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-186" class="srcLine"> <span class="string">&quot;The momentum simply adds a fraction of the previous weight update to the current one (prevent local maxima and smoothes optimization directions).&quot;</span>,</span></td> </tr> <tr id="l187"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=187#src-187">187</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-187" class="srcLine"> 0.0d, 1.0d, 0.2d));</span></td> </tr> <tr id="l188"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=188#src-188">188</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-188" class="srcLine"></span></td> </tr> <tr id="l189"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=189#src-189">189</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-189" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(<span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeBoolean.html#ParameterTypeBoolean">ParameterTypeBoolean</a>(PARAMETER_DECAY,</span></span></td> </tr> <tr id="l190"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=190#src-190">190</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-190" class="srcLine"> <span class="string">&quot;Indicates if the learning rate should be decreased during learningh&quot;</span>, <span class="keyword">false</span>));</span></td> </tr> <tr id="l191"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=191#src-191">191</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-191" class="srcLine"></span></td> </tr> <tr id="l192"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=192#src-192">192</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-192" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(<span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeBoolean.html#ParameterTypeBoolean">ParameterTypeBoolean</a>(</span></span></td> </tr> <tr id="l193"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=193#src-193">193</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-193" class="srcLine"> PARAMETER_SHUFFLE,</span></td> </tr> <tr id="l194"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=194#src-194">194</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-194" class="srcLine"> <span class="string">&quot;Indicates if the input data should be shuffled before learning (increases memory usage but is recommended if data is sorted before)&quot;</span>,</span></td> </tr> <tr id="l195"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=195#src-195">195</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-195" class="srcLine"> <span class="keyword">true</span>));</span></td> </tr> <tr id="l196"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=196#src-196">196</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-196" class="srcLine"></span></td> </tr> <tr id="l197"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=197#src-197">197</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-197" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(<span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeBoolean.html#ParameterTypeBoolean">ParameterTypeBoolean</a>(</span></span></td> </tr> <tr id="l198"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=198#src-198">198</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-198" class="srcLine"> PARAMETER_NORMALIZE,</span></td> </tr> <tr id="l199"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=199#src-199">199</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-199" class="srcLine"> <span class="string">&quot;Indicates if the input data should be normalized between -1 and +1 before learning (increases runtime but is in most cases necessary)&quot;</span>,</span></td> </tr> <tr id="l200"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=200#src-200">200</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-200" class="srcLine"> <span class="keyword">true</span>));</span></td> </tr> <tr id="l201"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=201#src-201">201</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-201" class="srcLine"></span></td> </tr> <tr id="l202"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=202#src-202">202</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-202" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.add(<span class="keyword">new</span> <a href="../../../../../../com/rapidminer/parameter/ParameterTypeDouble.html#ParameterTypeDouble">ParameterTypeDouble</a>(PARAMETER_ERROR_EPSILON,</span></span></td> </tr> <tr id="l203"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=203#src-203">203</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-203" class="srcLine"> <span class="string">&quot;The optimization is stopped if the training error gets below this epsilon value.&quot;</span>, 0.0d,</span></td> </tr> <tr id="l204"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=204#src-204">204</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-204" class="srcLine"> Double.POSITIVE_INFINITY, 0.00001d));</span></td> </tr> <tr id="l205"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=205#src-205">205</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-205" class="srcLine"></span></td> </tr> <tr id="l206"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=206#src-206">206</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-206" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> types.addAll(<a href="../../../../../../com/rapidminer/tools/RandomGenerator.html#RandomGenerator">RandomGenerator</a>.getRandomGeneratorParameters(<span class="keyword">this</span>));</span></span></td> </tr> <tr id="l207"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=207#src-207">207</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-207" class="srcLine"></span></td> </tr> <tr id="l208"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=208#src-208">208</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-208" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> <span class="keyword">return</span> types;</span></span></td> </tr> <tr id="l209"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=209#src-209">209</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-209" class="srcLine"> }</span></td> </tr> <tr id="l210"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=210#src-210">210</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-210" class="srcLine">}</span></td> </tr> </tbody></table> </div> </div><!-- .aui-tabs --> <script type="text/javascript"> var ol_bgclass = "overBG"; var ol_fgclass = "overFG"; var ol_cgclass = "overCaption"; var ol_captionfontclass= "overCaption"; var ol_closefontclass = "closeFont"; var ol_closeclick = 1; var ol_close = 'X'; var ol_wrap = 1; var rootRelPath = '../../../../../../'; var testsPerFile = -1; </script> <script src="ImprovedNeuralNetLearner.js" type="text/javascript"></script> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://www.atlassian.com/software/clover">Atlassian Clover</a> v 4.1.2 on 星期二 九月 5 2017 17:24:16 CST using coverage data from 星期四 一月 1 1970 08:00:00 CST. </li> </ul> <ul> <li>Clover Evaluation License registered to Clover Plugin. You have 29 day(s) before your license expires.</li> </ul> <div id="footer-logo"> <a target="_blank" href="http://www.atlassian.com/"> Atlassian </a> </div> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
src/main/resources/templates/layout.html
whs-poodle/poodle
<!--/* Copyright 2015 Westfälische Hochschule This file is part of Poodle. Poodle is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. Poodle is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with Poodle. If not, see <http://www.gnu.org/licenses/>. */--> <!--/* This is the basic layout file, used by all pages (based on the Thymeleaf Layout Dialect). All pages simpy extend this and add their own content and header stuff (site specific scripts/css etc.). */--> <!DOCTYPE html> <html xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout" th:inline="text"> <head th:with=" bootstrapVersion=3.3.6, dateTimePickerVersion=4.17.43, momentJsVersion=2.13.0, CKEditorVersion=4.5.8, mustacheJsVersion=2.2.1, mathJaxVersion=2.6, dataTablesVersion=1.10.11, jQueryVersion=2.2.3, jQueryUIVersion=1.11.4"> <meta charset="UTF-8" /> <meta name="application-name" content="Poodle" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <link rel="icon" sizes="192x192" th:href="@{|/img/${@poodleProperties.faviconFilename}|}" /> <!--/* External libraries and stylesheets. JQuery UI, JQuery and Bootstrap are needed on pretty much every page, so we load them always. For other libraries, each page specifies which libraries it needs by passing th:with="includeDataTables=true" etc. */--> <link rel="stylesheet" th:href="@{https://code.jquery.com/ui/__${jQueryUIVersion}__/themes/smoothness/jquery-ui.css}" /> <link rel="stylesheet" th:href="@{https://maxcdn.bootstrapcdn.com/bootstrap/__${bootstrapVersion}__/css/bootstrap.min.css}" /> <link rel="stylesheet" th:href="@{https://maxcdn.bootstrapcdn.com/bootstrap/__${bootstrapVersion}__/css/bootstrap-theme.min.css}" /> <!--/* our own global CSS styles. Site specific CSS is included by each page itself. */--> <link rel="stylesheet" th:href="@{/css/style.css}" /> <script th:src="@{https://code.jquery.com/jquery-__${jQueryVersion}__.min.js}"></script> <script th:src="@{https://maxcdn.bootstrapcdn.com/bootstrap/__${bootstrapVersion}__/js/bootstrap.min.js}"></script> <!--/* JQuery UI and Bootstrap both provide "tooltip" and conflict. Temporarily create a separate function for the Bootstrap Tooltips until we get rid of JQuery UI. */--> <script> var bootstrapTooltip = $.fn.tooltip.noConflict(); $.fn.bootstrapTooltip = bootstrapTooltip; </script> <script th:src="@{https://code.jquery.com/ui/__${jQueryUIVersion}__/jquery-ui.min.js}"></script> <th:block th:if="${includeDataTables}"> <script th:src="@{https://cdn.datatables.net/__${dataTablesVersion}__/js/jquery.dataTables.min.js}"></script> <!--/* Bootstrap Integration for DataTables */--> <script th:src="@{https://cdn.datatables.net/plug-ins/380cb78f450/integration/bootstrap/3/dataTables.bootstrap.js}"></script> <link rel="stylesheet" th:href="@{https://cdn.datatables.net/plug-ins/380cb78f450/integration/bootstrap/3/dataTables.bootstrap.css}" /> <!--/* our own customizations for DataTables */--> <script th:src="@{/js/dataTablesConfig.js}"></script> </th:block> <script th:if="${includeGoogleAPIs}" th:src="@{https://www.google.com/jsapi}"></script> <script th:if="${includeMustacheJs}" th:src="@{https://cdn.jsdelivr.net/mustache.js/__${mustacheJsVersion}__/mustache.min.js}"></script> <th:block th:if="${includeMathJax}"> <script type="text/x-mathjax-config"> MathJax.Hub.Config({ messageStyle: "none" }); </script> <script th:defer="true" id="mathJaxScript" th:src="@{https://cdn.mathjax.org/mathjax/__${mathJaxVersion}__-latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML}"></script> </th:block> <!--/* moment.js. Also load it if DateTimePicker is loaded, since it's a dependency. */--> <script th:if="${includeMomentJs} or ${includeDateTimePicker}" th:src="@{https://cdnjs.cloudflare.com/ajax/libs/moment.js/__${momentJsVersion}__/moment-with-locales.min.js}"></script> <!--/* Bootstrap DateTimePicker (https://eonasdan.github.io/bootstrap-datetimepicker/) */--> <th:block th:if="${includeDateTimePicker}"> <link rel="stylesheet" th:href="@{https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/__${dateTimePickerVersion}__/css/bootstrap-datetimepicker.min.css}" /> <script th:src="@{https://cdnjs.cloudflare.com/ajax/libs/bootstrap-datetimepicker/__${dateTimePickerVersion}__/js/bootstrap-datetimepicker.min.js}"></script> </th:block> <!--/* load our JavaScript localization which is specified with the message code "jsLocale" */--> <script th:src="@{/js/locales/{locale}.js(locale=#{jsLocale})}"></script> <!--/* Global JavaScript file. Site specific JS files are included by each page itself. We pass the context path here since we need it to make Ajax requests to absolute URLs. */--> <script id="globaljs" th:attr="data-context-path=@{/}" th:src="@{/js/global.js}"></script> <!--/* this variable has to be set on the <html> tag since it's also needed in <body> for the "link exercise" dialog. */--> <th:block th:if="${includeCKEditor}"> <script th:src="@{https://cdn.ckeditor.com/__${CKEditorVersion}__/standard-all/ckeditor.js}"></script> <script th:src="@{/js/ckeditor/config.js}"></script> </th:block> <title layout:title-pattern="$CONTENT_TITLE - $DECORATOR_TITLE">Poodle</title> </head> <body> <!--/* dialog that is opened by the "link exercise" link in CKEditor */--> <div th:if="${includeCKEditor}" id="linkExerciseDialog" class="modal" tabindex="-1"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"> <span aria-hidden="true">&times;</span> </button> <h4 class="modal-title">[[#{linkExercise}]]</h4> </div> <div class="modal-body"> <iframe class="exerciseLinkIframe"></iframe> </div> </div> </div> </div> <!--/* Navigation */--> <th:block th:if="${isLoggedIn}" th:include="fragments/nav" /> <div class="container" id="content"> <!--/* error / ok message codes passed by a controller. This is used to show messages like "settings saved" or "invalid Password". We use msgWithParams here so the controller can also specify arguments for the message code as an object array (this is hardly used and in most cases messageCodeParams is null). */--> <div th:if="${errorMessageCode}" class="alert alert-danger alert-dismissible fade in"> [[${#messages.msgWithParams(errorMessageCode, messageCodeParams)}]] </div> <div th:if="${okMessageCode}" class="alert alert-success alert-dismissible fade in"> [[${#messages.msgWithParams(okMessageCode, messageCodeParams)}]] </div> <!--/* this is the actual content provided by each page */--> <th:block layout:fragment="content" /> </div> <!--/* container for Ajax based messages and the loading indicator */--> <div id="ajaxWrapper"> <img id="ajaxLoadingIndicator" th:src="@{/img/loading.gif}" th:alt="#{loading}" /> <ul id="ajaxMessages" class="list-unstyled"></ul> </div> </body> </html>
_source/_posts/2011-08-02-reporting-the-3rd-creative-commons-arab-regional-meeting.html
creativecommons/www2015
--- layout: post title: Reporting the 3rd Creative Commons Arab Regional Meeting date: 2011-08-02 14:13:11.000000000 -04:00 categories: - Weblog tags: [] status: publish type: post published: true meta: _edit_last: '59' enclosure: "http://dl.dropbox.com/u/9419700/sharing_the_spring_concert_cctunis.mp3\r\n177180003\r\naudio/mpeg\r\n" author: login: dona email: donatella@creativecommons.org display_name: Donatella Della Ratta first_name: Donatella last_name: Della Ratta --- <p>This year the third Arab regional meeting of Creative Commons (30th June-2nd July, Tunis) proved extraordinary, in keeping with prior gatherings in the region. Co-organized with Tunisian blogging platform <a href="http://nawaat.org">Nawaat</a> and sponsored by the <a href="http://aljazeera.net">Al Jazeera network</a>, the event garnered CC volunteers from Jordan, Egypt, Lebanon, Morocco, UAE, Qatar, Iraq, Tunisia and, for the first time, welcomed three people from the Gaza strip---bloggers Bashar Lubbad and Nalan Sarraj and rapper Ayman Mghamis---who joined to contribute to two days of workshops focused on creativity, remixing and peer-production. </p> <p>CC Arab community members Mahmoud Abu-Wardeh, Stephanie Terroir, Eman Jaradat, Darine Sabbagh, Pierre el Khoury, Issa Mahasneh, Kanaan Manasrah, Bassam Ali, and Bilal Randeree designed and led a variety of workshops on visual art, creative remix, open education, law, citizen journalism, and social media targeted to designers, bloggers, educators, lawyers and civil society members coming from Tunis and other Tunisian municipalities. All workshops were characterized by an emphasis on openness. In particular, a track devoted to the use of "open source tools for creative production" - led by Mahmoud and Stephanie from CC UAE team - showed the Tunisian workshop participants how to produce videos, cartoons and graphics by using exclusively open source software. The results of this workshop are the <a href="http://www.youtube.com/watch?v=EZOSkmSnV-4">Visuals and video projections</a> that have been projected during the final closing event of July 2nd. </p> <p>Two full days of hands-on workshops were held at the Golden Tulip hotel in Tunis, in addition to two plenary sessions to discuss the future of CC in the Arab region with the presence of CC Chairman and MIT Media Lab director Joi Ito. Al Jazeera`s Head of New Media, Mooed Ahmed, introduced the <a href="http://cc.aljazeera.net/">Creative Commons Al Jazeera repository</a> and a number of other open projects initiated by the Qatari-based network, while Nawaat`s Sami Ben Gharbeia, Malek Khradhraoui and Riadh Guerfali spoke passionately about the role of bloggers and activists during the Tunisian revolution that ended the rule of President Ben Ali last January. </p> <p>Oussama Barkia and Fedi Fedi from <a href="http://kharabeesh.com">Kharabeesh</a> delighted everybody with a screening of their <a href="http://creativecommons.org/licenses/by-nc-nd/3.0/">CC BY-NC-ND</a>-licensed <a href="http://kharabeesh.com/">web cartoons</a> that mock Arab dictators, an example of the new Arab creativity that is no longer bounded by a fear of expressing thoughts and ideas freely.</p> <p>The “grand finale” was truly a celebration of Arab creativity and of Arab youth who, during 2011, were able to seize their future and reinvent it. Since the events in the region had their starting point in Tunis, the celebration was also an homage to the Tunisian people, particularly the youth. On the 2nd of July, Tunisian and Arab artists -- among them, Armada Bizerta, Lak3y, Yram, Aliaa, Badiaa Bouhrizi, Barbaroots, Yasser Shoukry -- gathered at the stunning venue of <a href="http://www.cmam.nat.tn/">Ennajma Ezzahra</a> in Sidi Bou Said, Tunis to play music together in a concert which has been renamed “Sharing the Spring”, in reference to the “Arab spring”, a movement of change which has been spread all across the Arab world after the Tunisian revolution.</p> <p>The concert was also an homage to the sharing culture that CC, together with many organizations and civil society activists, has contributed to spread out in the Region. During the CC regional meeting, musicians Mark Levine and Reda Zine conducted a music workshop with Tunisian and Arab artists, the results of which being two songs -- “Mamnou3” (Forbidden) and “Thawra mustamirra” (Ongoing revolution) -- entirely written and performed by its participants, musicians from a variety of Arab countries and music backgrounds, from heavy metal to rap to folk to classical Arab music. The artists are now working to produce the two original tracks and distribute them on a CD and on the Internet under a <a href="http://creativecommons.org/licenses/by-nc/3.0/">CC BY NC</a> license. </p> <p><strong>Media resources</strong><br /> <a href="http://www.youtube.com/watch?v=EZOSkmSnV-4">Visuals and video projections</a> during the concert have also been the result of a creative workshop with Tunisian artists led by Mahmoud and Stephanie from <a href="http://ae.creativecommons.org/">CC UAE</a>. The <a href="http://dl.dropbox.com/u/9419700/sharing_the_spring_concert_cctunis.mp3">concert audio</a> is now available, together with pictures on <a href="http://www.flickr.com/photos/joi/5887806362/in/photostream/">Flickr</a> and <a href="https://picasaweb.google.com/karim2k/SharingKnowlegeConcertAtTheBaronDErlangerPalace?authuser=0">Picasa</a>, in addition to <a href="http://www.youtube.com/watch?v=MXMVSwJe1Ds">video</a> <a href="http://www.youtube.com/watch?v=VIdAI8fQ4_Y">footage</a> of the event. </p> <p><strong>Media coverage</strong><br /> Tunisian and international media reviewed “Sharing the spring” concert, including <a href="http://www.rollingstoneme.com/index.php?option=com_content&view=article&id=432">Rolling Stone Middle East</a>, Tunisian magazine <a href="http://tekiano.com/component/content/article/21-n-c/4001-tunisie-lunderground-pari-de-creative-commons.html">Tekiano</a>, Italian news agency <a href="http://www.ansamed.info/it/top/MI.XAM42397.html">Ansa</a>, and <a href="http://english.aljazeera.net/indepth/features/2011/07/20117555327580293.html">Al Jazeera English</a>.</p> <p>Blog posts of the event are also widely available online, together with the report by <a href="http://www.creativecommons.qa">Creative Commons Qatar</a>. </p> <p>For those who wish to stay tuned and learn more about the meeting, the concert and the upcoming CD, you can join the <a href="https://groups.google.com/group/cc-arab-world">Creative Commons Arab regional mailing list</a> or email donatella [at] creativecommons.org.</p> <p>Thanks to eveybody who has contributed to make this event and concert a perfect example of the creativity and innovation that can be produced via collaboration and sharing.</p>
MWUI/templates/table.html
stsouko/MWUI
{% extends "layout.html" %} {% from "bootstrap/pagination.html" import render_pagination %} {% block page %} <div class="row"> <div class="col-lg-12"> <div class="panel panel-default"> <table class="table table-striped table-bordered table-hover model-list"> <thead> <tr> {% for i in table.header %} <th>{{ i }}</th> {% endfor %} </tr> </thead> <tbody> {% for row in table.rows %} <tr> {% for i in row %} <td> {% if i.url %} <a href="{{ i.url }}">{{ i.text }}</a> {% else %} {{ i }} {% endif %} </td> {% endfor %} </tr> {% endfor %} </tbody> </table> </div> </div> </div> {% if paginator is defined %} {{ render_pagination(paginator) }} {% endif %} {% endblock %}
html/classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler-members.html
gayathery/amos
<!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>Req Tracker: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="Logo_documentation.png"/></td> <td id="projectalign" style="padding-left: 0.5em;"> <div id="projectname">Req Tracker &#160;<span id="projectnumber">0.9</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <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><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 id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespacede.html">de</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau.html">fau</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau_1_1osr.html">osr</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau_1_1osr_1_1gui.html">gui</a></li><li class="navelem"><a class="el" href="namespacede_1_1fau_1_1osr_1_1gui_1_1_view.html">View</a></li><li class="navelem"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html">TraceabilityMatrixByImpactViewHandler</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">de.fau.osr.gui.View.TraceabilityMatrixByImpactViewHandler Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html">de.fau.osr.gui.View.TraceabilityMatrixByImpactViewHandler</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html#acaf7399be3df8b0ad95385c9bfbe0763">getFileName</a>(MatrixTools.ExportType exportType)</td><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html">de.fau.osr.gui.View.TraceabilityMatrixByImpactViewHandler</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html#a8fb3510d8239070d024cdbfa5cf63370">initTable</a>()</td><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html">de.fau.osr.gui.View.TraceabilityMatrixByImpactViewHandler</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html#af195e37bea99f546f25b0795d828aa0d">main</a>(String[] args)</td><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html">de.fau.osr.gui.View.TraceabilityMatrixByImpactViewHandler</a></td><td class="entry"><span class="mlabel">static</span></td></tr> <tr><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html#a837f6f715bf250d519cfd75aec01259f">setRequirementsTraceabilityMatrix</a>(RequirementsTraceabilityMatrixByImpact requirementsTraceabilityMatrixByImpact)</td><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html">de.fau.osr.gui.View.TraceabilityMatrixByImpactViewHandler</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html#a10969b5d9e6f58ceb20dbb2330ba2bf6">TraceabilityMatrixByImpactViewHandler</a>()</td><td class="entry"><a class="el" href="classde_1_1fau_1_1osr_1_1gui_1_1_view_1_1_traceability_matrix_by_impact_view_handler.html">de.fau.osr.gui.View.TraceabilityMatrixByImpactViewHandler</a></td><td class="entry"></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.10 </small></address> </body> </html>
web/fb-share/programa/eu/357.html
podemos-info/programa-electoral-podemos-26j
<!DOCTYPE html> <html lang="eu"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Podemos - Frackingik ez Kantabrian </title> <meta property="og:title" content="Podemos - Frackingik ez Kantabrian " /> <meta property="og:description" content="Ingurumen- eta osasun-arriskuak, eta horiek nekazaritza-bizimoduan izan ditzaketen ondorioak gorabehera, bertan behera utziko ditugu Kantabrian fracking–proiektuetarako eman diren baimenak. Horrek proiektu hauei eragiten die: * Luena, zeinak Besaya, Pas, Pisueña, Miera eta Asón ibaien bailarei eragiten dien, bai eta Burgosko probintziaren zati bati ere. * Bezana-Bigüenzo, zeinak Kantabriako hegoalde osoari eragiten dion (Campoo, Valdeprado eta Valderredible), bai eta Palentzia eta Burgosko probintzien zati banari." /> <meta property="og:image" content="http://lasonrisadeunpais.es/wp-content/plugins/programa/data/meta-programa.png" /> <meta property="og:image:type" content="image/png" /> <meta property="og:image:width" content="600" /> <meta property="og:image:height" content="315" /> </head> <body> <script type="text/javascript"> var url_base = '/eu/programa/?medida=357'; window.location = url_base; </script> <img src="http://lasonrisadeunpais.es/wp-content/plugins/programa/data/meta-programa.png" alt="Programa PODEMOS" /> <h1>Frackingik ez Kantabrian </h1> <div> <p>Ingurumen- eta osasun-arriskuak, eta horiek nekazaritza-bizimoduan izan ditzaketen ondorioak gorabehera, bertan behera utziko ditugu Kantabrian fracking–proiektuetarako eman diren baimenak. Horrek proiektu hauei eragiten die: </p> <ul> <li><p>Luena, zeinak Besaya, Pas, Pisueña, Miera eta Asón ibaien bailarei eragiten dien, bai eta Burgosko probintziaren zati bati ere. </p> </li> <li><p>Bezana-Bigüenzo, zeinak Kantabriako hegoalde osoari eragiten dion (Campoo, Valdeprado eta Valderredible), bai eta Palentzia eta Burgosko probintzien zati banari. </p> </li> </ul> </div> </body> </html>
app/packages/partup-client-dropdowns/notifications/notification/types/network/accepted.html
part-up/part-up
<template name="notification_partups_networks_accepted"> <a href="{{pathFor route='network' slug=notification.type_data.network.slug}}"> <figure class="pu-avatar pu-avatar-plain" style="background-image: url('{{ partupImageUrl id=notification.type_data.network.image }}');"> </figure> <article> <p>{{_ 'dropdown-notification-partups_networks_accepted' network=notification.type_data.network.name }}</p> <time>{{ partupDateNotification notification.created_at }}</time> </article> </a> </template>
dojox/grid/compat/tests/test_markup.html
ftrotter/google_health_fail
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>dojox.Grid with Dojo.Data via binding</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"></meta> <style type="text/css"> @import "../../../../dojo/resources/dojo.css"; @import "../../resources/tundraGrid.css"; #grid, #grid2 { width: 65em; height: 25em; padding: 1px; } </style> <script type="text/javascript" src="../../../../dojo/dojo.js" djConfig="isDebug: true, debugAtAllCosts: false, parseOnLoad: true"></script> <script type="text/javascript"> dojo.require("dojox.grid.Grid"); dojo.require("dojo.data.ItemFileReadStore"); dojo.require("dojox.data.CsvStore"); dojo.require("dojo.parser"); </script> </head> <body class="tundra"> <h5>dojox.grid.Grid structure from markup</h5> <span dojoType="dojox.data.CsvStore" jsId="csvStore" url="support/movies.csv"> </span> <table dojoType="dojox.grid.Grid" store="csvStore" query="{ Title: '*' }" clientSort="true" style="width: 800px; height: 300px;"> <thead> <tr> <th width="300px" field="Title">Title of Movie</th> <th width="5em">Year</th> </tr> <tr> <th colspan="2">Producer</th> </tr> </thead> </table> <span dojoType="dojo.data.ItemFileReadStore" jsId="jsonStore" url="../../../../dijit/tests/_data/countries.json"> </span> <h5>Locked views specified with tables and colgroups</h5> <table dojoType="dojox.grid.Grid" store="jsonStore" rowsPerPage="20" query="{ name: '*' }" style="width: 600px; height: 300px;"> <colgroup span="1" noscroll="true" width="300px"></colgroup> <colgroup span="4"></colgroup> <thead> <tr> <th field="name">Country/Continent Name</th> <th width="100px" field="population">Population</th> <th width="100px" field="area">Land Mass</th> <th width="100px" field="timezone">Time Zone</th> <th width="5em" field="type">Type</th> </tr> </thead> </table> <h5>A "regular" Grid from markup (no table defintion)</h5> <script type="text/javascript"> // helper functions and structure definitions for the old markup construction syntax function getRow(inRowIndex){ return ' ' + inRowIndex; } var layoutCountries = [ // view 0 { type: 'dojox.GridRowView', width: '20px' }, // view 1 { cells: [ [ { name: "Row", get: getRow, width: 5} ] ], noscroll: true }, // view 2 { cells: [ [ { field: 0, width: 'auto' }, { width: 8 } ] ] } ]; </script> <span dojoType="dojox.grid.data.DojoData" jsId="dataModel2" rowsPerPage="20" store="jsonStore" query="{ name : '*' }"> </span> <div id="grid2" dojoType="dojox.grid.Grid" elasticView="2" model="dataModel2" structure="layoutCountries"> </div> </body> </html>
_includes/header.html
24eme/24eme.fr
<!-- Header --> <header class="bloc-editable"> <div class="container"> <a href="https://github.com/24eme/24eme.fr/blob/master/_includes/header.html" class="lien-edition lien-edition-bottom"><i class="fa fa-pencil" aria-hidden="true"></i></a> <div class="intro-text"> <div class="intro-heading">Fabricant de logiciels</div> <div class="intro-lead-in">Conception et Développement de logiciels libres adaptés aux métiers de nos clients</div> <a href="#activite" class="page-scroll btn btn-xl">En savoir plus</a> </div> </div> </header>
Library/MOC-V/Documentation/namespace-MOC.V.Component.Document.html
KWZwickau/KREDA-Sphere
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta name="viewport" content="width=device-width, initial-scale=1.0"/> <meta name="generator" content="ApiGen 2.8.0"/> <title>Namespace MOC\V\Component\Document | Mark V</title> <script type="text/javascript" src="resources/combined.js?4076080066"></script> <script type="text/javascript" src="elementlist.js?2814603222"></script> <link rel="stylesheet" type="text/css" media="all" href="resources/style.css?1143814050"/> <link href='http://fonts.googleapis.com/css?family=Open+Sans+Condensed:300,300italic|Open+Sans:300' rel='stylesheet' type='text/css'/> </head> <body> <div id="TopBar"> <ul> <li><a href="http://derdu.github.io/MOC-Framework-Mark-V" title="DerDu" onclick="window.open(this.href); return false;">Documentation</a></li> <li><a href="https://github.com/DerDu/MOC-Framework-Mark-V" title="DerDu" onclick="window.open(this.href); return false;">GitHub</a></li> <li><a href="https://github.com/DerDu" title="DerDu" onclick="window.open(this.href); return false;">DerDu</a> </li> </ul> </div> <div id="Header"> <h1>MOC Framework</h1> <p>Mark V</p> </div> <div id="Navigation"> <ul> <li> <a>Documentation</a> </li> </ul> </div> <div class="Channel"> <h1>Api Documentation</h1> <div id="ChannelRelease"> <div id="left"> <div id="menu"> <a href="index.html" title="Overview"><span>Overview</span></a> <div id="groups"> <h3>Namespaces</h3> <ul> <li class="active main"><a href="namespace-MOC.html">MOC<span></span></a> <ul> <li class="active main"><a href="namespace-MOC.V.html">V<span></span></a> <ul> <li class="active main"><a href="namespace-MOC.V.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Database.html">Database<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Database.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Database.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Database.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Database.Component.Exception.html">Exception<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Database.Component.Exception.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Database.Component.Parameter.html">Parameter<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Database.Component.Parameter.Repository.html">Repository</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Database.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Component.Database.Vendor.html">Vendor</a> </li> </ul> </li> <li class="active main"><a href="namespace-MOC.V.Component.Document.html">Document<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Document.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Document.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Document.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Document.Component.Exception.html">Exception<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Document.Component.Exception.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Document.Component.Parameter.html">Parameter<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Document.Component.Parameter.Repository.html">Repository</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Document.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Component.Document.Vendor.html">Vendor</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Documentation.html">Documentation<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Component.Exception.html">Exception<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Component.Exception.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Component.Parameter.html">Parameter<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Component.Parameter.Repository.html">Repository</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Component.Documentation.Vendor.html">Vendor</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Router.html">Router<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Router.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Router.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Router.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Router.Component.Exception.html">Exception<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Router.Component.Exception.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Router.Component.Parameter.html">Parameter<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Router.Component.Parameter.Repository.html">Repository</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Router.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Component.Router.Vendor.html">Vendor</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Template.html">Template<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Template.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Template.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Template.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Template.Component.Exception.html">Exception<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Template.Component.Exception.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Template.Component.Parameter.html">Parameter<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Component.Template.Component.Parameter.Repository.html">Repository</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Component.Template.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Component.Template.Vendor.html">Vendor</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.html">Core<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.html">AutoLoader<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Component.Exception.html">Exception<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Component.Exception.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Component.Parameter.html">Parameter<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Component.Parameter.Repository.html">Repository</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Vendor.html">Vendor<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Vendor.Multiton.html">Multiton</a> </li> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Vendor.Universal.html">Universal<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.AutoLoader.Vendor.Universal.NamespaceLoader.html">NamespaceLoader</a> </li> </ul> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.html">FileSystem<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Component.Exception.html">Exception<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Component.Exception.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Component.Parameter.html">Parameter<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Component.Parameter.Repository.html">Repository</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Vendor.html">Vendor<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.FileSystem.Vendor.Universal.html">Universal</a> </li> </ul> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.html">HttpKernel<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Component.html">Component<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Component.Bridge.html">Bridge<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Component.Bridge.Repository.html">Repository</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Component.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Component.Parameter.html">Parameter</a> </li> </ul> </li> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Exception.html">Exception</a> </li> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Vendor.html">Vendor<span></span></a> <ul> <li class="main"><a href="namespace-MOC.V.Core.HttpKernel.Vendor.Universal.html">Universal</a> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> </ul> </li> <li><a href="namespace-PHP.html">PHP</a> </li> </ul> </div> <hr/> <div id="elements"> <h3>Classes</h3> <ul> <li><a href="class-MOC.V.Component.Document.Document.html">Document</a></li> </ul> </div> </div> </div> <div id="splitter"></div> <div id="right"> <div id="rightInner"> <form id="search"> <input type="hidden" name="cx" value=""/> <input type="hidden" name="ie" value="UTF-8"/> <input type="text" name="q" class="text"/> <input type="submit" value="Search" class="Button"/> </form> <div id="navigation"> <ul> <li> <a href="index.html" title="Overview"><span>Overview</span></a> </li> <li class="active"> <span>Namespace</span></li> <li> <span>Class</span></li> </ul> <ul> <li> <a href="tree.html" title="Tree view of classes, interfaces, traits and exceptions"><span>Tree</span></a> </li> <li> <a href="deprecated.html" title="List of deprecated elements"><span>Deprecated</span></a> </li> <li> <a href="todo.html" title="Todo list"><span>Todo</span></a> </li> </ul> <ul> <li> <a href="mark-v-api-documentation.zip" title="Download documentation as ZIP archive"><span>Download</span></a> </li> </ul> </div> <div id="content" class="namespace"> <h1>Namespace <a href="namespace-MOC.html">MOC</a>\<a href="namespace-MOC.V.html">V</a>\<a href="namespace-MOC.V.Component.html">Component</a>\Document</h1> <table class="summary" id="namespaces"> <caption>Namespaces summary</caption> <tr> <td class="name"><a href="namespace-MOC.V.Component.Document.Component.html">MOC\V\Component\Document\Component</a> </td> </tr> <tr> <td class="name"><a href="namespace-MOC.V.Component.Document.Exception.html">MOC\V\Component\Document\Exception</a> </td> </tr> <tr> <td class="name"><a href="namespace-MOC.V.Component.Document.Vendor.html">MOC\V\Component\Document\Vendor</a> </td> </tr> </table> <table class="summary" id="classes"> <caption>Classes summary</caption> <tr> <td class="name"><a href="class-MOC.V.Component.Document.Document.html">Document</a></td> <td>Class Document</td> </tr> </table> </div> <div id="footer"> Mark V API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a> </div> </div> </div> <div style="clear: both;"></div> </div> </div> <div id="BottomBar"> <ul> <li>Powered by <a href="http://github.com" style="background: transparent url('resources/GitHub-Mark-Light-32px.png') no-repeat left center; padding-left: 42px; margin-left: 5px;">GitHub</a> </li> <li> Mark V API documentation generated by <a href="http://apigen.org">ApiGen 2.8.0</a> </li> </ul> </div> </body> </html>
tools/cayenne-3.1.1/doc/api/org/apache/cayenne/reflect/class-use/IdMapKeyAccessor.html
swordlordcodingcrew/gozer
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_77) on Fri Apr 29 18:10:12 MSK 2016 --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Uses of Class org.apache.cayenne.reflect.IdMapKeyAccessor (Cayenne Documentation 3.1.1 API)</title> <meta name="date" content="2016-04-29"> <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.cayenne.reflect.IdMapKeyAccessor (Cayenne Documentation 3.1.1 API)"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/cayenne/reflect/IdMapKeyAccessor.html" title="class in org.apache.cayenne.reflect">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-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/cayenne/reflect/class-use/IdMapKeyAccessor.html" target="_top">Frames</a></li> <li><a href="IdMapKeyAccessor.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.cayenne.reflect.IdMapKeyAccessor" class="title">Uses of Class<br>org.apache.cayenne.reflect.IdMapKeyAccessor</h2> </div> <div class="classUseContainer">No usage of org.apache.cayenne.reflect.IdMapKeyAccessor</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../org/apache/cayenne/reflect/IdMapKeyAccessor.html" title="class in org.apache.cayenne.reflect">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../../../../../overview-tree.html">Tree</a></li> <li><a href="../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../index-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/cayenne/reflect/class-use/IdMapKeyAccessor.html" target="_top">Frames</a></li> <li><a href="IdMapKeyAccessor.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2001&#x2013;2016 <a href="http://cayenne.apache.org/">Apache Cayenne</a>. All rights reserved.</small></p> </body> </html>
packages/retronator-hq/items/daily/theme.html
Retronator/Pixel-Art-Academy
<template name="Retronator.HQ.Items.Daily.Theme"> <div class="retronator-hq-items-daily-theme"> <div class="newspaper {{#if homePage}}{{! {block:HomePage}!}}homepage{{/if}}{{! {/block:HomePage}!}}"> <button class="back-button"></button> <script> Retronator.HQ.Items.Daily.BlogUrl = '{{blogUrl}}{{! {BlogURL}!}}'; </script> {{#if indexPage}}{{! {block:IndexPage}!}} <div class="frontpage-area scroll-area"> <div class="scroll-content"> <div class="frontpage page safe-area-content"> <div class="header"> {{#if tagPage}}{{! {block:TagPage}!}} <div class="tag-ear"> <div class="text"> {{tag}}{{! {Tag}!}} </div> </div> {{/if}}{{! {/block:TagPage}!}} <h1 class="title"><a href="{{blogUrl}}{{! {BlogURL}!}}">Retronator</a></h1> <div class="slogan">Daily pixel art and gaming news</div> <div class="support">Supported by backers and patrons</div> {{#if tagPage}}{{! {block:TagPage}!}} <div class="tag-ear"> <div class="text"> {{tag}}{{! {Tag}!}} </div> </div> {{/if}}{{! {/block:TagPage}!}} </div> <div class="folio"> <div class="retropolis">Retropolis</div> <div class="date"></div> <div class="about">About →</div> </div> <div class="headlines"></div> </div> <ol class="back-issues"> {{#each jumpPagination 5}}{{! {block:JumpPagination length="5"}!}} <li class="back-issue" data-page="{{this}}{{! {block:JumpPage}{PageNumber}{/block:JumpPage}{block:CurrentPage}{PageNumber}{/block:CurrentPage}!}}"> {{#if jumpPage}}{{! {block:JumpPage}!}} <a class="link" href="{{jumpPageUrl}}{{! {Url}!}}"><span class="text"></span></a> {{/if}}{{! {/block:JumpPage}!}} </li> {{/each}}{{! {/block:JumpPagination}!}} </ol> <div class="featured-websites-area"> <ol class="featured-websites"></ol> </div> </div> </div> {{/if}}{{! {/block:IndexPage}!}} <div class="inside-content-area scroll-area"> <div class="scroll-content"> <div class="inside-content safe-area-content"> <ol class="posts"> {{#each posts}}{{! {block:Posts}!}} <li class="post page"> <div class="folio"> <div class="page-number"></div> <div class="date"> <a href="{{permalink}}{{! {Permalink}!}}"> Retronator, <span class="value">{{date}}{{! {DayOfWeek}, {Month} {DayOfMonth}, {Year}!}}</span> </a> </div> </div> {{#if isPostText}}{{! {block:Text}!}} {{#if title}}{{! {block:Title}!}} <h1 class="title"> {{title}}{{! {Title}!}} </h1> {{/if}}{{! {/block:Title}!}} {{{text}}}{{! {Body}!}} {{/if}}{{! {/block:Text}!}} {{#if isPostPhoto}}{{! {block:Photo}!}} <div class="photoset" data-layout="1"> {{#each photos}}{{! !}} <img src="{{original_size.url}}{{! {PhotoURL-HighRes}!}}"/> {{/each}}{{! !}} </div> {{{text}}}{{! {Caption}!}} {{/if}}{{! {/block:Photo}!}} {{#if isPostPanorama}}{{! {block:Panorama}!}} <div class="photoset" data-layout="1"> {{#each photos}}{{! !}} <img src="{{original_size.url}}{{! {PhotoURL-Panorama}!}}"/> {{/each}}{{! !}} </div> {{{text}}}{{! {Caption}!}} {{/if}}{{! {/block:Panorama}!}} {{#if isPostPhotoset}}{{! {block:Photoset}!}} <div class="photoset" data-layout="{{layout}}{{! {PhotosetLayout}!}}"> {{#each photos}}{{! {block:Photos} !}} <img src="{{original_size.url}}{{! {PhotoURL-HighRes}!}}" data-width="{{original_size.width}}{{! {PhotoWidth-HighRes}!}}" data-height="{{original_size.height}}{{! {PhotoHeight-HighRes}!}}"/> {{/each}}{{! {/block:Photos} !}} </div> {{{text}}}{{! {Caption}!}} {{/if}}{{! {/block:Photoset}!}} {{#if isPostVideo}}{{! {block:Video}!}} <figure> {{{videoPlayer}}}{{! {Video-700}!}} </figure> {{#if video.thumbnail.url}}{{! {block:VideoThumbnail}!}} <div class="player-thumbnail"> <img src="{{video.thumbnail.url}}{{! {VideoThumbnailURL}!}}"/> </div> {{/if}}{{! {/block:VideoThumbnail}!}} {{{text}}}{{! {Caption}!}} {{/if}}{{! {/block:Video}!}} {{#if isPostAudio}}{{! {block:Audio}!}} <figure> {{{audio.player}}}{{! {AudioEmbed-640}!}} </figure> {{#if audio.albumArt}}{{! {block:AlbumArt}!}} <div class="player-thumbnail"> <img src="{{audio.albumArt}}{{! {AlbumArtURL}!}}"/> </div> {{/if}}{{! {/block:AlbumArt}!}} {{{text}}}{{! {Caption}!}} {{/if}}{{! {/block:Audio}!}} {{#if isPostQuote}}{{! {block:Quote}!}} <blockquote class="quote"> {{{quote.text}}}{{! {Quote}!}} </blockquote> {{#if quote.source}}{{! {block:Source}!}} <div class="quote-source"> {{{quote.source}}}{{! {Source}!}} </div> {{/if}}{{! {/block:Source}!}} {{/if}}{{! {/block:Quote}!}} {{#if isPostLink}}{{! {block:Link}!}} <div class="link"> <h1 class="title"> <a href="{{link.url}}{{! {URL}!}}" target="_blank"> {{link.title}}{{! {Name}!}} </a> </h1> <a class="url" href="{{link.url}}{{! {URL}!}}" target="_blank"> {{link.publisher}}{{! {Host}!}} </a> {{#each photos}}{{! {block:Thumbnail}!}} <a class="image-link" href="{{../link.url}}{{! {URL}!}}" target="_blank"> <img src="{{original_size.url}}{{! {Thumbnail-HighRes}!}}"/> </a> {{/each}}{{! {/block:Thumbnail} !}} {{#if link.excerpt}}{{! {block:Excerpt}!}} <a class="excerpt" href="{{link.url}}{{! {URL}!}}" target="_blank"> {{link.excerpt}}{{! {Excerpt}!}} </a> {{/if}}{{! {/block:Excerpt}!}} </div> {{{text}}}{{! {Description}!}} {{/if}}{{! {/block:Link}!}} {{#if isPostAnswer}}{{! {block:Answer}!}} <p class="question-asker"> {{#if question.askingUrl}}<a href="{{question.askingUrl}}">{{{question.askingName}}}</a>{{else}}{{{question.askingName}}}{{/if}}{{! {Asker}!}} asks: </p> <blockquote class="question"> {{{question.question}}}{{! {Question}!}} </blockquote> {{{text}}}{{! {Answer}!}} {{/if}}{{! {/block:Answer}!}} {{#if isPostChat}}{{! {block:Chat}!}} {{#if title}}{{! {block:Title}!}} <h1 class="title"> {{title}}{{! {Title}!}} </h1> {{/if}}{{! {/block:Title}!}} {{#each dialogue}}{{! {block:Lines}!}} <p> {{#if label}}{{! {block:Label}!}} {{label}}{{! {Label}!}} {{/if}}{{! {/block:Label}!}} {{{phrase}}}{{! {Line}!}} </p> {{/each}}{{! {/block:Lines}!}} {{/if}}{{! {/block:Chat}!}} {{#if reblog}}{{! {block:RebloggedFrom}!}} <div class="source reblog"> Source: <a class="link" href="{{reblog.root.url}}{{! {ReblogRootURL}!}}"><span class="title">{{reblog.root.title}}{{! {ReblogRootTitle}!}}</span><span class="name">{{reblog.root.name}}{{! {ReblogRootName}!}}</span></a> </div> {{/if}}{{! {/block:RebloggedFrom}!}} {{#if source}}{{! {block:ContentSource}!}} <div class="source direct"> Source: <a class="link" href="{{source.url}}{{! {SourceURL}!}}">{{source.title}}{{! {SourceTitle}!}}</a> </div> {{/if}}{{! {/block:ContentSource}!}} <div class="footer"> {{#if tags}}{{! {block:HasTags}!}} <ul class="tags"> {{#each tags}}{{! {block:Tags}!}} <li class="tag"><a href="{{tagUrl}}{{! {TagURL}!}}">{{this}}{{! {Tag}!}}</a></li> {{/each}}{{! {/block:Tags}!}} </ul> {{/if}}{{! {/block:HasTags}!}} <div class="notes-count"> {{notesCount}}{{! {NoteCount}!}} </div> </div> </li> {{/each}}{{! {/block:Posts}!}} </ol> {{#if indexPage}}{{! {block:IndexPage}!}} <div class="about page"> <div class="folio"> <div class="page-number"></div> <div class="date"></div> </div> <div class="content"> <div class="masthead"> <div class="title">Retronator</div> <div class="slogan">Daily pixel art and gaming news</div> <div class="published-info">Published every day in the year by Retronator</div> <div class="editor">Editor: <a href="https://matejjan.com/about" target="_blank">Matej Jan</a></div> <div class="circulation">Circulation: <span class="value"></span></div> <div class="contact">Contact: <a href="mailto:hi@retronator.com">hi@retronator.com</a></div> <p>Press kits and Steam codes are welcome, but do not guarantee coverage.</p> <h2>Subscription rates</h2> <table class="subscription-rates-table"> <tr> <th></th> <th>One month</th> </tr> <tr> <td class="type">Online</td> <td class="rate">Free</td> </tr> <tr> <td class="type">Email</td> <td class="rate">$1</td> </tr> </table> <p>Email delivery coming in the future.</p> <h2>Social Establishments</h2> <p>Retronator news is re-published daily in the following outlets:</p> <ul class="social-links"> <li><a class="link" target="_blank" href="https://www.facebook.com/retronator">Facebook</a></li> <li><a class="link" target="_blank" href="https://twitter.com/retronator">Twitter</a></li> <li><a class="link" target="_blank" href="https://www.pinterest.com/retronator">Pinterest</a></li> </ul> <p>More original content on:</p> <ul class="social-links"> <li><a class="link" target="_blank" href="https://www.youtube.com/retronator48k">YouTube</a></li> <li><a class="link" target="_blank" href="https://medium.com/retronator-magazine">Medium</a></li> <li><a class="link" target="_blank" href="https://www.patreon.com/retro">Patreon</a></li> </ul> <p>For personal updates see:</p> <ul class="social-links"> <li><a class="link" target="_blank" href="https://www.instagram.com/retronator">Instagram</a></li> <li><a class="link" target="_blank" href="https://www.facebook.com/retronator">Facebook</a></li> <li><a class="link" target="_blank" href="https://www.snapchat.com/add/retronator">Snapchat</a></li> </ul> <p>Sometimes I pretend to speak Russian on:</p> <ul class="social-links"> <li><a class="link" target="_blank" href="https://vk.com/retronator">VK</a></li> </ul> <h2>Reader questions and feedback</h2> <p>You can leave questions or comments in the <a href="https://www.retronator.com/ask">ask box</a>. They will be answered publicly unless asked otherwise.</p> <h2>Guest blogging</h2> <p>I welcome contributions from the community. See the <a href="https://www.retronator.com/post/146267860970/call-for-guest-bloggers">Call for guest bloggers</a> for details.</p> <h2>Smallprint</h2> <p>By using this website you agree to the <a href="https://retronator.com/smallprint" target="_blank">terms of service</a>.</p> </div> <div class="history"> <h2> <span class="title-line">Message from</span> <span class="title-line">the editor</span> </h2> <p>Hello everyone, I am Matej Jan a.k.a. Retro. Welcome to Retronator—my blog and game development studio.</p> <p>I started Retronator in 2007 with the goal of making video games focused on creativity. Along the way I started writing about art and gaming, featuring artists and projects that caught my attention. Nowadays this mostly includes pixel art, with occasional diversions into voxels, low-poly 3D, low-res digital painting, and basically anything that makes me feel like a kid again (text adventures, chiptune, LEGO …).</p> <p>I'm also very nostalgic about 20th century games that didn't neglect their educational potential. I expected titles like Sim Ant, Caesar II, and Sim City to continue into the future, expanding their power to teach us something along the way. Games such as Kerbal Space Program and ECO continue to carry the torch, but are far in between in the current gaming landscape. Expect Retronator to cover more games like that in the future.</p> <p>Finally, on these pages I document my own journey as an illustrator and game developer. I'm working on an adventure game for learning how to draw called Pixel Art Academy. This newspaper lives in the game world and I'll make that quite obvious soon. Thanks to backers of the game and supporters on Patreon I can create this content full-time. Thank you for making this possible!</p> <p>It's been 10 years since I started this journey and there is no doubt the next 10 will be absolutely amazing. Stick around and I hope you will enjoy the ride.</p> <p>Happy pixeling,<br/>—Retro</p> </div> <div class="supporters"> <div class="messages-area"> <h2>Notes from Retronator Store customers</h2> <ul class="messages"></ul> <p>To leave a note, include a tip when checking out in the store.</p> </div> <div class="supporters-table-area"> <h2>Hall of fame</h2> <table class="supporters-table"> <th class="name">Name</th> <th class="amount"><span class="text">$core</span></th> </table> <p>Other supporters chose to be anonymous.</p> </div> <div class="become-a-supporter"> <h2>Become a supporter</h2> <p> You can support Retronator on <a href="https://www.patreon.com/retro" target="_blank">Patreon</a> or by pre-ordering <a href="https://pixelart.academy" target="_blank">Pixel Art Academy</a>. </p> </div> </div> </div> </div> {{/if}}{{! {/block:IndexPage}!}} <!-- ol class="back-issues"> {{#if previousPageUrl}}{{! {block:PreviousPage}!}} <li class="back-issue"> <a class="link" href="{{previousPageUrl}}{{! {PreviousPage}!}}"><span class="text">Newer issue</span></a> </li> {{/if}}{{! {/block:PreviousPage}!}} {{#if nextPageUrl}}{{! {block:NextPage}!}} <li class="back-issue" data-page="{{currentPage}}{{! {CurrentPage}!}}"> <a class="link" href="{{nextPageUrl}}{{! {NextPage}!}}"><span class="text">Older issue</span></a> </li> {{/if}}{{! {/block:NextPage}!}} </ol--> <ol class="back-issues"> {{#each jumpPagination 5}}{{! {block:JumpPagination length="5"}!}} <li class="back-issue" data-page="{{this}}{{! {block:JumpPage}{PageNumber}{/block:JumpPage}{block:CurrentPage}{PageNumber}{/block:CurrentPage}!}}"> {{#if jumpPage}}{{! {block:JumpPage}!}} <a class="link" href="{{jumpPageUrl}}{{! {Url}!}}"><span class="text"></span></a> {{/if}}{{! {/block:JumpPage}!}} </li> {{/each}}{{! {/block:JumpPagination}!}} </ol> </div> </div> </div> </div> </div> </template>
src/app/nav-bar/nav-bar.component.html
Neoflash1979/coder-match
<nav class="bg-card"> <div class="container"> <div class="nav-wrapper"> <a routerLink="/" class="brand-logo">&#60;CoderMatch&#47;&#62;</a> <a href="#" materialize="sideNav" data-activates="mobile" class="button-collapse"><i class="material-icons">menu</i></a> <ul class="right hide-on-med-and-down"> <li *ngIf="!isLoggedIn()" routerLinkActive="active"><a routerLink="/login">Login</a></li> <li *ngIf="!isLoggedIn()" routerLinkActive="active"><a routerLink="/register">Signup</a></li> <li routerLinkActive="active"><a routerLink="/matchlist"><i class="material-icons text-primary">view_module</i></a></li> <li><a href="#"><i class="material-icons text-primary">chat</i></a></li> <li><a materialize="dropdown" class='dropdown-button' href='#' data-activates='dropdown1'><i class="material-icons text-primary">account_circle</i></a></li> <!-- Dropdown Structure --> <ul id='dropdown1' class='dropdown-content'> <li><a>one</a></li> <li><a>two</a></li> <li class="divider"></li> <li *ngIf="isLoggedIn()"><a (click)="onLogout()">Logout</a></li> </ul> </ul> <ul class="side-nav el-light" id="mobile"> <li routerLinkActive="active"><a routerLink="/matchlist"><i class="material-icons text-primary">view_module</i>Match List</a></li> <li><a href="#"><i class="material-icons text-primary">chat</i>Chat</a></li> <li><div class="divider el-accent"></div></li> <li *ngIf="!isLoggedIn()" routerLinkActive="active"><a routerLink="/login">Login</a></li> <li *ngIf="!isLoggedIn()" routerLinkActive="active"><a routerLink="/register">Signup</a></li> <li *ngIf="isLoggedIn()"><a (click)="onLogout()">Logout</a></li> </ul> </div> </div> </nav>
blog/category/misc.html
scrum-1/2016fallcadp_ag100
<!DOCTYPE html> <html lang="en" > <head> <title>Misc - 2016Fall 課程網誌 (虎尾科大MDE)</title> <!-- Using the latest rendering mode for IE --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style type="text/css"> /*some stuff for output/input prompts*/ div.cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}div.cell.selected{border-radius:4px;border:thin #ababab solid} div.cell.edit_mode{border-radius:4px;border:thin #008000 solid} div.cell{width:100%;padding:5px 5px 5px 0;margin:0;outline:none} div.prompt{min-width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em} @media (max-width:480px){div.prompt{text-align:left}}div.inner_cell{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;line-height:1.21429em} div.prompt:empty{padding-top:0;padding-bottom:0} div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;} div.inner_cell{width:90%;} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;} div.input_prompt{color:navy;border-top:1px solid transparent;} div.output_wrapper{margin-top:5px;position:relative;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);-moz-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);} div.output_collapsed{margin:0px;padding:0px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.out_prompt_overlay{height:100%;padding:0px 0.4em;position:absolute;border-radius:4px;} div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000000;-moz-box-shadow:inset 0 0 1px #000000;box-shadow:inset 0 0 1px #000000;background:rgba(240, 240, 240, 0.5);} div.output_prompt{color:darkred;} a.anchor-link:link{text-decoration:none;padding:0px 20px;visibility:hidden;} h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible;} /* end stuff for output/input prompts*/ .highlight-ipynb .hll { background-color: #ffffcc } .highlight-ipynb { background: #f8f8f8; } .highlight-ipynb .c { color: #408080; font-style: italic } /* Comment */ .highlight-ipynb .err { border: 1px solid #FF0000 } /* Error */ .highlight-ipynb .k { color: #008000; font-weight: bold } /* Keyword */ .highlight-ipynb .o { color: #666666 } /* Operator */ .highlight-ipynb .cm { color: #408080; font-style: italic } /* Comment.Multiline */ .highlight-ipynb .cp { color: #BC7A00 } /* Comment.Preproc */ .highlight-ipynb .c1 { color: #408080; font-style: italic } /* Comment.Single */ .highlight-ipynb .cs { color: #408080; font-style: italic } /* Comment.Special */ .highlight-ipynb .gd { color: #A00000 } /* Generic.Deleted */ .highlight-ipynb .ge { font-style: italic } /* Generic.Emph */ .highlight-ipynb .gr { color: #FF0000 } /* Generic.Error */ .highlight-ipynb .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight-ipynb .gi { color: #00A000 } /* Generic.Inserted */ .highlight-ipynb .go { color: #888888 } /* Generic.Output */ .highlight-ipynb .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ .highlight-ipynb .gs { font-weight: bold } /* Generic.Strong */ .highlight-ipynb .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ .highlight-ipynb .gt { color: #0044DD } /* Generic.Traceback */ .highlight-ipynb .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ .highlight-ipynb .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ .highlight-ipynb .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ .highlight-ipynb .kp { color: #008000 } /* Keyword.Pseudo */ .highlight-ipynb .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ .highlight-ipynb .kt { color: #B00040 } /* Keyword.Type */ .highlight-ipynb .m { color: #666666 } /* Literal.Number */ .highlight-ipynb .s { color: #BA2121 } /* Literal.String */ .highlight-ipynb .na { color: #7D9029 } /* Name.Attribute */ .highlight-ipynb .nb { color: #008000 } /* Name.Builtin */ .highlight-ipynb .nc { color: #0000FF; font-weight: bold } /* Name.Class */ .highlight-ipynb .no { color: #880000 } /* Name.Constant */ .highlight-ipynb .nd { color: #AA22FF } /* Name.Decorator */ .highlight-ipynb .ni { color: #999999; font-weight: bold } /* Name.Entity */ .highlight-ipynb .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ .highlight-ipynb .nf { color: #0000FF } /* Name.Function */ .highlight-ipynb .nl { color: #A0A000 } /* Name.Label */ .highlight-ipynb .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ .highlight-ipynb .nt { color: #008000; font-weight: bold } /* Name.Tag */ .highlight-ipynb .nv { color: #19177C } /* Name.Variable */ .highlight-ipynb .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ .highlight-ipynb .w { color: #bbbbbb } /* Text.Whitespace */ .highlight-ipynb .mf { color: #666666 } /* Literal.Number.Float */ .highlight-ipynb .mh { color: #666666 } /* Literal.Number.Hex */ .highlight-ipynb .mi { color: #666666 } /* Literal.Number.Integer */ .highlight-ipynb .mo { color: #666666 } /* Literal.Number.Oct */ .highlight-ipynb .sb { color: #BA2121 } /* Literal.String.Backtick */ .highlight-ipynb .sc { color: #BA2121 } /* Literal.String.Char */ .highlight-ipynb .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .highlight-ipynb .s2 { color: #BA2121 } /* Literal.String.Double */ .highlight-ipynb .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ .highlight-ipynb .sh { color: #BA2121 } /* Literal.String.Heredoc */ .highlight-ipynb .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ .highlight-ipynb .sx { color: #008000 } /* Literal.String.Other */ .highlight-ipynb .sr { color: #BB6688 } /* Literal.String.Regex */ .highlight-ipynb .s1 { color: #BA2121 } /* Literal.String.Single */ .highlight-ipynb .ss { color: #19177C } /* Literal.String.Symbol */ .highlight-ipynb .bp { color: #008000 } /* Name.Builtin.Pseudo */ .highlight-ipynb .vc { color: #19177C } /* Name.Variable.Class */ .highlight-ipynb .vg { color: #19177C } /* Name.Variable.Global */ .highlight-ipynb .vi { color: #19177C } /* Name.Variable.Instance */ .highlight-ipynb .il { color: #666666 } /* Literal.Number.Integer.Long */ </style> <style type="text/css"> /* Overrides of notebook CSS for static HTML export */ div.entry-content { overflow: visible; padding: 8px; } .input_area { padding: 0.2em; } a.heading-anchor { white-space: normal; } .rendered_html code { font-size: .8em; } pre.ipynb { color: black; background: #f7f7f7; border: none; box-shadow: none; margin-bottom: 0; padding: 0; margin: 0px; font-size: 13px; } /* remove the prompt div from text cells */ div.text_cell .prompt { display: none; } /* remove horizontal padding from text cells, */ /* so it aligns with outer body text */ div.text_cell_render { padding: 0.5em 0em; } img.anim_icon{padding:0; border:0; vertical-align:middle; -webkit-box-shadow:none; -box-shadow:none} </style> <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> <script type="text/javascript"> init_mathjax = function() { if (window.MathJax) { // MathJax loaded MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ] }, displayAlign: 'left', // Change this to 'center' to center equations. "HTML-CSS": { styles: {'.MathJax_Display': {"margin": 0}} } }); MathJax.Hub.Queue(["Typeset",MathJax.Hub]); } } init_mathjax(); </script> <meta name="author" content="KMOL" /> <meta name="keywords" content="Misc" /> <!-- Open Graph tags --> <meta property="og:site_name" content="2016Fall 課程網誌 (虎尾科大MDE)" /> <meta property="og:type" content="website"/> <meta property="og:title" content="2016Fall 課程網誌 (虎尾科大MDE)"/> <meta property="og:url" content=".."/> <meta property="og:description" content="2016Fall 課程網誌 (虎尾科大MDE)"/> <!-- Bootstrap --> <link rel="stylesheet" href="../theme/css/bootstrap.united.min.css" type="text/css"/> <link href="../theme/css/font-awesome.min.css" rel="stylesheet"> <link href="../theme/css/pygments/monokai.css" rel="stylesheet"> <link href="../theme/tipuesearch/tipuesearch.css" rel="stylesheet"> <link rel="stylesheet" href="../theme/css/style.css" type="text/css"/> <link href="../feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="2016Fall 課程網誌 (虎尾科大MDE) ATOM Feed"/> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shCore.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushJScript.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushJava.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushPython.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushSql.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushXml.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushPhp.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCpp.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCss.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCSharp.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushBash.js"></script> <script type='text/javascript'> (function(){ var corecss = document.createElement('link'); var themecss = document.createElement('link'); var corecssurl = "https://chiamingyen.github.io/kmolab_data/files/syntaxhighlighter/css/shCore.css"; if ( corecss.setAttribute ) { corecss.setAttribute( "rel", "stylesheet" ); corecss.setAttribute( "type", "text/css" ); corecss.setAttribute( "href", corecssurl ); } else { corecss.rel = "stylesheet"; corecss.href = corecssurl; } document.getElementsByTagName("head")[0].insertBefore( corecss, document.getElementById("syntaxhighlighteranchor") ); var themecssurl = "https://chiamingyen.github.io/kmolab_data/files/syntaxhighlighter/css/shThemeDefault.css?ver=3.0.9b"; if ( themecss.setAttribute ) { themecss.setAttribute( "rel", "stylesheet" ); themecss.setAttribute( "type", "text/css" ); themecss.setAttribute( "href", themecssurl ); } else { themecss.rel = "stylesheet"; themecss.href = themecssurl; } //document.getElementById("syntaxhighlighteranchor").appendChild(themecss); document.getElementsByTagName("head")[0].insertBefore( themecss, document.getElementById("syntaxhighlighteranchor") ); })(); SyntaxHighlighter.config.strings.expandSource = '+ expand source'; SyntaxHighlighter.config.strings.help = '?'; SyntaxHighlighter.config.strings.alert = 'SyntaxHighlighter\n\n'; SyntaxHighlighter.config.strings.noBrush = 'Can\'t find brush for: '; SyntaxHighlighter.config.strings.brushNotHtmlScript = 'Brush wasn\'t configured for html-script option: '; SyntaxHighlighter.defaults['pad-line-numbers'] = false; SyntaxHighlighter.defaults['toolbar'] = false; SyntaxHighlighter.all(); </script> </head> <body> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="../" class="navbar-brand"> 2016Fall 課程網誌 (虎尾科大MDE) </a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav"> <li><a href="../pages/about/"> About </a></li> <li class="active"> <a href="../category/misc.html">Misc</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li><span> <form class="navbar-search" action="../search.html"> <input type="text" class="search-query" placeholder="Search" name="q" id="tipue_search_input" required> </form></span> </li> <li><a href="../archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li> </ul> </div> <!-- /.navbar-collapse --> </div> </div> <!-- /.navbar --> <!-- Banner --> <!-- End Banner --> <div class="container"> <div class="row"> <div class="col-sm-9"> <article> <h2><a href="../git-submodule-zai-dian-nao-fu-zhu-she-ji-shang-de-ying-yong.html">Git submodule 在電腦輔助設計上的應用</a></h2> <div class="summary"><p>利用 git submodule add -b gh-pages https://github.com/mdecourse/2016fallcadp.git 2016fallcadp 可以將課程倉儲設為子模組, 且應用時可以綁定特定版本.</p> <a class="btn btn-default btn-xs" href="../git-submodule-zai-dian-nao-fu-zhu-she-ji-shang-de-ying-yong.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../dao-ru-zu-yuan-cheng-shi-ce-shi.html">導入組員程式測試</a></h2> <div class="summary"><p>測試程式模組導入與呼叫. <a href="https://groups.google.com/forum/#!topic/brython/IzNg0cSk6kI">https://groups.google.com/forum/#!topic/brython/IzNg0cSk6kI</a></p> <a class="btn btn-default btn-xs" href="../dao-ru-zu-yuan-cheng-shi-ce-shi.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../2016fall-delta-3d-yin-biao-ji-she-ji.html">2016Fall Delta 3D 印表機設計</a></h2> <div class="summary"><p>各組自行透過 <a href="http://tw.misumi-ec.com/">http://tw.misumi-ec.com/</a> 尋找適用的標準零件, 下載 2D 與 3D 零件圖檔, 利用 Solvespace 與 OnShape 進行設計組立與模擬後, 實際下單購買各零組件, 完成 3D 印表機的設計與實作.</p> <a class="btn btn-default btn-xs" href="../2016fall-delta-3d-yin-biao-ji-she-ji.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../2016fall-onshape-jiao-xue.html">2016Fall Onshape 教學</a></h2> <div class="summary"><p>有關 Onshape 零件, 組件, 機構模擬等功能介紹, FeatureScript 與協同設計等</p> <a class="btn btn-default btn-xs" href="../2016fall-onshape-jiao-xue.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../2016fall-ping-mian-ji-gou-mo-ni.html">2016Fall 平面機構模擬</a></h2> <div class="summary"><p>有關 Solvespace 機構模擬功能介紹, 與 Python3 及 Brython 程式驗證</p> <a class="btn btn-default btn-xs" href="../2016fall-ping-mian-ji-gou-mo-ni.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../2016fall-solvespace-jiao-xue.html">2016Fall Solvespace 教學</a></h2> <div class="summary"><p>有關 Solvespace 零件, 組件, 機構模擬等功能介紹, 程式編譯與 API 延伸等</p> <a class="btn btn-default btn-xs" href="../2016fall-solvespace-jiao-xue.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue.html">2016Fall 機械設計主題教學</a></h2> <div class="summary"><p>知識管理與最佳化應用實驗室試圖利用計算機程式、網際內容管理、電腦輔助設計實習與協同產品設計實習等課程, 進行與機械設計相關的主題式教學, 其中包含強化創造力的教學、令學員熟習六種工程表達方式, 並且俱備融入協同設計所需要的四大面向知識與技能.</p> <a class="btn btn-default btn-xs" href="../2016fall-ji-jie-she-ji-zhu-ti-jiao-xue.html">more ...</a> </div> </article> <hr/> </div> <div class="col-sm-3" id="sidebar"> <aside> <section class="well well-sm"> <ul class="list-group list-group-flush"> <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Recent Posts</span></h4> <ul class="list-group" id="recentposts"> <li class="list-group-item"> <a href="../git-submodule-zai-dian-nao-fu-zhu-she-ji-shang-de-ying-yong.html"> Git submodule 在電腦輔助設計上的應用 </a> </li> <li class="list-group-item"> <a href="../dao-ru-zu-yuan-cheng-shi-ce-shi.html"> 導入組員程式測試 </a> </li> <li class="list-group-item"> <a href="../2016fall-delta-3d-yin-biao-ji-she-ji.html"> 2016Fall Delta 3D 印表機設計 </a> </li> <li class="list-group-item"> <a href="../2016fall-onshape-jiao-xue.html"> 2016Fall Onshape 教學 </a> </li> <li class="list-group-item"> <a href="../2016fall-ping-mian-ji-gou-mo-ni.html"> 2016Fall 平面機構模擬 </a> </li> </ul> </li> <li class="list-group-item"><a href="../categories.html"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Categories</span></h4></a> <ul class="list-group" id="categories"> <li class="list-group-item"> <a href="../category/misc.html"> <i class="fa fa-folder-open fa-lg"></i> Misc </a> </li> </ul> </li> <li class="list-group-item"><a href="../tags.html"><h4><i class="fa fa-tags fa-lg"></i><span class="icon-label">Tags</span></h4></a> <ul class="list-group list-inline tagcloud" id="tags"> </ul> </li> <li class="list-group-item"><h4><i class="fa fa-external-link-square fa-lg"></i><span class="icon-label">Links</span></h4> <ul class="list-group" id="links"> <li class="list-group-item"> <a href="http://getpelican.com/" target="_blank"> Pelican </a> </li> <li class="list-group-item"> <a href="https://github.com/DandyDev/pelican-bootstrap3/" target="_blank"> pelican-bootstrap3 </a> </li> <li class="list-group-item"> <a href="https://github.com/getpelican/pelican-plugins" target="_blank"> pelican-plugins </a> </li> <li class="list-group-item"> <a href="https://github.com/Tipue/Tipue-Search" target="_blank"> Tipue search </a> </li> </ul> </li> </ul> </section> </aside> </div> </div> </div> <footer> <div class="container"> <hr> <div class="row"> <div class="col-xs-10">&copy; 2016 KMOL &middot; Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, <a href="http://getbootstrap.com" target="_blank">Bootstrap</a> </div> <div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div> </div> </div> </footer> <script src="../theme/js/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="../theme/js/bootstrap.min.js"></script> <!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> <script src="../theme/js/respond.min.js"></script> </body> </html>
agora_site/accounts/templates/accounts/email_form.html
aguspiza/agora-ciudadana
{% extends 'accounts/base_userena.html' %} {% load i18n %} {% block content_title %}<h2>{% blocktrans with user.username as username %}Account &raquo; {{ username }}{% endblocktrans %}</h2>{% endblock %} {% block content %} <form action="" method="post"> <ul id="box-nav"> <li class="first"><a href="{% url userena_profile_detail user.username %}"><span>{% trans 'View profile' %}</span></a></li> <li><a href="{% url userena_profile_edit user.username %}">{% trans "Edit profile" %}</a></li> <li><a href="{% url userena_password_change user.username %}">{% trans "Change password" %}</a></li> <li class="last selected"><a href="{% url userena_email_change user.username %}">{% trans "Change email" %}</a></li> </ul> {% csrf_token %} <fieldset> <legend>{% trans "Change email address" %}</legend> {{ form.as_p }} </fieldset> <input type="submit" value="{% trans "Change email" %}" /> </form> {% endblock %}
doc/targen.html
rfujita/hargyllcms
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>targen</title> <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> <meta name="author" content="Graeme Gill"> </head> <body> <h2><b>target/targen</b></h2> <h3>Summary</h3> Generate a profiling test target values&nbsp;<a href="File_Formats.html#.ti1">.ti1</a> file. &nbsp;<b>targen</b> is used to generate the device channel test point values for grayscale, RGB, CMY, CMYK or N-color output or display devices.&nbsp; <h3>Usage Summary</h3> <small><span style="font-family: monospace;">targen [options] outfile</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#v">-v [level]</a><span style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; Verbose mode [optional verbose level, 1..n]</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#d">-d col_comb</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; choose colorant combination from the following:</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0: Video grey</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp; 1: Print grey</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2: Print RGB</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3: Video RGB</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4: CMYK<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5: CMY<br style="font-family: monospace;"> </span><span style="font-family: monospace;">&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6: CMYK + Light CM</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7: CMYK + Light CMK</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp; 8: CMYK + Red + Blue</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 9: CMYK + Orange + Green</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10: CMYK + Light CMK + Light Light K</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 11: CMYK + Orange + Green + Light CM</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 12: CMYK + Light CM + Medium CM</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#D">-D colorant</a><span style="font-family: monospace;"> &nbsp;&nbsp;&nbsp; Add or delete colorant from combination:</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 0: Additive</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 1: Cyan</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2: Magenta</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3: Yellow</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4: Black</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 5: Orange</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 6: Red</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 7: Green</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 8: Blue</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 9: White</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 10: Light Cyan</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 11: Light Magenta</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 12: Light Yellow</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 13: Light Black</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 14: Medium Cyan</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 15: Medium Magenta</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 16: Medium Yellow</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp; 17: Medium Black</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 18: Light Light Black<br> &nbsp;<a href="#G">-G</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Generate good optimzed points rather than Fast<br style="font-family: monospace;"> </span><span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#e">-e patches</a><span style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp; White color test patches (default 4)</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#s">-s steps</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Single channel steps (default 0)</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#g">-g steps</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Gray axis RGB or CMY steps (default 0)</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#m">-m steps</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Multidimensional device space cube steps (default 2)</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#f">-f patches</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Add iterative &amp; adaptive full spread patches to total (default 836)<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Default is Optimised Farthest Point Sampling (OFPS)<br style="font-family: monospace;"> </span><span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#t">-t</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; Use incremental far point for full spread</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#r">-r</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; Use device space random for full spread</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#R">-R</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; Use perceptual space random for full spread</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#q">-q</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; Use device space-filling quasi-random for full spread<br> </span></small><small><span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#Q">-Q</a><span style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; Use perceptual space-filling quasi-random for full spread</span></small><br style="font-family: monospace;"> <small><span style="font-family: monospace;"></span><span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#i">-i</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; Use device space body centered cubic grid for full spread</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#I">-I</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; Use perceptual space body centered cubic grid for full spread</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#a">-a angle</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Simplex grid angle 0.0 - 0.5 for B.C.C. grid, default -2047840407</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp; </span><a style="font-family: monospace;" href="#A">-A adaptation</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Degree of adaptation of OFPS 0.0 - 1.0 (default 0.1, 1.0 if -c profile provided)</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#t">-t</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Use incremental far point for full spread (default iterative)</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#l">-l ilimit</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Total ink limit in %(default = none, or estimated from profile)<br> </span></small><small><span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#p">-p power</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Optional power applied to all device values.</span></small><br style="font-family: monospace;"> <small><span style="font-family: monospace;"></span><span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#c">-c profile</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Optional device ICC or MPP pre-conditioning profile filename</span><br style="font-family: monospace;"> &nbsp; <a style="font-family: monospace;" href="#F">-F L,a,b,rad</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp; Filter out samples outside Lab sphere.</span><br style="font-family: monospace;"> <span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#w">-w</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dump diagnostic outfile.wrl file (Lab locations)<br> </span></small><small><span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#W">-W</a><span style="font-family: monospace;"> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dump diagnostic outfile.wrl file (Device locations)</span></small><br style="font-family: monospace;"> <small><span style="font-family: monospace;"></span><span style="font-family: monospace;">&nbsp;</span><a style="font-family: monospace;" href="#p1">outfile</a><span style="font-family: monospace;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Base name for output(.ti1)</span></small> <br> <h3>Usage Details and Discussion<br> </h3> The number of target patches needs to be chosen, depending on the media size, the type of device, and the quality of profile required. For an inkjet device, something like 3000 test points or more is desirable for high quality profiles, while 500-1000 will probably suffice for a medium quality profile. A few hundred may be sufficient for a preliminary profile. Well behaved printing devices (such as a chemical proof, or a high quality printing press) may produce good profiles with 1000 to 2000 test points. Well behaved RGB devices such as CRT monitors may need only a few hundred points, if a shaper/matrix type profile is to be produced, while pseudo RGB printers, or other RGB devices that a CLUT type profile may be used with, should probably choose somewhere between 500 and 3000 patches. For 'N' color profile creation, 3000 or more test points should probably be used.<br> <br> <a name="v"></a> The <b>-v</b> flag turns on extra verbosity when generating patch values. Extra diagnostics and verbosity may be available if a parameter is provided with a value greater than 1.<br> <br> <a name="d"></a> The <b>-d</b> parameter sets the colorspace the test values will be generated in. Video gray space is assumed to be an additive space, where a zero device value will be black, and a maximum device value will be white. A print gray space is assumed to be a subtractive space, in which a zero device value will be white, and a maximum device value will be black. If no colorspace is specified, subtractive CMYK is assumed as a default.<br> <br> <a name="D"></a> The <b>-D</b> parameter modifies the colorspace set by <span style="font-weight: bold;">-d</span> by allowing individual colorants to be added or subtracted from the colorspace.<br> <br> <a name="G"></a> The <b>-G</b> flag changes the Incremental Far Point Distribution algorithm from fast to good mode. Fast mode uses a limited number of iterations to optimize the patch locations, while good mode strives for a more even patch distribution by using more iterations.<br> <br> The composition of the test patches is controlled by the following flags and parameters:<br> <br> <a name="e"></a> The <b>-e</b> parameter sets the number of white colored test patches, defaulting to 4 if the -e flag isn't used. The white patches are usually very important in establishing white point that the ICC data is made relative to, so it improves robustness to use more than a single point.<br> <br> <a name="s"></a> The <b>-s</b> parameter sets the number of patches in a set of per colorant wedges. The steps are evenly spaced in device space by default, and the total number of test patches will be the number of colorants times the value specified with the -s flag. If the <span style="font-weight: bold;">-p</span> parameter is provided, then, then the steps will be distributed according to the power value. e.g. the option <span style="font-weight: bold;">-s 5</span> will generate steps at 0.0 0.25 0.5 0.75 and 1.0, while the option <span style="font-weight: bold;">-s 5 -p 2.0</span> will generate steps at 0.0 0.125 0.25 0.5625 and 1.0. By default, no per colorant test wedge values are generated. When creating a test chart for a device that will be used as a source colorspace, it is often useful to generated some per colorant wedge values.<br> <br> <a name="g"></a> The <b>-g</b> parameter sets the number of patches in a set of combined (nominally gray) wedges. This will typically be equal RGB or CMY values, and by default will be equally spaced steps in device space. If the <span style="font-weight: bold;">-p</span> parameter is provided, then, then the steps will be distributed according to the power value. e.g. the option <span style="font-weight: bold;">-g 5</span> will generate steps at 0.0 0.25 0.5 0.75 and 1.0, while the option <span style="font-weight: bold;">-g 5 -p 2.0</span> will generate steps at 0.0 0.125 0.25 0.5625 and 1.0. By default, no gray combination values are generated. When creating a test chart for a device that will be used as a source colorspace, it is often useful to generated some per colorant wedge values.<br> <br> <a name="m"></a> The <b>-m</b> parameter sets the edge size of the multidimensional grid of test values. The total number of patches of this type will be the -m parameter value to the power of the number of colorants. The grid steps are evenly spaced in device space by default, but if the <span style="font-weight: bold;">-p</span> parameter is provided, then, then the steps will be distributed according to the power value. e.g. the option <span style="font-weight: bold;">-m 5</span> will generate steps at 0.0 0.25 0.5 0.75 and 1.0, while the option <span style="font-weight: bold;">-m 5 -p 2.0</span> will generate steps at 0.0 0.125 0.25 0.5625 and 1.0. By default, all the device primary color combinations that fall within the ink limit are generated..<br> <br> The behavior of the <b>-e</b>, <b>-s</b>, <b>-g</b> and <b>-m</b> flags, is not to duplicate test values already created by a previous type.<br> <br> <a name="f"></a> The <b>-f</b> parameter sets the number of full spread test patches. Full spread patches are distributed according to the default or chosen algorithm. The default algorithm will optimize the point locations to minimize the distance from any point in device space, to the nearest sample point. This is called Optimized Farthest Point Sampling (OFPS) . This can be overridden by specifying the <b>-t. -r, -R, -q, -i or -I</b> flags. If the default OFPS algorithm is used, then adaptive test point distribution can be fully enabled by supplying a previous or typical profile with the <span style="font-weight: bold;">-c</span> option. The total number patches specified will include any patches generated using the <b>-e</b>, <b>-s</b>, <b>-g</b> and <b>-m</b> flags (i.e. full spread patches will be added to bring the total number of patches including those generated using the <b>-e</b>, <b>-s</b>, <b>-g</b> and <b>-m</b> flags up to the specified number). When there are more than four device channels, the full spread distribution algorithm can't deal with so many dimensions, and <b>targen</b> falls back on an incremental far point distribution algorithm by default, that doesn't generate such evenly spread points. This behaviour can be forced using the <b>-t</b> flag. A <a href="#Table">table</a> of useful total patch counts for different paper sizes is shown below.<br> <br> <a name="t"></a> The <b>-t</b> flag overrides the default full spread test patch algorithm, and makes use of the Incremental Far Point Distribution algorithm, which incrementally searches for test points that are as far away as possible from any existing points. This is used as the default for dimensions higher than 4.<br> <br> <a name="r"></a> The <b>-r</b> flag overrides the default full spread test patch algorithm, and chooses test points with an even random distribution in device space.<br> <br> <a name="R"></a> The <b>-R</b> flag overrides the default full spread test patch algorithm, and chooses test points with an even random distribution in perceptual space.<br> <br> <a name="q"></a> The <b>-q</b> flag overrides the default full spread test patch algorithm, and chooses test points with a quasi-random, space filling distribution in device space.<br> <br> <a name="Q"></a> The <b>-Q</b> flag overrides the default full spread test patch algorithm, and chooses test points with a quasi-random, space filling distribution in perceptual space.<br> <br> <a name="i"></a> The <b>-i</b> flag overrides the default full spread test patch algorithm, and chooses test points with body centered cubic distribution in device space.<br> <br> <a name="I"></a> The <b>-I</b> flag overrides the default full spread test patch algorithm, and chooses test points with body centered cubic distribution in perceptual space.<br> <br> <a name="a"></a> The <b>-a <i>angle</i></b> parameter sets the overall angle that the body centered grid distribution has.<br> <br> <a name="A"></a> The <b>-A <i>adaptation</i></b> parameter sets the degree of adaptation to the known device characteristics, used by the default full spread OFPS algorithm. A profile should be provided using the <span style="font-weight: bold;">-c</span> parameter if <span style="font-weight: bold; font-style: italic;">adaptation</span> is set above a low level. By default the adaptation is 0.1 (low), and 1.0 (maximum) if <span style="font-weight: bold;">-c profile</span> is provided, but these defaults can be overridden using this option. For instance, if the <span style="font-weight: bold;">-c profile</span> doesn't represent the device behavior very well, a lower adaption than 1.0 might be appropriate.<br> <br> <a name="l"></a> The <b>-l</b> flag and parameter sets a total ink limit (Total Area Coverage or TAC), which is adhered to for all the generated points. It is generally good practice to set a test chart ink limit at least 10% higher than the ink limit that will be applied when making the resulting profile. In the case of device cube points, this can generate extra test values that lie at the ink limit boundary. For gray wedge values, any that exceed the ink limit are omitted. Full spread test values are all generated to lie within the ink limit. Although it doesn't make much sense, this parameter has an affect on additive device spaces (such as RGB), but should not normally be used with such devices. The total ink limit value will be written to the .ti1 file, and carried through automatically to the .ti3 file, so that it can be used during profile creation. If a profile is provided using the <span style="font-weight: bold;">-c</span> flag, then this will be used to estimate an ink limit, if none is provided with the <span style="font-weight: bold;">-l</span> flag. Ink limits are, as far as possible, always in final calibrated device values, and the calibration curves from the profile provided to the <span style="font-weight: bold;">-c</span> flag will be used to estimate the equivalent limit in the underlying pre-calibration device space values that targen creates.<br> <br> <a name="p"></a> The <b>-p</b> flag and parameter sets a power value applied to all of the device values after they are generated, <span style="font-weight: bold;"></span><span style="font-weight: bold;"></span>the spacer colors. This can be useful in creating calibration charts for very non-linearly behaved devices. A value greater than 1.0 will cause a tighter spacing of test values near device value 0.0, while a value less than 1.0 will cause a tighter spacing near device value 1.0. [ <span style="font-weight: bold;">Note</span> that for Print RGB space this is reversed, since internally a Print RGB space is treated as a CMY space. ]. <span style="font-weight: bold;">Note</span> that the device model used to create the expected patch values will not take into account the applied power, nor will the more complex full spread algorithms correctly take into account the power in generating values up to the ink limits.<br> <br> <a name="c"></a> The <b>-c</b> flag and parameter is used to specify an <a href="File_Formats.html#ICC">ICC</a> or <a href="File_Formats.html#MPP">MPP</a> pre-conditioning profile, for estimating perceptual distances and colorspace curvature, used in optimizing the full spread test point placement,or in creating perceptualy spaced distributions. Normally a previous profile for this or a similar device will be used, or a simpler, preliminary profile will be created and used. If no such profile is specified, a default device space model is used. Note that this will only have an effect if an algorithm that uses the perceptual placement, such as <span style="font-weight: bold;">-R, -Q, -I</span>, or the default OFPS with an <span style="font-weight: bold;">-A</span> value &gt; 0.0.<br> <br> <a name="F"></a> The <b>-F</b> flag and parameters is used to define an L*a*b* sphere to filter the test points through. Only test points within the sphere (defined by it's center and radius) will be written to the .ti1 file. This can be good for targeting supplemental test points at a troublesome area of a device. The accuracy of the L*a*b* target will be best when the <span style="font-weight: bold;">-c</span> option is used to specify a reasonably accurate profile for the device. Note that the actual number of points generated can be hard to predict, and will depend on the type of generation used. All means of generating points except the -f N &amp; -r, -R and -q will generate a smaller number of test points than expected. If the -f N &amp; -r, -R and -q methods are used, then the target number of points will be achieved. For this reason, the -f N -q method is probably the easiest to use.<br> <br> <a name="w"></a> The <b>-w</b> flag causes a diagnostic <a href="File_Formats.html#VRML">VRML</a> .wrl file to be created, in which the test points are plotted as small spheres in L*a*b* colorspace. Note that for a CMYK device, the point spacing may seem strange, since the extra K dimension is compressed into the 3 dimensional L*a*b* space. <a name="W"></a>If the <span style="font-weight: bold;">-W</span> flag is given, the plot will be in device space, with only the first 3 dimensions of each point being plotted.<br> <br> <a name="p1"></a> The final parameter on the command line is the base filename for the <a href="File_Formats.html#.ti1">.ti1</a> output file. <b>targen</b> will add the .ti1 extension automatically.<br> <br> Some typical total patch number/paper size combinations are shown below. These "magic" numbers are found by using <a href="printtarg.html">printtarg</a> to compute the row length and number of rows, and then adjusting the total number of patches to fill the last row or paper size, in an iterative fashion.<br> <br> <a name="Table"></a> &nbsp;&nbsp; &nbsp; Size (mm/Standard Name), &nbsp; No. Patches<br> <br> DTP20:<br> <br> &nbsp; &nbsp; &nbsp; 1 x A4&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 540<br> &nbsp; &nbsp; &nbsp; 2 x A4 &nbsp; &nbsp; &nbsp; 1080<br> &nbsp;&nbsp; &nbsp;&nbsp; 3 x A4&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 1620<br> &nbsp;&nbsp; &nbsp;&nbsp; 4 x A4&nbsp; &nbsp; &nbsp;&nbsp; 2160<br> <br> &nbsp;&nbsp;&nbsp; &nbsp; 1 x Letter &nbsp;&nbsp; 570<br> &nbsp; &nbsp; &nbsp; 2 x Letter&nbsp;&nbsp; 1140<br> &nbsp; &nbsp;&nbsp; &nbsp;3 x Letter&nbsp;&nbsp; 1710<br> &nbsp; &nbsp; &nbsp; 4 x Letter&nbsp;&nbsp; 2280<br> <br> DTP 22:<br> <br> &nbsp; &nbsp; &nbsp; 1 x A4&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 782<br> &nbsp; &nbsp; &nbsp; 2 x A4 &nbsp; &nbsp; &nbsp; 1564<br> <br> &nbsp;&nbsp;&nbsp; &nbsp; 1 x Letter &nbsp;&nbsp; 736<br> &nbsp; &nbsp; &nbsp; 2 x Letter&nbsp;&nbsp; 1472<br> <br> &nbsp; DTP41:<br> <br> &nbsp; &nbsp; &nbsp; 1 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 375<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 750<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1125<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1500<br> <br> &nbsp; &nbsp; &nbsp; 1 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 345<br> &nbsp; &nbsp; &nbsp; 2 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 690<br> &nbsp; &nbsp; &nbsp; 3 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1035<br> &nbsp; &nbsp; &nbsp; 4 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1380<br> <br> &nbsp;&nbsp; &nbsp;&nbsp; 1 x A3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 836<br> &nbsp;&nbsp; &nbsp;&nbsp; 2 x A3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1672<br> <br> &nbsp; &nbsp; &nbsp; 1 x 11x17 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 780<br> &nbsp; &nbsp; &nbsp; 2 x 11x17 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1560<br> <br> <br> &nbsp; DTP51:<br> <br> &nbsp; &nbsp; &nbsp; 1 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 266<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 2 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 532<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 3 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;&nbsp; 798<br> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 4 x A4 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1064<br> <br> &nbsp; &nbsp; &nbsp; 1 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 252<br> &nbsp; &nbsp; &nbsp; 2 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 504<br> &nbsp; &nbsp; &nbsp; 3 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 756<br> &nbsp; &nbsp; &nbsp; 4 x Letter &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 1008<br> <br> &nbsp;&nbsp; &nbsp;&nbsp; 1 x A3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 580<br> &nbsp;&nbsp; &nbsp;&nbsp; 2 x A3&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1160<br> <br> &nbsp; &nbsp; &nbsp; 1 x 11x17 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; 570<br> &nbsp; &nbsp; &nbsp; 2 x 11x17 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp; 1140<br> <br> &nbsp; SpectroScan with square patches:<br> <br> &nbsp; &nbsp; &nbsp; 1 x A4R&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 1014<br> &nbsp; &nbsp; &nbsp; 2 x A4R &nbsp; &nbsp; &nbsp; 2028<br> &nbsp;&nbsp; &nbsp;&nbsp; 3 x A4R&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 3042<br> &nbsp;&nbsp; &nbsp;&nbsp; 4 x A4R&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 4056<br> <br> &nbsp;&nbsp;&nbsp; &nbsp; 1 x LetterR &nbsp;&nbsp; 999<br> &nbsp; &nbsp; &nbsp; 2 x LetterR&nbsp;&nbsp; 1998<br> &nbsp; &nbsp;&nbsp; &nbsp;3 x LetterR&nbsp;&nbsp; 2997<br> &nbsp; &nbsp; &nbsp; 4 x LetterR&nbsp;&nbsp; 3996<br> <br> &nbsp; SpectroScan with hexagonal patches:<br> <br> &nbsp; &nbsp; &nbsp; 1 x A4R&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 1170<br> &nbsp; &nbsp; &nbsp; 2 x A4R &nbsp; &nbsp; &nbsp; 2340<br> &nbsp;&nbsp; &nbsp;&nbsp; 3 x A4R&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 3510<br> &nbsp;&nbsp; &nbsp;&nbsp; 4 x A4R&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 4680<br> <br> &nbsp;&nbsp;&nbsp; &nbsp; 1 x LetterR&nbsp;&nbsp; 1092<br> &nbsp; &nbsp; &nbsp; 2 x LetterR&nbsp;&nbsp; 2184<br> &nbsp; &nbsp;&nbsp; &nbsp;3 x LetterR&nbsp;&nbsp; 3276<br> &nbsp; &nbsp; &nbsp; 4 x LetterR&nbsp;&nbsp; 4368<br> <br> &nbsp; Eye-One Pro:<br> <br> &nbsp; &nbsp; &nbsp; 1 x A4&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 441<br> &nbsp; &nbsp; &nbsp; 2 x A4 &nbsp; &nbsp; &nbsp;&nbsp; 882<br> &nbsp;&nbsp; &nbsp;&nbsp; 3 x A4&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; 1323<br> &nbsp;&nbsp; &nbsp;&nbsp; 4 x A4&nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 1764<br> <br> &nbsp;&nbsp;&nbsp; &nbsp; 1 x Letter &nbsp;&nbsp; 462<br> &nbsp; &nbsp; &nbsp; 2 x Letter&nbsp;&nbsp;&nbsp; 924<br> &nbsp; &nbsp;&nbsp; &nbsp;3 x Letter&nbsp;&nbsp; 1386<br> &nbsp; &nbsp; &nbsp; 4 x Letter&nbsp;&nbsp; 1848<br> <br> &nbsp; Scanner (printtarg with -iSS -s options):<br> <br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 1 x A4R &nbsp; &nbsp;&nbsp; 1014<br> &nbsp; &nbsp; &nbsp; &nbsp;2 x A4R &nbsp; &nbsp;&nbsp; 2028<br> &nbsp; &nbsp; &nbsp; &nbsp;3 x A4R &nbsp; &nbsp;&nbsp; 3042<br> &nbsp; &nbsp; &nbsp; &nbsp;4 x A4R &nbsp; &nbsp;&nbsp; 4056<br> <br> &nbsp;&nbsp;&nbsp; &nbsp;&nbsp; 1 x LetterR&nbsp;&nbsp; 962<br> &nbsp; &nbsp; &nbsp; &nbsp;2 x LetterR&nbsp; 1924<br> &nbsp; &nbsp; &nbsp; &nbsp;3 x LetterR&nbsp; 2886<br> &nbsp; &nbsp; &nbsp; &nbsp;4 x LetterR&nbsp; 3848<br> &nbsp; &nbsp; &nbsp; &nbsp;<br> <br> <br> <br> <br> <br> <br> <br> </body> </html>
rules/rgaa3-2016/src/test/resources/testcases/rgaa32016/Rgaa32016Rule060403/Rgaa32016.Test.06.04.03-2Failed-02.html
Tanaguru/Tanaguru
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> <title>Rgaa32016 Test.6.4.4 Failed 02</title> </head> <body> <div> <div class="test-detail" lang="fr"> Pour chaque page web, chaque <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mLienIdentique">lien identique</a> de <a href="http://references.modernisation.gouv.fr/referentiel-technique-0#mIntituleLien">type composite</a> a-t-il les mêmes fonction et destination ? </div> <div class="testcase"> <a href="my-link.html"> CLIQUEZ <img src="image.jpg" alt="ICI " /> </a> <a href="link2.htm"> <img src="image.jpg" alt="cliquez " /> ici </a> </div> <p class="test-explanation">Failed : The page contains two identical links without context and with different target</p> </div> </body> </html>
blog/category/course2.html
40423244/2017springcd_hw
<!DOCTYPE html> <html lang="en" > <head> <title>Course - 2017Spring 協同產品設計實習 (虎尾科大MDE)</title> <!-- Using the latest rendering mode for IE --> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style type="text/css"> /*some stuff for output/input prompts*/ div.cell{border:1px solid transparent;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch}div.cell.selected{border-radius:4px;border:thin #ababab solid} div.cell.edit_mode{border-radius:4px;border:thin #008000 solid} div.cell{width:100%;padding:5px 5px 5px 0;margin:0;outline:none} div.prompt{min-width:11ex;padding:.4em;margin:0;font-family:monospace;text-align:right;line-height:1.21429em} @media (max-width:480px){div.prompt{text-align:left}}div.inner_cell{display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;display:flex;flex-direction:column;align-items:stretch;-webkit-box-flex:1;-moz-box-flex:1;box-flex:1;flex:1} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;line-height:1.21429em} div.prompt:empty{padding-top:0;padding-bottom:0} div.input{page-break-inside:avoid;display:-webkit-box;-webkit-box-orient:horizontal;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:horizontal;-moz-box-align:stretch;display:box;box-orient:horizontal;box-align:stretch;} div.inner_cell{width:90%;} div.input_area{border:1px solid #cfcfcf;border-radius:4px;background:#f7f7f7;} div.input_prompt{color:navy;border-top:1px solid transparent;} div.output_wrapper{margin-top:5px;position:relative;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.output_scroll{height:24em;width:100%;overflow:auto;border-radius:4px;-webkit-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);-moz-box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);box-shadow:inset 0 2px 8px rgba(0, 0, 0, 0.8);} div.output_collapsed{margin:0px;padding:0px;display:-webkit-box;-webkit-box-orient:vertical;-webkit-box-align:stretch;display:-moz-box;-moz-box-orient:vertical;-moz-box-align:stretch;display:box;box-orient:vertical;box-align:stretch;width:100%;} div.out_prompt_overlay{height:100%;padding:0px 0.4em;position:absolute;border-radius:4px;} div.out_prompt_overlay:hover{-webkit-box-shadow:inset 0 0 1px #000000;-moz-box-shadow:inset 0 0 1px #000000;box-shadow:inset 0 0 1px #000000;background:rgba(240, 240, 240, 0.5);} div.output_prompt{color:darkred;} a.anchor-link:link{text-decoration:none;padding:0px 20px;visibility:hidden;} h1:hover .anchor-link,h2:hover .anchor-link,h3:hover .anchor-link,h4:hover .anchor-link,h5:hover .anchor-link,h6:hover .anchor-link{visibility:visible;} /* end stuff for output/input prompts*/ .highlight-ipynb .hll { background-color: #ffffcc } .highlight-ipynb { background: #f8f8f8; } .highlight-ipynb .c { color: #408080; font-style: italic } /* Comment */ .highlight-ipynb .err { border: 1px solid #FF0000 } /* Error */ .highlight-ipynb .k { color: #008000; font-weight: bold } /* Keyword */ .highlight-ipynb .o { color: #666666 } /* Operator */ .highlight-ipynb .cm { color: #408080; font-style: italic } /* Comment.Multiline */ .highlight-ipynb .cp { color: #BC7A00 } /* Comment.Preproc */ .highlight-ipynb .c1 { color: #408080; font-style: italic } /* Comment.Single */ .highlight-ipynb .cs { color: #408080; font-style: italic } /* Comment.Special */ .highlight-ipynb .gd { color: #A00000 } /* Generic.Deleted */ .highlight-ipynb .ge { font-style: italic } /* Generic.Emph */ .highlight-ipynb .gr { color: #FF0000 } /* Generic.Error */ .highlight-ipynb .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .highlight-ipynb .gi { color: #00A000 } /* Generic.Inserted */ .highlight-ipynb .go { color: #888888 } /* Generic.Output */ .highlight-ipynb .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ .highlight-ipynb .gs { font-weight: bold } /* Generic.Strong */ .highlight-ipynb .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ .highlight-ipynb .gt { color: #0044DD } /* Generic.Traceback */ .highlight-ipynb .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ .highlight-ipynb .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ .highlight-ipynb .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ .highlight-ipynb .kp { color: #008000 } /* Keyword.Pseudo */ .highlight-ipynb .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ .highlight-ipynb .kt { color: #B00040 } /* Keyword.Type */ .highlight-ipynb .m { color: #666666 } /* Literal.Number */ .highlight-ipynb .s { color: #BA2121 } /* Literal.String */ .highlight-ipynb .na { color: #7D9029 } /* Name.Attribute */ .highlight-ipynb .nb { color: #008000 } /* Name.Builtin */ .highlight-ipynb .nc { color: #0000FF; font-weight: bold } /* Name.Class */ .highlight-ipynb .no { color: #880000 } /* Name.Constant */ .highlight-ipynb .nd { color: #AA22FF } /* Name.Decorator */ .highlight-ipynb .ni { color: #999999; font-weight: bold } /* Name.Entity */ .highlight-ipynb .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ .highlight-ipynb .nf { color: #0000FF } /* Name.Function */ .highlight-ipynb .nl { color: #A0A000 } /* Name.Label */ .highlight-ipynb .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ .highlight-ipynb .nt { color: #008000; font-weight: bold } /* Name.Tag */ .highlight-ipynb .nv { color: #19177C } /* Name.Variable */ .highlight-ipynb .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ .highlight-ipynb .w { color: #bbbbbb } /* Text.Whitespace */ .highlight-ipynb .mf { color: #666666 } /* Literal.Number.Float */ .highlight-ipynb .mh { color: #666666 } /* Literal.Number.Hex */ .highlight-ipynb .mi { color: #666666 } /* Literal.Number.Integer */ .highlight-ipynb .mo { color: #666666 } /* Literal.Number.Oct */ .highlight-ipynb .sb { color: #BA2121 } /* Literal.String.Backtick */ .highlight-ipynb .sc { color: #BA2121 } /* Literal.String.Char */ .highlight-ipynb .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .highlight-ipynb .s2 { color: #BA2121 } /* Literal.String.Double */ .highlight-ipynb .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ .highlight-ipynb .sh { color: #BA2121 } /* Literal.String.Heredoc */ .highlight-ipynb .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ .highlight-ipynb .sx { color: #008000 } /* Literal.String.Other */ .highlight-ipynb .sr { color: #BB6688 } /* Literal.String.Regex */ .highlight-ipynb .s1 { color: #BA2121 } /* Literal.String.Single */ .highlight-ipynb .ss { color: #19177C } /* Literal.String.Symbol */ .highlight-ipynb .bp { color: #008000 } /* Name.Builtin.Pseudo */ .highlight-ipynb .vc { color: #19177C } /* Name.Variable.Class */ .highlight-ipynb .vg { color: #19177C } /* Name.Variable.Global */ .highlight-ipynb .vi { color: #19177C } /* Name.Variable.Instance */ .highlight-ipynb .il { color: #666666 } /* Literal.Number.Integer.Long */ </style> <style type="text/css"> /* Overrides of notebook CSS for static HTML export */ div.entry-content { overflow: visible; padding: 8px; } .input_area { padding: 0.2em; } a.heading-anchor { white-space: normal; } .rendered_html code { font-size: .8em; } pre.ipynb { color: black; background: #f7f7f7; border: none; box-shadow: none; margin-bottom: 0; padding: 0; margin: 0px; font-size: 13px; } /* remove the prompt div from text cells */ div.text_cell .prompt { display: none; } /* remove horizontal padding from text cells, */ /* so it aligns with outer body text */ div.text_cell_render { padding: 0.5em 0em; } img.anim_icon{padding:0; border:0; vertical-align:middle; -webkit-box-shadow:none; -box-shadow:none} </style> <script src="https://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS_HTML" type="text/javascript"></script> <script type="text/javascript"> init_mathjax = function() { if (window.MathJax) { // MathJax loaded MathJax.Hub.Config({ tex2jax: { inlineMath: [ ['$','$'], ["\\(","\\)"] ], displayMath: [ ['$$','$$'], ["\\[","\\]"] ] }, displayAlign: 'left', // Change this to 'center' to center equations. "HTML-CSS": { styles: {'.MathJax_Display': {"margin": 0}} } }); MathJax.Hub.Queue(["Typeset",MathJax.Hub]); } } init_mathjax(); </script> <meta name="author" content="KMOL" /> <meta name="keywords" content="Course" /> <!-- Open Graph tags --> <meta property="og:site_name" content="2017Spring 協同產品設計實習 (虎尾科大MDE)" /> <meta property="og:type" content="website"/> <meta property="og:title" content="2017Spring 協同產品設計實習 (虎尾科大MDE)"/> <meta property="og:url" content=".."/> <meta property="og:description" content="2017Spring 協同產品設計實習 (虎尾科大MDE)"/> <!-- Bootstrap --> <link rel="stylesheet" href="../theme/css/bootstrap.united.min.css" type="text/css"/> <link href="../theme/css/font-awesome.min.css" rel="stylesheet"> <link href="../theme/css/pygments/monokai.css" rel="stylesheet"> <link href="../theme/tipuesearch/tipuesearch.css" rel="stylesheet"> <link rel="stylesheet" href="../theme/css/style.css" type="text/css"/> <link href="../feeds/all.atom.xml" type="application/atom+xml" rel="alternate" title="2017Spring 協同產品設計實習 (虎尾科大MDE) ATOM Feed"/> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shCore.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushJScript.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushJava.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushPython.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushSql.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushXml.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushPhp.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCpp.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCss.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushCSharp.js"></script> <script type="text/javascript" src="https://coursemdetw.github.io/project_site_files/files/syntaxhighlighter/shBrushBash.js"></script> <script type='text/javascript'> (function(){ var corecss = document.createElement('link'); var themecss = document.createElement('link'); var corecssurl = "https://chiamingyen.github.io/kmolab_data/files/syntaxhighlighter/css/shCore.css"; if ( corecss.setAttribute ) { corecss.setAttribute( "rel", "stylesheet" ); corecss.setAttribute( "type", "text/css" ); corecss.setAttribute( "href", corecssurl ); } else { corecss.rel = "stylesheet"; corecss.href = corecssurl; } document.getElementsByTagName("head")[0].insertBefore( corecss, document.getElementById("syntaxhighlighteranchor") ); var themecssurl = "https://chiamingyen.github.io/kmolab_data/files/syntaxhighlighter/css/shThemeDefault.css?ver=3.0.9b"; if ( themecss.setAttribute ) { themecss.setAttribute( "rel", "stylesheet" ); themecss.setAttribute( "type", "text/css" ); themecss.setAttribute( "href", themecssurl ); } else { themecss.rel = "stylesheet"; themecss.href = themecssurl; } //document.getElementById("syntaxhighlighteranchor").appendChild(themecss); document.getElementsByTagName("head")[0].insertBefore( themecss, document.getElementById("syntaxhighlighteranchor") ); })(); SyntaxHighlighter.config.strings.expandSource = '+ expand source'; SyntaxHighlighter.config.strings.help = '?'; SyntaxHighlighter.config.strings.alert = 'SyntaxHighlighter\n\n'; SyntaxHighlighter.config.strings.noBrush = 'Can\'t find brush for: '; SyntaxHighlighter.config.strings.brushNotHtmlScript = 'Brush wasn\'t configured for html-script option: '; SyntaxHighlighter.defaults['pad-line-numbers'] = false; SyntaxHighlighter.defaults['toolbar'] = false; SyntaxHighlighter.all(); </script> </head> <body> <div class="navbar navbar-default navbar-fixed-top" role="navigation"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse"> <span class="sr-only">Toggle navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a href="../" class="navbar-brand"> 2017Spring 協同產品設計實習 (虎尾科大MDE) </a> </div> <div class="collapse navbar-collapse navbar-ex1-collapse"> <ul class="nav navbar-nav"> <li class="active"> <a href="../category/course.html">Course</a> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li><span> <form class="navbar-search" action="../search.html"> <input type="text" class="search-query" placeholder="Search" name="q" id="tipue_search_input" required> </form></span> </li> <li><a href="../archives.html"><i class="fa fa-th-list"></i><span class="icon-label">Archives</span></a></li> </ul> </div> <!-- /.navbar-collapse --> </div> </div> <!-- /.navbar --> <!-- Banner --> <!-- End Banner --> <div class="container"> <div class="row"> <div class="col-sm-9"> <article> <h2><a href="../Week 7.html">20170405 第七週</a></h2> <div class="summary"><h3>fossil上傳方法</h3> <iframe src="https://player.vimeo.com/video/212854767" width="600" height="420" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="https://vimeo.com/212854767">fossil上傳方法</a> from <a href="https://vimeo.com/user61272200">詹晏傑</a> on <a href="https://vimeo.com">Vimeo</a>.</p> <a class="btn btn-default btn-xs" href="../Week 7.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../Week 6.html">20170329 第六週</a></h2> <div class="summary"><h3>V-rep 模擬四連桿機構</h3> <iframe src="https://player.vimeo.com/video/214836299" width="600" height="420" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="https://vimeo.com/214836299">V-rep 模擬四連桿機構</a> from <a href="https://vimeo.com/user61272200">詹晏傑</a> on <a href="https://vimeo.com">Vimeo</a>.</p> <a class="btn btn-default btn-xs" href="../Week 6.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../Week 5.html">20170322 第五週</a></h2> <div class="summary"><h3>單桿機構</h3> <iframe src="https://player.vimeo.com/video/214836279" width="600" height="420" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="https://vimeo.com/214836279">單桿機構</a> from <a href="https://vimeo.com/user61272200">詹晏傑</a> on <a href="https://vimeo.com">Vimeo</a>.</p> <a class="btn btn-default btn-xs" href="../Week 5.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../Week 4.html">201703015 第四週</a></h2> <div class="summary"><h3>建立各組協同主機</h3> <p>2017springcd_bg8: <a href="https://mde2a2.kmol.info/cdbg8">https://mde2a2.kmol.info/cdbg8</a></p> <a class="btn btn-default btn-xs" href="../Week 4.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../Week 3.html">20170308 第三週</a></h2> <div class="summary"><h3>建立近端 Fossil</h3> <p>1. 更改 Start.bat 設定</p> <pre class="brush: python"> REM tiny2017 主要針對初學 Python3 與 C 學員所建立 REM 近端使用 fossil 管理資料版本, 並且定時轉為 git 格式後上傳到 github @echo off REM 設定 y 硬碟代號與 data 目錄對應 set Disk=y subst %Disk%: "data" REM 設定 leo 相關對應 Home 位置 set HomePath=%Disk%:\home set HomeDrive=%Disk%:\home ...</pre> <a class="btn btn-default btn-xs" href="../Week 3.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../Week 2.html">20170301第二週</a></h2> <div class="summary"><h3>利用Solvespace畫出簡單的四連桿機構, 觀察該機構的運動方式</h3> <iframe src="https://player.vimeo.com/video/214363256" width="600" height="420" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="https://vimeo.com/209486571">利用Solvespace畫出四連桿機構</a> from <a href="https://vimeo.com/user61272200">詹晏傑</a> on <a href="https://vimeo.com">Vimeo</a>.</p> <p>零件繪製<p> <p><button onClick="lity('https://vimeo.com/214363224')"><span class="glyphicon glyphicon-facetime-video"></span> 尺寸30</button> <button onClick="lity('https://vimeo.com/214363236')"><span class="glyphicon glyphicon-facetime-video"></span> 尺寸50</button> <button onClick="lity('https://vimeo.com/214363255')"><span class="glyphicon glyphicon-facetime-video"></span> 尺寸60</button></p> <a class="btn btn-default btn-xs" href="../Week 2.html">more ...</a> </div> </article> <hr/> <article> <h2><a href="../Week 1.html">20170222 第一週</a></h2> <div class="summary"><h3>修改stunnel.conf的IP設定</h3> <iframe src="https://player.vimeo.com/video/209486571" width="600" height="420" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe> <p><a href="https://vimeo.com/209486571">設定stunnel.conf的ip</a> from <a href="https://vimeo.com/user61272200">詹晏傑</a> on <a href="https://vimeo.com">Vimeo</a>.</p> <a class="btn btn-default btn-xs" href="../Week 1.html">more ...</a> </div> </article> <hr/> <ul class="pagination"> <li class="prev"><a href="../category/course.html">&laquo;</a> </li> <li class=""><a href="../category/course.html">1</a></li> <li class="active"><a href="../category/course2.html">2</a></li> <li class="next disabled"><a href="#">&raquo;</a></li> </ul> </div> <div class="col-sm-3" id="sidebar"> <aside> <section class="well well-sm"> <ul class="list-group list-group-flush"> <li class="list-group-item"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Recent Posts</span></h4> <ul class="list-group" id="recentposts"> <li class="list-group-item"> <a href="../Week 17.html"> 20170614 第十七週 </a> </li> <li class="list-group-item"> <a href="../Week 16.html"> 20170607 第十六週 </a> </li> <li class="list-group-item"> <a href="../Week 15.html"> 20170531 第十五週 </a> </li> <li class="list-group-item"> <a href="../Week 14.html"> 20170524 第十四週 </a> </li> <li class="list-group-item"> <a href="../Week 13.html"> 20170517 第十三週 </a> </li> </ul> </li> <li class="list-group-item"><a href="../categories.html"><h4><i class="fa fa-home fa-lg"></i><span class="icon-label">Categories</span></h4></a> <ul class="list-group" id="categories"> <li class="list-group-item"> <a href="../category/course.html"> <i class="fa fa-folder-open fa-lg"></i> Course </a> </li> </ul> </li> <li class="list-group-item"><a href="../tags.html"><h4><i class="fa fa-tags fa-lg"></i><span class="icon-label">Tags</span></h4></a> <ul class="list-group list-inline tagcloud" id="tags"> </ul> </li> <li class="list-group-item"><h4><i class="fa fa-external-link-square fa-lg"></i><span class="icon-label">Links</span></h4> <ul class="list-group" id="links"> <li class="list-group-item"> <a href="http://getpelican.com/" target="_blank"> Pelican </a> </li> <li class="list-group-item"> <a href="https://github.com/DandyDev/pelican-bootstrap3/" target="_blank"> pelican-bootstrap3 </a> </li> <li class="list-group-item"> <a href="https://github.com/getpelican/pelican-plugins" target="_blank"> pelican-plugins </a> </li> <li class="list-group-item"> <a href="https://github.com/Tipue/Tipue-Search" target="_blank"> Tipue search </a> </li> </ul> </li> </ul> </section> </aside> </div> </div> </div> <footer> <div class="container"> <hr> <div class="row"> <div class="col-xs-10">&copy; 2017 KMOL &middot; Powered by <a href="https://github.com/DandyDev/pelican-bootstrap3" target="_blank">pelican-bootstrap3</a>, <a href="http://docs.getpelican.com/" target="_blank">Pelican</a>, <a href="http://getbootstrap.com" target="_blank">Bootstrap</a> </div> <div class="col-xs-2"><p class="pull-right"><i class="fa fa-arrow-up"></i> <a href="#">Back to top</a></p></div> </div> </div> </footer> <script src="../theme/js/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="../theme/js/bootstrap.min.js"></script> <!-- for https://github.com/jsor/lity lightbox video popup --> <link href="../theme/css/lity.css" rel="stylesheet"> <script src="../theme/js/lity.js"></script> <!-- Enable responsive features in IE8 with Respond.js (https://github.com/scottjehl/Respond) --> <script src="../theme/js/respond.min.js"></script> </body> </html>
report/html/com/rapidminer/gui/new_plotter/engine/jfreechart/renderer/FormattedScatterRenderer.html
cm-is-dog/rapidminer-studio-core
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <link rel="SHORTCUT ICON" href="../../../../../../../img/clover.ico" /> <link rel="stylesheet" href="../../../../../../../aui/css/aui.min.css" media="all"/> <link rel="stylesheet" href="../../../../../../../aui/css/aui-experimental.min.css" media="all"/> <!--[if IE 9]><link rel="stylesheet" href="../../../../../../../aui/css/aui-ie9.min.css" media="all"/><![endif]--> <style type="text/css" media="all"> @import url('../../../../../../../style.css'); @import url('../../../../../../../tree.css'); </style> <script src="../../../../../../../jquery-1.8.3.min.js" type="text/javascript"></script> <script src="../../../../../../../aui/js/aui.min.js" type="text/javascript"></script> <script src="../../../../../../../aui/js/aui-experimental.min.js" type="text/javascript"></script> <script src="../../../../../../../aui/js/aui-soy.min.js" type="text/javascript"></script> <script src="../../../../../../../package-nodes-tree.js" type="text/javascript"></script> <script src="../../../../../../../clover-tree.js" type="text/javascript"></script> <script src="../../../../../../../clover.js" type="text/javascript"></script> <script src="../../../../../../../clover-descriptions.js" type="text/javascript"></script> <script src="../../../../../../../cloud.js" type="text/javascript"></script> <title>rapidminer-studio-core 转换结果 </title> </head> <body onload="onLoad('rapidminer-studio-core 转换结果 : com.rapidminer.gui.new_plotter.engine.jfreechart.renderer.FormattedScatterRenderer.java')"> <div id="page"> <header id="header" role="banner"> <nav class="aui-header aui-dropdown2-trigger-group" role="navigation"> <div class="aui-header-inner"> <div class="aui-header-primary"> <h1 id="logo" class="aui-header-logo aui-header-logo-clover"> <a href="http://www.atlassian.com/clover" title="Open Atlassian Clover home page"><span class="aui-header-logo-device">Clover</span></a> </h1> </div> <div class="aui-header-secondary"> <ul class="aui-nav"> <li id="system-help-menu"> <a class="aui-nav-link" title="Open online Clover documentation" target="_blank" href="https://confluence.atlassian.com/display/CLOVER/Clover+Documentation+Home"> <span class="aui-icon aui-icon-small aui-iconfont-help">&#160;Help</span> </a> </li> </ul> </div> </div> </nav> </header> <div class="aui-page-panel"> <div class="aui-page-panel-inner"> <div class="aui-page-panel-nav aui-page-panel-nav-clover"> <div class="aui-page-header-inner" style="margin-bottom: 20px;"> <div class="aui-page-header-image"> <div class="aui-avatar aui-avatar-large aui-avatar-project"> <div class="aui-avatar-inner"> <img src="../../../../../../../img/clover_logo_large.png" alt="Clover icon"/> </div> </div> </div> <div class="aui-page-header-main" > <h1> rapidminer-studio-core 转换结果 </h1> </div> </div> <nav class="aui-navgroup aui-navgroup-vertical"> <div class="aui-navgroup-inner"> <ul class="aui-nav"> <li class=""> <a href="../../../../../../../dashboard.html">Project overview</a> </li> </ul> <div class="aui-nav-heading packages-nav-heading"> <strong>Packages</strong> </div> <div class="aui-nav project-packages"> <form method="get" action="#" class="aui package-filter-container"> <input type="text" autocomplete="off" class="package-filter text" placeholder="Type to filter packages..." name="package-filter" id="package-filter" title="Start typing package name (or part of the name) to search through the tree. Use arrow keys and the Enter key to navigate."/> </form> <p class="package-filter-no-results-message hidden"> <small>No results found.</small> </p> <div class="packages-tree-wrapper" data-root-relative="../../../../../../../" data-package-name="com.rapidminer.gui.new_plotter.engine.jfreechart.renderer"> <div class="packages-tree-container"></div> <div class="clover-packages-lozenges"></div> </div> </div> </div> </nav> </div> <section class="aui-page-panel-content"> <div class="aui-page-panel-content-clover"> <ol class="aui-nav aui-nav-breadcrumbs"> <li><a href="../../../../../../../dashboard.html">Project Clover database 星期二 九月 5 2017 16:40:29 CST</a></li> <li><a href="pkg-summary.html"> Package com.rapidminer.gui.new_plotter.engine.jfreechart.renderer</a></li> </ol> <h1 class="aui-h2-clover"> File FormattedScatterRenderer.java </h1> <div class="aui-message aui-message-warning"> <p class="title"> <strong>Evaluation License</strong> </p> <p> This report was generated with an evaluation server license. <a href="http://www.atlassian.com/software/clover">Purchase Clover</a> or <a href="http://confluence.atlassian.com/x/JAgQCQ">configure your license.</a> </p> </div> <div class="aui-tabs horizontal-tabs" id="tabs-file"> <div class="tabs-pane aui-tabs-pane-100-pcnt active-pane" id="tabs-file-source"> <div>&#160;</div> <div style="display: table; width: 100%"> <div style="display: table-cell; "> <div class="dashboard-widget"> <header class="dashboard-widget-header"> <h3>Code metrics</h3> </header> <div class="dashboard-widget-content"> <div id="td-header-stats" class="aui-item" style="display: "> <div style="display: table"> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div> <div class="stats-box-value">163</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div> <div class="stats-box-value">109</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"> <label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label> </div> <div class="stats-box-value">-</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div> <div class="stats-box-value">-</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div> <div class="stats-box-value">0</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div> <div class="stats-box-value">-</div> </div> </div> <div class="subtle"> <small><strong>100%</strong> of code in this file is excluded from these metrics.</small> <label class="aui-button aui-button-subtle" onclick="toggleStats('td-header-stats', 'td-filtered-header-stats');" title="Include or exclude filtered elements from these statistics.">Remove Filter</label> </div> </div> <div id="td-filtered-header-stats" class="aui-item" style="display: none"> <div style="display: table"> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of branches in this file">Branches:</label></div> <div class="stats-box-value">28</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of statements in this file">Statements:</label></div> <div class="stats-box-value">50</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of methods in this file">Methods:</label></div> <div class="stats-box-value">6</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of classes in this file">Classes:</label></div> <div class="stats-box-value">1</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of lines of code in this file">LOC:</label></div> <div class="stats-box-value">163</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Total number of non-comment lines of code in this file">NCLOC:</label></div> <div class="stats-box-value">109</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Cyclomatic complexity is the number of paths in this file">Total complexity:</label></div> <div class="stats-box-value">20</div> </div> <div class="stats-box"> <div class="stats-box-label"> <label title="Complexity density is the complexity divided by the number of statements in this file">Complexity density:</label> </div> <div class="stats-box-value">0.4</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of statements per method.">Statements/Method:</label></div> <div class="stats-box-value">8.33</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Number of methods per class.">Methods/Class:</label></div> <div class="stats-box-value">6</div> </div> <div class="stats-box"> <div class="stats-box-label"><label title="Complexity divided by the number of methods in this file">Average method complexity:</label></div> <div class="stats-box-value">3.33</div> </div> </div> <div class="subtle"> <small>These metrics include <strong class='bold'>100%</strong> of code marked as filtered.</small> <label class="aui-button aui-button-subtle" onclick="toggleStats('td-filtered-header-stats', 'td-header-stats');" title="Include or exclude filtered elements from these statistics.">Apply Filter</label> </div> </div> </div> </div> </div> </div> <h2>Classes</h2> <table class="aui aui-table-sortable"> <thead> <tr> <th>Class</th> <th>Line #</th> <th class=""> <label title="The total number of statements.">Total Statements</label> </th> <th class=""> <label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label> </th> <th class=""> <label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label> </th> <th>Actions</th> </tr> </thead> <tbody> <tr> <td id="FormattedScatterRenderer"> <span><a href="#52" title="FormattedScatterRenderer" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '52');">FormattedScatterRenderer</a></span> </td> <td>52<a name="sl-52"></a></td> <td class="">0</td> <td class="">0</td> <td class=""><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> <td><button data-dialog-id="dialog-FormattedScatterRenderer" class="aui-button aui-button-link dialog-show-button">Show methods</button></td> </tr> </tbody> </table> <section role="dialog" id="dialog-FormattedScatterRenderer" class="aui-layer aui-dialog2 aui-dialog2-xlarge" aria-hidden="true"> <header class="aui-dialog2-header"> <h1 class="aui-dialog2-header-main">Class FormattedScatterRenderer</h1> <div class="aui-dialog2-header-secondary"> <input id="dialog-FormattedScatterRenderer-method-filter" class="test-filter text" type="text" name="method-filter" placeholder="Type to filter methods..." autocomplete="off" onkeyup="filterMethods('dialog-FormattedScatterRenderer-methods-body', 'dialog-FormattedScatterRenderer-method-filter');"/> </div> </header> <div class="aui-dialog2-content"> <table class="aui aui-table-sortable"> <thead> <tr> <th id="FormattedScatterRenderer"> Class<br/> <span><a href="#52" title="FormattedScatterRenderer" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '52');">FormattedScatterRenderer</a></span> </th> <th>Line #<br/>52<a name="sl-52"></a></th> <th class=""><label title="The total number of statements.">Total Statements</label><br/>0</th> <th class=""><label title="Cyclomatic complexity is a measure of the number of paths in your code.">Complexity</label><br/>0</th> <th class=""><label title="The amount of code that was hit at least once during testing.">TOTAL Coverage</label><br/><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></th> </tr> </thead> <tbody id="dialog-FormattedScatterRenderer-methods-body"> <tr id="FormattedScatterRenderer-1"> <td id="summary-58-2"> <span class="sortValue">FormattedScatterRenderer()</span> &#160;&#160;<a href="?line=29#58" title="FormattedScatterRenderer()" name="sl-58" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '58');">FormattedScatterRenderer()</a> </td> <td align="right"><span class="sortValue">58</span>58</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="FormattedScatterRenderer-2"> <td id="summary-62-2"> <span class="sortValue">getFormatDelegate()&#160;:&#160;RenderFormatDelegate</span> &#160;&#160;<a href="?line=29#62" title="getFormatDelegate()&#160;:&#160;RenderFormatDelegate" name="sl-62" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '62');">getFormatDelegate()&#160;:&#160;RenderFormatDelegate</a> </td> <td align="right"><span class="sortValue">62</span>62</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="FormattedScatterRenderer-3"> <td id="summary-67-2"> <span class="sortValue">getItemPaint(int,int)&#160;:&#160;Paint</span> &#160;&#160;<a href="?line=29#67" title="getItemPaint(int,int)&#160;:&#160;Paint" name="sl-67" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '67');">getItemPaint(int,int)&#160;:&#160;Paint</a> </td> <td align="right"><span class="sortValue">67</span>67</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="FormattedScatterRenderer-4"> <td id="summary-76-2"> <span class="sortValue">getItemShape(int,int)&#160;:&#160;Shape</span> &#160;&#160;<a href="?line=29#76" title="getItemShape(int,int)&#160;:&#160;Shape" name="sl-76" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '76');">getItemShape(int,int)&#160;:&#160;Shape</a> </td> <td align="right"><span class="sortValue">76</span>76</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="FormattedScatterRenderer-5"> <td id="summary-93-2"> <span class="sortValue">drawItem(Graphics2D,CategoryItemRendererState,Rectangle2D,CategoryPlot,CategoryAxis,ValueAxis,CategoryDataset,int,int,int)&#160;:&#160;void</span> &#160;&#160;<a href="?line=29#93" title="drawItem(Graphics2D,CategoryItemRendererState,Rectangle2D,CategoryPlot,CategoryAxis,ValueAxis,CategoryDataset,int,int,int)&#160;:&#160;void" name="sl-93" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '93');">drawItem(Graphics2D,CategoryItemRendererState,Rectangle2D,CategoryPlot,CategoryAxis,ValueAxis,CategoryDataset,int,int,int)&#160;:&#160;void</a> </td> <td align="right"><span class="sortValue">93</span>93</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> <tr id="FormattedScatterRenderer-6"> <td id="summary-155-2"> <span class="sortValue">getItemOutlinePaint(int,int)&#160;:&#160;Paint</span> &#160;&#160;<a href="?line=29#155" title="getItemOutlinePaint(int,int)&#160;:&#160;Paint" name="sl-155" onclick="closeDialogAndScrollTo('dialog-FormattedScatterRenderer', '155');">getItemOutlinePaint(int,int)&#160;:&#160;Paint</a> </td> <td align="right"><span class="sortValue">155</span>155</td> <td class="" align="right"><span class="sortValue">0.0</span>0</td> <td class="" align="right"><span class="sortValue">1.0</span>1</td> <td class="" align="right"><span class="sortValue">-1.0</span><div style="display: table; width: 100%"> <div class="barGraphValue"><span class="sortValue">-1.0</span> - </div><div style="display: table-cell"> <div title="Empty" class="barEmpty" style="min-width:200px;"></div></div></div></td> </tr> </tbody> </table> <div>&#160;</div> </div> <footer class="aui-dialog2-footer"> <div class="aui-dialog2-footer-actions"> <button class="aui-button aui-button-primary dialog-close-button" data-dialog-id="dialog-FormattedScatterRenderer">Close</button> </div> <div class="aui-dialog2-footer-hint">Click on a class or a method name to jump to source.</div> </footer> </section> <div>&#160;</div> <h2>Contributing tests</h2> <div class="aui-message"> <p>No tests hitting this source file were found.</p> </div> <h2>Source view</h2> <div style="display: table; width: 100%;"> <div style="display: table-cell"> <button class="aui-button aui-button-link" title="Toggles all methods in the source to be either expanded or collapsed." onclick="toggleAllInlineMethods(this); return false;" id="method-expander"> Collapse all methods </button> </div> <div style="display: table-cell"> <div style="text-align: right; margin-bottom: 10px"> <button class="aui-button aui-button-subtle" id="popupHelp"> <span class="aui-icon aui-icon-small aui-iconfont-help"></span>&#160;Show legend </button> <script> AJS.InlineDialog(AJS.$("#popupHelp"), "helpDialog", function(content, trigger, showPopup) { content.css({"padding":"20px"}).html(SRC_FILE_LEGEND_TEXT); showPopup(); return false; }, { width: 700, hideDelay: 60000 } ); </script> </div> </div> </div> <table cellspacing="0" cellpadding="0" class="srcView" width="100%"> <tbody> <tr id="l1"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=1#src-1">1</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-1" class="srcLine"><span class="comment">/**</span></span></td> </tr> <tr id="l2"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=2#src-2">2</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-2" class="srcLine"><span class="comment"> * Copyright (C) 2001-2017 by RapidMiner and the contributors</span></span></td> </tr> <tr id="l3"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=3#src-3">3</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-3" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l4"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=4#src-4">4</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-4" class="srcLine"><span class="comment"> * Complete list of developers available at our web site:</span></span></td> </tr> <tr id="l5"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=5#src-5">5</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-5" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l6"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=6#src-6">6</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-6" class="srcLine"><span class="comment"> * http://rapidminer.com</span></span></td> </tr> <tr id="l7"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=7#src-7">7</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-7" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l8"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=8#src-8">8</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-8" class="srcLine"><span class="comment"> * This program is free software: you can redistribute it and/or modify it under the terms of the</span></span></td> </tr> <tr id="l9"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=9#src-9">9</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-9" class="srcLine"><span class="comment"> * GNU Affero General Public License as published by the Free Software Foundation, either version 3</span></span></td> </tr> <tr id="l10"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=10#src-10">10</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-10" class="srcLine"><span class="comment"> * of the License, or (at your option) any later version.</span></span></td> </tr> <tr id="l11"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=11#src-11">11</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-11" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l12"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=12#src-12">12</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-12" class="srcLine"><span class="comment"> * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without</span></span></td> </tr> <tr id="l13"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=13#src-13">13</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-13" class="srcLine"><span class="comment"> * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU</span></span></td> </tr> <tr id="l14"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=14#src-14">14</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-14" class="srcLine"><span class="comment"> * Affero General Public License for more details.</span></span></td> </tr> <tr id="l15"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=15#src-15">15</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-15" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l16"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=16#src-16">16</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-16" class="srcLine"><span class="comment"> * You should have received a copy of the GNU Affero General Public License along with this program.</span></span></td> </tr> <tr id="l17"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=17#src-17">17</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-17" class="srcLine"><span class="comment"> * If not, see http://www.gnu.org/licenses/.</span></span></td> </tr> <tr id="l18"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=18#src-18">18</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-18" class="srcLine"><span class="comment">*/</span></span></td> </tr> <tr id="l19"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=19#src-19">19</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-19" class="srcLine"><span class="keyword">package</span> com.<a href="../../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../../gui/pkg-summary.html">gui</a>.<a href="../../../../new_plotter/pkg-summary.html">new_plotter</a>.<a href="../../../engine/pkg-summary.html">engine</a>.<a href="../../jfreechart/pkg-summary.html">jfreechart</a>.<a href="../renderer/pkg-summary.html">renderer</a>;</span></td> </tr> <tr id="l20"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=20#src-20">20</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-20" class="srcLine"></span></td> </tr> <tr id="l21"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=21#src-21">21</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-21" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../../gui/pkg-summary.html">gui</a>.<a href="../../../../new_plotter/pkg-summary.html">new_plotter</a>.<a href="../../../engine/pkg-summary.html">engine</a>.<a href="../../jfreechart/pkg-summary.html">jfreechart</a>.<a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/RenderFormatDelegate.html#RenderFormatDelegate">RenderFormatDelegate</a>;</span></td> </tr> <tr id="l22"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=22#src-22">22</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-22" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../../gui/pkg-summary.html">gui</a>.<a href="../../../../new_plotter/pkg-summary.html">new_plotter</a>.<a href="../../../engine/pkg-summary.html">engine</a>.<a href="../../jfreechart/pkg-summary.html">jfreechart</a>.<a href="../dataset/pkg-summary.html">dataset</a>.<a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/dataset/ValueSourceToMultiValueCategoryDatasetAdapter.html#ValueSourceToMultiValueCategoryDatasetAdapter">ValueSourceToMultiValueCategoryDatasetAdapter</a>;</span></td> </tr> <tr id="l23"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=23#src-23">23</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-23" class="srcLine"><span class="keyword">import</span> com.<a href="../../../../../../rapidminer/pkg-summary.html">rapidminer</a>.<a href="../../../../../gui/pkg-summary.html">gui</a>.<a href="../../../../new_plotter/pkg-summary.html">new_plotter</a>.<a href="../../../utility/pkg-summary.html">utility</a>.<a href="../../../../../../../com/rapidminer/gui/new_plotter/utility/DataStructureUtils.html#DataStructureUtils">DataStructureUtils</a>;</span></td> </tr> <tr id="l24"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=24#src-24">24</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-24" class="srcLine"></span></td> </tr> <tr id="l25"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=25#src-25">25</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-25" class="srcLine"><span class="keyword">import</span> java.awt.Color;</span></td> </tr> <tr id="l26"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=26#src-26">26</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-26" class="srcLine"><span class="keyword">import</span> java.awt.Graphics2D;</span></td> </tr> <tr id="l27"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=27#src-27">27</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-27" class="srcLine"><span class="keyword">import</span> java.awt.Paint;</span></td> </tr> <tr id="l28"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=28#src-28">28</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-28" class="srcLine"><span class="keyword">import</span> java.awt.Shape;</span></td> </tr> <tr id="l29"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=29#src-29">29</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-29" class="srcLine"><span class="keyword">import</span> java.awt.geom.Rectangle2D;</span></td> </tr> <tr id="l30"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=30#src-30">30</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-30" class="srcLine"><span class="keyword">import</span> java.util.List;</span></td> </tr> <tr id="l31"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=31#src-31">31</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-31" class="srcLine"></span></td> </tr> <tr id="l32"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=32#src-32">32</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-32" class="srcLine"><span class="keyword">import</span> org.jfree.chart.axis.CategoryAxis;</span></td> </tr> <tr id="l33"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=33#src-33">33</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-33" class="srcLine"><span class="keyword">import</span> org.jfree.chart.axis.ValueAxis;</span></td> </tr> <tr id="l34"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=34#src-34">34</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-34" class="srcLine"><span class="keyword">import</span> org.jfree.chart.plot.CategoryPlot;</span></td> </tr> <tr id="l35"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=35#src-35">35</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-35" class="srcLine"><span class="keyword">import</span> org.jfree.chart.plot.PlotOrientation;</span></td> </tr> <tr id="l36"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=36#src-36">36</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-36" class="srcLine"><span class="keyword">import</span> org.jfree.chart.renderer.category.CategoryItemRendererState;</span></td> </tr> <tr id="l37"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=37#src-37">37</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-37" class="srcLine"><span class="keyword">import</span> org.jfree.chart.renderer.category.ScatterRenderer;</span></td> </tr> <tr id="l38"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=38#src-38">38</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-38" class="srcLine"><span class="keyword">import</span> org.jfree.data.category.CategoryDataset;</span></td> </tr> <tr id="l39"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=39#src-39">39</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-39" class="srcLine"><span class="keyword">import</span> org.jfree.util.ShapeUtilities;</span></td> </tr> <tr id="l40"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=40#src-40">40</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-40" class="srcLine"></span></td> </tr> <tr id="l41"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=41#src-41">41</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-41" class="srcLine"></span></td> </tr> <tr id="l42"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=42#src-42">42</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-42" class="srcLine"><span class="comment">/**</span></span></td> </tr> <tr id="l43"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=43#src-43">43</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-43" class="srcLine"><span class="comment"> * This renderer less flat than most other {</span><span class="javadoc">@link</span><span class="comment"> FormattedRenderer}s, since by default the</span></span></td> </tr> <tr id="l44"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=44#src-44">44</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-44" class="srcLine"><span class="comment"> * ScatterRenderer draws all items in a category with the same shape and color. This renderer</span></span></td> </tr> <tr id="l45"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=45#src-45">45</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-45" class="srcLine"><span class="comment"> * overwrites the drawItem().</span></span></td> </tr> <tr id="l46"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=46#src-46">46</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-46" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l47"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=47#src-47">47</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-47" class="srcLine"><span class="comment"> * Needs a {</span><span class="javadoc">@link</span><span class="comment"> ValueSourceToMultiValueCategoryDatasetAdapter} as dataset.</span></span></td> </tr> <tr id="l48"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=48#src-48">48</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-48" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l49"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=49#src-49">49</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-49" class="srcLine"><span class="comment"> * </span><span class="javadoc">@author</span><span class="comment"> Marius Helf</span></span></td> </tr> <tr id="l50"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=50#src-50">50</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-50" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l51"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=51#src-51">51</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-51" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="52" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-52' onclick="toggleInlineStats(this, 'inlinestats-52');"/> <td align="center" valign="middle"> <table id="inlinestats-52" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-52'), 'inlinestats-52');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 0</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l52"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=52#src-52">52</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" id="id-52"><span class="spacer"></span><span id="src-52" class="srcLine"><span class="keyword">public</span> <span class="keyword">class</span> <a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/renderer/FormattedScatterRenderer.html#FormattedScatterRenderer">FormattedScatterRenderer</a> <span class="keyword">extends</span> ScatterRenderer <span class="keyword">implements</span> <a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/renderer/FormattedRenderer.html#FormattedRenderer">FormattedRenderer</a> {</span></td> </tr> <tr id="l53"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=53#src-53">53</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-53" class="srcLine"></span></td> </tr> <tr id="l54"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=54#src-54">54</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-54" class="srcLine"> <span class="keyword">private</span> <span class="keyword">static</span> <span class="keyword">final</span> <span class="keyword">long</span> serialVersionUID = 1L;</span></td> </tr> <tr id="l55"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=55#src-55">55</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-55" class="srcLine"></span></td> </tr> <tr id="l56"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=56#src-56">56</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-56" class="srcLine"> <span class="keyword">private</span> <a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/RenderFormatDelegate.html#RenderFormatDelegate">RenderFormatDelegate</a> formatDelegate = <span class="keyword">new</span> <a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/RenderFormatDelegate.html#RenderFormatDelegate">RenderFormatDelegate</a>();</span></td> </tr> <tr id="l57"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=57#src-57">57</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-57" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="58" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-58' onclick="toggleInlineStats(this, 'inlinestats-58');"/> <td align="center" valign="middle"> <table id="inlinestats-58" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-58'), 'inlinestats-58');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l58"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=58#src-58">58</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-58"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 58,60);" id="img-58" src="../../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-58" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">public</span> <a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/renderer/FormattedScatterRenderer.html#FormattedScatterRenderer">FormattedScatterRenderer</a>() {</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-58'), 58,60);" id="e58" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l59"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=59#src-59">59</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-59" class="srcLineFiltered"><span class="nolink" title="Filtered by: constructor"> <span class="keyword">super</span>();</span></span></td> </tr> <tr id="l60"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=60#src-60">60</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-60" class="srcLine"> }</span></td> </tr> <tr id="l61"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=61#src-61">61</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-61" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="62" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-62' onclick="toggleInlineStats(this, 'inlinestats-62');"/> <td align="center" valign="middle"> <table id="inlinestats-62" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-62'), 'inlinestats-62');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l62"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=62#src-62">62</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-62"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 62,65);" id="img-62" src="../../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-62" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-62'), 62,65);" id="e62" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l63"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=63#src-63">63</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-63" class="srcLine"> <span class="keyword">public</span> <a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/RenderFormatDelegate.html#RenderFormatDelegate">RenderFormatDelegate</a> getFormatDelegate() {</span></td> </tr> <tr id="l64"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=64#src-64">64</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-64" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;property"> <span class="keyword">return</span> formatDelegate;</span></span></td> </tr> <tr id="l65"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=65#src-65">65</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-65" class="srcLine"> }</span></td> </tr> <tr id="l66"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=66#src-66">66</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-66" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="67" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-67' onclick="toggleInlineStats(this, 'inlinestats-67');"/> <td align="center" valign="middle"> <table id="inlinestats-67" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-67'), 'inlinestats-67');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l67"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=67#src-67">67</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-67"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 67,74);" id="img-67" src="../../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-67" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-67'), 67,74);" id="e67" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l68"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=68#src-68">68</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-68" class="srcLine"> <span class="keyword">public</span> Paint getItemPaint(<span class="keyword">int</span> seriesIdx, <span class="keyword">int</span> valueIdx) {</span></td> </tr> <tr id="l69"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=69#src-69">69</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-69" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> Paint paint = getFormatDelegate().getItemPaint(seriesIdx, valueIdx);</span></span></td> </tr> <tr id="l70"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=70#src-70">70</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-70" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">if</span> (paint == <span class="keyword">null</span>) {</span></span></td> </tr> <tr id="l71"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=71#src-71">71</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-71" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> paint = <span class="keyword">super</span>.getItemPaint(seriesIdx, valueIdx);</span></span></td> </tr> <tr id="l72"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=72#src-72">72</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-72" class="srcLine"> }</span></td> </tr> <tr id="l73"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=73#src-73">73</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-73" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">return</span> paint;</span></span></td> </tr> <tr id="l74"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=74#src-74">74</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-74" class="srcLine"> }</span></td> </tr> <tr id="l75"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=75#src-75">75</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-75" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="76" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-76' onclick="toggleInlineStats(this, 'inlinestats-76');"/> <td align="center" valign="middle"> <table id="inlinestats-76" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-76'), 'inlinestats-76');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l76"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=76#src-76">76</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-76"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 76,84);" id="img-76" src="../../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-76" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-76'), 76,84);" id="e76" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l77"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=77#src-77">77</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-77" class="srcLine"> <span class="keyword">public</span> Shape getItemShape(<span class="keyword">int</span> seriesIdx, <span class="keyword">int</span> valueIdx) {</span></td> </tr> <tr id="l78"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=78#src-78">78</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-78" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> Shape shapeFromDelegate = getFormatDelegate().getItemShape(seriesIdx, valueIdx);</span></span></td> </tr> <tr id="l79"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=79#src-79">79</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-79" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;else"> <span class="keyword">if</span> (shapeFromDelegate == <span class="keyword">null</span>) {</span></span></td> </tr> <tr id="l80"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=80#src-80">80</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-80" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">return</span> <span class="keyword">super</span>.getItemShape(seriesIdx, valueIdx);</span></span></td> </tr> <tr id="l81"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=81#src-81">81</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-81" class="srcLine"> } <span class="keyword">else</span> {</span></td> </tr> <tr id="l82"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=82#src-82">82</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-82" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;else"> <span class="keyword">return</span> shapeFromDelegate;</span></span></td> </tr> <tr id="l83"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=83#src-83">83</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-83" class="srcLine"> }</span></td> </tr> <tr id="l84"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=84#src-84">84</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-84" class="srcLine"> }</span></td> </tr> <tr id="l85"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=85#src-85">85</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-85" class="srcLine"></span></td> </tr> <tr id="l86"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=86#src-86">86</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-86" class="srcLine"> <span class="comment">/**</span></span></td> </tr> <tr id="l87"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=87#src-87">87</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-87" class="srcLine"><span class="comment"> * This function is taken directly from JFreeChart with adjustments to draw differently colored</span></span></td> </tr> <tr id="l88"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=88#src-88">88</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-88" class="srcLine"><span class="comment"> * items.</span></span></td> </tr> <tr id="l89"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=89#src-89">89</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-89" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l90"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=90#src-90">90</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-90" class="srcLine"><span class="comment"> * When updating JFreeChart this function must probably be adapted.</span></span></td> </tr> <tr id="l91"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=91#src-91">91</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-91" class="srcLine"><span class="comment"> * </span></span></td> </tr> <tr id="l92"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=92#src-92">92</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-92" class="srcLine"><span class="comment"> */</span></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="93" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-93' onclick="toggleInlineStats(this, 'inlinestats-93');"/> <td align="center" valign="middle"> <table id="inlinestats-93" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-93'), 'inlinestats-93');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l93"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=93#src-93">93</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-93"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 93,153);" id="img-93" src="../../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-93" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-93'), 93,153);" id="e93" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l94"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=94#src-94">94</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-94" class="srcLine"> <span class="keyword">public</span> <span class="keyword">void</span> drawItem(Graphics2D g2, CategoryItemRendererState state, Rectangle2D dataArea, CategoryPlot plot,</span></td> </tr> <tr id="l95"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=95#src-95">95</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-95" class="srcLine"> CategoryAxis domainAxis, ValueAxis rangeAxis, CategoryDataset dataset, <span class="keyword">int</span> row, <span class="keyword">int</span> column, <span class="keyword">int</span> pass) {</span></td> </tr> <tr id="l96"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=96#src-96">96</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-96" class="srcLine"></span></td> </tr> <tr id="l97"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=97#src-97">97</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-97" class="srcLine"> <span class="comment">// do nothing if item is not visible</span></span></td> </tr> <tr id="l98"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=98#src-98">98</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-98" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">if</span> (!getItemVisible(row, column)) {</span></span></td> </tr> <tr id="l99"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=99#src-99">99</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-99" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">return</span>;</span></span></td> </tr> <tr id="l100"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=100#src-100">100</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-100" class="srcLine"> }</span></td> </tr> <tr id="l101"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=101#src-101">101</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-101" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">int</span> visibleRow = state.getVisibleSeriesIndex(row);</span></span></td> </tr> <tr id="l102"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=102#src-102">102</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-102" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">if</span> (visibleRow &lt; 0) {</span></span></td> </tr> <tr id="l103"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=103#src-103">103</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-103" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">return</span>;</span></span></td> </tr> <tr id="l104"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=104#src-104">104</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-104" class="srcLine"> }</span></td> </tr> <tr id="l105"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=105#src-105">105</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-105" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">int</span> visibleRowCount = state.getVisibleSeriesCount();</span></span></td> </tr> <tr id="l106"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=106#src-106">106</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-106" class="srcLine"></span></td> </tr> <tr id="l107"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=107#src-107">107</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-107" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> PlotOrientation orientation = plot.getOrientation();</span></span></td> </tr> <tr id="l108"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=108#src-108">108</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-108" class="srcLine"></span></td> </tr> <tr id="l109"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=109#src-109">109</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-109" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/dataset/ValueSourceToMultiValueCategoryDatasetAdapter.html#ValueSourceToMultiValueCategoryDatasetAdapter">ValueSourceToMultiValueCategoryDatasetAdapter</a> dataSet = (<a href="../../../../../../../com/rapidminer/gui/new_plotter/engine/jfreechart/dataset/ValueSourceToMultiValueCategoryDatasetAdapter.html#ValueSourceToMultiValueCategoryDatasetAdapter">ValueSourceToMultiValueCategoryDatasetAdapter</a>) dataset;</span></span></td> </tr> <tr id="l110"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=110#src-110">110</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-110" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> List&lt;Double&gt; values = dataSet.getValues(row, column);</span></span></td> </tr> <tr id="l111"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=111#src-111">111</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-111" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">if</span> (values == <span class="keyword">null</span>) {</span></span></td> </tr> <tr id="l112"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=112#src-112">112</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-112" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">return</span>;</span></span></td> </tr> <tr id="l113"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=113#src-113">113</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-113" class="srcLine"> }</span></td> </tr> <tr id="l114"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=114#src-114">114</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-114" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> <span class="keyword">int</span> valueCount = values.size();</span></span></td> </tr> <tr id="l115"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=115#src-115">115</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-115" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for"> <span class="keyword">for</span> (<span class="keyword">int</span> i = 0; i &lt; valueCount; i++) {</span></span></td> </tr> <tr id="l116"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=116#src-116">116</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-116" class="srcLine"> <span class="comment">// current data point...</span></span></td> </tr> <tr id="l117"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=117#src-117">117</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-117" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for"> <span class="keyword">double</span> x1;</span></span></td> </tr> <tr id="l118"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=118#src-118">118</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-118" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;else"> <span class="keyword">if</span> (getUseSeriesOffset()) {</span></span></td> </tr> <tr id="l119"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=119#src-119">119</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-119" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> x1 = domainAxis.getCategorySeriesMiddle(column, dataset.getColumnCount(), visibleRow, visibleRowCount,</span></span></td> </tr> <tr id="l120"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=120#src-120">120</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-120" class="srcLine"> getItemMargin(), dataArea, plot.getDomainAxisEdge());</span></td> </tr> <tr id="l121"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=121#src-121">121</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-121" class="srcLine"> } <span class="keyword">else</span> {</span></td> </tr> <tr id="l122"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=122#src-122">122</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-122" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;else"> x1 = domainAxis.getCategoryMiddle(column, getColumnCount(), dataArea, plot.getDomainAxisEdge());</span></span></td> </tr> <tr id="l123"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=123#src-123">123</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-123" class="srcLine"> }</span></td> </tr> <tr id="l124"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=124#src-124">124</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-124" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for"> Number n = values.get(i);</span></span></td> </tr> <tr id="l125"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=125#src-125">125</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-125" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for"> <span class="keyword">int</span> idx = dataSet.getValueIndex(row, column, i);</span></span></td> </tr> <tr id="l126"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=126#src-126">126</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-126" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for"> <span class="keyword">double</span> value = n.doubleValue();</span></span></td> </tr> <tr id="l127"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=127#src-127">127</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-127" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for"> <span class="keyword">double</span> y1 = rangeAxis.valueToJava2D(value, dataArea, plot.getRangeAxisEdge());</span></span></td> </tr> <tr id="l128"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=128#src-128">128</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-128" class="srcLine"></span></td> </tr> <tr id="l129"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=129#src-129">129</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-129" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for"> Shape shape = getItemShape(row, idx);</span></span></td> </tr> <tr id="l130"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=130#src-130">130</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-130" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;else"> <span class="keyword">if</span> (orientation == PlotOrientation.HORIZONTAL) {</span></span></td> </tr> <tr id="l131"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=131#src-131">131</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-131" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> shape = ShapeUtilities.createTranslatedShape(shape, y1, x1);</span></span></td> </tr> <tr id="l132"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=132#src-132">132</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-132" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if,&#160;else"> } <span class="keyword">else</span> <span class="keyword">if</span> (orientation == PlotOrientation.VERTICAL) {</span></span></td> </tr> <tr id="l133"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=133#src-133">133</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-133" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if,&#160;else"> shape = ShapeUtilities.createTranslatedShape(shape, x1, y1);</span></span></td> </tr> <tr id="l134"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=134#src-134">134</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-134" class="srcLine"> }</span></td> </tr> <tr id="l135"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=135#src-135">135</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-135" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> <span class="keyword">if</span> (getItemShapeFilled(row, column)) {</span></span></td> </tr> <tr id="l136"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=136#src-136">136</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-136" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if,&#160;else"> <span class="keyword">if</span> (getUseFillPaint()) {</span></span></td> </tr> <tr id="l137"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=137#src-137">137</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-137" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> g2.setPaint(getItemFillPaint(row, column));</span></span></td> </tr> <tr id="l138"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=138#src-138">138</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-138" class="srcLine"> } <span class="keyword">else</span> {</span></td> </tr> <tr id="l139"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=139#src-139">139</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-139" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if,&#160;else"> g2.setPaint(getItemPaint(row, idx));</span></span></td> </tr> <tr id="l140"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=140#src-140">140</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-140" class="srcLine"> }</span></td> </tr> <tr id="l141"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=141#src-141">141</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-141" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> g2.fill(shape);</span></span></td> </tr> <tr id="l142"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=142#src-142">142</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-142" class="srcLine"> }</span></td> </tr> <tr id="l143"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=143#src-143">143</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-143" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> <span class="keyword">if</span> (getDrawOutlines()) {</span></span></td> </tr> <tr id="l144"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=144#src-144">144</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-144" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if,&#160;else"> <span class="keyword">if</span> (getUseOutlinePaint()) {</span></span></td> </tr> <tr id="l145"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=145#src-145">145</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-145" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> g2.setPaint(getItemOutlinePaint(row, column));</span></span></td> </tr> <tr id="l146"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=146#src-146">146</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-146" class="srcLine"> } <span class="keyword">else</span> {</span></td> </tr> <tr id="l147"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=147#src-147">147</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-147" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if,&#160;else"> g2.setPaint(getItemPaint(row, idx));</span></span></td> </tr> <tr id="l148"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=148#src-148">148</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-148" class="srcLine"> }</span></td> </tr> <tr id="l149"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=149#src-149">149</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-149" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> g2.setStroke(getItemOutlineStroke(row, column));</span></span></td> </tr> <tr id="l150"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=150#src-150">150</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-150" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;for,&#160;if"> g2.draw(shape);</span></span></td> </tr> <tr id="l151"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=151#src-151">151</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-151" class="srcLine"> }</span></td> </tr> <tr id="l152"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=152#src-152">152</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-152" class="srcLine"> }</span></td> </tr> <tr id="l153"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=153#src-153">153</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-153" class="srcLine"> }</span></td> </tr> <tr id="l154"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=154#src-154">154</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-154" class="srcLine"></span></td> </tr> <tr class="inlineStatsRow" align="right" valign="middle"> <td class="coverageCount"><a name="155" class="nolink">&#160;</a></td> <td class="coverageCount aui-icon aui-icon-small aui-iconfont-arrows-right" id='inlineStatsToggle-155' onclick="toggleInlineStats(this, 'inlinestats-155');"/> <td align="center" valign="middle"> <table id="inlinestats-155" style="display:none;" class="inlineStats" width="100%" cellspacing="1px" cellpadding="1px"> <tr onclick="toggleInlineStats(document.getElementById('inlineStatsToggle-155'), 'inlinestats-155');return true;"> <td><div> <div title="Empty" class="barEmpty" style="min-width:40px;"></div> </div></td><td> - </td> <td class="inlineStat">Uncovered Elements: 0 (0)</td> <td class="inlineStat">Complexity: 1</td> <td class="inlineStat">Complexity Density: -</td> </tr> </table> </td> </tr> <tr id="l155"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=155#src-155">155</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" methodStart srcCell" id="id-155"><img title="Method Statistics" onclick="toggleSrcRowVis(this, 155,162);" id="img-155" src="../../../../../../../img/collapse.gif" alt="toggle" class="icon"/><span id="src-155" class="srcLineFiltered"><span class="nolink" title="Filtered by: method"> @Override</span><span class="foldControl" onclick="toggleSrcRowVis(document.getElementById('img-155'), 155,162);" id="e155" style="display:none;border:none;">...</span></span></td> </tr> <tr id="l156"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=156#src-156">156</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-156" class="srcLine"> <span class="keyword">public</span> Paint getItemOutlinePaint(<span class="keyword">int</span> seriesIdx, <span class="keyword">int</span> valueIdx) {</span></td> </tr> <tr id="l157"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=157#src-157">157</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-157" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;else"> <span class="keyword">if</span> (getFormatDelegate().isItemSelected(seriesIdx, valueIdx)) {</span></span></td> </tr> <tr id="l158"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=158#src-158">158</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-158" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;if"> <span class="keyword">return</span> <span class="keyword">super</span>.getItemOutlinePaint(seriesIdx, valueIdx);</span></span></td> </tr> <tr id="l159"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=159#src-159">159</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-159" class="srcLine"> } <span class="keyword">else</span> {</span></td> </tr> <tr id="l160"> <td align="right" class="lineCount Filtered"><a class="lineNumHref" href="?line=160#src-160">160</a></td> <td align="right" class="coverageCount Filtered missedByTest" >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-160" class="srcLineFiltered"><span class="nolink" title="Filtered by: method,&#160;else"> <span class="keyword">return</span> <a href="../../../../../../../com/rapidminer/gui/new_plotter/utility/DataStructureUtils.html#DataStructureUtils">DataStructureUtils</a>.setColorAlpha(Color.LIGHT_GRAY, 20);</span></span></td> </tr> <tr id="l161"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=161#src-161">161</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-161" class="srcLine"> }</span></td> </tr> <tr id="l162"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=162#src-162">162</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-162" class="srcLine"> }</span></td> </tr> <tr id="l163"> <td align="right" class="lineCount NoHilight"><a class="lineNumHref" href="?line=163#src-163">163</a></td> <td align="right" class="coverageCount NoHilight " >&#160;&#160;</td> <td class=" srcCell" ><span class="spacer"></span><span id="src-163" class="srcLine">}</span></td> </tr> </tbody></table> </div> </div><!-- .aui-tabs --> <script type="text/javascript"> var ol_bgclass = "overBG"; var ol_fgclass = "overFG"; var ol_cgclass = "overCaption"; var ol_captionfontclass= "overCaption"; var ol_closefontclass = "closeFont"; var ol_closeclick = 1; var ol_close = 'X'; var ol_wrap = 1; var rootRelPath = '../../../../../../../'; var testsPerFile = -1; </script> <script src="FormattedScatterRenderer.js" type="text/javascript"></script> </div> <!-- class="aui-page-panel-content-clover" --> <footer id="footer" role="contentinfo"> <section class="footer-body"> <ul> <li> Report generated by <a target="_new" href="http://www.atlassian.com/software/clover">Atlassian Clover</a> v 4.1.2 on 星期二 九月 5 2017 17:24:16 CST using coverage data from 星期四 一月 1 1970 08:00:00 CST. </li> </ul> <ul> <li>Clover Evaluation License registered to Clover Plugin. You have 29 day(s) before your license expires.</li> </ul> <div id="footer-logo"> <a target="_blank" href="http://www.atlassian.com/"> Atlassian </a> </div> </section> </footer> </section> <!-- class="aui-page-panel-content" --> </div> <!-- class="aui-page-panel-inner" --> </div> <!-- class="aui-page-panel" --> </div> <!-- id="page" --> </body> </html>
templates/index.html
javaguirre/gramophone
<!DOCTYPE html> <!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> <!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> <!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> <title></title> <meta name="description" content=""> <meta name="viewport" content="width=device-width"> <link rel="stylesheet" href="/static/styles/bootstrap.min.css"> <link rel="stylesheet" href="/static/styles/bootstrap-responsive.min.css"> <link rel="stylesheet" href="/static/styles/main.css"> <link rel="stylesheet" href="/static/styles/midnight.black/jplayer.midnight.black.css"> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script> <script src="/static/scripts/vendor/modernizr-2.6.2-respond-1.1.0.min.js"></script> <script src="/static/scripts/vendor/jquery-ui-1.9.2.custom.min.js" type="text/javascript" charset="utf-8"></script> <script src="/static/scripts/vendor/underscore-min.js"></script> <script src="/static/scripts/vendor/backbone-min.js"></script> <script src="/static/scripts/vendor/jquery.jplayer.min.js"></script> <script src="/static/scripts/vendor/jplayer.playlist.min.js"></script> <link href='http://fonts.googleapis.com/css?family=Dosis' rel='stylesheet' type='text/css'> <!-- TEMPLATES --> <script type="text/html" id="template-app"> {% include "app.html" %} </script> <script type="text/html" id="template-track"> {% include "track.html" %} </script> <script type="text/html" id="template-album"> {% include "album.html" %} </script> <script type="text/html" id="template-artist"> {% include "artist.html" %} </script> <!-- END Templates --> </head> <body id="app"> <!--[if lt IE 7]> <p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p> <![endif]--> <div class="navbar"> <!-- jPlayer --> {% include "player.html" %} <!-- End jPlayer --> </div> <div class="container-fluid"> <div class="alert" id="messages"> <button type="button" class="close" data-dismiss="alert">&times;</button> <span id="message-content"></span> </div> <div class="row-fluid"> <div class="span9"> <div class="span4"> <form class="form-search"> <input placeholder="Search" type="search" class="input-medium search-query" id="searchText"> <button id="searchAction"><i class="icon-search"></i> Search</button> </form> </div> <div class="span1 menu-button" data-name="track"><a href="#!/"><i class="icon-music"></i></a></div> <div class="span1 menu-button" data-name="album"><a href="#!/albums"><i class="icon-headphones"></i></a></div> <div class="span1 menu-button" data-name="artist"><a href="#!/artists"><i class="icon-user"></i></a></div> <div class="span1 menu-button" data-name="playlist"><a href="#" id="hide_playlist"><i class="icon-list-alt"></i></a></div> <div class="span1 menu-button" data-name="clear"><a href="#" id="clear_playlist"><i class="icon-remove"></i></a></div> <div class="span1 menu-button" data-name="update"><a href="#" id="update_db"><i class="icon-refresh"></i></a></div> </div> </div> <div class="row-fluid"> <div class="span12"> <div id="track-list-app"></div> </div> </div> <hr /> <footer> <a href="https://github.com/javaguirre/gramophone">Gramophone</a> is Free Software. <a href="https://github.com/javaguirre/gramophone/issues?state=open">Suggestions?</a> </footer> </div> <!-- /container --> <script src="/static/scripts/vendor/bootstrap.min.js"></script> <script src="/static/scripts/utils.js"></script> <script src="/static/scripts/models/album.js"></script> <script src="/static/scripts/models/artist.js"></script> <script src="/static/scripts/models/track.js"></script> <script src="/static/scripts/collections/generic.js"></script> <script src="/static/scripts/collections/album.js"></script> <script src="/static/scripts/collections/artist.js"></script> <script src="/static/scripts/collections/track.js"></script> <script src="/static/scripts/views/album.js"></script> <script src="/static/scripts/views/artist.js"></script> <script src="/static/scripts/views/track.js"></script> <script src="/static/scripts/views/app.js"></script> <script src="/static/scripts/routers/router.js"></script> <script src="/static/scripts/app.js"></script> </body> </html>
frankenTexts_HTML/PA_Electronic_Ed/1831_ed/00152-chapterContent-1831.html
ebeshero/Pittsburgh_Frankenstein
<html> <head> <title>Frankenstein, 1831, Vol. 2, Chap. 8, Frame 2</title> </head> <body> <p> "The pleasant sunshine, and the pure air of day, restored me to some degree of tranquillity; and when I considered what had passed at the cottage, I could not help believing that I had been too hasty in my conclusions. I had certainly acted imprudently. It was apparent that my conversation had interested the father in my behalf, and <a href="../V2notes/fool.html">I was a fool</a> in having exposed my person to the horror of his children. I ought to have familiarised the old De Lacey to me, and by degrees to have discovered myself to the rest of his family, when they should have been prepared for my approach. But I did not believe my errors to be irretrievable; and, after much consideration, I resolved to return to the cottage, <a href="../V2notes/seek.html">seek the old man, and by my representations win him to my party</a>.</p><p> "These thoughts calmed me, and in the afternoon I sank into a profound sleep; but the fever of my blood did not allow me to be visited by peaceful dreams. The horrible scene of the preceding day was for ever acting before my eyes; the females were flying, and the enraged Felix tearing me from his father's feet. I awoke exhausted; and, finding that it was already night, I crept forth from my hiding-place, and went in search of food.</p><p> "When my hunger was appeased, I directed my steps towards the well-known path that conducted to the cottage. All there was at peace. I crept into my hovel, and remained in silent expectation of the accustomed hour when the family arose. That hour past, the sun mounted high in the heavens, but the cottagers did not appear. I trembled violently, apprehending some dreadful misfortune. The inside of the cottage was dark, and I heard no motion; I cannot describe the agony of this suspence.</p> </body> </html>
jdsurvey-intweb/src/main/webapp/styles/standard.css
GlgnhofCross/Gtesting
*{ margin:0; padding:0; font-family:Helvetica,sans-serif; } body{ } table{ margin-left: -10px; width: 100.5%; /* border:2px solid #D7E3F4; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; */ } table th, td{ padding-left: 8px !important; } focus{ color:orange; } a{text-decoration: none;} /* Global Underline */ .clear-both{ clear:both; } img{ border:0; } .header-cap{ background:#333; color:#FFF; font-size:0.7em; padding:1px 15px 2px 15px; } .header-cap .right{ float:right; } .header-cap .right a{ color:#FFF; } .header-cap .right li.last a{ color:#FFF; } .header-cap .right li.last a:hover{ color: #FF8C00; } .header-cap .right li{ color:#FFF; float:left; list-style-type:none; margin-right:5px; padding-right:5px; border-right:1px solid #FFF; } .header-cap .right li a{ color:#FFF; } .header-cap .right li.last{ margin-right:0; padding-right:0; border-right:0; } .header-cap loginUser { font-weight:bold; } .header-middle{ background-color:#828282; width:100%; border-top:0px solid #ACB7C8; /* IE7 */ *width:auto; } .header-search-form{ float:left; } .logo img { padding:8px 0px 0px 28px; } .header-navigation{ /*margin-top:45px;*/ padding-right:15px; } .header-navigation li{ font-size:0.8em; list-style-type:none; float:left; margin-left:5px; } .header-navigation a{ color:#FFF; background:#657D97; display:block; padding:9px 16px; } .header-navigation a.active, .header-navigation a:hover{ background:#C0C0C0; color:#333; } .page-body{ clear:both; float:left; width:100%; /*border-top:1px solid #333; border-top:1px solid #C0C0C0;*/ /*margin-bottom:80px;*/ } .left-column{ width:225px; float:left; margin-top:35px; margin-left:-100%; } .left-column div{padding-top:-10px;} .left-column div ul li a:hover{color:#FF8C00;} .left-column div ul li a{font-size:1.0em;} .left-column div h2{margin-bottom:0; color:#657D97;} .left-column .block h2{ color:#AAC3D9; } .right-column{ margin-left:240px; } .block{ margin-bottom:17px; background:#FFF; padding:8px 8px 8px 12px; font-size:0.8em; margin-top:4px; } .boxed { margin:10px 8px 0px 8px; padding:8px 2px 8px 6px; border: solid 1px #CCC; background-color:whiteSmoke; } .block ul { list-style-type: square; list-style-position:inside; } .block .noTopMargin div{ margin-top:0px; } .left-column .block { background:#333; margin:4px; padding:4px; padding-left:6px; } .block h2{ width:99.5%; font-size:1.0em; margin:0px 0px 10px -10px; color:#2b2b2b; background:#d7e3f4; padding:4px 7px 4px 7px; border:1px solid #CCC; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; } .left-column .block h2{ font-size:1.0em; margin-bottom:3px; margin-top:5px; color:#657D97; } .block h2.underlined{ /*border-bottom:1px solid #DBDBDB;*/ /*padding-bottom:2px; background-color:#F68C1F; border:1px solid #F68C1F; old background CDDCE9 */ } .block h2 a{ color:#333; display:block; } .block h3{ font-size:0.8em; color:#657D97; padding-bottom:2px; margin-bottom:10px; margin-top:10px; } .block h3 a{ color:#333; display:block; font-size:0.8em; color:#657D97; padding-bottom:2px; margin-bottom:10px; margin-top:10px; } .block h4{ font-size:0.8em; color:#657D97; padding-bottom:2px; margin-bottom:10px; margin-top:10px; } .block h4 a{ color:#333; } .block h4.underlined{ border-bottom:1px solid #DBDBDB; } .block .field span.label { display: inline-block; padding-right:5px; font-weight:bold; color:#2b2b2b; } .block .subsection { padding-bottom:10px; margin-bottom:1px; } .block .subsubsection { /*margin-left:50px;*/ } .block p{ line-height:1.5em; font:normal 1.0em Helvetica,sans-serif; margin-bottom:5px; color:#666; } .flash{ font-size: small; padding:7px 7px 7px 27px; border:1px solid #CCC; margin-bottom:10px; margin-right:8px; -moz-border-radius: 3px; -webkit-border-radius: 3px; border-radius: 3px; } .flash-error{ background:#FDE7E1 url(../images/error.png) 5px 5.5px no-repeat; color:#F8937E; border-color: #FAD0D0 !important; color: #b01717 !important; /* shadow */ -moz-box-shadow: 0 0 3px 0 rgba(176,23,23,.4); -webkit-box-shadow: 0 0 3px 0 rgba(176,23,23,.4); box-shadow: 0 0 3px 0 rgba(176,23,23,.4); } .flash-success{ background:#E3F4E1 url(../images/success.png) 5px 5.5px no-repeat; border-color:#6FC764; color:green; } .flash-notice{ background:#FDF9D6 url(../images/warning.png) 5px 5.5px no-repeat; border-color:#E89015; color:navy; } .record-table{ /*font-size:0.8em;*/ margin-top:4px; /*margin-bottom:10px;*/ margin-bottom: -14px; } .record-table a{ color:#333; } .record-table a:hover{ color: #FF8C00; } .record-table caption{ display:none; } .record-table tbody tr td.checkbox-cell{ width:10px; } .record-table tbody tr td.field-cell{ width:50px; padding:3px 15px 3px 4px; } .record-table thead tr th{ padding:6px 4px; text-align:left; font-weight:normal; border-bottom:1px solid #CCC; color:#333; font-weight:bold; } /* .record-table tbody tr:hover { background: #fbf8e9; -o-transition: all 0.1s ease-in-out; -webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; } */ .record-table thead tr th a{ color:#666; } .record-table tbody tr td{ padding:6px 4px; } .record-table tbody tr.footer td{ text-align:right; border-bottom:0px; } .table-pagination{ margin-bottom:18px; padding:5px 8px; background:#DDD; border:1px solid #CCC; color:#666; } .table-pagination .left{ width:48%; float:left; } .table-pagination .right{ width:48%; float:right; } .table-pagination .left p{ margin:0; } .table-pagination .right ol{ float:right; padding-top:2px; } .table-pagination .right ol li{ list-style-type:none; float:left; font-size:0.8em; margin-right:5px; padding-right:5px; border-right:1px solid #CCC; font-weight:bold; } .table-pagination .right ol li a{ color:#666; font-weight:normal; } .table-pagination .right ol li.last{ margin-right:0; padding-right:0; border-right:0; } .table-pagination .right ol li a:hover{ color:#FF8C00; } .buttons a, .buttons button{ display:block; float:left; margin:0 7px 0 0; text-decoration:none; /* Should we give this?? */ line-height:130%; cursor:pointer; background-color:#FFF; border:1px solid #999; border-top:1px solid #DDD; border-left:1px solid #DDD; font-size:1.2em; font-weight:bold; color:#565656; padding:5px 10px 6px 7px; /* Links */ } .buttons button{ width:auto; overflow:visible; padding:4px 10px 3px 7px; /* IE6 */ } .buttons button[type]{ padding:5px 10px 5px 7px; /* Firefox */ line-height:17px; /* Safari */ } *:first-child+html button[type]{ padding:4px 10px 3px 7px; /* IE7 */ } .buttons button img, .buttons a img { margin:0 3px -3px 0 !important; padding:0; border:none; width:16px; height:16px; } .block ul.nested li{ list-style-type:none; font-size:11px; color:#666; } .block ul.nested li a{ color:#666; } .left-column .block ul.nested li a{ color:white; } .left-column .block ul.nested li a:hover{ color:#FF8C00; } #footer{ clear:both; /*height: 25px;*/ background: #333333; position:fixed; bottom:0; width:100%; } #footer .copy{ width: 400px; padding: 0px 0px 0px 5px; float: left; display: inline; font-size: 0.6em; color: #F68C1F; } #footer .nav{ /*width:455px;*/ float:right; display:inline; padding: 0px 5px 0px 0px; } #footer .nav ul{ list-style: none; } #footer .nav ul li{ display: inline; font-size: 0.7em; color: #fff; padding: 0 10px 0 0; } #footer .nav ul li a{ color: #fff; } #footer .nav ul li.last{ padding:0px; } #footer .nav ul li a:hover{ color: #FF8C00; } .linkbuttons { float: right; margin: -31px 5px 0 0; width:200px; } .linkbuttons a{ color: #657D97; font-size: 0.9em; display:inline; } .linkbuttons a{ color: #657D97; font-size: 0.9em; display:inline; } .linkbuttons img { float: right; padding: 0px 2px 0px 2px; clear:none; } .linkbuttons form input { clear:none; float: right; } .linkbuttons a:hover, .linkbuttons a:hover{color: #FF8C00;} div.fieldsection { margin-top:6px; /*background-color:yellow;*/ } /* Formee Little CSS Reset to preserv form structure */ /* fix ff bugs */ .formee:after, .formee div:after, .formee ol:after, .formee ul:after, .formee li:after, .formee dl:after { content:"."; display:block; clear:both; visibility:hidden; height:0; overflow:hidden; } /* Form Structure */ .formee{margin:0;padding:0;} /* form button */ .formee fieldset{ border: 1px solid #d4d4d4; background:#fff; position: relative; height:100%; padding: 1.2em 1.2em; margin: 0 0 1em; /*corner*/ -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } /* form elements */ .block label { color:#2b2b2b; /*font-size:1.4em;*/ font-weight:bold; margin-right:5px; } .checkboxes { border: 1px solid #d4d4d4; margin-left: 30.7%; margin-top: -20px; margin-bottom: 5px; margin-right: 6%; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .checkboxes label { font-weight:normal; } .checkboxes input.checkbox { height:30px; } .checkboxDiv { border: 1px solid #d4d4d4; padding: 6px 2px 6px 2px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } /* hover effect */ .grid-1-12:hover, .grid-2-12:hover, .grid-3-12:hover, .grid-4-12:hover, .grid-5-12:hover, .grid-6-12:hover, .grid-7-12:hover, .grid-8-12:hover, .grid-9-12:hover, .grid-10-12:hover, .grid-11-12:hover, .grid-12-12:hover {} .field-button:hover {background:transparent;} /* Form legend and titles */ /*.formee{font: normal 10px/1.1em Arial,Sans-Serif;}*/ /* Field Grid */ .grid-1-12, .grid-2-12, .grid-3-12, .grid-4-12, .grid-5-12, .grid-6-12, .grid-7-12, .grid-8-12, .grid-9-12, .grid-10-12, .grid-11-12, .grid-12-12 { display:inline-block; position:relative; /*float:left;*/ /*margin-left:1%; vertical-align:middle;*/ margin-right:1%; padding: 0.2% 0% 0.4%; /* padding bottom was 0.8% */ height:100%; /*ie7*/ *margin-left:.8%; *margin-right:.8%; *padding: 0.8% 0.25% 1%; } /* 12-column Grid (thanks for Fluid 960 Grid System) */ .grid-1-12 {width: 5.333%;} .grid-2-12 {width: 13.666%;} .grid-3-12 {width: 22%;} .grid-4-12 {width: 30.333%;} .grid-5-12 {width: 38.666%;} .grid-6-12 {width: 47%;} .grid-7-12 {width: 55.333%;} .grid-8-12 {width: 63.666%;} .grid-9-12 {width: 72%;} .grid-10-12 {width: 80.333%;} .grid-11-12 {width: 88.666%;} .grid-12-12 {width: 97%;} /* first item */ .formee .alpha {margin-left:0;} /* last item */ .formee .omega {margin-right:0;} /* clear */ .formee .clear {clear:both;} /* input without label */ .formee-no-lbl {position:relative;padding-bottom:0;} /* input without label */ .formee-no-lbl input, .formee-no-lbl label, .formee-no-lbl span, .formee-no-lbl ul, .formee-no-lbl p {position:absolute;bottom:0;} /* multiple containers inside field-grid */ .formee .left { clear:none; float:left !important; margin-right:0.3em !important; } .formee .right { clear:none; float:right !important; margin-left:0.3em !important; } /* form elements */ .formee label { /*line-height: 1.3em;*/ /*vertical-align:middle;*/ /*display: block;*/ /*height: auto; margin: 0.2em 0 0.5em;*/ } .formee .formee-txt, .formee input[type="text"], .formee input[type="password"], .formee input[type="file"], .formee textarea, .formee select { /*vertical-align: middle; Modified to align text on top*/ margin: .2em 0; vertical-align: top; /*font-size:1.4em;*/ line-height: 1.5em; /*width: 100%;*/ padding:2px; border-style: solid; border-width: 1px; box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -webkit-box-sizing: border-box; /*corner*/ -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; border-color:#c6c6c6 #dadada #eaeaea; background: #fafafa; color:#999; font-size:1em; /*ie7*/ *width: 99%; } .formee .formee-txt:hover, .formee input[type="text"]:hover, .formee input[type="password"]:hover, .formee input[type="file"]:hover, .formee textarea:hover, .formee select:hover { color:#666; background: #fff none; border-color:#c6c6c6; } .formee input.checkbox { vertical-align: middle; margin: 5px 5px 5px 0; /*margin-left:5px; margin-right:5px;*/ } form .formee-txt:focus, .formee input[type="text"]:focus, .formee input[type="password"]:focus, .formee input[type="file"]:focus, .formee textarea:focus, .formee select:focus { outline: 0; color:#333; background: #fff none; border-color:#659ec9 #70aedd #a8cfec; } .formee textarea{height: 10em;} .formee select{ padding:1px; /*height:1.7em;*/ } .formee-list label { display: inline; height: auto; margin: 0.5em 0 0.8em 2px; } .formee-req{ line-height: .85em; position: relative; top:3px; font-weight: bold; font-style:normal; color:#d10000; font-size:1.2em; margin-left: 2px; } /* form button */ .formee-button, .formee input[type="submit"], .formee input[type="button"], .formee input[type="reset"], .formee input [type="cancel"] { text-align: center; display:inline-block; padding:3px 6px 3px 6px; border:1px solid #D4D4D4; /*margin: 0 0 3em;*/ /*font-size:1.2em;*/ /*font-weight:bolder;*/ letter-spacing: -.015em; color:#fff; border-color:#3a77a4; background:#5393c2; /* gradient */ background: -moz-linear-gradient(top, #5393c2 40%, #3a77a4); background: -webkit-linear-gradient(top, #5393c2 40%, #3a77a4); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5393c2', endColorstr='#3a77a4'); /* shadow */ -moz-box-shadow: inset 0 1px 0 0 rgba(255,255,255,.4); -webkit-box-shadow: inset 0 1px 0 0 rgba(255,255,255,.4); box-shadow: inset 0 1px 0 0 rgba(255,255,255,.4); box-sizing: border-box; -moz-box-sizing: border-box; -ms-box-sizing: border-box; -webkit-box-sizing: border-box; /*corner*/ -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .formee-button:hover, .formee input[type="submit"]:hover, .formee input[type="button"]:hover, .formee input[type="reset"]:hover, .formee input [type="cancel"]:hover { background:#70aedd; /* gradient */ background: -moz-linear-gradient(top, #70aedd 40%, #69a4d0); background: -webkit-linear-gradient(top, #70aedd 40%, #69a4d0); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#70aedd', endColorstr='#69a4d0'); /* shadow */ -moz-box-shadow: 0 1px 1px 0 rgba(0,0,0,.2), inset 0 1px 0 0 rgba(255,255,255,.4); -webkit-box-shadow: inset 0 1px 0 0 rgba(255,255,255,.4); box-shadow: 0 1px 1px 0 rgba(0,0,0,.2), inset 0 1px 0 0 rgba(255,255,255,.4); } /* list of checks and radios */ .formee-list{ height: 100%; list-style: none; padding:0; margin:0; } .formee-list li,.formee-list li{ margin: 0.5em 0.6em 0.8em; float:left; display: inline-block; list-style:none; } .formee-list input{margin-right: 0.2em} /* input size */ .formee-small { width: 30% !important; float:left; margin-right: 10px; display:inline; /*ie7*/ *width: 25% !important; } .formee-medium { width: 50% !important; float:left; margin-right: 10px; display:inline; /*ie7*/ *width: 45% !important; } .extDivButtons{ padding-top: 15px; } .pagename { color:#2b2b2b; } /* form msg status */ .formee-msg-error { color:#2b2b2b; /*corner*/ -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; } .formee-msg-error { background: #fad0d0 url(../images/error.png) no-repeat 12px 23px; border-color:#f6abab; } .validationMsg{ display: block; color:red; margin-top: -4px; margin-bottom: 15px; margin-left: 22.5%; } .validationAlign3{ margin-left: 30.65%; } .validationWidth0{ margin-left: 0%; } .validationMsgQO{ display: block; color:red; margin-top: -4px; margin-bottom: 15px; margin-left: 0.5%; } .errorMsg{ display: block; color:red; } .alignTop{ vertical-align: top; } .alignLeft{ float: left; } /* for Testing Security*/ .securityHiddenUI a {color:red; text-decoration: line-through;} .notFoundMessage{ color: blue; margin: 10px 0 0; margin-bottom:23px; } .notFoundUnderline { float: right; margin: 5px 5px 0 0; width: 99.5%; border-top:1px solid #CCCCCC; display:block; } .notFoundUnderline a { float: right; padding: 6px 2px 0px; clear:none; } .notFoundUnderline img { float: right; padding: 0px px 0px 5px; clear:none; margin-left: 10px; } .tipMsg{ display: block; margin-top: -3px; margin-left: 22.5%; margin-bottom: 10px; font-size:0.8em; color:darkblue; } .tipMsgLeftAligned{ display: block; margin-bottom: 10px; font-size:0.8em; color:darkblue; text-align:left; } .tipPreviewMsg{ color: #2B2B2B; display: block; font-size: 1.0em; } .tipMsginTable{ display: block; margin-top: -3px; margin-bottom: 10px; font-size:0.8em; color:darkblue; } .loginButtons{ display: block; margin-left: 0%; margin-bottom: 5px; margin-top:15px; } .inputButton { margin-right: 5px; width:80px; } /* WYSWYG TABLE */ #_definition_id_parent { margin-left: 0%; display:block; } .field{ clear: both; } /** Questions Table **/ .questions-table{ margin-top:4px; width:100%; /*margin-bottom: -14px;*/ } .questions-table a{ color:#333; } .questions-table a:hover{ color: #FF8C00; } .questions-table caption{ display:none; } .questions-table tbody tr.odd , .questions-table tbody tr.odd-bottom { background-color:#FAFAFA; } .questions-table tbody tr.odd-bottom td { border-bottom:1px solid #CCC; margin-bottom:25px; } .questions-table tbody tr.even , .questions-table tbody tr.even-bottom{ /*background-color:#E7EEF4;*/ } .questions-table tbody tr.even-bottom td{ border-bottom:1px solid #CCC; margin-bottom:25px; } .questions-table tbody tr.pagebottom td{ border:0px; padding-bottom:15px; text-align:right; background-color:white; } .questions-table tbody tr td.row-header { text-align:left; } .questions-table tbody tr td.row-subheader{ text-align:right; vertical-align:top; } .questions-table tbody tr td.center, .questions-table thead tr th.center { text-align: center; } .questions-table tbody tr td.center a{ color:blue; } .questions-table tbody tr td.checkbox-cell{ width:10px; } .questions-table tbody tr td.field-cell{ width:50px; padding:3px 15px 3px 4px; } .questions-table thead tr th{ padding:6px 4px; text-align:left; font-weight:bold; color:#333; border-bottom:1px solid #CCC; } /* .questions-table tbody tr:hover { background: #fbf8e9; -o-transition: all 0.1s ease-in-out; -webkit-transition: all 0.1s ease-in-out; -moz-transition: all 0.1s ease-in-out; -ms-transition: all 0.1s ease-in-out; transition: all 0.1s ease-in-out; } */ .questions-table thead tr th a{ color:#666; } .questions-table tbody tr td{ padding:6px 4px; } .questions-table tbody tr.footer td{ text-align:right; border-bottom:0px; } .questions-table ul { list-style-type: square; list-style-position:inside; } tbody tr.footer td img { vertical-align:middle; } #options-table{ margin-top:0px; width:100%; margin-bottom: 0px; border:1px solid #CCC; } #options-table tbody tr td{ border:0; padding-bottom:2px; } #options-table tbody tr.even-bottom td, .options-table tbody tr.odd-bottom td{ border-bottom:0px; padding-bottom:2px; } #options-table thead tr th{ padding:2px 4px; text-align:left; background:#C0C0C0; font-weight:normal; color:black; } #optionsedit-table tr td { padding-bottom:20px; } #optionsedit-table tr td { border:0; padding-bottom:2px; } #menublocks { margin : 20px 20px 20px 40px; font-size : 12px; } .menublock { width : 250px; height : 155px; padding: 5px 5px 5px; margin : 20px 5px 25px 5px; float : left; display : inline-block; } .menublock h2{ clear:both; color:#afbfd3; padding-bottom:5px; margin-left:5px; font-size: 1em; } .menublock ul{ margin-top:8px; list-style : none; vertical-align:top; padding:2px; } .menublock li{ padding-left:6px; padding-bottom:10px; } .userCheckbox{ width:auto; height:auto; padding: 3px; margin: 0px 25px 10px 0px; border: 1px solid #d4d4d4; display: block; } .menuH2{ color: #657D97; font-size: 1.3em; margin-bottom: 10px; margin-left:5px; } .wyswygEdit{ padding-left: 125px; display: inline-table; } .bigTemplateTextArea{ width : 800px; height : 600px; } .fieldCheckboxes { border: 1px solid #d4d4d4; margin-left: 22.5%; margin-top: -20px; margin-bottom: 5px; margin-right: 14%; } .fieldCheckboxes label{ font-weight:normal; margin-top:3px; } .fieldCheckboxes input.checkbox{ height:30px; } div .odd { background-color: #f8fafc; margin: 0 0 30px !important; padding: 2px 0; } .rightAnswer { background-color: #6FC764; } .questionAnswer { padding-left: 28px; padding-top: 4px; } .questionAnswer label.rightAnswer { background-color: #6FC764; } .block label.questionText { display: block; } .block label.rightAnswer { background-color: #6FC764; } .block label.wrongAnswer { background-color: #b01717; } .block label.questionText p{ display: inline; color:#2b2b2b; font-weight: bold; } .questionAnswer label { font-weight: normal; } table.questionsMatrix{ width:98%; border-spacing:0; border-collapse:collapse; } table.questionsMatrix thead tr th{ text-align:left; /*background:#333;*/ background:#C0C0C0; font-weight:normal; color:#202020; border:0; padding-left:5px; } table.questionsMatrix thead tr th.emptyCell{ /*background:transparent;*/ } table.questionsMatrix tbody tr td{ border-bottom:1px solid #CCC; padding-left:5px; } table.questionsMatrix tbody tr td.rowHeader{ text-align:center; /*border-right: 1px solid #CCC;*/ width:15% !important; } table.questionsMatrix tbody tr.odd td{ } table.questionsMatrix tbody tr.even td{ background:#E7EEF4; } table.questionsMatrix input { width:100px; } table.questionsMatrix input.checkbox{ margin: 5px 5px 5px 0px; width: 20px; padding-left:40px; } table.questionMultiOption{ width: 100% !important; } table.questionMultiOption tbody tr td{ vertical-align:top; width: 160px; padding:5px; } /* jQuery.Rating Plugin CSS - http://www.fyneworks.com/jquery/star-rating/ */ div.rating-cancel,div.star-rating{float:left;width:17px;height:15px;text-indent:-999em;cursor:pointer;display:block;background:transparent;overflow:hidden} div.rating-cancel,div.rating-cancel a{background:url(../images/rating/delete.gif) no-repeat 0 -16px} div.star-rating,div.star-rating a{background:url(../images/rating/star.gif) no-repeat 0 0px} div.rating-cancel a,div.star-rating a{display:block;width:16px;height:100%;background-position:0 0px;border:0} div.star-rating-on a{background-position:0 -16px!important} div.star-rating-hover a{background-position:0 -32px} /* Read Only CSS */ div.star-rating-readonly a{cursor:default !important} /* Partial Star CSS */ div.star-rating{background:transparent!important;overflow:hidden!important} /* END jQuery.Rating Plugin CSS */ .smileyDiv{ display:inline-block; vertical-align:top; } .smileyDiv label{ font-size:0.7em; } .smileyH{ width:180px; height:65px; text-align: left; padding: 10px 0; } .smileyH input{ margin: 0 0 0 25px !important; } .smileyH img{ display:block; margin: 0 auto; padding: 0 10px 0 0px; } .smileyV img{ display:block; margin: 0 auto; } .smileyV{ display:inline-block; text-align:center; width:144px; height:0px; } /* body, td, div, p, span { font-family:arial; } */ .bg003366 { background:#003366; } .reportHeader { color:#fff; font-size:23px; padding:15px; } .reportHeaderStats { color:#816666; padding:0px; margin:0px; width:100%; border:0px; margin:5px 0px; height:30px; } .reportHeaderStats td { text-align:center; border-right:1px solid #ccc; white-space:nowrap; font-size:12px; background:#fff; } .whiteColFiller { background:#fff; height:90% } .reportSubHeader { font-size:23px; vertical-align:text-middle; color:#fff; padding:10px 10px; padding-top:5px; } .questionReportTable{ width:100%; font-size:12px; } .questionReportGrayFont { color:#999999; } .cccBorder { border:1px solid #ccc; } .roundBottomLeft { -moz-border-radius-bottomleft:5px; border-bottom-left-radius:5px; } .roundBottomRight { -moz-border-radius-bottomright:5px; border-bottom-right-radius:5px; } .roundTopLeft { -moz-border-radius-topleft:5px; border-top-left-radius:5px; } .roundTopRight { -moz-border-radius-topright:5px; border-top-right-radius:5px; } .roundTopCorners { -moz-border-radius-topleft:5px; border-top-left-radius:5px; -moz-border-radius-topright:5px; border-top-right-radius:5px; } .roundBottomCorners { -moz-border-radius-bottomleft:5px; border-bottom-left-radius:5px; -moz-border-radius-bottomright:5px; border-bottom-right-radius:5px; } .allRoundCorners { -moz-border-radius:5px; border-radius:5px; } .textColorfff { color:#fff !important; } .defaultPadding { padding:5px; } .defaultMargin { padding:10px; } #wr { margin: 8px 8px 40px 12px; position:relative; overflow:auto; font:12px Helvetica,sans-serif; } .questionsList{ width:35%; float:left; /*margin-top:15px; margin-left:-100%; */ position:absolute: } #statistics{ /*background:red;*/ float:left; width:62%; padding: 2px 0px 0px 15px; } #statistics .questionTitle{ background:#CDDCE9; color:black; font-weight:bold; padding:4px 5px; border:1px solid #CCC; } #statistics .bar{ background-color:rgb(189,187,187); height:1.2em; } .questionsList .ul{ margin:0; list-style:none; margin:0px 0px 2px 22px; /*background-color:#333333;*/ font-size:0; z-index:999; position:relative; display:block; float:left; } .questionsList ul li{ display:block; padding:0px; border:1px solid #CCC; vertical-align:middle; } .questionsList ul>li{ margin:2px 0 0; vertical-align:middle; } .questionsList ul a:active, .questionsList ul a:focus{ outline-style:none; color:red; } .questionsList ul a{ display:block; vertical-align:middle; text-align:left; color:black; cursor:pointer; padding:4px 5px; background-color:white; background-repeat:repeat; } .questionsList ul p{ display: inline; } .questionsList ul li:hover a { color: #FF8C00; text-decoration:none; } .questionsList ul li.pressed a { font-weight:bold; /*color:#5393c2;*/ /*border:1px solid #5393c2;*/ } .questionsList ul li.pressed p { display: inline; font-weight:bold; /*color:#5393c2;*/ /*border:1px solid #5393c2;*/ } .pageHeader h3{ /*background:#5393c2;*/ background:#CDDCE9; color:black; padding: 4px 5px; font-size: inherit; } .questionsList ul li a:focus{ color: #FF8C00; text-decoration:none; } .questionsList .arrow { float:right; margin-top:-2px; } #statistics .nostatMessage{ font-size: 0.9em; } #statistics ul{ list-style-type:square; list-style-position: outside; padding-right:15px; } #statistics img{ margin:0px; padding:0px; float:none; } #statistics table { width:auto; margin:0px; border:0px; text-align:left; width:98%; border-collapse:collapse; border-spacing:0; margin: 0px 0px 0px 4px; } #statistics table td,#statistics table th { margin: 0px; padding-top: 5px; padding-bottom: 5px; border-bottom:1px solid #CCC; } #statistics table td,#statistics table th { margin: 0px; padding-top: 5px; padding-bottom: 5px; border-bottom:1px solid #CCC; } #statistics table td.matrixRowHeader { font-weight: bolder; padding-right:2em; } #statistics table th { font-weight: bolder; } #statistics table td.frequency, #statistics table th.frequency { text-align:right; padding-right:1em; } .checkboxDiv input { margin: 3px 5px 4px 22.5% !important; } .loginDiv{ display: table;" } .loginDiv label{ display: inline-block; width:12em; white-space: nowrap; } .loginDiv input{ display: inline-block; width:20em; white-space: nowrap; } .extraLargeTextArea { height:500px; } .imageBGround{ background: #222222; } .firstH{ margin-top: 80px; } .imageAlign{ background:white; width:850px; display: inline-table; } .imageAlign img{ display: table-row; } .imageAlign h2{ text-align: center; } .imageAlign hr{ background:#222222; margin: 70px; } .dontShow{ display:none; } .lblSingleCheckbox{ width: 22.1%; } table th.iconcell, .record-table thead th.iconcell {text-align:right;width:80px;padding-right:10px;} table td.iconcell {text-align:right;width:80px;} table td.iconcell a{color:transparent;} table td.iconcell img{padding:0px 2px 0px 2px;} table td.iconcell img {padding:0px 2px 0px 2px;} table td.iconcell input delete{} table form{display:inline;} form.iconform{display:inline;} table tbody tr:nth-child(odd) { background-color:#f8fafc; } table tbody tr:nth-child(even) { background-color:#fff; } .questionLinks a {color:#5599ff;padding-right:6px;} button.buttonAsText {background:none; border:none; margin:0;padding:0;color:#5599ff;} .questionLinks a:hover, button.buttonAsText:hover {color:#004179; text-decoration:none;} a.hastip {color:#5599ff;} i.hastip {color:#5599ff;} table thead tr th a.hastip {color:#5599ff;} .tipsy { padding: 5px; font-size: 0.8em; position: absolute; z-index: 100000;} .tipsy-inner { padding: 5px 8px 4px 8px; background-color:black; color: white; max-width: 200px; text-align: left; } .tipsy-inner { border-radius: 3px; -moz-border-radius:3px; -webkit-border-radius:3px; } .tipsy-arrow { position: absolute; background: url('../images/tipsy.gif') no-repeat top left; width: 9px; height: 5px; } .tipsy-n .tipsy-arrow { top: 0; left: 50%; margin-left: -4px; } .tipsy-nw .tipsy-arrow { top: 0; left: 10px; } .tipsy-ne .tipsy-arrow { top: 0; right: 10px; } .tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -4px; background-position: bottom left; } .tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; background-position: bottom left; } .tipsy-se .tipsy-arrow { bottom: 0; right: 10px; background-position: bottom left; } .tipsy-e .tipsy-arrow { top: 50%; margin-top: -4px; right: 0; width: 5px; height: 9px; background-position: top right; } .tipsy-w .tipsy-arrow { top: 50%; margin-top: -4px; left: 0; width: 5px; height: 9px; } .has-js .label_check, .has-js .label_radio { padding-left: 34px; } .has-js .label_radio { background: url(radio-off.png) no-repeat; } .has-js .label_check { background: url(check-off.png) no-repeat; } .has-js label.c_on { background: url(check-on.png) no-repeat; } .has-js label.r_on { background: url(radio-on.png) no-repeat; } .has-js .label_check input, .has-js .label_radio input { position: absolute; left: -9999px; } .questionAnswer input.checkbox { /*height:30px;*/ vertical-align: middle; } a.updateIcon { float: right; margin: 0px 0px 0px 2px; clear:none; display: block; width: 20px; height: 16px; background: url(../images/update.png) bottom; text-indent: -99999px; } a.updateIcon:hover { background-position:top; color:transparent; } a.forkIcon { float: right; margin: 0px 2px 0px 2px; clear:none; display: block; width: 14px; height: 16px; background: url(../images/fork.png) bottom; text-indent: -99999px; } a.forkIcon:hover { background-position:top; } input.deleteIcon { float: right; margin: 0px 2px 0px 2px; clear:none; display: block; width: 15px; height: 16px; background: url(../images/delete.png) bottom; text-indent: -99999px; border: none; } input.deleteIcon:hover { background-position:top; } a.showIcon { float: right; margin: 0px 2px 0px 2px; clear:none; display: block; width: 16px; height: 16px; background: url(../images/show.png) bottom; text-indent: -99999px; } a.showIcon:hover { background-position:top; color:transparent; } td.alignIcon input{ right: -22px; position: relative; } .questionLinks button:hover { color: #aa1111; } .questionText p{ display: inline; color:#2b2b2b; font-weight: bold; margin:0px; } .buttonLink{ -moz-box-sizing: border-box; background: -moz-linear-gradient(center top , #5393C2 40%, #3A77A4) repeat scroll 0 0 transparent; border: 1px solid #3A77A4; border-radius: 4px 4px 4px 4px; box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.4) inset; color: #FFFFFF; display: inline-block; letter-spacing: -0.015em; padding: 5px 6px 4px; text-align: center; } #statistics .questionTitle p{ display: inline; color:#2b2b2b; font-weight: bold; margin:0px; } div.ui-datepicker { font-size: 70%; }
Ephesoft_Community_Release_4.0.2.0/javadocs/com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/package-summary.html
ungerik/ephesoft
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_71) on Fri Jul 10 16:43:05 IST 2015 --> <title>com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule</title> <meta name="date" content="2015-07-10"> <link rel="stylesheet" type="text/css" href="../../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/package-summary.html">Prev Package</a></li> <li><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumninfo/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionCompositePresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionCompositePresenter</a>&lt;V extends <a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/advcancedtablecolumnextractionrule/AdvancedTableColumnExtractionCompositeView.html" title="class in com.ephesoft.gxt.admin.client.view.tablecolumnextraction.advcancedtablecolumnextractionrule">AdvancedTableColumnExtractionCompositeView</a>,T&gt;</td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionImagePresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionImagePresenter</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionImportPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionImportPresenter</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionInlinePresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionInlinePresenter</a>&lt;V extends <a href="../../../../../../../../com/ephesoft/gxt/admin/client/view/tablecolumnextraction/advcancedtablecolumnextractionrule/AdvancedTableColumnExtractionInlineView.html" title="class in com.ephesoft.gxt.admin.client.view.tablecolumnextraction.advcancedtablecolumnextractionrule">AdvancedTableColumnExtractionInlineView</a>&gt;</td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionInputPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionInputPresenter</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionMenuPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionMenuPresenter</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionPresenter.html" title="class in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionPresenter</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Enum Summary table, listing enums, and an explanation"> <caption><span>Enum Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Enum</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/AdvancedTableColumnExtractionPresenter.Results.html" title="enum in com.ephesoft.gxt.admin.client.presenter.tablecolumnextraction.advancedtablecolumnextractionrule">AdvancedTableColumnExtractionPresenter.Results</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/package-summary.html">Prev Package</a></li> <li><a href="../../../../../../../../com/ephesoft/gxt/admin/client/presenter/tablecolumninfo/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../../../../../index.html?com/ephesoft/gxt/admin/client/presenter/tablecolumnextraction/advancedtablecolumnextractionrule/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
common/templates/internal-layout.html
Fleeg/fleeg-platform
{% load staticfiles %} <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>{% block title %}{% endblock %}</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <link rel="shortcut icon" href="{% static 'img/favicon.png' %}"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous"> <link href="{% static 'css/style.css' %}" rel="stylesheet" media="screen"> <!-- scripts --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script> </head> <body style="margin-right:0;"> <!-- HEADER --> <div class="nav-reaction" style="border-top:0"> <div class="navbar navbar-default navbar-fixed-top fnav"> <div class="navbar-header" style="width:220px; margin: 5px 10px;"> <a class="navbar-brand flogo" style="color:#222222;max-width:135px;padding-top:15px;font-size:40px;" href="{% url 'home' %}"> <span class="flogo-icon-inline"></span>Fleeg </a> </div> {% include 'search/search-bar.html' %} <div class="col-lg-2" style="margin: 10px; float:right;"> <ul class="nav navbar-nav navbar-right"> <li class="dropdown"> <a class="dropdown-toggle" href="{% url 'notifications' %}" style="color:#222;padding:0;font-size:25px;margin-right:20px;"> <span class="glyphicon glyphicon-bell"></span> <div class="falert-number-bg"> {% if notify_count %} <div class="falert-number" id="notification-count">{{ notify_count }}</div> {% endif %} </div> </a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" style="padding:0;"> <img src="{{ request.session.user_avatar }}" style="width:30px; border: 1px solid #ccc;"/> <strong style="color:#222;margin-right:20px;">{{ user.first_name }} {{ user.last_name }}</strong> </a> <ul class="dropdown-menu"> <li><a href="{% url 'home' %}">Home</a></li> <li><a href="{% url 'profile' username=user.username %}">Profile</a></li> <li><a href="{% url 'account_settings' %}">Settings</a></li> <li class="divider"></li> <li><a href="{% url 'account_logout' %}">Sign out</a></li> </ul> </li> </ul> </div> </div> </div> {% block content %}{% endblock %} <!-- FOOTER --> <footer> <div class="container"> <hr class="ffooter"> <p class="pull-right">© {% now 'Y' %} Fleeg, FOSS.</p> </div> </footer> </body> </html>
documentation/static/javadoc/uhh_lt/newsleak/reader/package-use.html
tudarmstadt-lt/newsleak-frontend
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (1.8.0_152) on Wed Apr 17 18:24:09 CEST 2019 --> <title>Uses of Package uhh_lt.newsleak.reader</title> <meta name="date" content="2019-04-17"> <link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> <script type="text/javascript" src="../../../script.js"></script> </head> <body> <script type="text/javascript"><!-- try { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Package uhh_lt.newsleak.reader"; } } catch(err) { } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar.top"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.top.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?uhh_lt/newsleak/reader/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Uses of Package uhh_lt.newsleak.reader" class="title">Uses of Package<br>uhh_lt.newsleak.reader</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../uhh_lt/newsleak/reader/package-summary.html">uhh_lt.newsleak.reader</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="#uhh_lt.newsleak.reader">uhh_lt.newsleak.reader</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> <li class="blockList"><a name="uhh_lt.newsleak.reader"> <!-- --> </a> <table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> <caption><span>Classes in <a href="../../../uhh_lt/newsleak/reader/package-summary.html">uhh_lt.newsleak.reader</a> used by <a href="../../../uhh_lt/newsleak/reader/package-summary.html">uhh_lt.newsleak.reader</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colOne" scope="col">Class and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colOne"><a href="../../../uhh_lt/newsleak/reader/class-use/NewsleakReader.html#uhh_lt.newsleak.reader">NewsleakReader</a> <div class="block">This abstract reader provides basic functionality for all primary elasticsearch data readers.</div> </td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar.bottom"> <!-- --> </a> <div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> <a name="navbar.bottom.firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../overview-summary.html">Overview</a></li> <li><a href="package-summary.html">Package</a></li> <li>Class</li> <li class="navBarCell1Rev">Use</li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../index-files/index-1.html">Index</a></li> <li><a href="../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../index.html?uhh_lt/newsleak/reader/package-use.html" target="_top">Frames</a></li> <li><a href="package-use.html" target="_top">No&nbsp;Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../allclasses-noframe.html">All&nbsp;Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip.navbar.bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
python/testdata/launchpad/lib/lp/registry/help/structural-subscription-name.html
abramhindle/UnnaturalCodeFork
<html> <head> <title>Why do I need a "Subscription name"?</title> <link rel="stylesheet" type="text/css" href="/+icing/yui/cssreset/reset.css" /> <link rel="stylesheet" type="text/css" href="/+icing/yui/cssfonts/fonts.css" /> <link rel="stylesheet" type="text/css" href="/+icing/yui/cssbase/base.css" /> </head> <body> <h1>Why do I need a "Subscription name"?</h1> <p> You may have more than one structural subscription per project, each with different criteria. You may provide a name in order to identify them in the future in order to edit or delete them. </p> <p> Also, each email generated by this subscription will quote the name you choose, both in the email body and as a header (<code>X-Launchpad-Subscription</code>), making it easy to filter your bug mail. </p> <p> So, please provide a short, descriptive name to help you remember this subscription. </p> </body> </html>
a1/left_wheel_thru.html
bradchristie/taminations
<!DOCTYPE html> <html lang="en"> <head> <meta name="viewport" content="width=device-width" /> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link type="image/x-icon" href="../favicon.ico" rel="icon" /> <link href="../src/tamination.css" type="text/css" rel="stylesheet" /> <link href="../src/jquery-ui.css" rel="stylesheet" /> <script src="../ext/require.js" data-main="../src/config"></script> <title>Left Wheel Thru</title> </head> <body><div class="definition"> <h2>Left Wheel Thru</h2> <p>From facing couples: Similar to <a href="../b1/lead_right.html"> Couples Lead Left</a>, except that the dancers drop hands with each other, and the belles pass left shoulders with each other on the way. Ends in couples back-to back.</p> <p style="text-align:center"> <img alt="" src="left_wheel_thru_1a.png"/><img alt="" src="left_wheel_thru_1b.png"/></p> <p class="timing">Timing: 4, SS 6</p> <p class="copyright">&copy; Copyright 1982, 1986-1988, 1995, 2001-2015. Bill Davis, John Sybalsky, and CALLERLAB Inc., The International Association of Square Dance Callers. Permission to reprint, republish, and create derivative works without royalty is hereby granted, provided this notice appears. Publication on the Internet of derivative works without royalty is hereby granted provided this notice appears. Permission to quote parts or all of this document without royalty is hereby granted, provided this notice is included. Information contained herein shall not be changed nor revised in any derivation or publication. </p> </div></body> </html>
FlaskWebProject/static/scripts/rechner-brutto-netto/widgets/templates/PageExportEmail.html
ohaz/amos-ss15-proj1
<div> <h1>Netto-Lohn</h1> <table class="table-summary table-width-300"> <tr> <th class="column-left">Veranlagungsjahr</th> <td> <span data-dojo-type="shared.widgets.Output" data-dojo-props="label: 'Veranlagungsjahr', model: this.rechner, bindProp: 'veranlagungsjahr'"></span> </td> </tr> <tr> <th class="column-left">Lohnzahlungszeitraum</th> <td> <span data-dojo-type="shared.widgets.Output" data-dojo-props="label: 'Lohnzahlungszeitraum', model: this.rechner, bindProp: 'lohnzahlzeitraumString'"></span> </td> </tr> </table> <div class="table-border"> <table class="table-summary"> <thead> <tr> <th></th> <th><abbr title="Steuerpflichtiger"><span>Stpfl.</span></abbr> 1</th> <th><abbr title="Steuerpflichtiger"><span>Stpfl.</span></abbr> 2</th> </tr> </thead> <tbody> <tr class="row-result-bold"> <th class="column-left">Steuerklasse</th> <td> <span data-dojo-type="shared.widgets.Output" data-dojo-props="model: this.rechner.stPfl1, bindProp: 'steuerklasseString'"></span> </td> <td> <span data-dojo-type="shared.widgets.Output" data-dojo-props="model: this.rechner.stPfl2, bindProp: 'steuerklasseString'"></span> </td> </tr> <tr class="row-result-bold"> <th class="column-left">Brutto-Lohn</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'bruttolohn'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'bruttolohn'"></span> </td> </tr> </tbody> <tbody> <tr> <th class="column-left">Lohnsteuer</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'lohnsteuer'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'lohnsteuer'"></span> </td> </tr> <tr> <th class="column-left">Solidaritätszuschlag</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'solidaritaetszuschlag'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'solidaritaetszuschlag'"></span> </td> </tr> <tr> <th class="column-left">Kirchensteuer</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'kirchensteuer'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'kirchensteuer'"></span> </td> </tr> <tr class="highlight"> <th class="column-left">ST-Summe</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'st_summe'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'st_summe'"></span> </td> </tr> </tbody> <tbody> <tr> <th class="column-left">Krankenversicherung</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'krankenversicherung'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'krankenversicherung'"></span> </td> </tr> <tr> <th class="column-left">Pflegeversicherung</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'pflegeversicherung'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'pflegeversicherung'"></span> </td> </tr> <tr> <th class="column-left">Rentenversicherung</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'rentenversicherung'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'rentenversicherung'"></span> </td> </tr> <tr> <th class="column-left">Arbeitslosenversicherung</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'arbeitslosenversicherung'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'arbeitslosenversicherung'"></span> </td> </tr> <tr class="highlight"> <th class="column-left">SV-Summe</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'sv_summe'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'sv_summe'"></span> </td> </tr> </tbody> <tbody> <tr class="row-result-bold"> <th class="column-left">Netto-Lohn</th> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl1, bindProp: 'nettolohn'"></span> </td> <td> <span data-dojo-type="shared.widgets.NumberOutput" data-dojo-props="places: 2, model: this.rechner.stPfl2, bindProp: 'nettolohn'"></span> </td> </tr> </tbody> </table> </div> <div> <div data-dojo-type="rechner-brutto-netto.widgets.VergleichTable" data-dojo-props="rechner: this.rechner, config: this.config"></div> </div> </div>
bolivia.html
dtejada/labcivico
--- layout: default --- <header id="header"> {% include menu.html %} <!--== Site Description ==--> <div class="header-cta"> <div class="container"> <div class="row"> <div class="blk"> <h1>LabCi.bo</h1> </div> </div> </div> </div> <div class="header-bg"> <div id="preloader"> <div class="preloader"></div> </div> <div class="main-slider" id="main-slider"> <!--== Main Slider ==--> <ul class="slides"> <li><img src="images/demo/bg-slide-01.jpg" alt="Slide Image"/></li> <li><img src="images/demo/bg-slide-02.jpg" alt="Slide Image 2"/></li> </ul> </div> </div> </header> <div class="content"> <div class="container box"> <!--===============================--> <!--== Features ===================--> <!--===============================--> <section id="features" class="row"> <div class="col-md-3 col-xs-6"> <div class="event-info"> <div class="icon fa fa-map-marker"></div> <div class="info"> <h3>Bolivia Tech Hub</h3> <span>La Paz, Bolivia</span> </div> </div> </div> <div class="col-md-3 col-xs-6"> <div class="event-info"> <div class="icon fa fa-calendar"></div> <div class="info"> <h3>Mayo y Junio</h3> <span>2015</span> </div> </div> </div> <div class="col-md-3 col-xs-6"> <div class="event-info"> <div class="icon fa fa-microphone"></div> <div class="info"> <h3>5 talleres</h3> <span>.. expertos</span> </div> </div> </div> <div class="col-md-3 col-xs-6"> <div class="event-info"> <div class="icon fa fa-users"></div> <div class="info"> <h3>15 participantes</h3> <span>de la Soc. Civil</span> </div> </div> </div> </section> <!--==========--> {% include share-buttons.html %} <div class="col-md-12"><h5>El LabCi es una instancia de integración y colaboración orientada a inspirar y desarrollar proyectos que incorporen tecnología e impacto social. Su objetivo es consolidar una red de colaboración efectiva entre sus miembros, facilitando la labor de las organizaciones de la sociedad civil, la investigación académica, y el periodismo de datos, en conjunto con la comunidad de desarrolladores y diseñadores.Para ello el laboratorio se concentra en identificar las principales problemáticas sociales, abordarlas desde un enfoque multidisciplinario, y desarrollar una solución tecnológica que nutra el trabajo cotidiano y potencie las capacidades de los grupos participantes.</h5> <h5>La integración sólida, constante y significativa entre el sector social y tecnológico, además de propiciar el desarrollo de mejores herramientas, apunta a la consolidación de ecosistemas promotores de cambio social.</h5></div> <section id="schedule"> {% include schedule.html %} </section> <!--===============================--> <!--== Speakers ===================--> <!--===============================--> <section id="speakers" class="row separated"> <div class="col-sm-12"> <div class="section-header text-center"> <h2>Integrantes</h2> <h4>Estos son los increíbles miembros del LabCi Bolivia.</h4> </div> </div> {% include speakers.html %} </section> <!--==========--> <!--===============================--> <!--== Blog =======================--> <!--===============================--> <section id="blog" class="row"> <div class="col-md-12 col-sm-12"> <div class="section-header text-center"> <h2>Blog</h2> <h4>Lo que esta pasando</h4> </div> {% include blog.html %} </div> </section> <div id="gotop" class="gotop fa fa-arrow-up"></div> </div> </div> <footer id="footer"> <div id="map_canvas"></div> <div class="footer"> <div class="container box"> <section id="info" class="row"> <div class="col-sm-8"> <!--== Social Icons ==--> <ul class="social-icons"> <li><a href="#" class="fa fa-facebook"></a></li> <li><a href="#" class="fa fa-twitter"></a></li> <li><a href="#" class="fa fa-google-plus"></a></li> <li><a href="#" class="fa fa-youtube"></a></li> <li><a href="#" class="fa fa-instagram"></a></li> <li><a href="#" class="fa fa-pinterest"></a></li> <li><a href="#" class="fa fa-linkedin"></a></li> </ul> </div> <div class="col-sm-4 text-right"> <div class="copyrights"> All Rights Reserved. © 2014 </div> </div> </section> </div> </div> </footer> <!--== Javascript Files ==--> <script src="js/bootstrap.min.js"></script> <script src="js/jquery.scrollTo.js"></script> <script src="js/jquery.nav.js"></script> <script src="js/owl.carousel.min.js"></script> <script src="js/jquery.flexslider.js"></script> <script src="js/jquery.accordion.js"></script> <script src="js/jquery.placeholder.js"></script> <script src="js/jquery.fitvids.js"></script> <script src="js/gmap3.js"></script> <script src="js/fancySelect.js"></script> <script src="js/main.js"></script>
include/language/fr_FR.notify_template.html
harish-patel/ecrm
<!-- /********************************************************************************* * The contents of this file are subject to the SugarCRM Master Subscription * Agreement ("License") which can be viewed at * http://www.sugarcrm.com/crm/en/msa/master_subscription_agreement_11_April_2011.pdf * By installing or using this file, You have unconditionally agreed to the * terms and conditions of the License, and You may not use this file except in * compliance with the License. Under the terms of the license, You shall not, * among other things: 1) sublicense, resell, rent, lease, redistribute, assign * or otherwise transfer Your rights to the Software, and 2) use the Software * for timesharing or service bureau purposes such as hosting the Software for * commercial gain and/or for the benefit of a third party. Use of the Software * may be subject to applicable fees and any use of the Software without first * paying applicable fees is strictly prohibited. You do not have the right to * remove SugarCRM copyrights from the source code or user interface. * * All copies of the Covered Code must include on each user interface screen: * (i) the "Powered by SugarCRM" logo and * (ii) the SugarCRM copyright notice * in the same form as they appear in the distribution. See full license for * requirements. * * Your Warranty, Limitations of liability and Indemnity are expressly stated * in the License. Please refer to the License for the specific language * governing these rights and limitations under the License. Portions created * by SugarCRM are Copyright (C) 2004-2011 SugarCRM, Inc.; All Rights Reserved. ********************************************************************************/ /********************************************************************************* ********************************************************************************/ --> <!-- BEGIN: Quote_Subject --> SugarCRM Devis - {QUOTE_SUBJECT} <!-- END: Quote_Subject --> <!-- BEGIN: Quote --> {ASSIGNER} a assigné un Devis à {ASSIGNED_USER}. Sujet: {QUOTE_SUBJECT} Statut: {QUOTE_STATUS} Date de clôture attendue: {QUOTE_CLOSEDATE} Description: {QUOTE_DESCRIPTION} Vous pouvez consulter ce Devis ici: <{URL}> <!-- END: Quote --> <!-- BEGIN: Account_Subject --> SugarCRM Compte - {ACCOUNT_NAME} <!-- END: Account_Subject --> <!-- BEGIN: Account --> {ASSIGNER} a assigné un Compte à {ASSIGNED_USER}. Nom: {ACCOUNT_NAME} Type: {ACCOUNT_TYPE} Description: {ACCOUNT_DESCRIPTION} Vous pouvez consulter ce Compte ici: <{URL}> <!-- END: Account --> <!-- BEGIN: Case_Subject --> SugarCRM Ticket - {CASE_SUBJECT} <!-- END: Case_Subject --> <!-- BEGIN: Case --> {ASSIGNER} a assigné un Ticket à {ASSIGNED_USER}. Sujet: {CASE_SUBJECT} Priorité: {CASE_PRIORITY} Statut: {CASE_STATUS} Description: {CASE_DESCRIPTION} Vous pouvez consulter ce Ticket ici: <{URL}> <!-- END: Case --> <!-- BEGIN: Task_Subject --> SugarCRM Tâche - {TASK_SUBJECT} <!-- END: Task_Subject --> <!-- BEGIN: Task --> {ASSIGNER} a assigné une Tâche à {ASSIGNED_USER}. Sujet: {TASK_SUBJECT} Priorité: {TASK_PRIORITY} Echéance: {TASK_DUEDATE} Statut: {TASK_STATUS} Description: {TASK_DESCRIPTION} Vous pouvez consulter cette Tâche ici: <{URL}> <!-- END: Task --> <!-- BEGIN: Meeting_Subject --> SugarCRM Réunions - {MEETING_SUBJECT} <!-- END: Meeting_Subject --> <!-- BEGIN: Meeting --> {MEETING_TO}, {ASSIGNER} vous a convié à une Réunion. Sujet: {MEETING_SUBJECT} Statut: {MEETING_STATUS} Date de début: {MEETING_STARTDATE} Durée: {MEETING_HOURS}h, {MEETING_MINUTES}m <!-- BEGIN: Meeting_External_API --> URL de la Réunion : {MEETING_URL} <!-- END: Meeting_External_API --> Description: {MEETING_DESCRIPTION} Vous acceptez de participer: <{ACCEPT_URL}&amp;accept_status=accept> Vous tenterez de vous libérer pour y participer: <{ACCEPT_URL}&amp;accept_status=tentative> Vous déclinez cette invitation: <{ACCEPT_URL}&amp;accept_status=decline> <!-- END: Meeting --> <!-- BEGIN: MeetingSpecial_Subject --> SugarCRM Réunion - {MEETING_SUBJECT} <!-- END: MeetingSpecial_Subject --> <!-- BEGIN: MeetingSpecial --> {ASSIGNER} à assigné une Réunion à {ASSIGNED_USER}. Sujet: {MEETING_SUBJECT} Statut: {MEETING_STATUS} Date de début: {MEETING_STARTDATE} Durée: {MEETING_HOURS}h, {MEETING_MINUTES}m Description: {MEETING_DESCRIPTION} Vous pouvez consulter cette Réunion ici: <{URL}> <!-- END: MeetingSpecial --> <!-- BEGIN: Email_Subject --> SugarCRM Email - {EMAIL_SUBJECT} <!-- END: Email_Subject --> <!-- BEGIN: Email --> {ASSIGNER} a assigné un Email à {ASSIGNED_USER}. Sujet: {EMAIL_SUBJECT} Date d'envoi: {EMAIL_DATESENT} Vous pouvez consulter cet Email ici: <{URL}> <!-- END: Email --> <!-- BEGIN: Contact_Subject --> SugarCRM Contact - {CONTACT_NAME} <!-- END: Contact_Subject --> <!-- BEGIN: Contact --> {ASSIGNER} a assigné un Contact à {ASSIGNED_USER}. Nom: {CONTACT_NAME} Description: {CONTACT_DESCRIPTION} Vous pouvez consulter ce Contact ici: <{URL}> <!-- END: Contact --> <!-- BEGIN: Lead_Subject --> SugarCRM Lead - {LEAD_NAME} <!-- END: Lead_Subject --> <!-- BEGIN: Lead --> {ASSIGNER} a assigné un Lead à {ASSIGNED_USER}. Nom: {LEAD_NAME} Origine principale: {LEAD_SOURCE} Statut: {LEAD_STATUS} Description: {LEAD_DESCRIPTION} Vous pouvez consulter ce Lead ici: <{URL}> <!-- END: Lead --> <!-- BEGIN: Opportunity_Subject --> SugarCRM Affaire - {OPPORTUNITY_NAME} <!-- END: Opportunity_Subject --> <!-- BEGIN: Opportunity --> {ASSIGNER} a assigné une Affaire à {ASSIGNED_USER}. Nom: {OPPORTUNITY_NAME} Montant: {OPPORTUNITY_AMOUNT} Date de clôture attendue: {OPPORTUNITY_CLOSEDATE} Phase de vente: {OPPORTUNITY_STAGE} Description: {OPPORTUNITY_DESCRIPTION} Vous pouvez consulter cette Affaire ici: <{URL}> <!-- END: Opportunity --> <!-- BEGIN: Bug_Subject --> SugarCRM Bug - {BUG_SUBJECT} <!-- END: Bug_Subject --> <!-- BEGIN: Bug --> {ASSIGNER} a assigné un Bug à {ASSIGNED_USER}. Numéro de Bug: {BUG_BUG_NUMBER} Sujet: {BUG_SUBJECT} Type: {BUG_TYPE} Priorité: {BUG_PRIORITY} Statut: {BUG_STATUS} Etat: {BUG_RESOLUTION} Release: {BUG_RELEASE} Description: {BUG_DESCRIPTION} Log de travail: {BUG_WORK_LOG} Vous pouvez consulter ce Bug ici: <{URL}> <!-- END: Bug --> <!-- BEGIN: Default_Subject --> SugarCRM - {OBJECT} Assigné <!-- END: Default_Subject --> <!-- BEGIN: Default --> {ASSIGNER} a assigné un(e) {OBJECT} à {ASSIGNED_USER}. Vous pouvez consulter votre {OBJECT} ici: <{URL}> <!-- END: Default --> <!-- BEGIN: Call_Subject --> SugarCRM Appel - {CALL_SUBJECT} <!-- END: Call_Subject --> <!-- BEGIN: Call --> {CALL_TO}, {ASSIGNER} vous a convié à un Rendez-Vous Téléphonique. Sujet: {CALL_SUBJECT} Statut: {CALL_STATUS} Date de début: {CALL_STARTDATE} Durée: {CALL_HOURS}h, {CALL_MINUTES}m Description: {CALL_DESCRIPTION} Vous acceptez de participer: <{ACCEPT_URL}&amp;accept_status=accept> Vous tenterez de vous libérer pour y participer: <{ACCEPT_URL}&amp;accept_status=tentative> Vous déclinez cette invitation: <{ACCEPT_URL}&amp;accept_status=decline> <!-- END: Call --> <!-- BEGIN: CallSpecial_Subject --> SugarCRM Appel - {CALL_SUBJECT} <!-- END: CallSpecial_Subject --> <!-- BEGIN: CallSpecial --> {ASSIGNER} a assigné un Appel à {ASSIGNED_USER}. Sujet: {CALL_SUBJECT} Statut: {CALL_STATUS} Date de début: {CALL_STARTDATE} Durée: {CALL_HOURS}h, {CALL_MINUTES}m Description: {CALL_DESCRIPTION} Vous pouvez visualiser cet Appel ici: <{URL}> <!-- END: CallSpecial --> <!-- BEGIN: Campaign_Subject --> Campagne SugarCRM - {CAMPAIGN_NAME} <!-- END: Campaign_Subject --> <!-- BEGIN: Campaign --> {ASSIGNER} a assigné une campagne à {ASSIGNED_USER}. Sujet: {CAMPAIGN_NAME} Montant: {CAMPAIGN_AMOUNT} Date de clôture: {CAMPAIGN_CLOSEDATE} Statut: {CAMPAIGN_STATUS} Description: {CAMPAIGN_DESCRIPTION} Vous pouvez visualiser cette Campagne ici: <{URL}> <!-- END: Campaign --> <!-- BEGIN: Quota_Subject --> Objectifs SugarCRM - Vos Objectifs pour {QUOTA_TIMEPERIOD} <!-- END: Quota_Subject --> <!-- BEGIN: Quota --> {ASSIGNER} a assigné un Objectif à {ASSIGNED_USER}. Montant: {QUOTA_AMOUNT} Période: {QUOTA_TIMEPERIOD} Vous pouvez visualiser cet Objectif ici: <{QUOTA_URL}> <!-- END: Quota --> <!-- BEGIN: KBDocument_Subject --> SugarCRM Document - {KBDOCUMENT_NAME} <!-- END: KBDocument_Subject --> <!-- BEGIN: KBDocument --> {NOTIFICATION_MESSAGE} Nom: {KBDOCUMENT_NAME} Date de Création: {KBDOCUMENT_DATE_CREATED} Créé par: {KBDOCUMENT_CREATED_BY} Statut: {KBDOCUMENT_STATUS} Description: {KBDOCUMENT_DESCRIPTION} Vous pouvez visualiser ce Document ici: <{URL}> <!-- END: KBDocument --> <!-- BEGIN: Contract_Subject --> SugarCRM Contrat - {CONTRACT_NAME} <!-- END: Contract_Subject --> <!-- BEGIN: Contract--> {ASSIGNER} a assigné un Contrat à {ASSIGNED_USER}. Vous pouvez visualiser ce Contrat ici: <{URL}> <!-- END:Contract--> <!-- BEGIN: ContractSpecial_Subject --> SugarCRM Contrat - {CONTRACT_NAME} <!-- END: ContractSpecial_Subject --> <!-- BEGIN: ContractSpecial --> Votre Contrat: {CONTRACT_NAME} va expirer le {CONTRACT_END_DATE}. Vous pouvez visualiser ce Contrat ici: <{URL}> <!-- END:ContractSpecial-->
crislib/libscapi/lib/boost_1_64_0/doc/html/boost_asio/reference/basic_socket/get_implementation.html
cris-iisc/mpc-primitives
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_socket::get_implementation</title> <link rel="stylesheet" href="../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.79.1"> <link rel="home" href="../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../basic_socket.html" title="basic_socket"> <link rel="prev" href="endpoint_type.html" title="basic_socket::endpoint_type"> <link rel="next" href="get_implementation/overload1.html" title="basic_socket::get_implementation (1 of 2 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td> <td align="center"><a href="../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="endpoint_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket.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="get_implementation/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h4 class="title"> <a name="boost_asio.reference.basic_socket.get_implementation"></a><a class="link" href="get_implementation.html" title="basic_socket::get_implementation">basic_socket::get_implementation</a> </h4></div></div></div> <p> <a class="indexterm" name="idp114147776"></a> Get the underlying implementation of the I/O object. </p> <pre class="programlisting"><span class="identifier">implementation_type</span> <span class="special">&amp;</span> <a class="link" href="get_implementation/overload1.html" title="basic_socket::get_implementation (1 of 2 overloads)">get_implementation</a><span class="special">();</span> <span class="emphasis"><em>&#187; <a class="link" href="get_implementation/overload1.html" title="basic_socket::get_implementation (1 of 2 overloads)">more...</a></em></span> <span class="keyword">const</span> <span class="identifier">implementation_type</span> <span class="special">&amp;</span> <a class="link" href="get_implementation/overload2.html" title="basic_socket::get_implementation (2 of 2 overloads)">get_implementation</a><span class="special">()</span> <span class="keyword">const</span><span class="special">;</span> <span class="emphasis"><em>&#187; <a class="link" href="get_implementation/overload2.html" title="basic_socket::get_implementation (2 of 2 overloads)">more...</a></em></span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2017 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="endpoint_type.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../basic_socket.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="get_implementation/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
doc/html/qml-gradient-members.html
kobolabs/qt-everywhere-4.8.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- qdeclarativerectangle.cpp --> <title>Qt 4.8: List of All Members for Gradient</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> <li><a href="qdeclarativeelements.html">QML Elements</a></li> <li>List of All Members for Gradient</li> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">List of All Members for Gradient</h1> <p>This is the complete list of members for <a href="qml-gradient.html">QML Gradient Element</a>, including inherited members.</p> <ul> <li class="fn"><span class="name"><b><a href="qml-gradient.html#stops-prop">stops</a></b></span></li> </ul> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
Public/home/css/reset.css
songanqi/caigen
/* CSS RESET ===================================================================*/ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, /*p,*/ blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, /*ol, ul, li,*/ fieldset, form, label, legend, /*table,*/ caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; outline: 0; /*font-size: 100%;*/ /*vertical-align: baseline;*/ /*background: transparent;*/ } /*body { line-height: 1; }*/ /*ol, ul { list-style: none; }*/ /*blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; }*/ /* remember to define focus styles! */ :focus { outline: 0; } /* tables still need 'cellspacing="0"' in the markup */ /*table { border-collapse: collapse; border-spacing: 0; }*/ /* HTML5 display-role reset for older browsers */ article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } body { line-height: 1; background: none repeat scroll 0 0 transparent; border: 0 none; font-size: 100%; margin: 0; outline: 0 none; padding: 0; vertical-align: baseline; } /*ol, ul { list-style: none; }*/ /*blockquote, q { quotes: none; } blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }*/ table { border-collapse: collapse; border-spacing: 0; } ol, ul { list-style: none outside none; /*margin:0; padding:0;*/ } /*body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,td { margin:0; padding:0; }*/ html,body{ margin:0; padding:0; } table { border-collapse:collapse; border-spacing:0; } fieldset,img { border:0; } input{ border:1px solid #b0b0b0; padding:3px 5px 4px; color:#979797; /*width:190px;*/ } address,caption,cite,code,dfn,th,var { font-style:normal; font-weight:normal; } ol,ul { list-style:none; } caption,th { text-align:left; } h1,h2,h3,h4,h5,h6 { font-size:100%; font-weight:normal; } q:before,q:after { content:''; } abbr,acronym { border:0; }
cd-priorizacao-portlet/src/main/java/br/gov/camara/edemocracia/portlets/priorizacao/ui/pages/HomePage.html
camaradosdeputadosoficial/edemocracia
<?xml version="1.0" encoding="UTF-8"?> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:wicket="http://wicket.apache.org/dtds.data/wicket-xhtml1.4-strict.dtd"> <head> <title>Priorização</title> </head> <body> <script> function toggle(obj) { var secao = $(obj).parent().next(".eixo"); secao.slideToggle("fast"); $(obj).toggleClass('menuAberto'); // Altera ícone (+ / -) if ($(obj).hasClass('menuAberto')) { $(obj).html("<img src='" + themeDisplay.getPathThemeImages() + "/custom/iconeRecolher.gif' />"); } else { $(obj).html("<img src='" + themeDisplay.getPathThemeImages() + "/custom/iconeExpandir.gif' />"); } } </script> <wicket:container wicket:id="menu"></wicket:container> <div class="separator article-separator"></div> <div class="caixa-seus-pontos" wicket:id="votos"> <div class="check-icon"><img src="html/imagens/ico_checktitle.png"/></div> <div class="titulo-seus-pontos">Seus Pontos</div> <div class="texto-pontos" align="right"> <ul class="lista-pontos"> <li wicket:id="votosDisponiveis">x ponto(s) disponível(is)</li> <li wicket:id="totalVotos">x ponto(s) usado(s)</li> </ul> </div> <div class="div-ajuda-pontos"> <a href="#" class="link-ajuda-pontos" wicket:id="link"><wicket:container wicket:id="mensagem">O que é isso?</wicket:container></a> </div> </div> <wicket:container wicket:id="eixos"> <wicket:enclosure child="propostas"> <h3 style="clear: both;"> <a href="#" onclick="toggle(this); return false;"><img src="#" wicket:id="abrir" /></a> <wicket:container wicket:id="titulo">Nome do eixo</wicket:container> </h3> <div class="eixo" style="display: none;"> <p wicket:id="sumario">Descrição do eixo</p> <wicket:container wicket:id="propostas"> Propostas </wicket:container> </div> </wicket:enclosure> </wicket:container> </body> </html>
doc/html/declarative-text-fonts-banner-qml-banner-fonts-qml.html
kobolabs/qt-everywhere-4.8.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Qt 4.8: fonts.qml Example File (declarative/text/fonts/banner/qml/banner/fonts.qml)</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">fonts.qml Example File</h1> <span class="small-subtitle">declarative/text/fonts/banner/qml/banner/fonts.qml</span> <!-- $$$declarative/text/fonts/banner/qml/banner/fonts.qml-description --> <div class="descr"> <a name="details"></a> <pre class="qml"> <span class="comment">/**************************************************************************** ** ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** &quot;Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor ** the names of its contributors may be used to endorse or promote ** products derived from this software without specific prior written ** permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot; ** $QT_END_LICENSE$ ** ****************************************************************************/</span> import QtQuick 1.0 <span class="type"><a href="qml-rectangle.html">Rectangle</a></span> { property <span class="type">string</span> <span class="name">myText</span>: <span class="string">&quot;The quick brown fox jumps over the lazy dog.&quot;</span> <span class="name">width</span>: <span class="number">800</span>; <span class="name">height</span>: <span class="number">480</span> <span class="name">color</span>: <span class="string">&quot;steelblue&quot;</span> <span class="type"><a href="qml-fontloader.html">FontLoader</a></span> { <span class="name">id</span>: <span class="name">fixedFont</span>; <span class="name">name</span>: <span class="string">&quot;Courier&quot;</span> } <span class="type"><a href="qml-fontloader.html">FontLoader</a></span> { <span class="name">id</span>: <span class="name">localFont</span>; <span class="name">source</span>: <span class="string">&quot;fonts/tarzeau_ocr_a.ttf&quot;</span> } <span class="type"><a href="qml-fontloader.html">FontLoader</a></span> { <span class="name">id</span>: <span class="name">webFont</span>; <span class="name">source</span>: <span class="string">&quot;http://www.princexml.com/fonts/steffmann/Starburst.ttf&quot;</span> } <span class="type"><a href="qml-column.html">Column</a></span> { <span class="type">anchors</span> { <span class="name">fill</span>: <span class="name">parent</span>; <span class="name">leftMargin</span>: <span class="number">10</span>; <span class="name">rightMargin</span>: <span class="number">10</span> } <span class="name">spacing</span>: <span class="number">15</span> <span class="type"><a href="qml-text.html">Text</a></span> { <span class="name">text</span>: <span class="name">myText</span> <span class="name">color</span>: <span class="string">&quot;lightsteelblue&quot;</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="name">elide</span>: <span class="name">Text</span>.<span class="name">ElideRight</span> <span class="name">font</span>.family: <span class="string">&quot;Times&quot;</span>; <span class="name">font</span>.pointSize: <span class="number">42</span> } <span class="type"><a href="qml-text.html">Text</a></span> { <span class="name">text</span>: <span class="name">myText</span> <span class="name">color</span>: <span class="string">&quot;lightsteelblue&quot;</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="name">elide</span>: <span class="name">Text</span>.<span class="name">ElideLeft</span> <span class="type">font</span> { <span class="name">family</span>: <span class="string">&quot;Times&quot;</span>; <span class="name">pointSize</span>: <span class="number">42</span>; <span class="name">capitalization</span>: <span class="name">Font</span>.<span class="name">AllUppercase</span> } } <span class="type"><a href="qml-text.html">Text</a></span> { <span class="name">text</span>: <span class="name">myText</span> <span class="name">color</span>: <span class="string">&quot;lightsteelblue&quot;</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="name">elide</span>: <span class="name">Text</span>.<span class="name">ElideMiddle</span> <span class="type">font</span> { <span class="name">family</span>: <span class="name">fixedFont</span>.<span class="name">name</span>; <span class="name">pointSize</span>: <span class="number">42</span>; <span class="name">weight</span>: <span class="name">Font</span>.<span class="name">Bold</span>; <span class="name">capitalization</span>: <span class="name">Font</span>.<span class="name">AllLowercase</span> } } <span class="type"><a href="qml-text.html">Text</a></span> { <span class="name">text</span>: <span class="name">myText</span> <span class="name">color</span>: <span class="string">&quot;lightsteelblue&quot;</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="name">elide</span>: <span class="name">Text</span>.<span class="name">ElideRight</span> <span class="type">font</span> { <span class="name">family</span>: <span class="name">fixedFont</span>.<span class="name">name</span>; <span class="name">pointSize</span>: <span class="number">42</span>; <span class="name">italic</span>: <span class="number">true</span>; <span class="name">capitalization</span>: <span class="name">Font</span>.<span class="name">SmallCaps</span> } } <span class="type"><a href="qml-text.html">Text</a></span> { <span class="name">text</span>: <span class="name">myText</span> <span class="name">color</span>: <span class="string">&quot;lightsteelblue&quot;</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="name">elide</span>: <span class="name">Text</span>.<span class="name">ElideLeft</span> <span class="type">font</span> { <span class="name">family</span>: <span class="name">localFont</span>.<span class="name">name</span>; <span class="name">pointSize</span>: <span class="number">42</span>; <span class="name">capitalization</span>: <span class="name">Font</span>.<span class="name">Capitalize</span> } } <span class="type"><a href="qml-text.html">Text</a></span> { <span class="name">text</span>: { <span class="keyword">if</span> (<span class="name">webFont</span>.<span class="name">status</span> <span class="operator">==</span> <span class="name">FontLoader</span>.<span class="name">Ready</span>) <span class="name">myText</span> else <span class="keyword">if</span> (<span class="name">webFont</span>.<span class="name">status</span> <span class="operator">==</span> <span class="name">FontLoader</span>.<span class="name">Loading</span>) <span class="string">&quot;Loading...&quot;</span> else <span class="keyword">if</span> (<span class="name">webFont</span>.<span class="name">status</span> <span class="operator">==</span> <span class="name">FontLoader</span>.<span class="name">Error</span>) <span class="string">&quot;Error loading font&quot;</span> } <span class="name">color</span>: <span class="string">&quot;lightsteelblue&quot;</span> <span class="name">width</span>: <span class="name">parent</span>.<span class="name">width</span> <span class="name">elide</span>: <span class="name">Text</span>.<span class="name">ElideMiddle</span> <span class="name">font</span>.family: <span class="name">webFont</span>.<span class="name">name</span>; <span class="name">font</span>.pointSize: <span class="number">42</span> } } }</pre> </div> <!-- @@@declarative/text/fonts/banner/qml/banner/fonts.qml --> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
docs/simpletest.org/api/SimpleTest/UnitTester/DefaultReporter.html
GerHobbelt/simpletest
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <!-- template designed by Marco Von Ballmoos --> <title>Docs For Class DefaultReporter</title> <link rel="stylesheet" href="../../media/stylesheet.css" /> <script src="../../media/lib/classTree.js"></script> <script language="javascript" type="text/javascript"> var imgPlus = new Image(); var imgMinus = new Image(); imgPlus.src = "../../media/images/plus.png"; imgMinus.src = "../../media/images/minus.png"; function showNode(Node){ switch(navigator.family){ case 'nn4': // Nav 4.x code fork... var oTable = document.layers["span" + Node]; var oImg = document.layers["img" + Node]; break; case 'ie4': // IE 4/5 code fork... var oTable = document.all["span" + Node]; var oImg = document.all["img" + Node]; break; case 'gecko': // Standards Compliant code fork... var oTable = document.getElementById("span" + Node); var oImg = document.getElementById("img" + Node); break; } oImg.src = imgMinus.src; oTable.style.display = "block"; } function hideNode(Node){ switch(navigator.family){ case 'nn4': // Nav 4.x code fork... var oTable = document.layers["span" + Node]; var oImg = document.layers["img" + Node]; break; case 'ie4': // IE 4/5 code fork... var oTable = document.all["span" + Node]; var oImg = document.all["img" + Node]; break; case 'gecko': // Standards Compliant code fork... var oTable = document.getElementById("span" + Node); var oImg = document.getElementById("img" + Node); break; } oImg.src = imgPlus.src; oTable.style.display = "none"; } function nodeIsVisible(Node){ switch(navigator.family){ case 'nn4': // Nav 4.x code fork... var oTable = document.layers["span" + Node]; break; case 'ie4': // IE 4/5 code fork... var oTable = document.all["span" + Node]; break; case 'gecko': // Standards Compliant code fork... var oTable = document.getElementById("span" + Node); break; } return (oTable && oTable.style.display == "block"); } function toggleNodeVisibility(Node){ if (nodeIsVisible(Node)){ hideNode(Node); }else{ showNode(Node); } } </script> </head> <body> <div class="page-body"> <h2 class="class-name">Class DefaultReporter</h2> <a name="sec-description"></a> <div class="info-box"> <div class="info-box-title">Description</div> <div class="nav-bar"> <span class="disabled">Description</span> | <a href="#sec-vars">Vars</a> | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">The default reporter used by SimpleTest's autorun feature. The actual reporters used are dependency injected and can be overridden.</p> <p class="notes"> Located in <a class="field" href="_default_reporter.php.html">/default_reporter.php</a> (line <span class="field">393</span>) </p> <pre><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html">SimpleReporterDecorator</a> | --DefaultReporter</pre> </div> </div> <a name="sec-method-summary"></a> <div class="info-box"> <div class="info-box-title">Method Summary</span></div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-vars">Vars</a> | <span class="disabled">Methods</span> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <div class="method-summary"> <div class="method-definition"> <span class="method-result">DefaultReporter</span> <a href="#__construct" title="details" class="method-name">__construct</a> () </div> </div> </div> </div> <a name="sec-vars"></a> <div class="info-box"> <div class="info-box-title">Variables</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-var-summary">Vars</a> (<span class="disabled">details</span>) | <a href="#sec-method-summary">Methods</a> (<a href="#sec-methods">details</a>) </div> <div class="info-box-body"> <h4>Inherited Variables</h4> <A NAME='inherited_vars'><!-- --></A> <p>Inherited from <span class="classname"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html">SimpleReporterDecorator</a></span></p> <blockquote> <span class="var-title"> <span class="var-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#var$reporter">SimpleReporterDecorator::$reporter</a></span><br> </span> </blockquote> </div> </div> <a name="sec-methods"></a> <div class="info-box"> <div class="info-box-title">Methods</div> <div class="nav-bar"> <a href="#sec-description">Description</a> | <a href="#sec-vars">Vars</a> <a href="#sec-method-summary">Methods</a> (<span class="disabled">details</span>) </div> <div class="info-box-body"> <A NAME='method_detail'></A> <a name="method__construct" id="__construct"><!-- --></a> <div class="oddrow"> <div class="method-header"> <span class="method-title">Constructor __construct</span> (line <span class="line-number">398</span>) </div> <!-- ========== Info from phpDoc block ========= --> <p class="short-description">Assembles the appropriate reporter for the environment.</p> <div class="method-signature"> <span class="method-result">DefaultReporter</span> <span class="method-name"> __construct </span> () </div> <hr class="separator" /> <div class="notes">Redefinition of:</div> <dl> <dt><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#method__construct">SimpleReporterDecorator::__construct()</a></dt> <dd>Mediates between the reporter and the test case.</dd> </dl> </div> <h4>Inherited Methods</h4> <a name='inherited_methods'><!-- --></a> <!-- =========== Summary =========== --> <p>Inherited From <span class="classname"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html">SimpleReporterDecorator</a></span></p> <blockquote> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#method__construct">SimpleReporterDecorator::__construct()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodcreateInvoker">SimpleReporterDecorator::createInvoker()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodgetDumper">SimpleReporterDecorator::getDumper()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodgetStatus">SimpleReporterDecorator::getStatus()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodgetTestCaseCount">SimpleReporterDecorator::getTestCaseCount()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodgetTestCaseProgress">SimpleReporterDecorator::getTestCaseProgress()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodgetTestList">SimpleReporterDecorator::getTestList()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodincludeBreadCrumb">SimpleReporterDecorator::includeBreadCrumb()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodincludeStackTrace">SimpleReporterDecorator::includeStackTrace()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodincrementErrorCount">SimpleReporterDecorator::incrementErrorCount()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodincrementExceptionCount">SimpleReporterDecorator::incrementExceptionCount()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodincrementFailCount">SimpleReporterDecorator::incrementFailCount()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodincrementPassCount">SimpleReporterDecorator::incrementPassCount()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodmakeDry">SimpleReporterDecorator::makeDry()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodmakeList">SimpleReporterDecorator::makeList()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintCaseEnd">SimpleReporterDecorator::paintCaseEnd()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintCaseStart">SimpleReporterDecorator::paintCaseStart()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintError">SimpleReporterDecorator::paintError()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintException">SimpleReporterDecorator::paintException()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintFail">SimpleReporterDecorator::paintFail()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintFormattedMessage">SimpleReporterDecorator::paintFormattedMessage()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintGroupEnd">SimpleReporterDecorator::paintGroupEnd()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintGroupStart">SimpleReporterDecorator::paintGroupStart()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintMessage">SimpleReporterDecorator::paintMessage()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintMethodEnd">SimpleReporterDecorator::paintMethodEnd()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintMethodStart">SimpleReporterDecorator::paintMethodStart()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintPass">SimpleReporterDecorator::paintPass()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintSignal">SimpleReporterDecorator::paintSignal()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodpaintSkip">SimpleReporterDecorator::paintSkip()</a></span><br> <span class="method-name"><a href="../../SimpleTest/UnitTester/SimpleReporterDecorator.html#methodshouldInvoke">SimpleReporterDecorator::shouldInvoke()</a></span><br> </blockquote> </div> </div> <p class="notes" id="credit"> Documentation generated on Fri, 20 Jan 2012 01:58:49 +0100 by <a href="http://www.phpdoc.org" target="_blank">phpDocumentor 1.4.3</a> </p> </div></body> </html>
doc/html/opengl-pbuffers-glwidget-cpp.html
kobolabs/qt-everywhere-4.8.0
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Qt 4.8: glwidget.cpp Example File (opengl/pbuffers/glwidget.cpp)</title> <link rel="stylesheet" type="text/css" href="style/offline.css" /> </head> <body> <div class="header" id="qtdocheader"> <div class="content"> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> </div> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Breadcrumbs go here --> </ul> </div> </div> <div class="content mainContent"> <h1 class="title">glwidget.cpp Example File</h1> <span class="small-subtitle">opengl/pbuffers/glwidget.cpp</span> <!-- $$$opengl/pbuffers/glwidget.cpp-description --> <div class="descr"> <a name="details"></a> <pre class="cpp"> <span class="comment">/**************************************************************************** ** ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** ** This file is part of the examples of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:BSD$ ** You may use this file under the terms of the BSD license as follows: ** ** &quot;Redistribution and use in source and binary forms, with or without ** modification, are permitted provided that the following conditions are ** met: ** * Redistributions of source code must retain the above copyright ** notice, this list of conditions and the following disclaimer. ** * Redistributions in binary form must reproduce the above copyright ** notice, this list of conditions and the following disclaimer in ** the documentation and/or other materials provided with the ** distribution. ** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor ** the names of its contributors may be used to endorse or promote ** products derived from this software without specific prior written ** permission. ** ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ** &quot;AS IS&quot; AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&quot; ** $QT_END_LICENSE$ ** ****************************************************************************/</span> <span class="preprocessor">#include &quot;glwidget.h&quot;</span> <span class="preprocessor">#include &lt;math.h&gt;</span> <span class="preprocessor">#include &quot;cube.h&quot;</span> <span class="preprocessor">#include &lt;QGLPixelBuffer&gt;</span> <span class="preprocessor">#ifndef GL_MULTISAMPLE</span> <span class="preprocessor">#define GL_MULTISAMPLE 0x809D</span> <span class="preprocessor">#endif</span> <span class="keyword">static</span> GLfloat colorArray<span class="operator">[</span><span class="operator">]</span><span class="operator">[</span><span class="number">4</span><span class="operator">]</span> <span class="operator">=</span> { {<span class="number">0.243f</span><span class="operator">,</span> <span class="number">0.423f</span><span class="operator">,</span> <span class="number">0.125f</span><span class="operator">,</span> <span class="number">1.0f</span>}<span class="operator">,</span> {<span class="number">0.176f</span><span class="operator">,</span> <span class="number">0.31f</span><span class="operator">,</span> <span class="number">0.09f</span><span class="operator">,</span> <span class="number">1.0f</span>}<span class="operator">,</span> {<span class="number">0.4f</span><span class="operator">,</span> <span class="number">0.69f</span><span class="operator">,</span> <span class="number">0.212f</span><span class="operator">,</span> <span class="number">1.0f</span>}<span class="operator">,</span> {<span class="number">0.317f</span><span class="operator">,</span> <span class="number">0.553f</span><span class="operator">,</span> <span class="number">0.161f</span><span class="operator">,</span> <span class="number">1.0f</span>} }; GLWidget<span class="operator">::</span>GLWidget(<span class="type"><a href="qwidget.html">QWidget</a></span> <span class="operator">*</span>parent) : <span class="type"><a href="qglwidget.html">QGLWidget</a></span>(<span class="type"><a href="qglformat.html">QGLFormat</a></span>(QGL<span class="operator">::</span>SampleBuffers)<span class="operator">,</span> parent) <span class="operator">,</span> geom(<span class="number">0</span>) <span class="operator">,</span> cube(<span class="number">0</span>) { <span class="comment">// create the pbuffer</span> <span class="type"><a href="qglformat.html">QGLFormat</a></span> pbufferFormat <span class="operator">=</span> format(); pbufferFormat<span class="operator">.</span>setSampleBuffers(<span class="keyword">false</span>); pbuffer <span class="operator">=</span> <span class="keyword">new</span> <span class="type"><a href="qglpixelbuffer.html">QGLPixelBuffer</a></span>(<span class="type"><a href="qsize.html">QSize</a></span>(<span class="number">512</span><span class="operator">,</span> <span class="number">512</span>)<span class="operator">,</span> pbufferFormat<span class="operator">,</span> <span class="keyword">this</span>); setWindowTitle(tr(<span class="string">&quot;OpenGL pbuffers&quot;</span>)); initializeGeometry(); } GLWidget<span class="operator">::</span><span class="operator">~</span>GLWidget() { pbuffer<span class="operator">-</span><span class="operator">&gt;</span>releaseFromDynamicTexture(); glDeleteTextures(<span class="number">1</span><span class="operator">,</span> <span class="operator">&amp;</span>dynamicTexture); <span class="keyword">delete</span> pbuffer; <a href="qtalgorithms.html#qDeleteAll">qDeleteAll</a>(cubes); <a href="qtalgorithms.html#qDeleteAll">qDeleteAll</a>(tiles); <span class="keyword">delete</span> cube; } <span class="type">void</span> GLWidget<span class="operator">::</span>initializeGL() { initCommon(); glShadeModel(GL_SMOOTH); glEnable(GL_LIGHTING); glEnable(GL_LIGHT0); <span class="keyword">static</span> GLfloat lightPosition<span class="operator">[</span><span class="number">4</span><span class="operator">]</span> <span class="operator">=</span> { <span class="number">0.5</span><span class="operator">,</span> <span class="number">5.0</span><span class="operator">,</span> <span class="number">7.0</span><span class="operator">,</span> <span class="number">1.0</span> }; glLightfv(GL_LIGHT0<span class="operator">,</span> GL_POSITION<span class="operator">,</span> lightPosition); initPbuffer(); cube<span class="operator">-</span><span class="operator">&gt;</span>startAnimation(); connect(cube<span class="operator">,</span> SIGNAL(changed())<span class="operator">,</span> <span class="keyword">this</span><span class="operator">,</span> SLOT(update())); <span class="keyword">for</span> (<span class="type">int</span> i <span class="operator">=</span> <span class="number">0</span>; i <span class="operator">&lt;</span> <span class="number">3</span>; <span class="operator">+</span><span class="operator">+</span>i) { cubes<span class="operator">[</span>i<span class="operator">]</span><span class="operator">-</span><span class="operator">&gt;</span>startAnimation(); connect(cubes<span class="operator">[</span>i<span class="operator">]</span><span class="operator">,</span> SIGNAL(changed())<span class="operator">,</span> <span class="keyword">this</span><span class="operator">,</span> SLOT(update())); } } <span class="type">void</span> GLWidget<span class="operator">::</span>paintGL() { pbuffer<span class="operator">-</span><span class="operator">&gt;</span>makeCurrent(); drawPbuffer(); <span class="comment">// On direct render platforms, drawing onto the pbuffer context above</span> <span class="comment">// automatically updates the dynamic texture. For cases where rendering</span> <span class="comment">// directly to a texture is not supported, explicitly copy.</span> <span class="keyword">if</span> (<span class="operator">!</span>hasDynamicTextureUpdate) pbuffer<span class="operator">-</span><span class="operator">&gt;</span>updateDynamicTexture(dynamicTexture); makeCurrent(); <span class="comment">// Use the pbuffer as a texture to render the scene</span> glBindTexture(GL_TEXTURE_2D<span class="operator">,</span> dynamicTexture); <span class="comment">// set up to render the scene</span> glClear(GL_COLOR_BUFFER_BIT <span class="operator">|</span> GL_DEPTH_BUFFER_BIT); glLoadIdentity(); glTranslatef(<span class="number">0.0f</span><span class="operator">,</span> <span class="number">0.0f</span><span class="operator">,</span> <span class="operator">-</span><span class="number">10.0f</span>); <span class="comment">// draw the background</span> glPushMatrix(); glScalef(aspect<span class="operator">,</span> <span class="number">1.0f</span><span class="operator">,</span> <span class="number">1.0f</span>); <span class="keyword">for</span> (<span class="type">int</span> i <span class="operator">=</span> <span class="number">0</span>; i <span class="operator">&lt;</span> tiles<span class="operator">.</span>count(); <span class="operator">+</span><span class="operator">+</span>i) tiles<span class="operator">[</span>i<span class="operator">]</span><span class="operator">-</span><span class="operator">&gt;</span>draw(); glPopMatrix(); <span class="comment">// draw the bouncing cubes</span> <span class="keyword">for</span> (<span class="type">int</span> i <span class="operator">=</span> <span class="number">0</span>; i <span class="operator">&lt;</span> cubes<span class="operator">.</span>count(); <span class="operator">+</span><span class="operator">+</span>i) cubes<span class="operator">[</span>i<span class="operator">]</span><span class="operator">-</span><span class="operator">&gt;</span>draw(); } <span class="type">void</span> GLWidget<span class="operator">::</span>initializeGeometry() { geom <span class="operator">=</span> <span class="keyword">new</span> Geometry(); CubeBuilder cBuilder(geom<span class="operator">,</span> <span class="number">0.5</span>); cBuilder<span class="operator">.</span>setColor(<span class="type"><a href="qcolor.html">QColor</a></span>(<span class="number">255</span><span class="operator">,</span> <span class="number">255</span><span class="operator">,</span> <span class="number">255</span><span class="operator">,</span> <span class="number">212</span>)); <span class="comment">// build the 3 bouncing, spinning cubes</span> <span class="keyword">for</span> (<span class="type">int</span> i <span class="operator">=</span> <span class="number">3</span>; i <span class="operator">&gt;</span> <span class="number">0</span>; <span class="operator">-</span><span class="operator">-</span>i) cubes<span class="operator">.</span>append(cBuilder<span class="operator">.</span>newCube(QVector3D((<span class="type">float</span>)(i<span class="operator">-</span><span class="number">1</span>)<span class="operator">,</span> <span class="operator">-</span><span class="number">1.5f</span><span class="operator">,</span> <span class="number">5</span> <span class="operator">-</span> i))); <span class="comment">// build the spinning cube which goes in the dynamic texture</span> cube <span class="operator">=</span> cBuilder<span class="operator">.</span>newCube(); cube<span class="operator">-</span><span class="operator">&gt;</span>removeBounce(); <span class="comment">// build the background tiles</span> TileBuilder tBuilder(geom); tBuilder<span class="operator">.</span>setColor(<span class="type"><a href="qcolor.html">QColor</a></span>(<span class="type"><a href="qt.html">Qt</a></span><span class="operator">::</span>white)); <span class="keyword">for</span> (<span class="type">int</span> c <span class="operator">=</span> <span class="operator">-</span><span class="number">2</span>; c <span class="operator">&lt;</span><span class="operator">=</span> <span class="operator">+</span><span class="number">2</span>; <span class="operator">+</span><span class="operator">+</span>c) <span class="keyword">for</span> (<span class="type">int</span> r <span class="operator">=</span> <span class="operator">-</span><span class="number">2</span>; r <span class="operator">&lt;</span><span class="operator">=</span> <span class="operator">+</span><span class="number">2</span>; <span class="operator">+</span><span class="operator">+</span>r) tiles<span class="operator">.</span>append(tBuilder<span class="operator">.</span>newTile(QVector3D(c<span class="operator">,</span> r<span class="operator">,</span> <span class="number">0</span>))); <span class="comment">// graded backdrop for the pbuffer scene</span> TileBuilder bBuilder(geom<span class="operator">,</span> <span class="number">0.0f</span><span class="operator">,</span> <span class="number">2.0f</span>); bBuilder<span class="operator">.</span>setColor(<span class="type"><a href="qcolor.html">QColor</a></span>(<span class="number">102</span><span class="operator">,</span> <span class="number">176</span><span class="operator">,</span> <span class="number">54</span><span class="operator">,</span> <span class="number">210</span>)); backdrop <span class="operator">=</span> bBuilder<span class="operator">.</span>newTile(QVector3D(<span class="number">0.0f</span><span class="operator">,</span> <span class="number">0.0f</span><span class="operator">,</span> <span class="operator">-</span><span class="number">1.5f</span>)); backdrop<span class="operator">-</span><span class="operator">&gt;</span>setColors(colorArray); } <span class="type">void</span> GLWidget<span class="operator">::</span>initCommon() { qglClearColor(<span class="type"><a href="qcolor.html">QColor</a></span>(<span class="type"><a href="qt.html">Qt</a></span><span class="operator">::</span>darkGray)); glEnable(GL_DEPTH_TEST); glEnable(GL_CULL_FACE); glEnable(GL_MULTISAMPLE); glBlendFunc(GL_SRC_ALPHA<span class="operator">,</span> GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); glEnable(GL_TEXTURE_2D); geom<span class="operator">-</span><span class="operator">&gt;</span>loadArrays(); } <span class="type">void</span> GLWidget<span class="operator">::</span>perspectiveProjection() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); <span class="preprocessor">#ifdef QT_OPENGL_ES</span> glFrustumf(<span class="operator">-</span>aspect<span class="operator">,</span> <span class="operator">+</span>aspect<span class="operator">,</span> <span class="operator">-</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">1.0</span><span class="operator">,</span> <span class="number">4.0</span><span class="operator">,</span> <span class="number">15.0</span>); <span class="preprocessor">#else</span> glFrustum(<span class="operator">-</span>aspect<span class="operator">,</span> <span class="operator">+</span>aspect<span class="operator">,</span> <span class="operator">-</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">1.0</span><span class="operator">,</span> <span class="number">4.0</span><span class="operator">,</span> <span class="number">15.0</span>); <span class="preprocessor">#endif</span> glMatrixMode(GL_MODELVIEW); } <span class="type">void</span> GLWidget<span class="operator">::</span>orthographicProjection() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); <span class="preprocessor">#ifdef QT_OPENGL_ES</span> glOrthof(<span class="operator">-</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">-</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">-</span><span class="number">90.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">90.0</span>); <span class="preprocessor">#else</span> glOrtho(<span class="operator">-</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">-</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">1.0</span><span class="operator">,</span> <span class="operator">-</span><span class="number">90.0</span><span class="operator">,</span> <span class="operator">+</span><span class="number">90.0</span>); <span class="preprocessor">#endif</span> glMatrixMode(GL_MODELVIEW); } <span class="type">void</span> GLWidget<span class="operator">::</span>resizeGL(<span class="type">int</span> width<span class="operator">,</span> <span class="type">int</span> height) { glViewport(<span class="number">0</span><span class="operator">,</span> <span class="number">0</span><span class="operator">,</span> width<span class="operator">,</span> height); aspect <span class="operator">=</span> (<span class="type"><a href="qtglobal.html#qreal-typedef">qreal</a></span>)width <span class="operator">/</span> (<span class="type"><a href="qtglobal.html#qreal-typedef">qreal</a></span>)(height <span class="operator">?</span> height : <span class="number">1</span>); perspectiveProjection(); } <span class="type">void</span> GLWidget<span class="operator">::</span>drawPbuffer() { orthographicProjection(); glClearColor(<span class="number">0.0f</span><span class="operator">,</span> <span class="number">0.0f</span><span class="operator">,</span> <span class="number">0.0f</span><span class="operator">,</span> <span class="number">1.0f</span>); glClear(GL_COLOR_BUFFER_BIT <span class="operator">|</span> GL_DEPTH_BUFFER_BIT); glDisable(GL_TEXTURE_2D); backdrop<span class="operator">-</span><span class="operator">&gt;</span>draw(); glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D<span class="operator">,</span> cubeTexture); glDisable(GL_CULL_FACE); cube<span class="operator">-</span><span class="operator">&gt;</span>draw(); glEnable(GL_CULL_FACE); glFlush(); } <span class="type">void</span> GLWidget<span class="operator">::</span>initPbuffer() { pbuffer<span class="operator">-</span><span class="operator">&gt;</span>makeCurrent(); cubeTexture <span class="operator">=</span> bindTexture(<span class="type"><a href="qimage.html">QImage</a></span>(<span class="string">&quot;:res/cubelogo.png&quot;</span>)); initCommon(); <span class="comment">// generate a texture that has the same size/format as the pbuffer</span> dynamicTexture <span class="operator">=</span> pbuffer<span class="operator">-</span><span class="operator">&gt;</span>generateDynamicTexture(); <span class="comment">// bind the dynamic texture to the pbuffer - this is a no-op under X11</span> hasDynamicTextureUpdate <span class="operator">=</span> pbuffer<span class="operator">-</span><span class="operator">&gt;</span>bindToDynamicTexture(dynamicTexture); makeCurrent(); } <span class="type">void</span> GLWidget<span class="operator">::</span>setAnimationPaused(<span class="type">bool</span> enable) { cube<span class="operator">-</span><span class="operator">&gt;</span>setAnimationPaused(enable); <span class="keyword">for</span> (<span class="type">int</span> i <span class="operator">=</span> <span class="number">0</span>; i <span class="operator">&lt;</span> <span class="number">3</span>; <span class="operator">+</span><span class="operator">+</span>i) cubes<span class="operator">[</span>i<span class="operator">]</span><span class="operator">-</span><span class="operator">&gt;</span>setAnimationPaused(enable); }</pre> </div> <!-- @@@opengl/pbuffers/glwidget.cpp --> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2011 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> </body> </html>
doc/html/statemachine-trafficlight.html
sunblithe/qt-everywhere-opensource-src-4.7.1
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en_US" lang="en_US"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- trafficlight.qdoc --> <title>Qt 4.7: Traffic Light Example</title> <link rel="stylesheet" type="text/css" href="style/style.css" /> <script src="scripts/jquery.js" type="text/javascript"></script> <script src="scripts/functions.js" type="text/javascript"></script> </head> <body class="offline narrow creator"> <div class="header" id="qtdocheader"> <div class="content"> <div id="nav-logo"> <a href="index.html">Home</a></div> <a href="index.html" class="qtref"><span>Qt Reference Documentation</span></a> <div id="nav-topright"> <ul> <li class="nav-topright-home"><a href="http://qt.nokia.com/">Qt HOME</a></li> <li class="nav-topright-dev"><a href="http://developer.qt.nokia.com/">DEV</a></li> <li class="nav-topright-labs"><a href="http://labs.qt.nokia.com/blogs/">LABS</a></li> <li class="nav-topright-doc nav-topright-doc-active"><a href="http://doc.qt.nokia.com/"> DOC</a></li> <li class="nav-topright-blog"><a href="http://blog.qt.nokia.com/">BLOG</a></li> </ul> </div> <div id="shortCut"> <ul> <li class="shortCut-topleft-inactive"><span><a href="index.html">Qt 4.7</a></span></li> <li class="shortCut-topleft-active"><a href="http://doc.qt.nokia.com">ALL VERSIONS </a></li> </ul> </div> <ul class="sf-menu sf-js-enabled sf-shadow" id="narrowmenu"> <li><a href="#">API Lookup</a> <ul id="topmenuLook"> <li><a href="classes.html">Class index</a></li> <li><a href="functions.html">Function index</a></li> <li><a href="modules.html">Modules</a></li> <li><a href="namespaces.html">Namespaces</a></li> <li><a href="qtglobal.html">Global Declarations</a></li> <li><a href="licensing.html">Licenses and Credits</a></li> </ul> </li> <li><a href="#">Qt Topics</a> <ul id="topmenuTopic"> <li><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li><a href="qtquick.html">Device UI's &amp; Qt Quick</a></li> <li><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li> <li><a href="platform-specific.html">Platform-specific info</a></li> <li><a href="technology-apis.html">Qt and Key Technologies</a></li> <li><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </li> <li><a href="#">Examples</a> <ul id="topmenuexample"> <li><a href="all-examples.html">Examples</a></li> <li><a href="tutorials.html">Tutorials</a></li> <li><a href="demos.html">Demos</a></li> <li><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </li> </ul> </div> </div> <div class="wrapper"> <div class="hd"> <span></span> </div> <div class="bd group"> <div class="sidebar"> <div class="searchlabel"> Search index:</div> <div class="search"> <form id="qtdocsearch" action="" onsubmit="return false;"> <fieldset> <input type="text" name="searchstring" id="pageType" value="" /> </fieldset> </form> </div> <div class="box first bottombar" id="lookup"> <h2 title="API Lookup"><span></span> API Lookup</h2> <div id="list001" class="list"> <ul id="ul001" > <li class="defaultLink"><a href="classes.html">Class index</a></li> <li class="defaultLink"><a href="functions.html">Function index</a></li> <li class="defaultLink"><a href="modules.html">Modules</a></li> <li class="defaultLink"><a href="namespaces.html">Namespaces</a></li> <li class="defaultLink"><a href="qtglobal.html">Global Declarations</a></li> <li class="defaultLink"><a href="qdeclarativeelements.html">QML elements</a></li> </ul> </div> </div> <div class="box bottombar" id="topics"> <h2 title="Qt Topics"><span></span> Qt Topics</h2> <div id="list002" class="list"> <ul id="ul002" > <li class="defaultLink"><a href="qt-basic-concepts.html">Programming with Qt</a></li> <li class="defaultLink"><a href="qtquick.html">Device UI's &amp; Qt Quick</a></li> <li class="defaultLink"><a href="qt-gui-concepts.html">UI Design with Qt</a></li> <li class="defaultLink"><a href="developing-with-qt.html">Cross-platform and Platform-specific</a></li> <li class="defaultLink"><a href="platform-specific.html">Platform-specific info</a></li> <li class="defaultLink"><a href="technology-apis.html">Qt and Key Technologies</a></li> <li class="defaultLink"><a href="best-practices.html">How-To's and Best Practices</a></li> </ul> </div> </div> <div class="box" id="examples"> <h2 title="Examples"><span></span> Examples</h2> <div id="list003" class="list"> <ul id="ul003"> <li class="defaultLink"><a href="all-examples.html">Examples</a></li> <li class="defaultLink"><a href="tutorials.html">Tutorials</a></li> <li class="defaultLink"><a href="demos.html">Demos</a></li> <li class="defaultLink"><a href="qdeclarativeexamples.html">QML Examples</a></li> </ul> </div> </div> </div> <div class="wrap"> <div class="toolbar"> <div class="breadcrumb toolblock"> <ul> <li class="first"><a href="index.html">Home</a></li> <!-- Bread crumbs goes here --> <li><a href="all-examples.html">Examples</a></li> <li>Traffic Light Example</li> </ul> </div> <div class="toolbuttons toolblock"> <ul> <li id="smallA" class="t_button">A</li> <li id="medA" class="t_button active">A</li> <li id="bigA" class="t_button">A</li> <li id="print" class="t_button"><a href="javascript:this.print();"> <span>Print</span></a></li> </ul> </div> </div> <div class="content"> <h1 class="title">Traffic Light Example</h1> <span class="subtitle"></span> <!-- $$$statemachine/trafficlight-description --> <div class="descr"> <a name="details"></a> <p>Files:</p> <ul> <li><a href="statemachine-trafficlight-main-cpp.html">statemachine/trafficlight/main.cpp</a></li> <li><a href="statemachine-trafficlight-trafficlight-pro.html">statemachine/trafficlight/trafficlight.pro</a></li> </ul> <p>The Traffic Light example shows how to use <a href="statemachine-api.html">The State Machine Framework</a> to implement the control flow of a traffic light.</p> <p class="centerAlign"><img src="images/trafficlight-example.png" /></p><p>In this example we write a TrafficLightWidget class. The traffic light has three lights: Red, yellow and green. The traffic light transitions from one light to another (red to yellow to green to yellow to red again) at certain intervals.</p> <pre class="highlightedCode brush: cpp"> class LightWidget : public QWidget { Q_OBJECT Q_PROPERTY(bool on READ isOn WRITE setOn) public: LightWidget(const QColor &amp;color, QWidget *parent = 0) : QWidget(parent), m_color(color), m_on(false) {} bool isOn() const { return m_on; } void setOn(bool on) { if (on == m_on) return; m_on = on; update(); } public slots: void turnOff() { setOn(false); } void turnOn() { setOn(true); } protected: virtual void paintEvent(QPaintEvent *) { if (!m_on) return; QPainter painter(this); painter.setRenderHint(QPainter::Antialiasing); painter.setBrush(m_color); painter.drawEllipse(0, 0, width(), height()); } private: QColor m_color; bool m_on; };</pre> <p>The LightWidget class represents a single light of the traffic light. It provides an <tt>on</tt> property and two slots, turnOn() and turnOff(), to turn the light on and off, respectively. The widget paints itself in the color that's passed to the constructor.</p> <pre class="highlightedCode brush: cpp"> class TrafficLightWidget : public QWidget { public: TrafficLightWidget(QWidget *parent = 0) : QWidget(parent) { QVBoxLayout *vbox = new QVBoxLayout(this); m_red = new LightWidget(Qt::red); vbox-&gt;addWidget(m_red); m_yellow = new LightWidget(Qt::yellow); vbox-&gt;addWidget(m_yellow); m_green = new LightWidget(Qt::green); vbox-&gt;addWidget(m_green); QPalette pal = palette(); pal.setColor(QPalette::Background, Qt::black); setPalette(pal); setAutoFillBackground(true); } LightWidget *redLight() const { return m_red; } LightWidget *yellowLight() const { return m_yellow; } LightWidget *greenLight() const { return m_green; } private: LightWidget *m_red; LightWidget *m_yellow; LightWidget *m_green; };</pre> <p>The TrafficLightWidget class represents the visual part of the traffic light; it's a widget that contains three lights arranged vertically, and provides accessor functions for these.</p> <pre class="highlightedCode brush: cpp"> QState *createLightState(LightWidget *light, int duration, QState *parent = 0) { QState *lightState = new QState(parent); QTimer *timer = new QTimer(lightState); timer-&gt;setInterval(duration); timer-&gt;setSingleShot(true); QState *timing = new QState(lightState); QObject::connect(timing, SIGNAL(entered()), light, SLOT(turnOn())); QObject::connect(timing, SIGNAL(entered()), timer, SLOT(start())); QObject::connect(timing, SIGNAL(exited()), light, SLOT(turnOff())); QFinalState *done = new QFinalState(lightState); timing-&gt;addTransition(timer, SIGNAL(timeout()), done); lightState-&gt;setInitialState(timing); return lightState; }</pre> <p>The createLightState() function creates a state that turns a light on when the state is entered, and off when the state is exited. The state uses a timer, and as we shall see the timeout is used to transition from one LightState to another. Here is the statechart for the light state:</p> <p class="centerAlign"><img src="images/trafficlight-example1.png" /></p><pre class="highlightedCode brush: cpp"> class TrafficLight : public QWidget { public: TrafficLight(QWidget *parent = 0) : QWidget(parent) { QVBoxLayout *vbox = new QVBoxLayout(this); TrafficLightWidget *widget = new TrafficLightWidget(); vbox-&gt;addWidget(widget); vbox-&gt;setMargin(0); QStateMachine *machine = new QStateMachine(this); QState *redGoingYellow = createLightState(widget-&gt;redLight(), 3000); redGoingYellow-&gt;setObjectName(&quot;redGoingYellow&quot;); QState *yellowGoingGreen = createLightState(widget-&gt;yellowLight(), 1000); yellowGoingGreen-&gt;setObjectName(&quot;yellowGoingGreen&quot;); redGoingYellow-&gt;addTransition(redGoingYellow, SIGNAL(finished()), yellowGoingGreen); QState *greenGoingYellow = createLightState(widget-&gt;greenLight(), 3000); greenGoingYellow-&gt;setObjectName(&quot;greenGoingYellow&quot;); yellowGoingGreen-&gt;addTransition(yellowGoingGreen, SIGNAL(finished()), greenGoingYellow); QState *yellowGoingRed = createLightState(widget-&gt;yellowLight(), 1000); yellowGoingRed-&gt;setObjectName(&quot;yellowGoingRed&quot;); greenGoingYellow-&gt;addTransition(greenGoingYellow, SIGNAL(finished()), yellowGoingRed); yellowGoingRed-&gt;addTransition(yellowGoingRed, SIGNAL(finished()), redGoingYellow); machine-&gt;addState(redGoingYellow); machine-&gt;addState(yellowGoingGreen); machine-&gt;addState(greenGoingYellow); machine-&gt;addState(yellowGoingRed); machine-&gt;setInitialState(redGoingYellow); machine-&gt;start(); } };</pre> <p>The TrafficLight class combines the TrafficLightWidget with a state machine. The state graph has four states: red-to-yellow, yellow-to-green, green-to-yellow and yellow-to-red. The initial state is red-to-yellow; when the state's timer times out, the state machine transitions to yellow-to-green. The same process repeats through the other states. This is what the statechart looks like:</p> <p class="centerAlign"><img src="images/trafficlight-example2.png" /></p><pre class="highlightedCode brush: cpp"> int main(int argc, char **argv) { QApplication app(argc, argv); TrafficLight widget; widget.resize(110, 300); widget.show(); return app.exec(); }</pre> <p>The main() function constructs a TrafficLight and shows it.</p> </div> <!-- @@@statemachine/trafficlight --> <div class="feedback t_button"> [+] Documentation Feedback</div> </div> </div> </div> <div class="ft"> <span></span> </div> </div> <div class="footer"> <p> <acronym title="Copyright">&copy;</acronym> 2008-2010 Nokia Corporation and/or its subsidiaries. Nokia, Qt and their respective logos are trademarks of Nokia Corporation in Finland and/or other countries worldwide.</p> <p> All other trademarks are property of their respective owners. <a title="Privacy Policy" href="http://qt.nokia.com/about/privacy-policy">Privacy Policy</a></p> <br /> <p> Licensees holding valid Qt Commercial licenses may use this document in accordance with the Qt Commercial License Agreement provided with the Software or, alternatively, in accordance with the terms contained in a written agreement between you and Nokia.</p> <p> Alternatively, this document may be used under the terms of the <a href="http://www.gnu.org/licenses/fdl.html">GNU Free Documentation License version 1.3</a> as published by the Free Software Foundation.</p> </div> <div id="feedbackBox"> <div id="feedcloseX" class="feedclose t_button">X</div> <form id="feedform" action="http://doc.qt.nokia.com/docFeedbck/feedback.php" method="get"> <p id="noteHead">Thank you for giving your feedback.</p> <p class="note">Make sure it is related to this specific page. For more general bugs and requests, please use the <a href="http://bugreports.qt.nokia.com/secure/Dashboard.jspa">Qt Bug Tracker</a>.</p> <p><textarea id="feedbox" name="feedText" rows="5" cols="40"></textarea></p> <p><input id="feedsubmit" class="feedclose" type="submit" name="feedback" /></p> </form> </div> <div id="blurpage"> </div> </body> </html>
doc/javacode/html/classorg_1_1ccnx_1_1ccn_1_1test_1_1io_1_1content_1_1_c_c_n_serializable_string_object.html
yyhpys/ccnx-trace-interest
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>Content-Centric Networking in Java: org.ccnx.ccn.test.io.content.CCNSerializableStringObject Class Reference</title> <link href="doxygen.css" rel="stylesheet" type="text/css"> <link href="tabs.css" rel="stylesheet" type="text/css"> </head><body> <!-- Generated by Doxygen 1.5.6 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="main.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>Packages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> <div class="navpath"><b>org</b>.<b>ccnx</b>.<b>ccn</b>.<a class="el" href="namespaceorg_1_1ccnx_1_1ccn_1_1test.html">test</a>.<b>io</b>.<b>content</b>.<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1test_1_1io_1_1content_1_1_c_c_n_serializable_string_object.html">CCNSerializableStringObject</a> </div> </div> <div class="contents"> <h1>org.ccnx.ccn.test.io.content.CCNSerializableStringObject Class Reference</h1><!-- doxytag: class="org::ccnx::ccn::test::io::content::CCNSerializableStringObject" --><!-- doxytag: inherits="org::ccnx::ccn::io::content::CCNSerializableObject" -->A CCNNetworkObject wrapper around Java Strings, which uses Java serialization to write those strings. <a href="#_details">More...</a> <p> Inherits org::ccnx::ccn::io::content::CCNSerializableObject&lt; String &gt;. <p> <p> <a href="classorg_1_1ccnx_1_1ccn_1_1test_1_1io_1_1content_1_1_c_c_n_serializable_string_object-members.html">List of all members.</a><table border="0" cellpadding="0" cellspacing="0"> <tr><td></td></tr> <tr><td colspan="2"><br><h2>Public Member Functions</h2></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="200262b4296655d9355b7221ba8e7bbe"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="200262b4296655d9355b7221ba8e7bbe" args="(ContentName name, String data, SaveType saveType, CCNHandle handle)" --> &nbsp;</td><td class="memItemRight" valign="bottom"><b>CCNSerializableStringObject</b> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a> name, String data, SaveType saveType, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1_c_c_n_handle.html">CCNHandle</a> handle) throws IOException </td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="3a47c8affef430830cd5f89fd9d2a652"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="3a47c8affef430830cd5f89fd9d2a652" args="(ContentName name, String data, SaveType saveType, PublisherPublicKeyDigest publisher, KeyLocator locator, CCNHandle handle)" --> &nbsp;</td><td class="memItemRight" valign="bottom"><b>CCNSerializableStringObject</b> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a> name, String data, SaveType saveType, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_publisher_public_key_digest.html">PublisherPublicKeyDigest</a> publisher, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_key_locator.html">KeyLocator</a> locator, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1_c_c_n_handle.html">CCNHandle</a> handle) throws IOException </td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="929d8c9317d7c17a35bb77e308b9c6a6"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="929d8c9317d7c17a35bb77e308b9c6a6" args="(ContentName name, CCNHandle handle)" --> &nbsp;</td><td class="memItemRight" valign="bottom"><b>CCNSerializableStringObject</b> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a> name, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1_c_c_n_handle.html">CCNHandle</a> handle) throws ContentDecodingException, IOException </td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="ad9f7876c579a12b01b742e6c79b5065"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="ad9f7876c579a12b01b742e6c79b5065" args="(ContentName name, PublisherPublicKeyDigest publisher, CCNHandle handle)" --> &nbsp;</td><td class="memItemRight" valign="bottom"><b>CCNSerializableStringObject</b> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a> name, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_publisher_public_key_digest.html">PublisherPublicKeyDigest</a> publisher, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1_c_c_n_handle.html">CCNHandle</a> handle) throws ContentDecodingException, IOException </td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="08b4995d4dadcd47968e16ccc94e471d"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="08b4995d4dadcd47968e16ccc94e471d" args="(ContentObject firstBlock, CCNHandle handle)" --> &nbsp;</td><td class="memItemRight" valign="bottom"><b>CCNSerializableStringObject</b> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_object.html">ContentObject</a> firstBlock, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1_c_c_n_handle.html">CCNHandle</a> handle) throws ContentDecodingException, IOException </td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1test_1_1io_1_1content_1_1_c_c_n_serializable_string_object.html#628982ec1570978aa72bb364ff192728">CCNSerializableStringObject</a> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a> name, String data, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_publisher_public_key_digest.html">PublisherPublicKeyDigest</a> publisher, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_key_locator.html">KeyLocator</a> locator, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1impl_1_1_c_c_n_flow_control.html">CCNFlowControl</a> flowControl) throws IOException </td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Internal constructor used by low-level network operations. <a href="#628982ec1570978aa72bb364ff192728"></a><br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1test_1_1io_1_1content_1_1_c_c_n_serializable_string_object.html#6e9a8f54fe76ff46b788949888e08e0b">CCNSerializableStringObject</a> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a> name, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_publisher_public_key_digest.html">PublisherPublicKeyDigest</a> publisher, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1impl_1_1_c_c_n_flow_control.html">CCNFlowControl</a> flowControl) throws ContentDecodingException, IOException </td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Internal constructor used by low-level network operations. <a href="#6e9a8f54fe76ff46b788949888e08e0b"></a><br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top">&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1test_1_1io_1_1content_1_1_c_c_n_serializable_string_object.html#f925e5f1b76b3af1eb0cbd28578bce87">CCNSerializableStringObject</a> (<a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_object.html">ContentObject</a> firstSegment, <a class="el" href="classorg_1_1ccnx_1_1ccn_1_1impl_1_1_c_c_n_flow_control.html">CCNFlowControl</a> flowControl) throws ContentDecodingException, IOException </td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Internal constructor used by low-level network operations. <a href="#f925e5f1b76b3af1eb0cbd28578bce87"></a><br></td></tr> <tr><td class="memItemLeft" nowrap align="right" valign="top"><a class="anchor" name="86dfffa77b63b1b6e42818543229159c"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::string" ref="86dfffa77b63b1b6e42818543229159c" args="()" --> String&nbsp;</td><td class="memItemRight" valign="bottom"><b>string</b> () throws ContentNotReadyException, ContentGoneException, ErrorStateException </td></tr> </table> <hr><a name="_details"></a><h2>Detailed Description</h2> A CCNNetworkObject wrapper around Java Strings, which uses Java serialization to write those strings. <p> Allows reading and writing of versioned strings to CCN, and background updating of same. Very useful class for writing simple tests and applications, but requires both communicating partners to speak Java Serialization. See CCNStringObject for a more generally useful string object that serializes the string in pure UTF-8, making something that can be more easily read from other languages. <hr><h2>Constructor &amp; Destructor Documentation</h2> <a class="anchor" name="628982ec1570978aa72bb364ff192728"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="628982ec1570978aa72bb364ff192728" args="(ContentName name, String data, PublisherPublicKeyDigest publisher, KeyLocator locator, CCNFlowControl flowControl)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">org.ccnx.ccn.test.io.content.CCNSerializableStringObject.CCNSerializableStringObject </td> <td>(</td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a>&nbsp;</td> <td class="paramname"> <em>name</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">String&nbsp;</td> <td class="paramname"> <em>data</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_publisher_public_key_digest.html">PublisherPublicKeyDigest</a>&nbsp;</td> <td class="paramname"> <em>publisher</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_key_locator.html">KeyLocator</a>&nbsp;</td> <td class="paramname"> <em>locator</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1impl_1_1_c_c_n_flow_control.html">CCNFlowControl</a>&nbsp;</td> <td class="paramname"> <em>flowControl</em></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td> throws IOException </td> </tr> </table> </div> <div class="memdoc"> <p> Internal constructor used by low-level network operations. <p> Don't use unless you know what you are doing. <dl compact><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>name</em>&nbsp;</td><td>name under which to save data </td></tr> <tr><td valign="top"></td><td valign="top"><em>data</em>&nbsp;</td><td>data to save when save() is called; or null if the next call will be updateInBackground() </td></tr> <tr><td valign="top"></td><td valign="top"><em>publisher</em>&nbsp;</td><td>key (identity) to use to sign the content (null for default) </td></tr> <tr><td valign="top"></td><td valign="top"><em>locator</em>&nbsp;</td><td>key locator to use to tell people where to find our key, should match publisher, (null for default for key) </td></tr> <tr><td valign="top"></td><td valign="top"><em>flowControl</em>&nbsp;</td><td>flow controller to use for network output </td></tr> </table> </dl> <dl compact><dt><b>Exceptions:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>IOException</em>&nbsp;</td><td></td></tr> </table> </dl> </div> </div><p> <a class="anchor" name="6e9a8f54fe76ff46b788949888e08e0b"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="6e9a8f54fe76ff46b788949888e08e0b" args="(ContentName name, PublisherPublicKeyDigest publisher, CCNFlowControl flowControl)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">org.ccnx.ccn.test.io.content.CCNSerializableStringObject.CCNSerializableStringObject </td> <td>(</td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_name.html">ContentName</a>&nbsp;</td> <td class="paramname"> <em>name</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_publisher_public_key_digest.html">PublisherPublicKeyDigest</a>&nbsp;</td> <td class="paramname"> <em>publisher</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1impl_1_1_c_c_n_flow_control.html">CCNFlowControl</a>&nbsp;</td> <td class="paramname"> <em>flowControl</em></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td> throws ContentDecodingException, IOException </td> </tr> </table> </div> <div class="memdoc"> <p> Internal constructor used by low-level network operations. <p> Don't use unless you know what you are doing. <dl compact><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>name</em>&nbsp;</td><td>name under which to save data </td></tr> <tr><td valign="top"></td><td valign="top"><em>data</em>&nbsp;</td><td>data to save when save() is called; or null if the next call will be updateInBackground() </td></tr> <tr><td valign="top"></td><td valign="top"><em>publisher</em>&nbsp;</td><td>key (identity) to use to sign the content (null for default) </td></tr> <tr><td valign="top"></td><td valign="top"><em>locator</em>&nbsp;</td><td>key locator to use to tell people where to find our key, should match publisher, (null for default for key) </td></tr> <tr><td valign="top"></td><td valign="top"><em>flowControl</em>&nbsp;</td><td>flow controller to use for network output </td></tr> </table> </dl> <dl compact><dt><b>Exceptions:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>IOException</em>&nbsp;</td><td></td></tr> </table> </dl> </div> </div><p> <a class="anchor" name="f925e5f1b76b3af1eb0cbd28578bce87"></a><!-- doxytag: member="org::ccnx::ccn::test::io::content::CCNSerializableStringObject::CCNSerializableStringObject" ref="f925e5f1b76b3af1eb0cbd28578bce87" args="(ContentObject firstSegment, CCNFlowControl flowControl)" --> <div class="memitem"> <div class="memproto"> <table class="memname"> <tr> <td class="memname">org.ccnx.ccn.test.io.content.CCNSerializableStringObject.CCNSerializableStringObject </td> <td>(</td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1protocol_1_1_content_object.html">ContentObject</a>&nbsp;</td> <td class="paramname"> <em>firstSegment</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classorg_1_1ccnx_1_1ccn_1_1impl_1_1_c_c_n_flow_control.html">CCNFlowControl</a>&nbsp;</td> <td class="paramname"> <em>flowControl</em></td><td>&nbsp;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td><td> throws ContentDecodingException, IOException </td> </tr> </table> </div> <div class="memdoc"> <p> Internal constructor used by low-level network operations. <p> Don't use unless you know what you are doing. <dl compact><dt><b>Parameters:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>name</em>&nbsp;</td><td>name under which to save data </td></tr> <tr><td valign="top"></td><td valign="top"><em>data</em>&nbsp;</td><td>data to save when save() is called; or null if the next call will be updateInBackground() </td></tr> <tr><td valign="top"></td><td valign="top"><em>publisher</em>&nbsp;</td><td>key (identity) to use to sign the content (null for default) </td></tr> <tr><td valign="top"></td><td valign="top"><em>locator</em>&nbsp;</td><td>key locator to use to tell people where to find our key, should match publisher, (null for default for key) </td></tr> <tr><td valign="top"></td><td valign="top"><em>flowControl</em>&nbsp;</td><td>flow controller to use for network output </td></tr> </table> </dl> <dl compact><dt><b>Exceptions:</b></dt><dd> <table border="0" cellspacing="2" cellpadding="0"> <tr><td valign="top"></td><td valign="top"><em>IOException</em>&nbsp;</td><td></td></tr> </table> </dl> </div> </div><p> <hr>The documentation for this class was generated from the following file:<ul> <li>src/org/ccnx/ccn/test/io/content/CCNSerializableStringObject.java</ul> </div> <hr size="1"><address style="text-align: right;"><small>Generated on Wed Sep 14 12:44:32 2011 for Content-Centric Networking in Java 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>