path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
LayoutTests/fast/canvas/canvas-createImageBitmap-colorClamping-expected.html
modulexcite/blink
<html> <body> <canvas id="c"></canvas> <script> var canvas = document.getElementById("c"); canvas.setAttribute("width", "250"); canvas.setAttribute("height", "200"); var ctx = canvas.getContext("2d"); ctx.fillStyle = 'green'; ctx.fillRect(0, 0, 100, 100); ctx.fillRect(120, 0, 150, 150); </script> <p>Two green squares with no color bleeding should be visible.</p> </body> </html>
third-party/src/boost_1_56_0/libs/type_traits/doc/html/boost_typetraits/reference/is_const.html
rkq/cxxexp
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>is_const</title> <link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css"> <meta name="generator" content="DocBook XSL Stylesheets V1.78.1"> <link rel="home" href="../../index.html" title="Chapter&#160;1.&#160;Boost.TypeTraits"> <link rel="up" href="../reference.html" title="Alphabetical Reference"> <link rel="prev" href="is_compound.html" title="is_compound"> <link rel="next" href="is_convertible.html" title="is_convertible"> </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="is_compound.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="is_convertible.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h3 class="title"> <a name="boost_typetraits.reference.is_const"></a><a class="link" href="is_const.html" title="is_const">is_const</a> </h3></div></div></div> <pre class="programlisting"><span class="keyword">template</span> <span class="special">&lt;</span><span class="keyword">class</span> <span class="identifier">T</span><span class="special">&gt;</span> <span class="keyword">struct</span> <span class="identifier">is_const</span> <span class="special">:</span> <span class="keyword">public</span> <em class="replaceable"><code><a class="link" href="integral_constant.html" title="integral_constant">true_type</a>-or-<a class="link" href="integral_constant.html" title="integral_constant">false_type</a></code></em> <span class="special">{};</span> </pre> <p> <span class="bold"><strong>Inherits:</strong></span> If T is a (top level) const-qualified type then inherits from <a class="link" href="integral_constant.html" title="integral_constant">true_type</a>, otherwise inherits from <a class="link" href="integral_constant.html" title="integral_constant">false_type</a>. </p> <p> <span class="bold"><strong>C++ Standard Reference:</strong></span> 3.9.3. </p> <p> <span class="bold"><strong>Header:</strong></span> <code class="computeroutput"> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">type_traits</span><span class="special">/</span><span class="identifier">is_const</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code> or <code class="computeroutput"> <span class="preprocessor">#include</span> <span class="special">&lt;</span><span class="identifier">boost</span><span class="special">/</span><span class="identifier">type_traits</span><span class="special">.</span><span class="identifier">hpp</span><span class="special">&gt;</span></code> </p> <p> <span class="bold"><strong>Examples:</strong></span> </p> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_const</span><span class="special">&lt;</span><span class="keyword">int</span> <span class="keyword">const</span><span class="special">&gt;</span></code> inherits from <code class="computeroutput"><a class="link" href="integral_constant.html" title="integral_constant">true_type</a></code>. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_const</span><span class="special">&lt;</span><span class="keyword">int</span> <span class="keyword">const</span> <span class="keyword">volatile</span><span class="special">&gt;::</span><span class="identifier">type</span></code> is the type <code class="computeroutput"><a class="link" href="integral_constant.html" title="integral_constant">true_type</a></code>. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_const</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">*</span> <span class="keyword">const</span><span class="special">&gt;::</span><span class="identifier">value</span></code> is an integral constant expression that evaluates to <span class="emphasis"><em>true</em></span>. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_const</span><span class="special">&lt;</span><span class="keyword">int</span> <span class="keyword">const</span><span class="special">*&gt;::</span><span class="identifier">value</span></code> is an integral constant expression that evaluates to <span class="emphasis"><em>false</em></span>: the const-qualifier is not at the top level in this case. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_const</span><span class="special">&lt;</span><span class="keyword">int</span> <span class="keyword">const</span><span class="special">&amp;&gt;::</span><span class="identifier">value</span></code> is an integral constant expression that evaluates to <span class="emphasis"><em>false</em></span>: the const-qualifier is not at the top level in this case. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_const</span><span class="special">&lt;</span><span class="keyword">int</span><span class="special">&gt;::</span><span class="identifier">value</span></code> is an integral constant expression that evaluates to <span class="emphasis"><em>false</em></span>. </p></blockquote></div> <div class="blockquote"><blockquote class="blockquote"><p> <code class="computeroutput"><span class="identifier">is_const</span><span class="special">&lt;</span><span class="identifier">T</span><span class="special">&gt;::</span><span class="identifier">value_type</span></code> is the type <code class="computeroutput"><span class="keyword">bool</span></code>. </p></blockquote></div> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2000, 2011 Adobe Systems Inc, David Abrahams, Frederic Bron, Steve Cleary, Beman Dawes, Aleksey Gurtovoy, Howard Hinnant, Jesse Jones, Mat Marcus, Itay Maman, John Maddock, Alexander Nasonov, Thorsten Ottosen, Roman Perepelitsa, Robert Ramey, Jeremy Siek, Robert Stewart and Steven Watanabe<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="is_compound.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../reference.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="is_convertible.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
src/public/app/locale/nl_NL/template/email/account_new_confirmation.html
chemissi/P2
<!--@subject Account confirmation for {{var customer.name}} @--> <!--@vars {"store url=\"\"":"Store Url", "var logo_url":"Email Logo Image Url", "var logo_alt":"Email Logo Image Alt", "store url=\"customer/account/\"":"Customer Account Url", "htmlescape var=$customer.name":"Customer Name", "var customer.email":"Customer Email", "store url=\"customer/account/confirm/\" _query_id=$customer.id _query_key=$customer.confirmation _query_back_url=$back_url":"Confirmation Url", "htmlescape var=$customer.password":"Customer password"} @--> <!--@styles body,td { color:#2f2f2f; font:11px/1.35em Verdana, Arial, Helvetica, sans-serif; } @--> <body style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;"> <div style="background:#F6F6F6; font-family:Verdana, Arial, Helvetica, sans-serif; font-size:12px; margin:0; padding:0;"> <table cellspacing="0" cellpadding="0" border="0" height="100%" width="100%"> <tr> <td align="center" valign="top" style="padding:20px 0 20px 0"> <!-- [ header starts here] --> <table bgcolor="FFFFFF" cellspacing="0" cellpadding="10" border="0" width="650" style="border:1px solid #E0E0E0;"> <tr> <td valign="top"> <a href="{{store url=""}}"><img src="{{var logo_url}}" alt="{{var logo_alt}}" style="margin-bottom:10px;" border="0"/></a> </td> </tr> <!-- [ middle starts here] --> <tr> <td valign="top"> <h1 style="font-size:22px; font-weight:normal; line-height:22px; margin:0 0 11px 0;">Beste {{htmlescape var=$customer.name}},</h1> <p style="font-size:12px; line-height:16px; margin:0 0 16px 0;">Uw e-mail {{var customer.email}} moet bevestigd worden, voordat u deze kunt gebruiken om in te loggen bij onze winkel.</p> <p style="font-size:12px; line-height:16px; margin:0 0 8px 0;">Gebruik <a href="{{store url="customer/account/confirm/" _query_id=$customer.id _query_key=$customer.confirmation _query_back_url=$back_url}}" style="color:#1E7EC8;">deze bevestigingslink</a>. om de e-mail te bevestigen en gelijk in te loggen. Deze link is maar één keer geldig.</p> <p style="border:1px solid #E0E0E0; font-size:12px; line-height:16px; margin:0 0 16px 0; padding:13px 18px; background:#f9f9f9;"> Gebruik de volgende waarden om in te loggen:<br/> <strong>E-mail:</strong> {{var customer.email}}<br/> <strong>Wachtwoord:</strong> {{htmlescape var=$customer.password}}<p> <p style="font-size:12px; line-height:16px; margin:0;">Als u vragen hebt over uw account of andere zaken, kunt u contact met ons opnemen at <a href="mailto:{{config path='trans_email/ident_support/email'}}" style="color:#1E7EC8;">{{config path='trans_email/ident_support/email'}}</a> of per telefoon op {{config path='general/store_information/phone'}}.</p> </td> </tr> <tr> <td bgcolor="#EAEAEA" align="center" style="background:#EAEAEA; text-align:center;"><center><p style="font-size:12px; margin:0;">Nogmaals bedankt, <strong>{{var store.getFrontendName()}}</strong></p></center></td> </tr> </table> </td> </tr> </table> </div> </body>
src/dt/examples/api/index.html
qwords/qiv
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0"> <link rel="stylesheet" type="text/css" href="../resources/syntax/shCore.css"> <link rel="stylesheet" type="text/css" href="../resources/demo.css"> <script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.12.0.min.js"> </script> <script type="text/javascript" language="javascript" src="../resources/syntax/shCore.js"> </script> <script type="text/javascript" language="javascript" src="../resources/demo.js"> </script> <title>DataTables examples - API</title> </head> <body class="dt-example"> <div class="container"> <section> <h1>DataTables example <span>API</span></h1> <div class="info"> <p>The real power of DataTables can be exploited through the use of the API that it presents. The DataTables API is designed to be simple, consistent and easy to use. The examples in this section show how the API may be used.</p> </div> </section> </div> <section> <div class="footer"> <div class="gradient"></div> <div class="liner"> <div class="toc"> <div class="toc-group"> <h3><a href="./index.html">API</a></h3> <ul class="toc"> <li> <a href="./add_row.html">Add rows</a> </li> <li> <a href="./multi_filter.html">Individual column searching (text inputs)</a> </li> <li> <a href="./multi_filter_select.html">Individual column searching (select inputs)</a> </li> <li> <a href="./highlight.html">Highlighting rows and columns</a> </li> <li> <a href="./row_details.html">Child rows (show extra / detailed information)</a> </li> <li> <a href="./select_row.html">Row selection (multiple rows)</a> </li> <li> <a href="./select_single_row.html">Row selection and deletion (single row)</a> </li> <li> <a href="./form.html">Form inputs</a> </li> <li> <a href="./counter_columns.html">Index column</a> </li> <li> <a href="./show_hide.html">Show / hide columns dynamically</a> </li> <li> <a href="./api_in_init.html">Using API in callbacks</a> </li> <li> <a href="./tabs_and_scrolling.html">Scrolling and Bootstrap tabs</a> </li> <li> <a href="./regex.html">Search API (regular expressions)</a> </li> </ul> </div> </div> <div class="epilogue"> <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br> Additionally, there are a wide range of <a href="http://www.datatables.net/extensions">extensions</a> and <a href= "http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p> <p class="copyright">DataTables designed and created by <a href="http://www.sprymedia.co.uk">SpryMedia Ltd</a> © 2007-2016<br> DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> </div> </div> </div> </section> </body> </html>
hardware/storage/sd_reader/doc/html/sd-reader__config_8h.html
fschaefer/ethersex-avr-net-io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <title>sd-reader: sd-reader_config.h File Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css"/> </head> <body> <!-- Generated by Doxygen 1.7.1 --> <div class="navigation" id="top"> <div class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="annotated.html"><span>Data&nbsp;Structures</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&nbsp;List</span></a></li> <li><a href="globals.html"><span>Globals</span></a></li> </ul> </div> </div> <div class="header"> <div class="summary"> <a href="#define-members">Defines</a> </div> <div class="headertitle"> <h1>sd-reader_config.h File Reference</h1> </div> </div> <div class="contents"> <p>Common sd-reader configuration used by all modules (license: GPLv2 or LGPLv2.1). <a href="#_details">More...</a></p> <table class="memberdecls"> <tr><td colspan="2"><h2><a name="define-members"></a> Defines</h2></td></tr> <tr><td class="memItemLeft" align="right" valign="top">#define&nbsp;</td><td class="memItemRight" valign="bottom"><a class="el" href="group__config.html#ga59a630bfc97e8a00e2ad0a0ad4b2f8a7">USE_DYNAMIC_MEMORY</a></td></tr> <tr><td class="mdescLeft">&nbsp;</td><td class="mdescRight">Controls allocation of memory. <a href="group__config.html#ga59a630bfc97e8a00e2ad0a0ad4b2f8a7"></a><br/></td></tr> </table> <hr/><a name="_details"></a><h2>Detailed Description</h2> <p>Common sd-reader configuration used by all modules (license: GPLv2 or LGPLv2.1). </p> <dl class="note"><dt><b>Note:</b></dt><dd>This file contains only configuration items relevant to all sd-reader implementation files. For module specific configuration options, please see the files <a class="el" href="fat__config_8h.html" title="FAT configuration (license: GPLv2 or LGPLv2.1).">fat_config.h</a>, <a class="el" href="partition__config_8h.html" title="Partition configuration (license: GPLv2 or LGPLv2.1).">partition_config.h</a> and <a class="el" href="sd__raw__config_8h.html" title="MMC/SD support configuration (license: GPLv2 or LGPLv2.1).">sd_raw_config.h</a>. </dd></dl> </div> <hr class="footer"/><address class="footer"><small>Generated on Sat Apr 23 2011 15:30:12 for sd-reader by&nbsp; <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.7.1 </small></address> </body> </html>
wts/tests/webgl/webglrenderingcontext_BLEND_EQUATION_ALPHA_value.html
hgl888/web-testing-service
<!DOCTYPE html> <!-- Copyright (c) 2014 Intel Corporation. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of works must retain the original copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the original copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this work without specific prior written permission. THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: Cao, Jun <junx.cao@intel.com> --> <html> <head> <title>WebGL Test: webglrenderingcontext_BLEND_EQUATION_ALPHA_value</title> <link rel="author" title="Intel" href="http://www.intel.com" /> <link rel="help" href="https://www.khronos.org/registry/webgl/specs/1.0/" /> <meta name="flags" content="" /> <meta name="assert" content="Check if WebGLRenderingContext.BLEND_EQUATION_ALPHA constant value is 0x883D"/> <script src="../resources/testharness.js"></script> <script src="../resources/testharnessreport.js"></script> <script src="support/webgl.js"></script> </head> <body> <div id="log"></div> <canvas id="canvas" width="200" height="100" style="border:1px solid #c3c3c3;"> Your browser does not support the canvas element. </canvas> <script> getwebgl(); webgl_constant_value(webgl, 'BLEND_EQUATION_ALPHA', 0x883D); </script> </body> </html>
src/gui/lib/typopro/TypoPRO-OpenSans/TypoPRO-OpenSans-Regular.css
rse/slideshow-forecast
/* TypoPRO Open Sans */ @font-face { font-family: 'TypoPRO Open Sans'; src: url('TypoPRO-OpenSans-Regular.eot'); src: local('*'), url('TypoPRO-OpenSans-Regular.eot?#iefix') format('embedded-opentype'), url('TypoPRO-OpenSans-Regular.woff') format('woff'), url('TypoPRO-OpenSans-Regular.ttf') format('truetype'); font-style: normal; font-weight: normal; font-stretch: normal; font-variant: normal; }
tpl/desktop/rightbar/ads_lkdesign.html
selboo/v2ex
<div class="box"> <div class="inner" align="center"> <div style="width: 240px; text-align: left" > <span style="font-weight: bold; font-size: 10px; color: #e2e2e2;">Sponsored by</span> <div class="sep10"></div> {% if rnd|divisibleby:3 %} <a href="http://itunes.apple.com/us/app/60-seconds/id349845481?mt=8" target="_blank"><img src="http://web.me.com/luokai/resource/60Seconds_120x90.png" border="0" width="120" height="90" alt="60 Seconds!" /></a> <div class="sep5"></div> <span style="font-size: 11px; color: #666;"> <strong style="color: #000;"><a href="http://itunes.apple.com/us/app/60-seconds/id349845481?mt=8" class="black">60 Seconds!</a></strong><div class="sep3"></div><span style="font-size: 12px;">A game about challenging yourself!</span> </span> {% else %} {% if rnd|divisibleby:2 %} <a href="http://itunes.apple.com/us/app/style-clock/id353431465?mt=8" target="_blank"><img src="http://web.me.com/luokai/resource/StyleClock_animation.gif" border="0" width="120" height="90" alt="Style Clock" /></a> <div class="sep5"></div> <span style="font-size: 11px; color: #666;"> <strong style="color: #000;"><a href="http://itunes.apple.com/us/app/style-clock/id353431465?mt=8" class="black">Style Clock</a></strong><div class="sep3"></div><span style="font-size: 12px;">A stylish table clock on your desktop.</span> </span> {% else %} <a href="http://itunes.apple.com/us/app/chn-laws/id365686640?mt=8" target="_blank"><img src="http://web.me.com/luokai/resource/CHNLaws_120x90.png" border="0" width="120" height="90" alt="CHN Laws 中国常用法律" /></a> <div class="sep5"></div> <span style="font-size: 11px; color: #666;"> <strong style="color: #000;"><a href="http://itunes.apple.com/us/app/chn-laws/id365686640?mt=8" class="black">CHN Laws 中国常用法律</a></strong><div class="sep3"></div><span style="font-size: 12px;">这里收录最常用的中国法律。</span> </span> {% endif %} {% endif %} <div class="sep3"></div> <small class="fade">Promoted by <a href="http://apps.luokai.info/" target="_blank">lK Design</a></small> </div> </div> </div>
[CSS]-01-Basics/CSS-Exams/15-May-13-Exam-2/Task 1_Description/template/index.html
shakuu/Homework
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>CSS Exam - Task 1</title> <link rel="stylesheet" href="main.css"> </head> <body> <div id="root"> <ul class="avengers"> <li> <input type="radio" name="avengers[]" name="" id="avenger-1" checked> <label for="avenger-1">Ironman</label> <div class="preview"> <img src="images/avenger-1.jpg" alt=""> <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Magnam illum dolorum, quisquam at voluptatum reprehenderit minima dolorem culpa corrupti veniam ipsam odit eum asperiores iusto facilis maiores eos, voluptas ducimus porro ipsum sequi eveniet in. Eum reprehenderit saepe aliquam mollitia, corporis delectus, quae ipsa nemo excepturi adipisci laboriosam velit necessitatibus eligendi sint porro. Repudiandae qui aut nostrum voluptatibus, temporibus in rerum natus voluptatum nulla, ad perspiciatis doloribus et itaque autem! Id quis veniam dolore maxime hic modi amet a eum soluta. Nam consequuntur, dolorem atque ullam sed sit. Rerum nesciunt tenetur quasi hic excepturi, cum accusamus! Sint impedit incidunt, quae?</p> </div> </li> <li> <input type="radio" name="avengers[]" name="" id="avenger-2"> <label for="avenger-2">Thor</label> <div class="preview"> <img src="images/avenger-2.jpg" alt=""> <p>Animi illo, ipsum, saepe recusandae quas architecto sunt molestias, atque, temporibus adipisci quia laboriosam beatae quae. Animi illo, ipsam ex ullam suscipit totam, quasi magnam quidem accusantium alias voluptas quod beatae nemo aliquam, explicabo ut facere quam. Aspernatur libero cumque tenetur, nostrum, vel saepe ad illo labore aut necessitatibus accusamus quis harum voluptate sequi magni cupiditate recusandae. Eum nisi, tempore eius maiores animi. Et id, dignissimos neque quo a reiciendis, blanditiis delectus alias deserunt debitis, dolor tempora. Ducimus quae consequuntur qui libero, quos consequatur autem porro corporis ad, molestias soluta minus quod, repellat ratione. Porro repellat sint adipisci ipsa iure?</p> </div> </li> <li> <input type="radio" name="avengers[]" name="" id="avenger-3"> <label for="avenger-3">Black Widow</label> <div class="preview"> <img src="images/avenger-3.jpg" alt=""> <p>Maxime ad expedita quisquam consectetur quidem dolore, id distinctio consequuntur minus cupiditate nulla reprehenderit commodi voluptatibus, illo quia quasi eum deserunt. Excepturi error, id, quidem, sint delectus dolor numquam nostrum hic ut magni laborum ipsam. Doloribus delectus accusantium consequuntur nemo, assumenda eos deleniti adipisci perferendis ipsum doloremque consectetur vitae. Facere dolorum facilis aliquid saepe numquam aperiam debitis ad architecto laborum magni impedit repudiandae quisquam eius, sapiente error quae neque nisi asperiores eum! Ipsa perferendis doloremque quisquam molestiae ab consequuntur fugiat dolores laboriosam possimus voluptate, eius placeat, quae magni nulla incidunt sit commodi quis accusantium, architecto fuga eum hic neque. Voluptatibus.</p> </div> </li> <li> <input type="radio" name="avengers[]" name="" id="avenger-4"> <label for="avenger-4">Captain America</label> <div class="preview"> <img src="images/avenger-4.jpg" alt=""> <p>Quidem consectetur minus dolor harum natus repellendus! Repellendus eveniet nulla quo quasi odit mollitia, id et, culpa illo assumenda in possimus exercitationem voluptate placeat eaque iste ea velit. Facere pariatur quis vero, impedit quos dolorum voluptas dignissimos illo at esse aperiam amet necessitatibus et aut atque sint vitae repellendus, labore aliquid rerum eos consectetur placeat officiis. Nobis facilis, minus reiciendis sapiente alias nihil temporibus magnam dolorem mollitia odio ut, eaque omnis libero recusandae, incidunt esse. Adipisci sit, accusantium, impedit modi magni qui necessitatibus doloremque optio odit fugit, doloribus placeat! Dolores similique ut earum cum soluta, delectus culpa perspiciatis cumque repudiandae?</p> </div> </li> <li> <input type="radio" name="avengers[]" name="" id="avenger-5"> <label for="avenger-5">Hawkeye</label> <div class="preview"> <img src="images/avenger-5.jpg" alt=""> <p>Hic odit consequatur vitae incidunt reiciendis dolores consequuntur at molestias pariatur. Ipsam dolores, minus saepe, tenetur consectetur dolorum eius. Quibusdam recusandae accusantium dolores soluta distinctio officia ipsa earum, impedit similique sapiente magnam non provident vero ducimus eius tempora aliquid debitis repellendus consequatur ipsum error odio, cumque est. Dolore odit mollitia harum, fugit vero odio molestiae corporis! Eveniet autem odit non quod dolores, est reiciendis totam aliquam assumenda consequatur omnis eligendi quaerat exercitationem tempora. Placeat aut minus distinctio? Voluptate libero voluptatum, architecto est, laboriosam quos ut sunt dicta vel esse. Cupiditate neque perferendis ab aliquam totam illum quia, perspiciatis, delectus laboriosam.</p> </div> </li> <li> <input type="radio" name="avengers[]" name="" id="avenger-6"> <label for="avenger-6">The Hulk</label> <div class="preview"> <img src="images/avenger-6.jpg" alt=""> <p>Nemo sed totam recusandae officia aliquam voluptatum ea deserunt vel, voluptates, eum atque ipsum est doloribus nisi, libero culpa. Distinctio et quae nisi iusto error tenetur sequi reiciendis, ipsa commodi nobis itaque? Sapiente nihil sunt ipsam rem nemo aut veniam, totam distinctio neque, qui accusamus esse iusto animi illum soluta itaque voluptate quis, nesciunt possimus maxime corporis quos. Quia earum ducimus, molestias voluptates illo nam temporibus repellat facilis vero, modi culpa laudantium nulla recusandae explicabo nisi. Porro ex, doloribus vel temporibus, ducimus esse veritatis alias necessitatibus excepturi architecto quae explicabo, accusantium qui nihil maiores ipsa corporis. Aut magni asperiores voluptatem!</p> </div> </li> </ul> </div> </body> </html>
Ris/Client/Workflow/PatientProfileDiff.html
chinapacs/ImageViewer
<!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"> <% var component = this.Component; %> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Untitled Document</title> <link href="<%= component.Server %>/Styles/default.css" rel="stylesheet" type="text/css" /> </head> <body> <table border="0" width="100%"> <tr> <td></td> <% for(var auth in component.ProfileAuthorities) { %> <td class="tableheading"><%= auth %></td> <% } %> </tr> <% for(var field in component.Fields) { %> <tr> <td class="propertyname"><%= field.Heading %></td> <% for(var value in field.Values) { var i=0; var tdcell = ""; for(var segment in value.Segments) { if (segment.IsDiscrepant) { tdcell += "<span class='discrepancy'>" + segment.Text.replace(" ", "&nbsp") + "</span>" } else { tdcell += "<span class=''>" + segment.Text.replace(" ", "&nbsp") + "</span>" } i += 1; } %> <td ><%= tdcell %></td> <% } %> </tr> <% } %> </table> </body> </html>
www/api/lib/api/functions_func_0x68.html
nussland/bbs
<!-- HTML header for doxygen 1.8.5--> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.5"/> <title>Fat-Free Framework: Class Members - Functions</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Fat-Free Framework &#160;<span id="projectnumber">3.2.0</span> &#160;<span class="menu"><a href="index.html">Overview</a> <a href="annotated.html">Class List</a> <a href="hierarchy.html">Hierarchy</a></span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> </div><!-- top --> <div class="contents"> &#160; <h3><a class="anchor" id="index_h"></a>- h -</h3><ul> <li>hash() : <a class="el" href="classBase.html#a235487fb89d2d6fa63375bdf6dfcd8f9">Base</a> , <a class="el" href="classBcrypt.html#adfde3babee4bf0fce0c2e161204a9779">Bcrypt</a> </li> <li>height() : <a class="el" href="classImage.html#a50738b4f19600b46c4db73c49d3ac0bf">Image</a> </li> <li>hflip() : <a class="el" href="classImage.html#a32c2745c81acbed3f99e3198b7cc7f15">Image</a> </li> <li>highlight() : <a class="el" href="classBase.html#a5ca3af2a18e2f828e1522f92446e1171">Base</a> </li> <li>hive() : <a class="el" href="classBase.html#a78fdab7afe66dd894c3dee07681f3988">Base</a> </li> </ul> </div><!-- contents -->
third_party/WebKit/LayoutTests/svg/as-object/sizing/svg-in-object-placeholder-height-auto.html
vadimtk/chrome4sdp
<!DOCTYPE html> <html> <head> <title>SVG sizing: &lt;object></title> <script src="../../../resources/testharness.js"></script> <script src="../../../resources/testharnessreport.js"></script> <style> #testContainer { position: absolute; left: 0; top: 0; width: 800px; height: 600px; } </style> <link rel="help" href="http://www.w3.org/TR/CSS2/visudet.html#inline-replaced-width"> <link rel="help" href="http://www.w3.org/TR/CSS2/visudet.html#inline-replaced-height"> <link rel="help" href="http://www.whatwg.org/specs/web-apps/current-work/#replaced-elements"> <link rel="help" href="http://www.whatwg.org/specs/web-apps/current-work/#attr-dim-width"> <link rel="help" href="http://www.w3.org/TR/SVG/coords.html#ViewportSpace"> </head> <body> <div id="log"></div> <div id="testContainer"></div> <script src="svg-in-object.js"></script> <script>testSVGInObjectWithPlaceholderHeightAttr(null)</script> </body> </html>
third_party/blink/web_tests/external/wpt/shadow-dom/slotchange.html
chromium/chromium
<!DOCTYPE html> <title>Shadow DOM: slotchange Events</title> <meta name="author" title="Hayato Ito" href="mailto:hayato@google.com"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="resources/shadow-dom.js"></script> <div id="test1"> <div id="host1"> <template data-mode="open"> <slot id="s1" name="slot1"></slot> </template> <div id="c1" slot="slot1"></div> </div> </div> <script> function arraysEqual(a, b) { if (a === b) return true; if (a == null || b == null) return false; if (a.length !== b.length) return false; for (var i = 0; i < a.length; ++i) { if (a[i] !== b[i]) return false; } return true; } function doneIfSlotChange(slots, expectedAssignedNodes, test) { let matched = Array(slots.length).fill(false); for (let i=0; i<slots.length; i++) { slots[i].addEventListener('slotchange', test.step_func((e) => { matched[i] = arraysEqual(slots[i].assignedNodes(), expectedAssignedNodes[i]); if (matched.every(v => v)) { test.done(); } })) } } async_test((test) => { let n = createTestTree(test1); removeWhiteSpaceOnlyTextNodes(n.test1); let d1 = document.createElement('div'); d1.setAttribute('slot', 'slot1'); doneIfSlotChange([n.s1], [[n.c1, d1]], test); n.host1.appendChild(d1); }, 'slotchange event: Append a child to a host.'); async_test((test) => { let n = createTestTree(test1); removeWhiteSpaceOnlyTextNodes(n.test1); doneIfSlotChange([n.s1], [[]], test); n.c1.remove(); }, 'slotchange event: Remove a child from a host.'); async_test((test) => { let n = createTestTree(test1); removeWhiteSpaceOnlyTextNodes(n.test1); n.c1.remove(); doneIfSlotChange([n.s1], [[]], test); }, 'slotchange event: Remove a child before adding an event listener.'); async_test((test) => { let n = createTestTree(test1); removeWhiteSpaceOnlyTextNodes(n.test1); doneIfSlotChange([n.s1], [[]], test); n.c1.setAttribute('slot', 'slot-none'); }, 'slotchange event: Change slot= attribute to make it un-assigned.'); async_test((test) => { let n = createTestTree(test1); removeWhiteSpaceOnlyTextNodes(n.test1); doneIfSlotChange([n.s1], [[]], test); n.s1.setAttribute('name', 'slot-none'); }, 'slotchange event: Change slot\'s name= attribute so that none is assigned.'); </script> <div id="test2"> <div id="host1"> <template data-mode="open"> <slot id="s1" name="slot1"></slot> </template> <div id="c2" slot="slot2"></div> </div> </div> <script> async_test((test) => { let n = createTestTree(test2); removeWhiteSpaceOnlyTextNodes(n.test2); doneIfSlotChange([n.s1], [[n.c2]], test); n.c2.setAttribute('slot', 'slot1'); }, 'slotchange event: Change slot= attribute to make it assigned.'); async_test((test) => { let n = createTestTree(test2); removeWhiteSpaceOnlyTextNodes(n.test2); doneIfSlotChange([n.s1], [[n.c2]], test); n.s1.setAttribute('name', 'slot2'); }, 'slotchange event: Change slot\'s name= attribute so that a node is assigned to the slot.'); </script> <div id="test_fallback"> <div id="host1"> <template data-mode="open"> <slot id="s1"></slot> </template> </div> </div> <script> async_test((test) => { let n = createTestTree(test_fallback); removeWhiteSpaceOnlyTextNodes(n.test_fallback); doneIfSlotChange([n.s1], [[]], test); n.s1.appendChild(document.createElement('div')); }, 'slotchange event: Change fallback content - assignedNodes still empty.'); </script> <div id="test_fallback2"> <div id="host1"> <template data-mode="open"> <slot id="s1"> <div id="f1"></div> </slot> </template> </div> </div> <script> async_test((test) => { let n = createTestTree(test_fallback2); removeWhiteSpaceOnlyTextNodes(n.test_fallback2); doneIfSlotChange([n.s1], [[]], test); n.f1.remove(); }, 'slotchange event: Remove a fallback content - assignedNodes still empty.'); </script> <div id="test_fallback3"> <div id="host1"> <template data-mode="open"> <slot id="s2"> <slot id="s1"> <div id="f1"></div> </slot> </slot> </template> </div> </div> <script> async_test((test) => { let n = createTestTree(test_fallback3); removeWhiteSpaceOnlyTextNodes(n.test_fallback3); doneIfSlotChange([n.s1, n.s2], [[],[]], test); n.s1.appendChild(document.createElement('div')); }, 'slotchange event: Add a fallback content to nested slots - assignedNodes still empty.'); async_test((test) => { let n = createTestTree(test_fallback3); removeWhiteSpaceOnlyTextNodes(n.test_fallback3); doneIfSlotChange([n.s1, n.s2], [[],[]], test); n.f1.remove(); }, 'slotchange event: Remove a fallback content from nested slots - assignedNodes still empty.'); </script> <div id="test3"> <div id="host1"> <template id="shadowroot" data-mode="open"> <slot id="s1" name="slot1"></slot> </template> <div id="c1" slot="slot1"></div> </div> </div> <script> async_test((test) => { let n = createTestTree(test3); removeWhiteSpaceOnlyTextNodes(n.test3); doneIfSlotChange([n.s1], [[]], test); let slot = document.createElement('slot'); slot.setAttribute('name', 'slot1'); n.shadowroot.insertBefore(slot, n.s1); }, "slotchange event: Insert a slot before an existing slot."); </script> <div id="test4"> <div id="host1"> <template id="shadowroot" data-mode="open"> <slot id="s1" name="slot1"></slot> <slot id="s2" name="slot1"></slot> </template> <div id="c1" slot="slot1"></div> </div> </div> <script> async_test((test) => { let n = createTestTree(test4); removeWhiteSpaceOnlyTextNodes(n.test4); doneIfSlotChange([n.s2], [[n.c1]], test); n.s1.remove(); }, "slotchange event: Remove a preceding slot."); </script> <div id="test5"> <div id="host1"> <template data-mode="open"> <div id="host2"> <template data-mode="open"> <slot id="s2" name="slot2"></slot> </template> <slot id="s1" name="slot1" slot="slot2"></slot> </div> </template> <div id="c1" slot="slot1"></div> </div> </div> <script> async_test((test) => { let n = createTestTree(test5); removeWhiteSpaceOnlyTextNodes(n.test5); doneIfSlotChange([n.s1, n.s2], [[],[n.s1]], test); n.c1.remove(); }, "slotchange event: A slot is assigned to another slot."); </script> <div id="test6"> <div id="host1"> <template data-mode="open"> <div id="host2"> <template data-mode="open"> <slot id="s2" name="slot2"></slot> </template> <slot id="s1" name="slot1" slot="slot2"></slot> </div> </template> </div> </div> <script> async_test((test) => { let n = createTestTree(test6); removeWhiteSpaceOnlyTextNodes(n.test6); doneIfSlotChange([n.s2], [[]], test); n.s1.remove(); }, "slotchange event: Slotchange should be fired if assigned nodes are changed."); </script> <div id="test7"> <div id="host1"> <template data-mode="open"> <div id="host2"> <template data-mode="open"> <slot id="s2" name="slot2"></slot> </template> <slot id="s1" name="slot1" slot="slot2"></slot> </div> </template> </div> </div> <script> async_test((test) => { let n = createTestTree(test7); removeWhiteSpaceOnlyTextNodes(n.test7); let d1 = document.createElement('div'); d1.setAttribute('slot', 'slot1'); doneIfSlotChange([n.s1, n.s2], [[d1],[n.s1]], test); n.host1.appendChild(d1); }, "slotchange event: Child content is added to nested slots."); </script>
web/bundles/sunraangular/js/angular/angular-1.3.2/docs/examples/example-example32/index-jquery.html
viral810/ngSimpleCMS
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example32-jquery</title> <script src="../../components/jquery-2.1.1/jquery.js"></script> <script src="../../../angular.js"></script> <script src="script.js"></script> </head> <body ng-app="customTriggerExample"> <div ng-controller="ExampleController"> <form> Name: <input type="text" ng-model="user.name" ng-model-options="{ updateOn: 'blur' }" /><br /> Other data: <input type="text" ng-model="user.data" /><br /> </form> <pre>username = "{{user.name}}"</pre> <pre>userdata = "{{user.data}}"</pre> </div> </body> </html>
third_party/blink/web_tests/external/wpt/css/css-flexbox/svg-root-as-flex-item-002.html
scheib/chromium
<!DOCTYPE html> <title>SVG root as flex item</title> <link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-flexbox/#algo-main-item" title="Part E"> <link rel="help" href="https://www.w3.org/TR/css-sizing-3/#intrinsic-sizes" title="For boxes with an intrinsic aspect ratio, but no intrinsic size"> <link rel="match" href="../reference/ref-filled-green-100px-square.xht"> <meta name="assert" content="SVG's intrinsic width when used as flex base size stretches into the available size when it has no specified intrinsic sizes." /> <style> #reference-overlapped-red { position: absolute; background-color: red; width: 100px; height: 100px; z-index: -1; } </style> <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> <div id="reference-overlapped-red"></div> <div style="display: flex; width: 100px;"> <svg viewBox="0 0 200 200"> <rect width="100%" height="100%" fill="green" /> </svg> </div>
node_modules/hellojs/demos/sdk/facebook.html
simondelamarre/LV2
<!DOCTYPE html> <link rel="stylesheet" href="/adorn/adorn.css"/> <script src="/adorn/adorn.js" async></script> <script src="../client_ids.js"></script> <div id="fb-root"></div> <h1>Facebook proprietary SDK</h1> <p>SignIn</p> <button id="login" onclick="FB.login();">Login Facebook</button> <p>SignOut: of this app and Facebook.com</p> <button onclick="FB.logout();">Logout</button> <p>Include the SDK's</p> <script src="//connect.facebook.net/en_US/all.js" class="pre"></script> <p>FB.Event.subscribe</p> <script class="pre"> // Login event function authResponse(response){ if (response.status === 'connected'|| response.authResponse) { document.body.className = "signedin"; // Get Profile FB.api('me', function(r){ document.getElementById('login').innerHTML = "Connected to FaceBook as " + r.name; }); } else{ document.body.className = ""; document.getElementById('login').innerHTML = "Login Facebook"; } } FB.Event.subscribe('auth.login', authResponse); </script> <p>FB.init</p> <script class="pre"> // Initiate the facebook app FB.init({ appId: FACEBOOK_CLIENT_ID, scope: "basic", status : true }); </script> <p>FB.init</p> <script class="pre"> FB.getLoginStatus(authResponse); </script>
www/lib/iron-form/iron-form.html
zacharyfmarion/Graviton
<!-- @license Copyright (c) 2015 The Polymer Project Authors. All rights reserved. This code may only be used under the BSD style license found at http://polymer.github.io/LICENSE.txt The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt Code distributed by Google as part of the polymer project is also subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt --> <link rel="import" href="../polymer/polymer.html"> <link rel="import" href="../iron-ajax/iron-ajax.html"> <script> /* ``<iron-form>` is an HTML `<form>` element that can validate and submit any custom elements that implement `Polymer.IronFormElementBehavior`, as well as any native HTML elements. It supports both `get` and `post` methods, and uses an `iron-ajax` element to submit the form data to the action URL. Example: <form is="iron-form" id="form" method="post" action="/form/handler"> <paper-input name="name" label="name"></paper-input> <input name="address"> ... </form> By default, a native `<button>` element will submit this form. However, if you want to submit it from a custom element's click handler, you need to explicitly call the form's `submit` method. Example: <paper-button raised onclick="submitForm()">Submit</paper-button> function submitForm() { document.getElementById('form').submit(); } @demo demo/index.html */ Polymer({ is: 'iron-form', extends: 'form', properties: { /** * Content type to use when sending data. */ contentType: { type: String, value: "application/x-www-form-urlencoded" }, /** * By default, the form will display the browser's native validation * UI (i.e. popup bubbles and invalid styles on invalid fields). You can * manually disable this; however, if you do, note that you will have to * manually style invalid *native* HTML fields yourself, as you are * explicitly preventing the native form from doing so. */ disableNativeValidationUi: { type: Boolean, value: false }, /** * Set the withCredentials flag when sending data. */ withCredentials: { type: Boolean, value: false } }, /** * Fired if the form cannot be submitted because it's invalid. * * @event iron-form-invalid */ /** * Fired after the form is submitted. * * @event iron-form-submit */ /** * Fired after the form is submitted and a response is received. * * @event iron-form-response */ /** * Fired after the form is submitted and an error is received. * * @event iron-form-error */ listeners: { 'iron-form-element-register': '_registerElement', 'iron-form-element-unregister': '_unregisterElement', 'submit': '_onSubmit' }, ready: function() { // Object that handles the ajax form submission request. this._requestBot = document.createElement('iron-ajax'); this._requestBot.addEventListener('response', this._handleFormResponse.bind(this)); this._requestBot.addEventListener('error', this._handleFormError.bind(this)); // Holds all the custom elements registered with this form. this._customElements = []; }, /** * Called to submit the form. */ submit: function() { if (!this.noValidate && !this.validate()) { // In order to trigger the native browser invalid-form UI, we need // to do perform a fake form submit. if (!this.disableNativeValidationUi) { this._doFakeSubmitForValidation(); } this.fire('iron-form-invalid'); return; } var json = this.serialize(); this._requestBot.url = this.action; this._requestBot.method = this.method; this._requestBot.contentType = this.contentType; this._requestBot.withCredentials = this.withCredentials; if (this.method.toUpperCase() == 'POST') { this._requestBot.body = json; } else { this._requestBot.params = json; } this._requestBot.generateRequest(); this.fire('iron-form-submit', json); }, _onSubmit: function(event) { this.submit(); // Don't perform a page refresh. if (event) { event.preventDefault(); } return false; }, /** * Returns a json object containing name/value pairs for all the registered * custom components and native elements of the form. If there are elements * with duplicate names, then their values will get aggregated into an * array of values. */ serialize: function() { var json = {}; function addSerializedElement(el) { // If the name doesn't exist, add it. Otherwise, serialize it to // an array, if (!json[el.name]) { json[el.name] = el.value; } else { if (!Array.isArray(json[el.name])) { json[el.name] = [json[el.name]]; } json[el.name].push(el.value); } } // Go through all of the registered custom components. for (var el, i = 0; el = this._customElements[i], i < this._customElements.length; i++) { if (this._useValue(el)) { addSerializedElement(el); } } // Also go through the form's native elements. for (var el, i = 0; el = this.elements[i], i < this.elements.length; i++) { // Checkboxes and radio buttons should only use their value if they're checked. // Also, custom elements that extend native elements (like an // `<input is="fancy-input">`) will appear in both lists. Since they // were already added as a custom element, they don't need // to be re-added. if (!this._useValue(el) || (el.hasAttribute('is') && json[el.name])) { continue; } addSerializedElement(el); } return json; }, _handleFormResponse: function (event) { this.fire('iron-form-response', event.detail.response); }, _handleFormError: function (event) { this.fire('iron-form-error', event.detail); }, _registerElement: function(e) { e.target._parentForm = this; this._customElements.push(e.target); }, _unregisterElement: function(e) { var target = e.detail.target; if (target) { var index = this._customElements.indexOf(target); if (index > -1) { this._customElements.splice(index, 1); } } }, /** * Validates all the required elements (custom and native) in the form. * @return {boolean} True if all the elements are valid. */ validate: function() { var valid = true; // Validate all the custom elements. var validatable; for (var el, i = 0; el = this._customElements[i], i < this._customElements.length; i++) { if (el.required && this._useValue(el)) { validatable = /** @type {{validate: (function() : boolean)}} */ (el); // Some elements may not have correctly defined a validate method. if (validatable.validate) valid = !!validatable.validate() && valid; } } // Validate the form's native elements. for (var el, i = 0; el = this.elements[i], i < this.elements.length; i++) { // Custom elements that extend a native element will also appear in // this list, but they've already been validated. if (!el.hasAttribute('is') && el.willValidate && el.checkValidity && el.name) { valid = el.checkValidity() && valid; } } return valid; }, _useValue: function(el) { // Skip disabled elements or elements that don't have a `name` attribute. if (el.disabled || !el.name) { return false; } // Checkboxes and radio buttons should only use their value if they're // checked. Custom paper-checkbox and paper-radio-button elements // don't have a type, but they have the correct role set. if (el.type == 'checkbox' || el.type == 'radio' || el.getAttribute('role') == 'checkbox' || el.getAttribute('role') == 'radio') { return el.checked; } return true; }, _doFakeSubmitForValidation: function() { var fakeSubmit = document.createElement('input'); fakeSubmit.setAttribute('type', 'submit'); fakeSubmit.style.display = 'none'; this.appendChild(fakeSubmit); fakeSubmit.click(); this.removeChild(fakeSubmit); } }); </script>
vendor/bower/bower-asset/angular-drag-and-drop-lists/demo/advanced/advanced.html
lwp8800/wechat
<h3>Dropzone {{$index + 1}}</h3> <ul dnd-list="containers" dnd-allowed-types="['containerType']" dnd-external-sources="true" dnd-dragover="dragoverCallback(event, index, external, type)" dnd-drop="dropCallback(event, index, item, external, type, 'containerType')"> <li ng-repeat="items in containers" dnd-draggable="items" dnd-type="'containerType'" dnd-effect-allowed="copyMove" dnd-dragstart="logEvent('Started to drag a container', event)" dnd-moved="containers.splice($index, 1); logEvent('Container moved', event)" dnd-copied="logEvent('Container copied', event)"> <div class="container-element box box-blue"> <h3>Container</h3> <ul dnd-list="items" dnd-allowed-types="['itemType']" dnd-horizontal-list="true" dnd-external-sources="true" dnd-dragover="dragoverCallback(event, index, external, type)" dnd-drop="dropCallback(event, index, item, external, type, 'itemType')" class="itemlist"> <li ng-repeat="item in items" dnd-draggable="item" dnd-type="'itemType'" dnd-effect-allowed="copyMove" dnd-dragstart="logEvent('Started to drag an item', event)" dnd-moved="items.splice($index, 1); logEvent('Item moved', event)" dnd-copied="logEvent('Item copied', event)"> {{item.label}} </li> </ul> <div class="clearfix"></div> </div> </li> </ul>
test/ft/fis-quickstart-demo/demo.html
wbh5/fis
<h1>demo.html content</h1>
togetherwork/protected/extensions/editor/source/ckeditor/_samples/index.html
SallyU/footprints
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <!-- Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license --> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Samples List - CKEditor</title> <link type="text/css" rel="stylesheet" href="sample.css" /> </head> <body> <h1> CKEditor Samples List </h1> <h2> Basic Samples </h2> <ul> <li><a href="replacebyclass.html">Replace textareas by class name</a></li> <li><a href="replacebycode.html">Replace textareas by code</a></li> <li><a href="fullpage.html">Full page support (editing from &lt;html&gt; to &lt;/html&gt;)</a></li> </ul> <h2> Basic Customization </h2> <ul> <li><a href="skins.html">Skins</a></li> <li><a href="ui_color.html">User Interface Color</a></li> <li><a href="ui_languages.html">User Interface Languages</a></li> </ul> <h2> Advanced Samples </h2> <ul> <li><a href="divreplace.html">Replace DIV elements on the fly</a>&nbsp; </li> <li><a href="ajax.html">Create and destroy editor instances for Ajax applications</a></li> <li><a href="api.html">Basic usage of the API</a></li> <li><a href="api_dialog.html">Using the JavaScript API to customize dialogs</a></li> <li><a href="enterkey.html">Using the "Enter" key in CKEditor</a></li> <li><a href="sharedspaces.html">Shared toolbars</a></li> <li><a href="jqueryadapter.html">jQuery adapter example</a></li> <li><a href="output_xhtml.html">Output XHTML</a></li> <li><a href="output_html.html">Output HTML</a></li> <li><a href="output_for_flash.html">Output for Flash</a></li> <li><a href="autogrow.html">AutoGrow plugin</a></li> <li><a href="placeholder.html">Placeholder plugin</a></li> </ul> <div id="footer"> <hr /> <p> CKEditor - The text editor for Internet - <a href="http://ckeditor.com/">http://ckeditor.com</a> </p> <p id="copy"> Copyright &copy; 2003-2010, <a href="http://cksource.com/">CKSource</a> - Frederico Knabben. All rights reserved. </p> </div> </body> </html>
third_party/blink/web_tests/external/wpt/css/css-text/white-space/trailing-other-space-separators-break-spaces-005.html
scheib/chromium
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Text level 3 Test: U+2003 at the end of line with white-space:break-spaces</title> <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net/"> <link rel="help" href="https://drafts.csswg.org/css-text-3/#white-space-phase-2"> <link rel="match" href="reference/trailing-other-space-separators-break-spaces-002-ref.html"> <meta name="assert" content="U+2003 at the end of the line must not hang or be discarded if white-space is break-spaces. It thus keeps its usual line breaking properties, as defined in UAX14."> <meta name="flags" content="should"> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> <style> div { white-space: break-spaces; font-size: 10px; line-height: 1; width: 2em; } section { font-family: Ahem; float: left; margin: 0 1em; color: blue; } .ref { color: orange; } .ref div { white-space: pre; } </style> <p>Test passes if the orange and blue parts of this page are identical. <!-- * There is no line breaking opportunity between two "x" * There is a line breaking opportunity between two "あ" * There is a line breaking opportunity after "x" or "あ" unless suppressed by the next character (BA, GL). * There is a line breaking opportunity before "x" or "あ" unless suppressed by the previous character (BB, GL). --> <section class=ref> <div>xx&#x2003;<br>あ<br>あ&#x2003;<br>あ<br>あ&#x2003;<br>xx</div><!-- BA, tailorable --> </section> <section> <div>xx&#x2003;ああ&#x2003;ああ&#x2003;xx</div> </section>
dep/RakNet/Help/Doxygen/html/classRakNet_1_1NatPunchthroughClient-members.html
JayStilla/AIEComplexSystems
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>RakNet: Member List</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">RakNet &#160;<span id="projectnumber">4.0</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.2 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="namespaceRakNet.html">RakNet</a></li><li class="navelem"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">NatPunchthroughClient</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">RakNet::NatPunchthroughClient Member List</div> </div> </div><!--header--> <div class="contents"> <p>This is the complete list of members for <a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a>, including all inherited members.</p> <table class="directory"> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#ab830402dee86fc7b557e098f4ccdd4f1">FindRouterPortStride</a>(const SystemAddress &amp;facilitator)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a6131cc61e5af13399db4358fbb7b0d15">GetPunchthroughConfiguration</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a621163bc6be3e7d6f6c6b4d9c8e5f938">GetUPNPPortMappings</a>(char *externalPort, char *internalPort, const SystemAddress &amp;natPunchthroughServerAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#ae0b0cad31cfc209c48197c77d6b46345">OnAck</a>(unsigned int messageNumber, SystemAddress remoteSystemAddress, RakNet::TimeMS time)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#abec4863d26aa274f92e710245669d13b">OnAttach</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a67db8e781fea747763df43240a29a84f">OnClosedConnection</a>(const SystemAddress &amp;systemAddress, RakNetGUID rakNetGUID, PI2_LostConnectionReason lostConnectionReason)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a5f57399d9383c6bb3ff9a3ce64326572">OnDetach</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a9aac1101ad58e8443516588e96e066ec">OnDirectSocketReceive</a>(const char *data, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a7a6f69c6fc3a121e3676298a63a9ef78">OnDirectSocketSend</a>(const char *data, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a9504489498df14b6efa5ca9bd39aede4">OnFailedConnectionAttempt</a>(Packet *packet, PI2_FailedConnectionAttemptReason failedConnectionAttemptReason)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a399b8c93daa0236599961e754742e2f7">OnInternalPacket</a>(InternalPacket *internalPacket, unsigned frameNumber, SystemAddress remoteSystemAddress, RakNet::TimeMS time, int isSend)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a9819ed681b72317c2c97fc1f2abfc947">OnNewConnection</a>(const SystemAddress &amp;systemAddress, RakNetGUID rakNetGUID, bool isIncoming)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a5c976aea56ed85055a17c19d91b90727">OnPushBackPacket</a>(const char *data, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a1563e46fb5626c93da63a39e549f9147">OnRakPeerShutdown</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#a14825e69f0560996327e4dd351842c06">OnRakPeerStartup</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a417a0812408c178e1e95d8983389e286">OnReceive</a>(Packet *packet)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#abf51e60546bd74d21c91dc0d6f9f3a4b">OnReliabilityLayerNotification</a>(const char *errorMessage, const BitSize_t bitsUsed, SystemAddress remoteSystemAddress, bool isError)</td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a92dbda7c976d5973c5cd6a3e0aea95c0">OpenNAT</a>(RakNetGUID destination, const SystemAddress &amp;facilitator)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#a7bc339aacd4c7f355ebfbab17059c4a0">SetDebugInterface</a>(NatPunchthroughDebugInterface *i)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"></td></tr> <tr><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html#afdb000c77864073b54260e4e882a3010">Update</a>(void)</td><td class="entry"><a class="el" href="classRakNet_1_1NatPunchthroughClient.html">RakNet::NatPunchthroughClient</a></td><td class="entry"><span class="mlabel">virtual</span></td></tr> <tr class="even"><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html#accfca7d25262c48a87a30114383284aa">UsesReliabilityLayer</a>(void) const </td><td class="entry"><a class="el" href="classRakNet_1_1PluginInterface2.html">RakNet::PluginInterface2</a></td><td class="entry"><span class="mlabel">inline</span><span class="mlabel">virtual</span></td></tr> </table></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Mon Jun 2 2014 20:10:28 for RakNet by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.2 </small></address> </body> </html>
web/vendor/highcharts/css/annotations/popup.css
burki/jewish-history-online
.highcharts-popup.highcharts-annotation-toolbar { right: 10%; left: auto; height: 40px; overflow: hidden; padding-right: 40px; width: auto; min-width: 0; } .highcharts-popup.highcharts-annotation-toolbar button { margin-top: 0px; } .highcharts-popup.highcharts-annotation-toolbar > span { display: block; float: left; padding: 12px; } .highcharts-popup { background-color: #fff; color: #666; display: none; font-size: 0.876em; max-height: 90%; top: 5%; left: 15%; overflow-x: hidden; overflow-y: auto; width: 75%; min-width: 300px; max-width: 600px; position: absolute; z-index: 100; -webkit-box-shadow: 0px 0px 8px 0px rgba(61, 61, 61, 0.3); -moz-box-shadow: 0px 0px 8px 0px rgba(61, 61, 61, 0.3); box-shadow: 0px 0px 8px 0px rgba(61, 61, 61, 0.3); } .highcharts-popup div, .highcharts-popup span { box-sizing: content-box; } .highcharts-popup input, .highcharts-popup label, .highcharts-popup select { clear: both; float: left; width: 100%; margin-bottom: 10px; } .highcharts-popup input { border: 1px solid #e6e6e6; padding: 5px; width: calc(100% - 12px); } .highcharts-popup-lhs-col, .highcharts-popup-rhs-col { padding: 20px; height: calc(100% - 84px); /* 44px - padding, 40px - tabs*/ float: left; } .highcharts-popup-lhs-col.highcharts-popup-lhs-full { width: calc(100% - 52px); overflow-y: auto; overflow-x: hidden; height: calc(100% - 140px); border: none; padding: 0px 20px 20px 20px; } .highcharts-popup-lhs-col.highcharts-popup-lhs-full + .highcharts-popup-bottom-row { width: calc(100% - 32px); } .highcharts-popup-lhs-col { clear: both; width: calc(30% - 44px); border-right: 1px solid #e6e6e6; } .highcharts-popup-bottom-row { float: left; padding: 0px 20px; width: calc(100% - 40px); } .highcharts-popup-rhs-col { width: calc(70% - 40px); } .highcharts-popup-rhs-col-wrapper { float: left; width: calc(100% - 20px); padding-right: 20px; height: calc(100% - 40px); overflow-y: auto; overflow-x: hidden; } .highcharts-popup-rhs-col-wrapper h3 { margin-top: 0px; padding-bottom: 0px; } .highcharts-bindings-wrapper ul.highcharts-indicator-list, .highcharts-indicator-list { float: left; color: #666; height: 100%; width: 100%; overflow-y: auto; overflow-x: hidden; margin: 0px; padding: 0px; } .highcharts-indicator-list li { cursor: pointer; padding: 0px 0px 5px 0px; margin: 0px; width: 100%; height: auto; overflow: hidden; word-break: break-all; } .highcharts-indicator-list li:hover { background-color: #e6ebf5; } .highcharts-tab-item { background-color: #f7f7f7; cursor: pointer; display: block; float: left; padding: 10px; height: 20px; } .highcharts-tab-item.highcharts-tab-item-active { background-color: #e6ebf5; } .highcharts-tab-item-content { display: none; float: left; height: 100%; overflow: hidden; width: 100%; border-top: 1px solid #e6e6e6; } .highcharts-tab-item-show { display: block; } .highcharts-popup-close { background-repeat: no-repeat; background-position: 50% 50%; width: 20px; height: 20px; cursor: pointer; position: absolute; padding: 10px; top: 0%; right: 0%; color: #333333; } .highcharts-popup-close:hover, .highcharts-popup button:hover, .highcharts-popup button.highcharts-annotation-edit-button:hover, .highcharts-popup button.highcharts-annotation-remove-button:hover { background-color: #e6ebf5; } .highcharts-popup button { float: right; border: none; background: #f7f7f7; color: #666; margin-left: 5px; margin-top: 12px; } .highcharts-popup button:first-child { margin-left: 0; } .highcharts-tab-disabled { color: #ccc; } /* annotation edit small popup */ .highcharts-popup button.highcharts-annotation-edit-button, .highcharts-popup button.highcharts-annotation-remove-button { width: 20px; height: 40px; padding: 20px; } .highcharts-popup button.highcharts-annotation-edit-button { background-repeat: no-repeat; background-position: 50% 50%; text-indent: -9999px; } .highcharts-popup button.highcharts-annotation-remove-button { background-repeat: no-repeat; background-position: 50% 50%; text-indent: -9999px; } .highcharts-popup .highcharts-annotation-title { display: block; float: left; font-size: 1.2em; font-weight: bold; margin-bottom: 15px; width: 100%; } .highcharts-popup .highcharts-popup-main-title { border-bottom: 1px solid #e6e6e6; margin: 0px 0px 20px 0px; padding: 8px 0px 6px 20px; } .highcharts-indicator-title { float: left; padding-bottom: 15px; }
annis-widgets/THIRD-PARTY/licenses/apache license, version 2.0 - license-2.0.html
zangsir/ANNIS
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang="en"> <head> <title>Apache License, Version 2.0</title> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <meta property="og:image" content="http://www.apache.org/images/asf_logo.gif" /> <link rel="stylesheet" type="text/css" media="screen" href="/css/style.css"> <link rel="stylesheet" type="text/css" media="screen" href="/css/code.css"> <script type="text/javascript" src="/js/jquery.js"></script> <script type="text/javascript" src="/js/apache_boot.js"></script> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License. You may obtain a copy of the License at . http://www.apache.org/licenses/LICENSE-2.0 . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> </head> <body> <div id="page" class="container_16"> <div id="header" class="grid_8"> <img src="/images/feather-small.gif" alt="The Apache Software Foundation"> <h1>The Apache Software Foundation</h1> <h2>Apache License, Version 2.0</h2> </div> <div id="nav" class="grid_8"> <ul> <!-- <li><a href="/" title="Welcome!">Home</a></li> --> <li><a href="/foundation/" title="The Foundation">Foundation</a></li> <li><a href="http://projects.apache.org" title="The Projects">Projects</a></li> <li><a href="http://people.apache.org" title="The People">People</a></li> <li><a href="/foundation/getinvolved.html" title="Get Involved">Get Involved</a></li> <li><a href="/dyn/closer.cgi" title="Download">Download</a></li> <li><a href="/foundation/sponsorship.html" title="Support Apache">Support Apache</a></li> </ul> <p><a href="/">Home</a>&nbsp;&raquo&nbsp;<a href="/licenses/">Licenses</a></p> <form name="search" id="search" action="http://www.google.com/search" method="get"> <input value="apache.org" name="sitesearch" type="hidden"/> <input type="text" name="q" id="query"> <input type="submit" id="submit" value="Search"> </form> </div> <div class="clear"></div> <div id="content" class="grid_16"><div class="section-content"><p>Apache License<br></br>Version 2.0, January 2004<br></br> <a href="http://www.apache.org/licenses/">http://www.apache.org/licenses/</a> </p> <p>TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</p> <p><strong><a name="definitions">1. Definitions</a></strong>.</p> <p>"License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.</p> <p>"Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.</p> <p>"Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.</p> <p>"You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.</p> <p>"Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.</p> <p>"Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.</p> <p>"Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).</p> <p>"Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.</p> <p>"Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."</p> <p>"Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.</p> <p><strong><a name="copyright">2. Grant of Copyright License</a></strong>. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.</p> <p><strong><a name="patent">3. Grant of Patent License</a></strong>. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.</p> <p><strong><a name="redistribution">4. Redistribution</a></strong>. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:</p> <ol style="list-style: lower-latin;"> <li>You must give any other recipients of the Work or Derivative Works a copy of this License; and</li> <li>You must cause any modified files to carry prominent notices stating that You changed the files; and</li> <li>You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and</li> <li>If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. <br/> <br/> You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. </li> </ol> <p><strong><a name="contributions">5. Submission of Contributions</a></strong>. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.</p> <p><strong><a name="trademarks">6. Trademarks</a></strong>. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.</p> <p><strong><a name="no-warranty">7. Disclaimer of Warranty</a></strong>. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.</p> <p><strong><a name="no-liability">8. Limitation of Liability</a></strong>. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.</p> <p><strong><a name="additional">9. Accepting Warranty or Additional Liability</a></strong>. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.</p> <p>END OF TERMS AND CONDITIONS</p> <h1 id="apply">APPENDIX: How to apply the Apache License to your work</h1> <p>To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.</p> <div class="codehilite"><pre>Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the &quot;License&quot;); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an &quot;AS IS&quot; BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. </pre></div></div></div> <div class="clear"></div> </div> <div id="footer" class="container_16"> <div class="links grid_16"> <div class="grid_3"> <h4>Projects</h4> <ul> <li><a href="http://httpd.apache.org/" title="Apache Web Server (httpd)">HTTP Server</a></li> <li><a href="http://abdera.apache.org/" title="Atom Publishing Protocol Implementation">Abdera</a></li> <li><a href="http://accumulo.apache.org/" title="Sorted, distributed key/value store">Accumulo</a></li> <li><a href="http://ace.apache.org/" title="Centralized life cycle management and deployment of OSGi based and related modular software artifacts for distribution.">ACE</a></li> <li><a href="http://activemq.apache.org/" title="Distributed Messaging System">ActiveMQ</a></li> <li><a href="http://airavata.apache.org/" title="Workflow and Computational Job Management Middleware">Airavata</a></li> <li><a href="http://allura.apache.org/" title="Forge software for hosting software projects">Allura</a></li> <li><a href="http://ambari.apache.org/" title="Hadoop cluster management">Ambari</a></li> <li><a href="http://ant.apache.org/" title="Java-based build tool">Ant</a></li> <li><a href="http://any23.apache.org/" title="Anything to Triples">Any23</a></li> <li><a href="http://apr.apache.org/" title="Apache Portable Runtime libraries">APR</a></li> <li><a href="http://archiva.apache.org/" title="Build Artifact Repository Manager">Archiva</a></li> <li><a href="http://aries.apache.org/" title="Enterprise OSGi application programming model">Aries</a></li> <li><a href="http://avro.apache.org/" title="A Serialization System">Avro</a></li> <li><a href="http://axis.apache.org/" title="Java SOAP Engine">Axis</a></li> <li><a href="http://bigtop.apache.org/" title="Apache Hadoop ecosystem integration and distribution project">Bigtop</a></li> <li><a href="http://bloodhound.apache.org/" title="Issue tracking, wiki and repository browser">Bloodhound</a></li> <li><a href="http://buildr.apache.org/" title="Simple and intuitive build system for Java applications">Buildr</a></li> <li><a href="http://bval.apache.org/" title="Apache BVal: JSR-303 Bean Validation Implementation and Extensions">BVal</a></li> <li><a href="http://camel.apache.org/" title="Spring based Integration Framework which implements the Enterprise Integration Patterns">Camel</a></li> <li><a href="http://cassandra.apache.org/" title="Highly scalable second-generation distributed database">Cassandra</a></li> <li><a href="http://cayenne.apache.org/" title="User-friendly Java ORM with Tools">Cayenne</a></li> <li><a href="http://chemistry.apache.org/" title="CMIS (Content Managment Interoperability Services) Clients and Servers">Chemistry</a></li> <li><a href="http://chukwa.apache.org/" title="Open source data collection system for monitoring large distributed systems.">Chukwa</a></li> <li><a href="http://clerezza.apache.org/" title="Semantically linked data for OSGi">Clerezza</a></li> <li><a href="http://cloudstack.apache.org/" title="Infrastructure as a Service solution">CloudStack</a></li> <li><a href="http://cocoon.apache.org/" title="Web development framework: separation of concerns, component-based">Cocoon</a></li> <li><a href="http://commons.apache.org/" title="Reusable Java components">Commons</a></li> <li><a href="http://continuum.apache.org/" title="Continuous Integration and Build Server">Continuum</a></li> <li><a href="http://cordova.apache.org/" title="Platform for building native mobile applications using HTML, CSS and JavaScript">Cordova</a></li> <li><a href="http://couchdb.apache.org/" title="RESTful document database">CouchDB</a></li> <li><a href="http://creadur.apache.org/" title="Comprehension and auditing of software distributions">Creadur</a></li> <li><a href="http://crunch.apache.org/" title="Simple and Efficient MapReduce Pipelines">Crunch</a></li> <li><a href="http://ctakes.apache.org/" title="Natural language processing (NLP) tool for information extraction from electronic medical record clinical free-text">cTAKES</a></li> <li><a href="http://curator.apache.org/" title="Java libraries that make using Apache ZooKeeper easier">Curator</a></li> <li><a href="http://cxf.apache.org/" title="Service Framework">CXF</a></li> <li><a href="http://db.apache.org/" title="Database access">DB</a></li> <li><a href="http://deltacloud.apache.org/" title="RESTful cloud management interface">Deltacloud</a></li> <li><a href="http://deltaspike.apache.org/" title="Portable CDI extensions that provide useful features for Java application developers">DeltaSpike</a></li> <li><a href="http://directmemory.apache.org/" title="An off-heap cache for the Java Virtual Machine">DirectMemory</a></li> <li><a href="http://directory.apache.org/" title="Apache Directory Server">Directory</a></li> <li><a href="http://empire-db.apache.org/" title="Relational Data Persistence">Empire-db</a></li> <li><a href="http://etch.apache.org/" title="Cross-platform, language- and transport-independent RPC-like messaging framework">Etch</a></li> <li><a href="http://felix.apache.org/" title="OSGi Framework and components.">Felix</a></li> <li><a href="http://flex.apache.org/" title="Application framework for expressive web applications that deploy to all major browsers, desktops and devices.">Flex</a></li> <li><a href="http://flume.apache.org/" title="A reliable service for efficiently collecting, aggregating, and moving large amounts of log data">Flume</a></li> <li><a href="http://forrest.apache.org/" title="Aggregated multi-channel documentation, separation of concerns">Forrest</a></li> <li><a href="http://geronimo.apache.org/" title="Java2, Enterprise Edition (J2EE) container">Geronimo</a></li> <li><a href="http://giraph.apache.org/" title="Iterative graph processing system built for high scalability">Giraph</a></li> <li><a href="http://gora.apache.org/" title="ORM framework for column stores such as Apache HBase and Apache Cassandra with a specific focus on Hadoop">Gora</a></li> <li><a href="http://gump.apache.org/" title="Continuous integration of open source projects">Gump</a></li> <li><a href="http://hadoop.apache.org/" title="Distributed computing platform">Hadoop</a></li> <li><a href="http://hama.apache.org/" title="a Bulk Synchronous Parallel computing framework on top of Hadoop">Hama</a></li> <li><a href="http://hbase.apache.org/" title="Hadoop Database">HBase</a></li> <li><a href="http://helix.apache.org/" title="A cluster management framework for partitioned and replicated distributed resources">Helix</a></li> <li><a href="http://hive.apache.org/" title="Data warehouse infrastructure using the Hadoop Database">Hive</a></li> <li><a href="http://hc.apache.org/" title="Java toolset of low level HTTP components">HttpComponents</a></li> <li><a href="http://isis.apache.org/" title="Framework for rapidly developing domain-driven apps in Java">Isis</a></li> <li><a href="http://jackrabbit.apache.org/" title="Content Repository for Java">Jackrabbit</a></li> <li><a href="http://james.apache.org/" title="Java Apache Mail Enterprise Server">James</a></li> <li><a href="http://jclouds.apache.org/" title="Java cloud APIs and abstractions">jclouds</a></li> <li><a href="http://jena.apache.org/" title="Java framework for building Semantic Web applications">Jena</a></li> <li><a href="http://jmeter.apache.org/" title="Java performance and functional testing">JMeter</a></li> <li><a href="http://jspwiki.apache.org/" title="Leading open source WikiWiki engine, feature-rich and built around standard J2EE components (Java, servlets, JSP). ">JSPWiki</a></li> <li><a href="http://juddi.apache.org/" title="Java implementation of the Universal Description, Discovery, and Integration specification">jUDDI</a></li> <li><a href="http://kafka.apache.org/" title="Distributed publish-subscribe messaging system">Kafka</a></li> <li><a href="http://karaf.apache.org/" title="Server-side OSGi distribution">Karaf</a></li> <li><a href="http://knox.apache.org/" title="Simplify and normalize the deployment and implementation of secure Hadoop clusters">Knox</a></li> <li><a href="http://lenya.apache.org/" title="Content Management System">Lenya</a></li> <li><a href="http://libcloud.apache.org/" title="Unified interface to the cloud">Libcloud</a></li> <li><a href="http://logging.apache.org/" title="Cross-language logging services">Logging</a></li> <li><a href="http://lucene.apache.org/" title="Search engine library">Lucene</a></li> <li><a href="http://lucenenet.apache.org/" title="Search engine library targeted at .NET runtime users.">Lucene.Net</a></li> <li><a href="http://lucy.apache.org/" title="Search engine library for dynamic languages">Lucy</a></li> <li><a href="http://mahout.apache.org/" title="Scalable machine learning library">Mahout</a></li> <li><a href="http://manifoldcf.apache.org/" title="Framework for connecting source content repositories to target repositories or indexes.">ManifoldCF</a></li> <li><a href="http://marmotta.apache.org/" title="An Open Platform for Linked Data">Marmotta</a></li> <li><a href="http://maven.apache.org/" title="Java project management and comprehension tools">Maven</a></li> <li><a href="http://mesos.apache.org/" title="a cluster manager that provides efficient resource isolation and sharing across distributed applications">Mesos</a></li> <li><a href="http://mina.apache.org/" title="Multipurpose Infrastructure for Network Application">MINA</a></li> <li><a href="http://mrunit.apache.org/" title="Java library that helps developers unit test Apache Hadoop map reduce jobs">MRUnit</a></li> <li><a href="http://myfaces.apache.org/" title="JavaServer(tm) Faces implementation and components">MyFaces</a></li> <li><a href="http://nutch.apache.org/" title="Open Source Web Search Software">Nutch</a></li> <li><a href="http://ode.apache.org/" title="Orchestration Director Engine: Business Process Management (BPM), Process Orchestration and Workflow through service composition.">ODE</a></li> <li><a href="http://ofbiz.apache.org/" title="Open for Business: enterprise automation software">OFBiz</a></li> <li><a href="http://olingo.apache.org/" title="OASIS OData protocol libraries">Olingo</a></li> <li><a href="http://oltu.apache.org/" title="OAuth protocol implementation in Java">Oltu</a></li> <li><a href="http://onami.apache.org/" title="Development and maintenance of a set of Google Guice extensions">Onami</a></li> <li><a href="http://oodt.apache.org/" title="Object Oriented Data Technology (middleware metadata)">OODT</a></li> <li><a href="http://oozie.apache.org/" title="A workflow scheduler system to manage Apache Hadoop jobs.">Oozie</a></li> <li><a href="http://climate.apache.org/" title="Climate model evaluation">Open Climate Workbench</a></li> <li><a href="http://openjpa.apache.org/" title="OpenJPA: Object Relational Mapping for Java">OpenJPA</a></li> <li><a href="http://openmeetings.apache.org/" title="OpenMeetings: Web-Conferencing and real-time collaboration">OpenMeetings</a></li> <li><a href="http://opennlp.apache.org/" title="Machine learning based toolkit for the processing of natural language text">OpenNLP</a></li> <li><a href="http://openoffice.apache.org/" title="An open-source, office-document productivity suite">OpenOffice</a></li> <li><a href="http://openwebbeans.apache.org/" title="OpenWebBeans: JSR-299 Context and Dependency Injection for Java EE Platform Implementation">OpenWebBeans</a></li> <li><a href="http://pdfbox.apache.org/" title="Java library for working with PDF documents">PDFBox</a></li> <li><a href="http://perl.apache.org/" title="Dynamic websites using Perl">Perl</a></li> <li><a href="http://pig.apache.org/" title="Platform for analyzing large data sets">Pig</a></li> <li><a href="http://pivot.apache.org/" title="Rich Internet applications in Java">Pivot</a></li> <li><a href="http://poi.apache.org/" title="Java API for OLE 2 Compound and OOXML Documents">POI</a></li> <li><a href="http://portals.apache.org/" title="Portal technology">Portals</a></li> <li><a href="http://qpid.apache.org/" title="Multiple language implementation of the latest Advanced Message Queuing Protocol (AMQP)">Qpid</a></li> <li><a href="http://rave.apache.org/" title="Web and social mashup engine">Rave</a></li> <li><a href="http://river.apache.org/" title="Jini service oriented architecture">River</a></li> <li><a href="http://roller.apache.org/" title="Java blog server">Roller</a></li> <li><a href="http://santuario.apache.org/" title="XML Security in Java and C++">Santuario</a></li> <li><a href="http://servicemix.apache.org/" title="Enterprise Service Bus">ServiceMix</a></li> <li><a href="http://shindig.apache.org/" title="Opensocial Reference Implementation">Shindig</a></li> <li><a href="http://shiro.apache.org/" title="Powerful and easy-to-use application security framework">Shiro</a></li> <li><a href="http://sis.apache.org/" title="Spatial Information System">SIS</a></li> <li><a href="http://sling.apache.org/" title="Web Framework for JCR Content Repositories">Sling</a></li> <li><a href="http://spamassassin.apache.org/" title="Mail filter to identify spam">SpamAssassin</a></li> <li><a href="http://spark.apache.org/" title="Fast and general engine for large-scale data processing">Spark</a></li> <li><a href="http://sqoop.apache.org/" title="Bulk Data Transfer for Hadoop and Structured Datastores">Sqoop</a></li> <li><a href="http://stanbol.apache.org/" title="Reusable components for semantic content management">Stanbol</a></li> <li><a href="http://steve.apache.org/" title="Apache's Python based single transferable vote software system">STeVe</a></li> <li><a href="http://struts.apache.org/" title="Model 2 framework for building Java web applications">Struts</a></li> <li><a href="http://subversion.apache.org/" title="Version Control">Subversion</a></li> <li><a href="http://synapse.apache.org/" title="Enterprise Service Bus and Mediation Framework">Synapse</a></li> <li><a href="http://syncope.apache.org/" title="Managing digital identities in enterprise environments">Syncope</a></li> <li><a href="http://tapestry.apache.org/" title="Component-based Java Web Application Framework">Tapestry</a></li> <li><a href="http://tcl.apache.org/" title="Dynamic websites using TCL">Tcl</a></li> <li><a href="http://thrift.apache.org/" title="Framework for scalable cross-language services development">Thrift</a></li> <li><a href="http://tika.apache.org" title="Content Analysis and Detection Toolkit">Tika</a></li> <li><a href="http://tiles.apache.org/" title="A templating framework for web application user interfaces">Tiles</a></li> <li><a href="http://tomcat.apache.org/" title="A Java Servlet and JSP Container">Tomcat</a></li> <li><a href="http://tomee.apache.org/" title="Java EE Web Profile built on Tomcat">TomEE</a></li> <li><a href="http://trafficserver.apache.org/" title="A fast, scalable and extensible HTTP/1.1 compliant caching proxy server">Traffic Server</a></li> <li><a href="http://turbine.apache.org/" title="A Java Servlet Web Application Framework and associated component library">Turbine</a></li> <li><a href="http://tuscany.apache.org/" title="An SCA based Service Composition Framework">Tuscany</a></li> <li><a href="http://uima.apache.org/" title="Framework and annotators for unstructured information analysis">UIMA</a></li> <li><a href="http://vcl.apache.org/" title="Virtual Computing Lab">VCL</a></li> <li><a href="http://velocity.apache.org/" title="A Java Templating Engine">Velocity</a></li> <li><a href="http://ws.apache.org/" title="Projects related to Web Services">Web Services</a></li> <li><a href="http://whirr.apache.org/" title="Libraries for running Cloud Services">Whirr</a></li> <li><a href="http://wicket.apache.org/" title="Component-based Java Web Application Framework.">Wicket</a></li> <li><a href="http://wink.apache.org/" title="RESTful Web services Framework">Wink</a></li> <li><a href="http://wookie.apache.org/" title="Widgets for Applications">Wookie</a></li> <li><a href="http://xalan.apache.org/" title="XSLT processors in Java and C++">Xalan</a></li> <li><a href="http://xerces.apache.org/" title="XML parsers in Java, C++ and Perl">Xerces</a></li> <li><a href="http://xmlbeans.apache.org/" title="XML-Java binding tool">XMLBeans</a></li> <li><a href="http://xmlgraphics.apache.org/" title="Conversion from XML to graphical output">XML Graphics</a></li> <li><a href="http://zookeeper.apache.org/" title="Centralized service for maintaining configuration information">ZooKeeper</a></li> </ul> </div> <div class="grid_3"> <h4>Foundation</h4> <ul> <li><a href="/foundation/faq.html">FAQ</a></li> <li><a href="/foundation/glossary.html">Glossary</a></li> <li><a href="/licenses/" title="Overview of the Apache Licenese">Licenses</a></li> <li><a href="/foundation/marks/" title="Apache marks policies and listing">Trademarks</a></li> <li><a href="/foundation/news.html" title="Official news feed of Foundation announcements">News</a></li> <li><a href="/press/" title="Press, Media, and Analyst contact">Press Inquiries</a></li> <li><a href="/foundation/records/" title="Formal corporate records and board meeting minutes">Public Records</a></li> <li><a href="/foundation/mailinglists.html" title="Mailing lists and Apache">Mailing Lists</a></li> <li><a href="/foundation/sponsorship.html" title="Sponsor the Foundation">Sponsorship</a></li> <li><a href="/foundation/contributing.html" title="Donate to the Foundation">Donations</a></li> <li><a href="/foundation/buy_stuff.html" title="Buy Apache branded merchandise">Buy Stuff</a></li> <li><a href="/foundation/thanks.html" title="Thank you to our Sponsors">Thanks</a></li> <li><a href="/foundation/contact.html" title="Contact Us">Contact</a></li> </ul> </div> <div class="grid_3 suffix_1"> <h4>Foundation Projects</h4> <ul> <li><a href="http://attic.apache.org/" title="Inactive projects repository">Attic</a></li> <li><a href="/foundation/conferences.html" title="Meetings of developers and users">Conferences</a></li> <li><a href="http://community.apache.org/" title="Helping newcomers to the ASF">Community Development</a></li> <li><a href="http://incubator.apache.org/" title="Shepherd for new projects">Incubator</a></li> <li><a href="/dev/" title="ASF Infrastructure: Operations and howto documents for PMCs and contributors">Infrastructure</a></li> <li><a href="http://labs.apache.org/" title="The Innovation Laboratories of the Apache Software Foundation">Labs</a></li> <li><a href="/legal/" title="Legal Affairs">Legal Affairs</a></li> <li><a href="/press/" title="Public Relations">Public Relations</a></li> <li><a href="/security/" title="Security">Security</a></li> <li><a href="/travel/" title="Travel Assistance">Travel Assistance</a></li> </ul> </div> <div class="grid_3"> <h4>Community</h4> <ul> <li><a href="http://people.apache.org/" title="Apache committer homepages">People</a></li> <li><a href="/memorials/" title="In memoriam of past committers">Memorials</a></li> <li><a href="http://feathercast.apache.org/" title="Apache Podcasts">Feathercast</a></li> <li><a href="http://blogs.apache.org/" title="Apache Project Blogs">Project Blogs</a></li> <li><a href="http://planet.apache.org/committers/" title="Apache Committers' Blogs">PlanetApache</a></li> </ul> </div> <div class="grid_3"> <h4>How It Works</h4> <ul> <li><a href="/foundation/how-it-works.html">Introduction</a></li> <li><a href="/foundation/how-it-works.html#meritocracy">Meritocracy</a></li> <li><a href="/foundation/how-it-works.html#structure">Structure</a></li> <li><a href="/foundation/how-it-works.html#roles">Roles</a></li> <li><a href="/foundation/how-it-works.html#management">Collaboration</a></li> <li><a href="/foundation/how-it-works.html#incubator">Incubator</a></li> <li><a href="/foundation/how-it-works.html#other">Other entities</a></li> <li><a href="/foundation/glossary.html">Glossary</a></li> <li><a href="/foundation/voting.html">Voting</a></li> </ul> </div> </div> <div class="clear"></div> </div> <div id="copyright" class="container_16"> <p>Copyright &#169; 2012 The Apache Software Foundation, Licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0</a>.<br/>Apache and the Apache feather logo are trademarks of The Apache Software Foundation.</p> </div> </body> </html>
wts/tests/websocket/websocket_WebSocket_onerror_exists.html
hgl888/web-testing-service
<!DOCTYPE html> <!-- Copyright (c) 2012 Intel Corporation. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of works must retain the original copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the original copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Intel Corporation nor the names of its contributors may be used to endorse or promote products derived from this work without specific prior written permission. THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Authors: Ge, WeiX A <weix.a.ge@intel.com> Li, HaoX <haox.li@intel.com> --> <html> <head> <title>WebSocket Test: websocket_WebSocket_onerror_exists</title> <link rel="author" title="Intel" href="http://www.intel.com" /> <link rel="help" href="http://www.w3.org/TR/2012/CR-websockets-20120920/#handler-websocket-onerror" /> <meta name="flags" content=" " /> <meta name="assert" content="Check if WebSocket.onerror event exists" /> <script type="text/javascript" src="../resources/testharness.js"></script> <script type="text/javascript" src="../resources/testharnessreport.js"></script> <script type="text/javascript" src="support/websocket.js?pipe=sub"></script> </head> <body> <div id="log"></div> <script type="text/javascript"> test(function () { var webSocket = CreateWebSocket(false, false, false); assert_true("onerror" in webSocket, "WebSocket.onerror attribute exists"); }); </script> </body> </html>
tests/js/lib/components/c3-0.4.2/htdocs/samples/timeseries_date.html
jdi-framework/jdi-framework.github.io
<html> <head> <link rel="stylesheet" type="text/css" href="/css/c3.css"> </head> <body> <div id="chart"></div> <script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> <script src="/js/c3.js"></script> <script> var chart = c3.generate({ bindto: '#chart', data: { x : 'x', xFormat : '%Y%m%d', columns: [ ['x', new Date('2013-01-01 00:00:00'), new Date('2013-01-02 00:00:00'), new Date('2013-01-03 00:00:00'), new Date('2013-01-04 00:00:00'), new Date('2013-01-05 00:00:00'), new Date('2013-01-06 00:00:00')], ['sample', 30, 200, 100, 400, 150, 250], ['sample2', 130, 300, 200, 450, 250, 350] ] }, axis : { x : { type : 'timeseries', tick : { // format : "%m/%d" // https://github.com/mbostock/d3/wiki/Time-Formatting#wiki-format format : "%e %b %y" // https://github.com/mbostock/d3/wiki/Time-Formatting#wiki-format } } } }); setTimeout(function () { chart.load({ columns: [ ['sample', 200, 130, 90, 240, 130, 100], ['sample2', 300, 200, 160, 400, 250, 250] ] }); }, 1000); setTimeout(function () { chart.load({ columns: [ ['x', '20140101', '20140201', '20140301', '20140401', '20140501', '20140601'], ['sample', 500, 630, 690, 440, 630, 900], ['sample2', 400, 600, 460, 200, 350, 450] ] }); }, 2000); setTimeout(function () { chart.load({ columns: [ ['x', new Date('2014-01-02 00:00:00'), new Date('2014-02-02 00:00:00'), new Date('2014-03-02 00:00:00'), new Date('2014-04-02 00:00:00'), new Date('2014-05-02 00:00:00'), new Date('2014-06-02 00:00:00')], ['sample', 500, 630, 690, 440, 630, 900], ['sample2', 400, 600, 460, 200, 350, 450] ] }); }, 3000); </script> </body> </html>
ajax/libs/selectize.js/0.6.1/selectize.css
dlueth/cdnjs
/*! selectize.css - v0.6.1 | https://github.com/brianreavis/selectize.js | Apache License (v2) */ /* --- file: "src/selectize.css" --- */ /********************************************************** * THEME: "default" * **********************************************************/ .selectize-control.default.multi .selectize-input > div { color: #3d5d18; text-shadow: 0 1px 0 rgba(255,255,255,0.1); border: 1px solid #74b21e; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; background: #b8e76f; background: -moz-linear-gradient(top, #b8e76f 0%, #a9e25c 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#b8e76f), color-stop(100%,#a9e25c)); background: -webkit-linear-gradient(top, #b8e76f 0%,#a9e25c 100%); background: -o-linear-gradient(top, #b8e76f 0%,#a9e25c 100%); background: -ms-linear-gradient(top, #b8e76f 0%,#a9e25c 100%); background: linear-gradient(to bottom, #b8e76f 0%,#a9e25c 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b8e76f', endColorstr='#a9e25c',GradientType=0 ); -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1); -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.1); box-shadow: 0 1px 1px rgba(0,0,0,0.1); } .selectize-control.default.multi .selectize-input > div.active { border-color: #6f9839; background: #92c836; background: -moz-linear-gradient(top, #92c836 0%, #006e2e 0%, #92c836 0%, #7abc2c 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#92c836), color-stop(0%,#006e2e), color-stop(0%,#92c836), color-stop(100%,#7abc2c)); background: -webkit-linear-gradient(top, #92c836 0%,#006e2e 0%,#92c836 0%,#7abc2c 100%); background: -o-linear-gradient(top, #92c836 0%,#006e2e 0%,#92c836 0%,#7abc2c 100%); background: -ms-linear-gradient(top, #92c836 0%,#006e2e 0%,#92c836 0%,#7abc2c 100%); background: linear-gradient(to bottom, #92c836 0%,#006e2e 0%,#92c836 0%,#7abc2c 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#92c836', endColorstr='#7abc2c',GradientType=0 ); } .selectize-control.default.multi .selectize-input.disabled > div { border-color: #d8d8d8; background: #fafafa; color: #808080; } /********************************************************** * BASIC AESTHETIC STYLES (common) * **********************************************************/ .selectize-input, .selectize-control.single .selectize-input.focus { background: #fff; padding: 10px; cursor: text; display: inline-block; width: 100%; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); box-shadow: inset 0 1px 1px rgba(0,0,0,0.1); } .selectize-input.focus { -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.15); -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.15); box-shadow: inset 0 1px 2px rgba(0,0,0,0.15); } .selectize-input.dropdown-active { -webkit-border-radius: 3px 3px 0 0 !important; -moz-border-radius: 3px 3px 0 0 !important; border-radius: 3px 3px 0 0 !important; } .selectize-input.full { background-color: #f2f2f2; } .selectize-input.dropdown-active::before { content: ' '; display: block; position: absolute; background: #f2f2f2; height: 1px; bottom: 0; left: 0; right: 0; } .selectize-control.multi .selectize-input.has-items { padding-top: 8px !important; padding-bottom: 3px !important; } .selectize-control.multi .selectize-input > div { cursor: pointer; margin: 0 5px 5px 0; padding: 1px 5px; } .selectize-input > div:last-child { margin-right: 5px; } .selectize-input > input { margin-right: 2px !important; } .selectize-dropdown, .selectize-input, .selectize-control.single .selectize-input.dropdown-active { border: 1px solid #d0d0d0; } .selectize-dropdown { max-height: 200px; overflow-y: auto; overflow-x: hidden; background: #fff; margin-top: -1px; border-top: 0 none; -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.1); -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.1); box-shadow: 0 1px 3px rgba(0,0,0,0.1); -webkit-border-radius: 0 0 3px 3px; -moz-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; } .selectize-dropdown [data-selectable], .selectize-dropdown .optgroup-header { padding: 6px 9px; } .selectize-dropdown .optgroup:first-child .optgroup-header { border-top: 0 none; } .selectize-dropdown .optgroup-header { background: #fafafa; border-bottom: 1px solid #e8e8e8; border-top: 1px solid #e8e8e8; font-weight: bold; font-size: 0.8em; cursor: default; } .selectize-dropdown .create { color: #a0a0a0; } .selectize-dropdown .active { background-color: #fffceb; } .selectize-dropdown, .selectize-input, .selectize-input input { color: #303030; font-family: Helvetica, arial, sans-serif; font-size: 14px; line-height: 20px; -webkit-font-smoothing: antialiased; } .selectize-dropdown [data-selectable] .highlight { background: rgba(255,237,40,0.4); border-radius: 1px; } .selectize-input.disabled, .selectize-input.disabled * { cursor: default !important; } /********************************************************** * BASIC AESTHETIC STYLES (single) * **********************************************************/ .selectize-control.single .selectize-input { cursor: pointer; border-color: #b8b8b8; -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 0 #c6c6c6; -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 0 #c6c6c6; box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 2px 0 #e0e0e0, 0 3px 0 #c8c8c8, 0 4px 1px rgba(0,0,0,0.1); background: #f6f6f6; background: -moz-linear-gradient(top, #f5f5f5 0%, #efefef 100%); background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f5f5f5), color-stop(100%,#efefef)); background: -webkit-linear-gradient(top, #f5f5f5 0%,#efefef 100%); background: -o-linear-gradient(top, #f5f5f5 0%,#efefef 100%); background: -ms-linear-gradient(top, #f5f5f5 0%,#efefef 100%); background: linear-gradient(to bottom, #fafafa 0%,#f2f2f2 100%); filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f6f6f6', endColorstr='#e8e8e8',GradientType=0 ); } .selectize-control.single .selectize-input::after { content: ' '; display: block; position: absolute; top: 50%; right: 15px; margin-top: -2px; width: 0; height: 0; border-style: solid; border-width: 5px 5px 0 5px; border-color: #808080 transparent transparent transparent; } .selectize-control.single .selectize-input.dropdown-active::after { margin-top: -3px; border-width: 0 5px 5px 5px; border-color: transparent transparent #808080 transparent; } .selectize-control.single .selectize-input.disabled { opacity: 0.5; } /********************************************************** * BASIC AESTHETIC STYLES (multi) * **********************************************************/ .selectize-control.multi .selectize-input.disabled { background-color: #fafafa; } /********************************************************** * LAYOUT STYLES (mandatory) * **********************************************************/ .selectize-control { position: relative; } .selectize-input { overflow: hidden; position: relative; z-index: 1; } .selectize-input:after { content: ' '; display: block; clear: left; } .selectize-input .items { display: inline; } .selectize-input > * { vertical-align: baseline; display: -moz-inline-stack; display: inline-block; zoom: 1; *display: inline; } .selectize-input > input { max-width: 100% !important; text-indent: 0 !important; border: 0 none !important; background: none !important; padding: 0 !important; margin: 0; line-height: inherit !important; -webkit-user-select: auto !important; -webkit-box-shadow: none !important; -moz-box-shadow: none !important; box-shadow: none !important; } .selectize-input > input:focus { outline: none !important; } .selectize-dropdown { position: absolute; z-index: 2; } .selectize-dropdown > * { cursor: pointer; overflow: hidden; } .selectize-input, .selectize-dropdown { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } /* --- file: "src/plugins/drag_drop/plugin.css" --- */ .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder { visibility: visible !important; background: #f2f2f2 !important; background: rgba(0,0,0,0.06) !important; border: 0 none !important; -webkit-box-shadow: inset 0 0 12px 4px #fff; -moz-box-shadow: inset 0 0 12px 4px #fff; box-shadow: inset 0 0 12px 4px #fff; } .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after { content: '!'; visibility: hidden; } .selectize-control.plugin-drag_drop .ui-sortable-helper { -webkit-box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important; -moz-box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important; box-shadow: 0 2px 5px rgba(0,0,0,0.2) !important; } /* --- file: "src/plugins/optgroup_columns/plugin.css" --- */ .selectize-control.plugin-optgroup_columns .optgroup { border-right: 1px solid #f2f2f2; float: left; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .selectize-control.plugin-optgroup_columns .optgroup:last-child { border-right: 0 none; } .selectize-control.plugin-optgroup_columns .optgroup-header { border-top: 0 none; } /* --- file: "src/plugins/remove_button/plugin.css" --- */ .selectize-control.plugin-remove_button .item { position: relative; padding-right: 24px !important; } .selectize-control.plugin-remove_button .item .remove { position: absolute; top: 0; right: 0; bottom: 0; width: 17px; -moz-sizing: border-box; -webkit-sizing: border-box; box-sizing: border-box; text-align: center; font-size: 12px; font-weight: bold; color: inherit; vertical-align: middle; display: inline-block; padding: 7px 0 0 0; line-height: 8px; -webkit-border-radius: 0 2px 2px 0; -moz-border-radius: 0 2px 2px 0; border-radius: 0 2px 2px 0; border-left: 1px solid #74b21e; } .selectize-control.plugin-remove_button .item .remove:hover { border-left-color: #5e8f1a; background: rgba(50,90,0,0.15); }
tests/wpt/web-platform-tests/css/css-writing-modes/ch-units-vrl-002.html
UK992/servo
<!DOCTYPE html> <meta charset="utf-8"> <title>upright vertical writing mode and ch unit on table row groups</title> <link rel="author" title="Florian Rivoal" href="http://florian.rivoal.net/"> <link rel="help" href="https://www.w3.org/TR/css-values-3/#font-relative-lengths"> <link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#placement"> <link rel="help" href="https://www.w3.org/TR/css-writing-modes-3/#text-orientation"> <link rel="match" href="reference/ch-units-vrl-001-ref.html"> <meta name="assert" content="The font-metric dependent ch unit on table row groups takes the writing mode (with upright text-orientatino) into account, even though these properties do not apply to that element."> <style> table { font-size: 20px; border-collapse: collapse; border: none; } td { padding: 0; background: green; height: 5ch; } tbody { writing-mode: vertical-rl; text-orientation: upright; line-height: 5ch; /* using the inherited line-height (which the affects the content of the td) instead of directly using the height property, because sizing on table cells is complicated and out of scope for this. */ } div { font-size: 20px; color: transparent; } /* Sizing the reference divs using the actual 0 (after which the ch unit is based) in the inline dimensions, and using the ch unit in the block dimension, to make sure that the ch unit itself works well in the general case. If it doesn't, or if writing modes don't work, the divs won't be square. */ div:nth-of-type(1) { background: blue; writing-mode: vertical-rl; text-orientation: upright; width: 5ch; } div:nth-of-type(2) { background: orange; height: 5ch; display: inline-block; /* shrinkwrap */ } </style> <body> <p>Test passes if there is a <strong>green square</strong> below, and if it is the <strong>same size as the blue</strong> one, not the orange one. <p>If any of the 3 colored shapes is not a square, or if the orange and blue squares are the same size, the test fails. <table><tbody><tr><td>&nbsp;</td></tr></tbody></table> <div>00000</div> <div>00000</div> </body>
wp-content/themes/international-rescue/bower_components/jquery-throttle-debounce/docs/search/GeneralD.html
DylanPeti/InternationalRescue
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> <html><head><link rel="stylesheet" type="text/css" href="../styles/main.css"><script language=JavaScript src="../javascript/main.js"></script></head><body class="PopupSearchResultsPage" onLoad="NDOnLoad()"><script language=JavaScript><!-- if (browserType) {document.write("<div class=" + browserType + ">");if (browserVer) {document.write("<div class=" + browserVer + ">"); }}// --></script> <!-- Generated by Natural Docs, version 1.4 --> <!-- http://www.naturaldocs.org --> <!-- saved from url=(0026)http://www.naturaldocs.org --> <div id=Index><div class=SRStatus id=Loading>Loading...</div><table border=0 cellspacing=0 cellpadding=0><div class=SRResult id=SR_debounce><div class=IEntry><a href="../files/jquery-ba-throttle-debounce-js.html#jQuery.debounce" target=_parent class=ISymbol>debounce</a>, <span class=IParent>jQuery</span></div></div></table><div class=SRStatus id=Searching>Searching...</div><div class=SRStatus id=NoMatches>No Matches</div><script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults", "HTML"); searchResults.Search(); --></script></div><script language=JavaScript><!-- if (browserType) {if (browserVer) {document.write("</div>"); }document.write("</div>");}// --></script></body></html>
common/templates/form_find_contacts.html
codegooglecom/jaikuengine
{% load nonce %} <h2>Find some friends</h2> <div id="find-friends"> <form id="form-find-friends" action="" method="post"> <div class="box"> <p> {{SITE_NAME}} is able to look at list of your friends to see which are already using {{SITE_NAME}}. You will be redirected to another site so that you can authorize {{SITE_NAME}} to access a list of your contacts. </p> <p> We don't store any of this information. </p> </div> <div class="buttons"> {{request.user|noncefield:"lookup_remote_contacts"}} <input type="hidden" name="lookup_remote_contacts" /> <input type="hidden" name="nick" value="{{view.nick}}" /> {% block buttons %} <input type="submit" value="Lookup Contacts" /> {% endblock %} </div> </form> </div>
www/js/dojox/mobile/themes/iphone/EdgeToEdgeList.css
avz-cmf/zaboy-middleware
/* dojox.mobile.EdgeToEdgeList */ .mblEdgeToEdgeList { margin: 0; padding: 0; background-color: white; } .mblEdgeToEdgeList .mblListItem:last-child { border-bottom-color: #707c84; }
examples/everything.iframed.html
lannka/amphtml
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width"> <title>Test everything.amp.html as iframed embed.</title> <style> iframe { position: absolute; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100%; } </style> </head> <body> <iframe src="everything.amp.html#paddingTop=54&webview=1" frameborder="0" width="100%" height="100%" scrolling="no"> </iframe> </body> </html>
ajax/libs/ng-prettyjson/0.1.6/ng-prettyjson.min.css
Piicksarn/cdnjs
/** * @license ng-prettyjson - v0.1.5 * (c) 2013 Julien VALERY https://github.com/darul75/ng-prettyjson * License: MIT **/ pre{outline:1px solid #e9e9e9;padding:5px;margin:5px;width:100%;height:100%}.string{color:green}.number{color:#ff8c00}.boolean{color:#00f}.null{color:#ff00ff}.key{color:red}.sep{color:#000}
ajax/libs/oojs-ui/0.11.5/oojs-ui-apex-icons-movement.vector.rtl.css
tonytomov/cdnjs
/*! * OOjs UI v0.11.5 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2015 OOjs Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2015-06-17T00:59:03Z */ .oo-ui-icon-arrowNext { background-image: /* @embed */ url(themes/apex/images/icons/arrow-rtl.svg); } .oo-ui-icon-arrowLast { background-image: /* @embed */ url(themes/apex/images/icons/arrow-ltr.svg); } .oo-ui-icon-caretNext { background-image: /* @embed */ url(themes/apex/images/icons/caret-ltr.svg); } .oo-ui-icon-caretLast { background-image: /* @embed */ url(themes/apex/images/icons/caret-rtl.svg); } .oo-ui-icon-caretDown { background-image: /* @embed */ url(themes/apex/images/icons/caretDown.svg); } .oo-ui-icon-caretUp { background-image: /* @embed */ url(themes/apex/images/icons/caretUp.svg); } .oo-ui-icon-downTriangle { background-image: /* @embed */ url(themes/apex/images/icons/downTriangle.svg); } .oo-ui-icon-move { background-image: /* @embed */ url(themes/apex/images/icons/move.svg); } .oo-ui-icon-upTriangle { background-image: /* @embed */ url(themes/apex/images/icons/upTriangle.svg); }
ajax/libs/oojs-ui/0.12.0/oojs-ui-mediawiki-icons-content.vector.rtl.css
seogi1004/cdnjs
/*! * OOjs UI v0.12.0 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2015 OOjs Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2015-07-13T23:47:11Z */ .oo-ui-icon-article { background-image: /* @embed */ url(themes/mediawiki/images/icons/article-rtl.svg); } .oo-ui-icon-article-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/article-rtl-invert.svg); } .oo-ui-icon-articleCheck { background-image: /* @embed */ url(themes/mediawiki/images/icons/articleCheck-rtl.svg); } .oo-ui-icon-articleCheck-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/articleCheck-rtl-invert.svg); } .oo-ui-icon-articleSearch { background-image: /* @embed */ url(themes/mediawiki/images/icons/articleSearch-rtl.svg); } .oo-ui-icon-articleSearch-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/articleSearch-rtl-invert.svg); } .oo-ui-icon-book { background-image: /* @embed */ url(themes/mediawiki/images/icons/book-rtl.svg); } .oo-ui-icon-book-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/book-rtl-invert.svg); } .oo-ui-icon-citeArticle { background-image: /* @embed */ url(themes/mediawiki/images/icons/citeArticle-rtl.svg); } .oo-ui-icon-citeArticle-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/citeArticle-rtl-invert.svg); } .oo-ui-icon-die { background-image: /* @embed */ url(themes/mediawiki/images/icons/die-rtl.svg); } .oo-ui-icon-die-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/die-rtl-invert.svg); } .oo-ui-icon-download { background-image: /* @embed */ url(themes/mediawiki/images/icons/download-rtl.svg); } .oo-ui-icon-download-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/download-rtl-invert.svg); } .oo-ui-icon-folderPlaceholder { background-image: /* @embed */ url(themes/mediawiki/images/icons/folderPlaceholder-rtl.svg); } .oo-ui-icon-folderPlaceholder-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/folderPlaceholder-rtl-invert.svg); } .oo-ui-icon-journal { background-image: /* @embed */ url(themes/mediawiki/images/icons/journal-rtl.svg); } .oo-ui-icon-journal-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/journal-rtl-invert.svg); } .oo-ui-icon-newspaper { background-image: /* @embed */ url(themes/mediawiki/images/icons/newspaper-rtl.svg); } .oo-ui-icon-newspaper-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/newspaper-rtl-invert.svg); } .oo-ui-icon-upload { background-image: /* @embed */ url(themes/mediawiki/images/icons/upload-rtl.svg); } .oo-ui-icon-upload-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/upload-rtl-invert.svg); }
sites/all/modules/jquery_ui/jquery.datepick/ui-blitzer.datepick.css
himan5050/hpbc
/* ThemeRoller Blitzer override style sheet for jQuery date picker v4.0.6. */ @import "ui.datepick.css"; .ui-widget-header a, .ui-widget-header select { color: #ffffff; /* Set (.ui-widget-header a) colour from theme here */ } .ui-widget-header a:hover { background-color: #f6f6f6; /* Set (.ui-state-hover) colours from theme here */ color: #111111; } .ui-widget-header select, .ui-widget-header option { background-color: #cc0000; /* Set (.ui-widget-header) background colour from theme here */ } .ui-state-highlight a { color: #555555; /* Set (.ui-state-highlight) colour from theme here */ }
sites/all/themes/gui/esadhar/bower_components/pushy/css/pushy.css
esadhar/drupal-website
/*! Pushy - v0.9.2 - 2014-9-13 * Pushy is a responsive off-canvas navigation menu using CSS transforms & transitions. * https://github.com/christophery/pushy/ * by Christopher Yee */ /* Menu Appearance */ .pushy{ position: fixed; width: 200px; height: 100%; top: 0; z-index: 9999; background: #333332; font-size: 0.9em; font-weight: bold; -webkit-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7); -moz-box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7); box-shadow: inset -10px 0 6px -9px rgba(0, 0, 0, .7); overflow: auto; -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */ } .pushy a{ display: block; color: #b3b3b1; padding: 15px 30px; border-bottom: 1px solid rgba(0, 0, 0, .1); border-top: 1px solid rgba(255, 255, 255, .1); text-decoration: none; } .pushy a:hover{ background: #00b4ff; color: #FFF; } /* Menu Movement */ .pushy-left{ -webkit-transform: translate3d(-200px,0,0); -moz-transform: translate3d(-200px,0,0); -ms-transform: translate3d(-200px,0,0); -o-transform: translate3d(-200px,0,0); transform: translate3d(-200px,0,0); } .pushy-open{ -webkit-transform: translate3d(0,0,0); -moz-transform: translate3d(0,0,0); -ms-transform: translate3d(0,0,0); -o-transform: translate3d(0,0,0); transform: translate3d(0,0,0); } .container-push, .push-push{ -webkit-transform: translate3d(200px,0,0); -moz-transform: translate3d(200px,0,0); -ms-transform: translate3d(200px,0,0); -o-transform: translate3d(200px,0,0); transform: translate3d(200px,0,0); } /* Menu Transitions */ .pushy, #container, .push{ -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99); -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99); -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99); transition: transform .2s cubic-bezier(.16, .68, .43, .99); } /* Site Overlay */ .site-overlay{ display: none; } .pushy-active .site-overlay{ display: block; position: fixed; top: 0; right: 0; bottom: 0; left: 0; z-index: 9998; background-color: rgba(0,0,0,0.5); -webkit-animation: fade 500ms; -moz-animation: fade 500ms; -ms-animation: fade 500ms; -o-animation: fade 500ms; animation: fade 500ms; } @keyframes fade{ 0% { opacity: 0; } 100% { opacity: 1; } } @-moz-keyframes fade{ 0% { opacity: 0; } 100% { opacity: 1; } } @-webkit-keyframes fade{ 0% { opacity: 0; } 100% { opacity: 1; } } @-ms-keyframes fade{ 0% { opacity: 0; } 100% { opacity: 1; } }​ @-o-keyframes fade{ 0% { opacity: 0; } 100% { opacity: 1; } } /* Example Media Query */ @media screen and (max-width: 768px){ .pushy{ font-size: 1.0em; } }
lib/three/docs/api/objects/Sprite.html
albelax/SRA
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <base href="../../" /> <script src="list.js"></script> <script src="page.js"></script> <link type="text/css" rel="stylesheet" href="page.css" /> </head> <body> [page:Object3D] &rarr; <h1>[name]</h1> <div class="desc"> A sprite is a plane that always faces towards the camera, generally with a partially transparent texture applied.<br /><br /> Sprites do not cast shadows, setting <code>castShadow = true</code> will have no effect. </div> <h2>Example</h2> <code> var spriteMap = new THREE.TextureLoader().load( "sprite.png" ); var spriteMaterial = new THREE.SpriteMaterial( { map: spriteMap, color: 0xffffff } ); var sprite = new THREE.Sprite( spriteMaterial ); scene.add( sprite ); </code> <h2>Constructor</h2> <h3>[name]( [page:Material material] )</h3> <div> [page:Material material] - (optional) an instance of [page:SpriteMaterial]. Default is a white [page:SpriteMaterial].<br /><br /> Creates a new [name]. </div> <h2>Properties</h2> <div>See the base [page:Object3D] class for common properties.</div> <h3>[property:Boolean isSprite]</h3> <div> Used to check whether this or derived classes are sprites. Default is *true*.<br /><br /> You should not change this, as it used internally for optimisation. </div> <h3>[property:SpriteMaterial material]</h3> <div> An instance of [page:SpriteMaterial], defining the object's appearance. Default is a white [page:SpriteMaterial]. </div> <h2>Methods</h2> <div>See the base [page:Object3D] class for common methods.</div> <h3>[method:Sprite clone]()</h3> <div> Returns a clone of this Sprite object and any descendants. </div> <h3>[method:Array raycast]( [page:Raycaster raycaster], [page:Array intersects] )</h3> <div> Get intersections between a casted ray and this sprite. [page:Raycaster.intersectObject] will call this method. </div> <h2>Source</h2> [link:https://github.com/mrdoob/three.js/blob/master/src/[path].js src/[path].js] </body> </html>
thirdparty/rapidjson/doc/html/classrapidjson_1_1_generic_reader.html
brightchen/Impala
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>rapidjson: rapidjson::GenericReader&lt; Encoding, Allocator &gt; Class Template Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">rapidjson </div> <div id="projectbrief">A fast JSON parser/generator for C++ with both SAX/DOM style API</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.1.2 --> <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="pages.html"><span>Related&#160;Pages</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="annotated.html"><span>Class&#160;List</span></a></li> <li><a href="classes.html"><span>Class&#160;Index</span></a></li> <li><a href="hierarchy.html"><span>Class&#160;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Classes</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Functions</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(3)"><span class="SelectionMark">&#160;</span>Variables</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(4)"><span class="SelectionMark">&#160;</span>Typedefs</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(5)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><b>rapidjson</b></li><li class="navelem"><a class="el" href="classrapidjson_1_1_generic_reader.html">GenericReader</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-types">Public Types</a> &#124; <a href="#pub-methods">Public Member Functions</a> &#124; <a href="classrapidjson_1_1_generic_reader-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">rapidjson::GenericReader&lt; Encoding, Allocator &gt; Class Template Reference</div> </div> </div><!--header--> <div class="contents"> <p>SAX-style JSON parser. Use Reader for <a class="el" href="structrapidjson_1_1_u_t_f8.html" title="UTF-8 encoding.">UTF8</a> encoding and default allocator. <a href="classrapidjson_1_1_generic_reader.html#details">More...</a></p> <p><code>#include &lt;<a class="el" href="reader_8h_source.html">reader.h</a>&gt;</code></p> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2><a name="pub-types"></a> Public Types</h2></td></tr> <tr class="memitem:a78b168d1221917d1c4545cd79275f2c1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a78b168d1221917d1c4545cd79275f2c1"></a> typedef Encoding::Ch&#160;</td><td class="memItemRight" valign="bottom"><b>Ch</b></td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:aba3910976c0dc79134ee715d6075684b"><td class="memItemLeft" align="right" valign="top">&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="classrapidjson_1_1_generic_reader.html#aba3910976c0dc79134ee715d6075684b">GenericReader</a> (<a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> *allocator=0, size_t stackCapacity=kDefaultStackCapacity)</td></tr> <tr class="memdesc:aba3910976c0dc79134ee715d6075684b"><td class="mdescLeft">&#160;</td><td class="mdescRight">Constructor. <a href="#aba3910976c0dc79134ee715d6075684b"></a><br/></td></tr> <tr class="memitem:a62a1014258b1f716acc22782ee1cb269"><td class="memTemplParams" colspan="2">template&lt;unsigned parseFlags, typename Stream , typename Handler &gt; </td></tr> <tr class="memitem:a62a1014258b1f716acc22782ee1cb269"><td class="memTemplItemLeft" align="right" valign="top">bool&#160;</td><td class="memTemplItemRight" valign="bottom"><a class="el" href="classrapidjson_1_1_generic_reader.html#a62a1014258b1f716acc22782ee1cb269">Parse</a> (<a class="el" href="classrapidjson_1_1_stream.html">Stream</a> &amp;stream, <a class="el" href="classrapidjson_1_1_handler.html">Handler</a> &amp;handler)</td></tr> <tr class="memdesc:a62a1014258b1f716acc22782ee1cb269"><td class="mdescLeft">&#160;</td><td class="mdescRight">Parse JSON text. <a href="#a62a1014258b1f716acc22782ee1cb269"></a><br/></td></tr> <tr class="memitem:aa21dc3e432f6d178495e3d37e38cd6da"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa21dc3e432f6d178495e3d37e38cd6da"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><b>HasParseError</b> () const </td></tr> <tr class="memitem:aa08f6cb381c9de7f580792016c245068"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aa08f6cb381c9de7f580792016c245068"></a> const char *&#160;</td><td class="memItemRight" valign="bottom"><b>GetParseError</b> () const </td></tr> <tr class="memitem:a68d9cb6809b5f185b9c6f85c88683776"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a68d9cb6809b5f185b9c6f85c88683776"></a> size_t&#160;</td><td class="memItemRight" valign="bottom"><b>GetErrorOffset</b> () const </td></tr> </table> <a name="details" id="details"></a><h2>Detailed Description</h2> <div class="textblock"><h3>template&lt;typename Encoding, typename Allocator = MemoryPoolAllocator&lt;&gt;&gt;<br/> class rapidjson::GenericReader&lt; Encoding, Allocator &gt;</h3> <p>SAX-style JSON parser. Use Reader for <a class="el" href="structrapidjson_1_1_u_t_f8.html" title="UTF-8 encoding.">UTF8</a> encoding and default allocator. </p> <p><a class="el" href="classrapidjson_1_1_generic_reader.html" title="SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator.">GenericReader</a> parses JSON text from a stream, and send events synchronously to an object implementing <a class="el" href="classrapidjson_1_1_handler.html" title="Concept for receiving events from GenericReader upon parsing.">Handler</a> concept.</p> <p>It needs to allocate a stack for storing a single decoded string during non-destructive parsing.</p> <p>For in-situ parsing, the decoded string is directly written to the source text string, no temporary buffer is required.</p> <p>A <a class="el" href="classrapidjson_1_1_generic_reader.html" title="SAX-style JSON parser. Use Reader for UTF8 encoding and default allocator.">GenericReader</a> object can be reused for parsing multiple JSON text.</p> <dl class="tparams"><dt>Template Parameters</dt><dd> <table class="tparams"> <tr><td class="paramname"><a class="el" href="classrapidjson_1_1_encoding.html" title="Concept for encoding of Unicode characters.">Encoding</a></td><td><a class="el" href="classrapidjson_1_1_encoding.html" title="Concept for encoding of Unicode characters.">Encoding</a> of both the stream and the parse output. </td></tr> <tr><td class="paramname"><a class="el" href="classrapidjson_1_1_allocator.html" title="Concept for allocating, resizing and freeing memory block.">Allocator</a></td><td><a class="el" href="classrapidjson_1_1_allocator.html" title="Concept for allocating, resizing and freeing memory block.">Allocator</a> type for stack. </td></tr> </table> </dd> </dl> </div><h2>Constructor &amp; Destructor Documentation</h2> <a class="anchor" id="aba3910976c0dc79134ee715d6075684b"></a> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;typename Encoding, typename Allocator = MemoryPoolAllocator&lt;&gt;&gt; </div> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname"><a class="el" href="classrapidjson_1_1_generic_reader.html">rapidjson::GenericReader</a>&lt; <a class="el" href="classrapidjson_1_1_encoding.html">Encoding</a>, <a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> &gt;::<a class="el" href="classrapidjson_1_1_generic_reader.html">GenericReader</a> </td> <td>(</td> <td class="paramtype"><a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> *&#160;</td> <td class="paramname"><em>allocator</em> = <code>0</code>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype">size_t&#160;</td> <td class="paramname"><em>stackCapacity</em> = <code>kDefaultStackCapacity</code>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Constructor. </p> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">allocator</td><td>Optional allocator for allocating stack memory. (Only use for non-destructive parsing) </td></tr> <tr><td class="paramname">stackCapacity</td><td>stack capacity in bytes for storing a single decoded string. (Only use for non-destructive parsing) </td></tr> </table> </dd> </dl> </div> </div> <h2>Member Function Documentation</h2> <a class="anchor" id="a62a1014258b1f716acc22782ee1cb269"></a> <div class="memitem"> <div class="memproto"> <div class="memtemplate"> template&lt;typename Encoding, typename Allocator = MemoryPoolAllocator&lt;&gt;&gt; </div> <div class="memtemplate"> template&lt;unsigned parseFlags, typename Stream , typename Handler &gt; </div> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">bool <a class="el" href="classrapidjson_1_1_generic_reader.html">rapidjson::GenericReader</a>&lt; <a class="el" href="classrapidjson_1_1_encoding.html">Encoding</a>, <a class="el" href="classrapidjson_1_1_allocator.html">Allocator</a> &gt;::Parse </td> <td>(</td> <td class="paramtype"><a class="el" href="classrapidjson_1_1_stream.html">Stream</a> &amp;&#160;</td> <td class="paramname"><em>stream</em>, </td> </tr> <tr> <td class="paramkey"></td> <td></td> <td class="paramtype"><a class="el" href="classrapidjson_1_1_handler.html">Handler</a> &amp;&#160;</td> <td class="paramname"><em>handler</em>&#160;</td> </tr> <tr> <td></td> <td>)</td> <td></td><td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Parse JSON text. </p> <dl class="tparams"><dt>Template Parameters</dt><dd> <table class="tparams"> <tr><td class="paramname">parseFlags</td><td>Combination of ParseFlag. </td></tr> <tr><td class="paramname"><a class="el" href="classrapidjson_1_1_stream.html" title="Concept for reading and writing characters.">Stream</a></td><td>Type of input stream. </td></tr> <tr><td class="paramname"><a class="el" href="classrapidjson_1_1_handler.html" title="Concept for receiving events from GenericReader upon parsing.">Handler</a></td><td>Type of handler which must implement <a class="el" href="classrapidjson_1_1_handler.html" title="Concept for receiving events from GenericReader upon parsing.">Handler</a> concept. </td></tr> </table> </dd> </dl> <dl class="params"><dt>Parameters</dt><dd> <table class="params"> <tr><td class="paramname">stream</td><td>Input stream to be parsed. </td></tr> <tr><td class="paramname">handler</td><td>The handler to receive events. </td></tr> </table> </dd> </dl> <dl class="section return"><dt>Returns</dt><dd>Whether the parsing is successful. </dd></dl> </div> </div> <hr/>The documentation for this class was generated from the following file:<ul> <li>D:/rapidjson_version0.1x/include/rapidjson/<a class="el" href="reader_8h_source.html">reader.h</a></li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Fri Nov 16 2012 21:08:20 for rapidjson by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.1.2 </small></address> </body> </html>
_includes/author-profile.html
phischroeder/phischroeder.github.io
{% assign author = page.author | default: page.authors[0] | default: site.author %} {% assign author = site.data.authors[author] | default: author %} <div itemscope itemtype="https://schema.org/Person"> {% if author.avatar %} <div class="author__avatar"> {% if author.home %} <a href="{{ author.home | relative_url }}"> <img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image"> </a> {% else %} <img src="{{ author.avatar | relative_url }}" alt="{{ author.name }}" itemprop="image"> {% endif %} </div> {% endif %} <div class="author__content"> {% if author.home %} <a href="{{ author.home | relative_url }}"><h3 class="author__name" itemprop="name">{{ author.name }}</h3></a> {% else %} <h3 class="author__name" itemprop="name">{{ author.name }}</h3> {% endif %} {% if author.bio %} <div class="author__bio" itemprop="description"> {{ author.bio | markdownify }} </div> {% endif %} </div> <div class="author__urls-wrapper"> <button class="btn btn--inverse">{{ site.data.ui-text[site.locale].follow_label | remove: ":" | default: "Follow" }}</button> <ul class="author__urls social-icons"> {% if author.location %} <li itemprop="homeLocation" itemscope itemtype="https://schema.org/Place"> <i class="fas fa-fw fa-map-marker-alt" aria-hidden="true"></i> <span itemprop="name">{{ author.location }}</span> </li> {% endif %} {% if author.links %} {% for link in author.links %} {% if link.label and link.url %} <li><a href="{{ link.url }}" rel="nofollow noopener noreferrer"><i class="{{ link.icon | default: 'fas fa-link' }}" aria-hidden="true"></i><span class="label">{{ link.label }}</span></a></li> {% endif %} {% endfor %} {% endif %} {% if author.uri %} <li> <a href="{{ author.uri }}" itemprop="url"> <i class="fas fa-fw fa-link" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].website_label | default: "Website" }}</span> </a> </li> {% endif %} {% if author.email %} <li> <a href="mailto:{{ author.email }}"> <meta itemprop="email" content="{{ author.email }}" /> <i class="fas fa-fw fa-envelope-square" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].email_label | default: "Email" }}</span> </a> </li> {% endif %} {% if author.keybase %} <li> <a href="https://keybase.io/{{ author.keybase }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fas fa-fw fa-key" aria-hidden="true"></i><span class="label">Keybase</span> </a> </li> {% endif %} {% if author.twitter %} <li> <a href="https://twitter.com/{{ author.twitter }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-twitter-square" aria-hidden="true"></i><span class="label">Twitter</span> </a> </li> {% endif %} {% if author.facebook %} <li> <a href="https://www.facebook.com/{{ author.facebook }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-facebook-square" aria-hidden="true"></i><span class="label">Facebook</span> </a> </li> {% endif %} {% if author.linkedin %} <li> <a href="https://www.linkedin.com/in/{{ author.linkedin }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-linkedin" aria-hidden="true"></i><span class="label">LinkedIn</span> </a> </li> {% endif %} {% if author.xing %} <li> <a href="https://www.xing.com/profile/{{ author.xing }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-xing-square" aria-hidden="true"></i><span class="label">XING</span> </a> </li> {% endif %} {% if author.instagram %} <li> <a href="https://instagram.com/{{ author.instagram }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-instagram" aria-hidden="true"></i><span class="label">Instagram</span> </a> </li> {% endif %} {% if author.tumblr %} <li> <a href="https://{{ author.tumblr }}.tumblr.com" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-tumblr-square" aria-hidden="true"></i><span class="label">Tumblr</span> </a> </li> {% endif %} {% if author.bitbucket %} <li> <a href="https://bitbucket.org/{{ author.bitbucket }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-bitbucket" aria-hidden="true"></i><span class="label">Bitbucket</span> </a> </li> {% endif %} {% if author.github %} <li> <a href="https://github.com/{{ author.github }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-github" aria-hidden="true"></i><span class="label">GitHub</span> </a> </li> {% endif %} {% if author.gitlab %} <li> <a href="https://gitlab.com/{{ author.gitlab }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-gitlab" aria-hidden="true"></i><span class="label">GitLab</span> </a> </li> {% endif %} {% if author.stackoverflow %} <li> <a href="https://stackoverflow.com/users/{{ author.stackoverflow }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-stack-overflow" aria-hidden="true"></i><span class="label">Stack Overflow</span> </a> </li> {% endif %} {% if author.lastfm %} <li> <a href="https://last.fm/user/{{ author.lastfm }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-lastfm-square" aria-hidden="true"></i><span class="label">Last.fm</span> </a> </li> {% endif %} {% if author.dribbble %} <li> <a href="https://dribbble.com/{{ author.dribbble }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-dribbble" aria-hidden="true"></i><span class="label">Dribbble</span> </a> </li> {% endif %} {% if author.pinterest %} <li> <a href="https://www.pinterest.com/{{ author.pinterest }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-pinterest" aria-hidden="true"></i><span class="label">Pinterest</span> </a> </li> {% endif %} {% if author.foursquare %} <li> <a href="https://foursquare.com/{{ author.foursquare }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-foursquare" aria-hidden="true"></i><span class="label">Foursquare</span> </a> </li> {% endif %} {% if author.steam %} <li> <a href="https://steamcommunity.com/id/{{ author.steam }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-steam" aria-hidden="true"></i><span class="label">Steam</span> </a> </li> {% endif %} {% if author.youtube %} {% if author.youtube contains "://" %} <li> <a href="{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-youtube" aria-hidden="true"></i><span class="label">YouTube</span> </a> </li> {% elsif author.youtube %} <li> <a href="https://www.youtube.com/user/{{ author.youtube }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-youtube" aria-hidden="true"></i><span class="label">YouTube</span> </a> </li> {% endif %} {% endif %} {% if author.soundcloud %} <li> <a href="https://soundcloud.com/{{ author.soundcloud }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-soundcloud" aria-hidden="true"></i><span class="label">SoundCloud</span> </a> </li> {% endif %} {% if author.weibo %} <li> <a href="https://www.weibo.com/{{ author.weibo }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-weibo" aria-hidden="true"></i><span class="label">Weibo</span> </a> </li> {% endif %} {% if author.flickr %} <li> <a href="https://www.flickr.com/{{ author.flickr }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-flickr" aria-hidden="true"></i><span class="label">Flickr</span> </a> </li> {% endif %} {% if author.codepen %} <li> <a href="https://codepen.io/{{ author.codepen }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-codepen" aria-hidden="true"></i><span class="label">CodePen</span> </a> </li> {% endif %} {% if author.vine %} <li> <a href="https://vine.co/u/{{ author.vine }}" itemprop="sameAs" rel="nofollow noopener noreferrer"> <i class="fab fa-fw fa-vine" aria-hidden="true"></i><span class="label">{{ site.data.ui-text[site.locale].email_label | default: "Email" }}</span> </a> </li> {% endif %} {% include author-profile-custom-links.html %} </ul> </div> </div>
views/partials/analytics.html
mlucool/jsbin
{{#if analyticsId}} <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','//www.google-analytics.com/analytics.js','ga'); ga('create', '{{#if analyticsAltId}}{{analyticsAltId}}{{else}}{{analyticsId}}{{/if}}', 'jsbin.com'); ga('require', 'linkid', 'linkid.js'); ga('require', 'displayfeatures'); ga('send', 'pageview'); {{#if user}}ga('set', 'dimension1', '{{user.id}}');{{/if}} </script> {{/if}}
third_party/blink/web_tests/fast/sub-pixel/fractional-border-location-and-size-expected.html
nwjs/chromium.src
<!DOCTYPE html> <style> div { border: solid 1px #000; position: absolute; top: 127.223px; left: 80.334px; width: 360.4px; height: 170.3px; overflow: hidden; } </style> <div></div>
third_party/blink/web_tests/fast/multicol/span/as-inner-multicol.html
scheib/chromium
<!DOCTYPE html> <p>Test that an inner multicol that's also a spanner is rendered correctly.</p> <p>There should be a green cross below. The word "PASS" should be seen on its right arm.</p> <div style="-webkit-column-count:2; line-height:50px; width:300px; -webkit-column-rule:100px solid green;"> <br> <br> <br> <div style="-webkit-column-span:all; -webkit-columns:3; -webkit-column-gap:0; text-align:center; color:white; background:green;"> <br><br><br><br><br>PASS </div> <br> <br> <br> </div>
tos-laimas-compass-win32-x64/resources/app/node_modules/openlayers/examples/getfeatureinfo-image.html
LeoLombardi/tos-laimas-compass
--- layout: example.html title: WMS GetFeatureInfo (Image Layer) shortdesc: Using an image WMS source with GetFeatureInfo requests docs: > This example shows how to trigger WMS GetFeatureInfo requests on click for a WMS image layer. Additionally <code>map.forEachLayerAtPixel</code> is used to change the mouse pointer when hovering a non-transparent pixel on the map. tags: "getfeatureinfo, forEachLayerAtPixel" --- <div id="map" class="map"></div> <div id="info">&nbsp;</div>
third_party/blink/web_tests/external/wpt/css/css-contain/contain-style-breaks-004.html
nwjs/chromium.src
<!doctype html> <html lang=en> <meta charset=utf-8> <title>CSS-contain test: style containment and break-before</title> <link rel="author" title="Florian Rivoal" href="https://florian.rivoal.net"> <meta name=flags content=""> <meta name=assert content="style containment is not (any longer) supposed to have any effect on the break-before property."> <link rel="match" href="reference/contain-style-breaks-004-ref.html"> <link rel=help href="https://drafts.csswg.org/css-contain-1/#containment-style"> <style> article { columns: 2 1ch; column-gap: 0; float: left; font-family: monospace; margin-right: 3em; line-height: 1; height: 4em; column-fill: auto; } div > div:last-of-type { break-before: column; } #test > div { contain: style; } </style> <p>Test passes if there are two identical blocks “A” letters below. <article id=ref> <div> <div>A<br>A</div> <div>A<br>A</div> </div> </article> <article id=test> <div> <div>A<br>A</div> <div>A<br>A</div> </div> </article> <!-- Having two blocks to avoid making browsers that don't support the property at all fail. Since containment is supposed to have no effect, failing such browsers would not be useful. -->
test/cases/scope.nested.css
jameswomack/stylus
body { font: 5; } body .large { font: 10; } body .other { font: 15; }
simona_piechart/handsontable-0.19.0/demo/column_freeze.html
siansell/perch-cms-fieldtype-piechart
<!doctype html> <html> <head> <meta charset='utf-8'> <title>Manual Column Freeze - Handsontable</title> <!-- Loading Handsontable (full distribution that includes all dependencies) --> <link data-jsfiddle="common" rel="stylesheet" media="screen" href="../dist/handsontable.css"> <link data-jsfiddle="common" rel="stylesheet" media="screen" href="../dist/pikaday/pikaday.css"> <script data-jsfiddle="common" src="../dist/pikaday/pikaday.js"></script> <script data-jsfiddle="common" src="../dist/moment/moment.js"></script> <script data-jsfiddle="common" src="../dist/zeroclipboard/ZeroClipboard.js"></script> <script data-jsfiddle="common" src="../dist/handsontable.js"></script> <!-- Loading demo dependencies. They are used here only to enhance the examples on this page --> <link data-jsfiddle="common" rel="stylesheet" media="screen" href="css/samples.css?20140331"> <script src="js/samples.js"></script> <script src="js/highlight/highlight.pack.js"></script> <link rel="stylesheet" media="screen" href="js/highlight/styles/github.css"> <link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css"> <!-- Facebook open graph. Don't copy this to your project :) --> <meta property="og:title" content="Manual Column Freeze"> <meta property="og:description" content="This page shows how to configure Handsontable Manual Column Freeze Plugin"> <meta property="og:url" content="http://handsontable.com/demo/column_freeze.html"> <meta property="og:image" content="http://handsontable.com/demo/image/og-image.png"> <meta property="og:image:type" content="image/png"> <meta property="og:image:width" content="409"> <meta property="og:image:height" content="164"> <link rel="canonical" href="http://handsontable.com/demo/column_freeze.html"> <!-- Google Analytics for GitHub Page. Don't copy this to your project :) --> <script src="js/ga.js"></script> </head> <body> <div class="wrapper"> <div class="wrapper-row"> <div id="global-menu-clone"> <h1><a href="../index.html">Handsontable</a></h1> </div> <div id="container"> <div class="columnLayout"> <div class="rowLayout"> <div class="descLayout"> <div class="pad" data-jsfiddle="example1"> <h2>Manual Column Freeze</h2> <p>In order to manually freeze a column (in another words - make it fixed), you need to set the <code>manualColumnFreeze</code> config item to <code>true</code> in Handsontable initialization.</p> <p>When the Manual Column Freeze plugin is enabled, you can freeze any non-fixed column and unfreeze any fixed column in your Handsontable instance using the Context Menu.</p> <p>Note: to properly use this plugin, you need to have the Context Menu plugin enabled.</p> <div id="example1" style="width: 400px; height: 300px; overflow: hidden;"></div> <p> <button name="dump" data-instance="ht" data-dump="#example1" title="Prints current data source to Firebug/Chrome Dev Tools"> Dump data to console </button> </p> </div> </div> <div class="codeLayout"> <div class="pad"> <div class="jsFiddle"> <button class="jsFiddleLink" data-runfiddle="example1">Edit in jsFiddle</button> </div> <script data-jsfiddle="example1"> var myData = Handsontable.helper.createSpreadsheetData(1000, 100); var container = document.getElementById('example1'); var ht = new Handsontable(container, { data: myData, rowHeaders: true, colHeaders: true, fixedColumnsLeft: 2, contextMenu: true, manualColumnFreeze: true }); </script> </div> </div> </div> <div class="footer-text"> </div> </div> </div> </div> </div> <div id="outside-links-wrapper"></div> </body> </html>
wp-content/themes/capsule/ui/lib/ace/lib/ace/theme/mono_industrial.css
thebillkidy/desple.com
.ace-mono-industrial .ace_gutter { background: #1d2521; color: #C5C9C9 } .ace-mono-industrial .ace_print-margin { width: 1px; background: #555651 } .ace-mono-industrial .ace_scroller { background-color: #222C28 } .ace-mono-industrial .ace_text-layer { color: #FFFFFF } .ace-mono-industrial .ace_cursor { border-left: 2px solid #FFFFFF } .ace-mono-industrial .ace_overwrite-cursors .ace_cursor { border-left: 0px; border-bottom: 1px solid #FFFFFF } .ace-mono-industrial .ace_marker-layer .ace_selection { background: rgba(145, 153, 148, 0.40) } .ace-mono-industrial.ace_multiselect .ace_selection.ace_start { box-shadow: 0 0 3px 0px #222C28; border-radius: 2px } .ace-mono-industrial .ace_marker-layer .ace_step { background: rgb(102, 82, 0) } .ace-mono-industrial .ace_marker-layer .ace_bracket { margin: -1px 0 0 -1px; border: 1px solid rgba(102, 108, 104, 0.50) } .ace-mono-industrial .ace_marker-layer .ace_active-line { background: rgba(12, 13, 12, 0.25) } .ace-mono-industrial .ace_gutter-active-line { background-color: rgba(12, 13, 12, 0.25) } .ace-mono-industrial .ace_marker-layer .ace_selected-word { border: 1px solid rgba(145, 153, 148, 0.40) } .ace-mono-industrial .ace_invisible { color: rgba(102, 108, 104, 0.50) } .ace-mono-industrial .ace_string { background-color: #151C19; color: #FFFFFF } .ace-mono-industrial .ace_keyword, .ace-mono-industrial .ace_meta { color: #A39E64 } .ace-mono-industrial .ace_constant, .ace-mono-industrial .ace_constant.ace_character, .ace-mono-industrial .ace_constant.ace_character.ace_escape, .ace-mono-industrial .ace_constant.ace_numeric, .ace-mono-industrial .ace_constant.ace_other { color: #E98800 } .ace-mono-industrial .ace_entity.ace_name.ace_function, .ace-mono-industrial .ace_keyword.ace_operator, .ace-mono-industrial .ace_variable { color: #A8B3AB } .ace-mono-industrial .ace_invalid { color: #FFFFFF; background-color: rgba(153, 0, 0, 0.68) } .ace-mono-industrial .ace_support.ace_constant { color: #C87500 } .ace-mono-industrial .ace_fold { background-color: #A8B3AB; border-color: #FFFFFF } .ace-mono-industrial .ace_support.ace_function { color: #588E60 } .ace-mono-industrial .ace_entity.ace_name, .ace-mono-industrial .ace_support.ace_class, .ace-mono-industrial .ace_support.ace_type { color: #5778B6 } .ace-mono-industrial .ace_storage { color: #C23B00 } .ace-mono-industrial .ace_variable.ace_language, .ace-mono-industrial .ace_variable.ace_parameter { color: #648BD2 } .ace-mono-industrial .ace_comment { color: #666C68; background-color: #151C19 } .ace-mono-industrial .ace_entity.ace_other.ace_attribute-name { color: #909993 } .ace-mono-industrial .ace_markup.ace_underline { text-decoration: underline } .ace-mono-industrial .ace_entity.ace_name.ace_tag { color: #A65EFF } .ace-mono-industrial .ace_indent-guide { background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWNQ0tH4zzBz5sz/ABAOBECKH+evAAAAAElFTkSuQmCC) right repeat-y }
third_party/WebKit/LayoutTests/fast/events/remove-target-in-mouseup-insertback.html
js0701/chromium-crosswalk
<!DOCTYPE html> <html> <body> <p>This test ensures WebKit does not fire click event on a node that has been removed and inserted back in mouseup event.</p> <div id="test"><span id="target" onmouseup="mouseup()" onclick="test.innerHTML = 'FAIL';">click here</span></div> <script> var test = document.getElementById('test'); var target = document.getElementById('target'); function mouseup() { test.appendChild(document.createTextNode('PASS')); test.removeChild(target); test.appendChild(target); } if (window.testRunner) { testRunner.dumpAsText(); if (!window.eventSender) test.innerHTML = 'FAIL - this test requires eventSender'; else { eventSender.mouseMoveTo(target.offsetLeft + target.offsetWidth / 2, target.offsetTop + target.offsetHeight / 2); eventSender.mouseDown(); eventSender.leapForward(200); eventSender.mouseUp(); test.removeChild(target); } } </script> </body> </html>
usr/share/doc/ncurses-5.9/html/man/form_field_new.3x.html
Iotlab-404/LFS
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN"> <!-- * t **************************************************************************** * Copyright (c) 1998-2007,2010 Free Software Foundation, Inc. * * * * Permission is hereby granted, free of charge, to any person obtaining a * * copy of this software and associated documentation files (the * * "Software"), to deal in the Software without restriction, including * * without limitation the rights to use, copy, modify, merge, publish, * * distribute, distribute with modifications, sublicense, and/or sell * * copies of the Software, and to permit persons to whom the Software is * * furnished to do so, subject to the following conditions: * * * * The above copyright notice and this permission notice shall be included * * in all copies or substantial portions of the Software. * * * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS * * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. * * IN NO EVENT SHALL THE ABOVE COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, * * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR * * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR * * THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * * * Except as contained in this notice, the name(s) of the above copyright * * holders shall not be used in advertising or otherwise to promote the * * sale, use or other dealings in this Software without prior written * * authorization. * **************************************************************************** * @Id: form_field_new.3x,v 1.18 2010/12/04 18:40:45 tom Exp @ --> <HTML> <HEAD> <TITLE>form_field_new 3x</TITLE> <link rev=made href="mailto:bug-ncurses@gnu.org"> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </HEAD> <BODY> <H1>form_field_new 3x</H1> <HR> <PRE> <!-- Manpage converted by man2html 3.0.1 --> <STRONG><A HREF="form_field_new.3x.html">form_field_new(3x)</A></STRONG> <STRONG><A HREF="form_field_new.3x.html">form_field_new(3x)</A></STRONG> </PRE> <H2>NAME</H2><PRE> <STRONG>form_field_new</STRONG> - create and destroy form fields </PRE> <H2>SYNOPSIS</H2><PRE> <STRONG>#include</STRONG> <STRONG>&lt;form.h&gt;</STRONG> FIELD *new_field(int height, int width, int toprow, int leftcol, int offscreen, int nbuffers); FIELD *dup_field(FIELD *field, int toprow, int leftcol); FIELD *link_field(FIELD *field, int toprow, int leftcol); int free_field(FIELD *field); </PRE> <H2>DESCRIPTION</H2><PRE> The function <STRONG>new_field</STRONG> allocates a new field and initial- izes it from the parameters given: height, width, row of upper-left corner, column of upper-left corner, number off-screen rows, and number of additional working buffers. The function <STRONG>dup_field</STRONG> duplicates a field at a new loca- tion. Most attributes (including current contents, size, validation type, buffer count, growth threshold, justifi- cation, foreground, background, pad character, options, and user pointer) are copied. Field status and the field page bit are not copied. The function <STRONG>link_field</STRONG> acts like <STRONG>dup_field</STRONG>, but the new field shares buffers with its parent. Attribute data is separate. The function <STRONG>free_field</STRONG> de-allocates storage associated with a field. </PRE> <H2>RETURN VALUE</H2><PRE> The function, <STRONG>new_field</STRONG>, <STRONG>dup_field</STRONG>, <STRONG>link_field</STRONG> return <STRONG>NULL</STRONG> on error. They set errno according to their success: <STRONG>E_OK</STRONG> The routine succeeded. <STRONG>E_BAD_ARGUMENT</STRONG> Routine detected an incorrect or out-of-range argu- ment. <STRONG>E_SYSTEM_ERROR</STRONG> System error occurred, e.g., malloc failure. The function <STRONG>free_field</STRONG> returns one of the following: <STRONG>E_OK</STRONG> The routine succeeded. <STRONG>E_BAD_ARGUMENT</STRONG> Routine detected an incorrect or out-of-range argu- ment. <STRONG>E_CONNECTED</STRONG> field is connected. </PRE> <H2>SEE ALSO</H2><PRE> <STRONG><A HREF="ncurses.3x.html">curses(3x)</A></STRONG>, <STRONG><A HREF="form.3x.html">form(3x)</A></STRONG>. </PRE> <H2>NOTES</H2><PRE> The header file <STRONG>&lt;form.h&gt;</STRONG> automatically includes the header file <STRONG>&lt;curses.h&gt;</STRONG>. </PRE> <H2>PORTABILITY</H2><PRE> These routines emulate the System V forms library. They were not supported on Version 7 or BSD versions. It may be unwise to count on the set of attributes copied by <STRONG>dup_field</STRONG> being portable; the System V forms library documents are not very explicit about what gets copied and what does not. </PRE> <H2>AUTHORS</H2><PRE> Juergen Pfeifer. Manual pages and adaptation for new curses by Eric S. Raymond. <STRONG><A HREF="form_field_new.3x.html">form_field_new(3x)</A></STRONG> </PRE> <HR> <ADDRESS> Man(1) output converted with <a href="http://www.oac.uci.edu/indiv/ehood/man2html.html">man2html</a> </ADDRESS> </BODY> </HTML>
third_party/blink/web_tests/virtual/text-antialias/international/iso-8859-8.html
scheib/chromium
<html> <head> <meta charset="ISO-8859-8"> <body> <p>Test rendering of ISO-8859-8. <p> <div class="test">ùðá</div> <div class="test">ùðá â÷ë </div> <div class="test">ùðá abc â÷ë</div> <div class="test">abc ùðá def</div> <div class="test">ùðá <span dir=ltr>â÷ë</span></div> <div class="test">ùðá <span dir=rtl>â÷ë</span></div> <ul id="console" dir=ltr></ul> <script src="../../../resources/js-test.js"></script> <script> var succeed = true; function checkClientRect(test, index, offset, dir, char) { if (test.nodeType == 3) { for (var i = 0; i < test.textContent.length; ++i) { range.setStart(test, i); range.setEnd(test, i+1); rects = range.getClientRects(); if (dir == "ltr") { if (rects[0].left < offset) { testFailed("Test " + index + " LTR: character " + range.toString() + " should be rendered right of " + char); succeed = false; } } else { if (rects[0].left > offset) { testFailed("Test " + index + " RTL: character " + range.toString() + " should be rendered left of " + char); succeed = false; } } offset = rects[0].left; char = range.toString(); } } else if (test.nodeType == 1) { for (var node = test.firstChild; node; node = node.nextSibling) { checkClientRect(node, index, offset, dir, char); } } } if (window.testRunner) testRunner.dumpAsText(); var tests = document.getElementsByClassName('test'); var range = document.createRange(); for (var i = 0; i < tests.length; ++i) { checkClientRect(tests[i], i, -1, "ltr", " "); tests[i].style.direction = "rtl"; checkClientRect(tests[i], i, 10000, "rtl", " "); tests[i].style.display = "none"; } if (succeed == true) testPassed("Test completed successfully"); </script> </body> </html>
third_party/blink/web_tests/fast/filesystem/workers/simple-persistent.html
scheib/chromium
<html> <head> <script src="../../../resources/js-test.js"></script> </head> <body> <script> worker = startWorker('../resources/simple-persistent.js'); </script> </body> </html>
_includes/share.html
chmullig/chmullig.github.io
<div> {% if site.fb-share %} <div style="float:left; padding: 0 5px; vertical-align:top"> <div class="fb-share-button" data-href="{{ site.url }}{{ page.url }}" data-layout="button_count"></div> </div> {% endif %} {% if site.twitter-share %} <div style="float:left; padding: 0 5px; vertical-align:top"> <a href="https://twitter.com/share" class="twitter-share-button" data-url="{{ site.url }}{{ page.url }}" data-text="{{ page.title }} {% for tag in page.tags%}#{{ tag }} {% endfor %}"></a> </div> {% endif %} {% if site.reddit-share %} <div style="float:left; padding: 0 5px; vertical-align:top"> <script type="text/javascript">reddit_newwindow='1'</script> <script type="text/javascript">reddit_title='{{ page.title }}'</script> <script type="text/javascript">reddit_url='{{ site.url }}/{{ page.url }}'</script> <script type="text/javascript" src="//www.redditstatic.com/button/button1.js"></script> </div> {% endif %} </div>
uClinux-dist/freeswan/doc/manpage.d/ipsec_samesubnettype.3.html
ysleu/RTL8685
Content-type: text/html <HTML><HEAD><TITLE>Manpage of IPSEC_ANYADDR</TITLE> </HEAD><BODY> <H1>IPSEC_ANYADDR</H1> Section: C Library Functions (3)<BR>Updated: 28 Nov 2000<BR><A HREF="#index">Index</A> <A HREF="http://localhost/cgi-bin/man/man2html">Return to Main Contents</A><HR> <A NAME="lbAB">&nbsp;</A> <H2>NAME</H2> ipsec sameaddr - are two addresses the same? <BR> ipsec addrcmp - ordered comparison of addresses <BR> ipsec samesubnet - are two subnets the same? <BR> ipsec addrinsubnet - is an address within a subnet? <BR> ipsec subnetinsubnet - is a subnet within another subnet? <BR> ipsec subnetishost - is a subnet a single host? <BR> ipsec samesaid - are two SA IDs the same? <BR> ipsec sameaddrtype - are two addresses of the same address family? <BR> ipsec samesubnettype - are two subnets of the same address family? <A NAME="lbAC">&nbsp;</A> <H2>SYNOPSIS</H2> <B>#include &lt;<A HREF="file:/usr/include/freeswan.h">freeswan.h</A>&gt;</B> <P> <B>int sameaddr(const ip_address *a, const ip_address *b);</B> <BR> <B>int addrcmp(const ip_address *a, const ip_address *b);</B> <BR> <B>int samesubnet(const ip_subnet *a, const ip_subnet *b);</B> <BR> <B>int addrinsubnet(const ip_address *a, const ip_subnet *s);</B> <BR> <B>int subnetinsubnet(const ip_subnet *a, const ip_subnet *b);</B> <BR> <B>int subnetishost(const ip_subnet *s);</B> <BR> <B>int samesaid(const ip_said *a, const ip_said *b);</B> <BR> <B>int sameaddrtype(const ip_address *a, const ip_address *b);</B> <BR> <B>int samesubnettype(const ip_subnet *a, const ip_subnet *b);</B> <A NAME="lbAD">&nbsp;</A> <H2>DESCRIPTION</H2> These functions do various comparisons and tests on the <I>ip_address</I> type and <I>ip_subnet</I> types. <P> <I>Sameaddr</I> returns non-zero if addresses <I>a</I> and <I>b</I> are identical, and <B>0</B> otherwise. Addresses of different families are never identical. <P> <I>Addrcmp</I> returns <B>-1</B>, <B>0</B>, or <B>1</B> respectively if address <I>a</I> is less than, equal to, or greater than <I>b</I>. If they are not of the same address family, they are never equal; the ordering reported in this case is arbitrary (and probably not useful) but consistent. <P> <I>Samesubnet</I> returns non-zero if subnets <I>a</I> and <I>b</I> are identical, and <B>0</B> otherwise. Subnets of different address families are never identical. <P> <I>Addrinsubnet</I> returns non-zero if address <I>a</I> is within subnet <I>s</I> and <B>0</B> otherwise. An address is never within a subnet of a different address family. <P> <I>Subnetinsubnet</I> returns non-zero if subnet <I>a</I> is a subset of subnet <I>b</I> and <B>0</B> otherwise. A subnet is deemed to be a subset of itself. A subnet is never a subset of another subnet if their address families differ. <P> <I>Subnetishost</I> returns non-zero if subnet <I>s</I> is in fact only a single host, and <B>0</B> otherwise. <P> <I>Samesaid</I> returns non-zero if SA IDs <I>a</I> and <I>b</I> are identical, and <B>0</B> otherwise. <P> <I>Sameaddrtype</I> returns non-zero if addresses <I>a</I> and <I>b</I> are of the same address family, and <B>0</B> otherwise. <P> <I>Samesubnettype</I> returns non-zero if subnets <I>a</I> and <I>b</I> are of the same address family, and <B>0</B> otherwise. <A NAME="lbAE">&nbsp;</A> <H2>SEE ALSO</H2> <A HREF="inet.3.html">inet</A>(3), <A HREF="ipsec_initaddr.3.html">ipsec_initaddr</A>(3) <A NAME="lbAF">&nbsp;</A> <H2>HISTORY</H2> Written for the FreeS/WAN project by Henry Spencer. <P> <HR> <A NAME="index">&nbsp;</A><H2>Index</H2> <DL> <DT><A HREF="#lbAB">NAME</A><DD> <DT><A HREF="#lbAC">SYNOPSIS</A><DD> <DT><A HREF="#lbAD">DESCRIPTION</A><DD> <DT><A HREF="#lbAE">SEE ALSO</A><DD> <DT><A HREF="#lbAF">HISTORY</A><DD> </DL> <HR> This document was created by <A HREF="http://localhost/cgi-bin/man/man2html">man2html</A>, using the manual pages.<BR> Time: 05:09:32 GMT, June 19, 2001 </BODY> </HTML>
third_party/blink/web_tests/compositing/overflow/do-not-crash-when-checking-frame-view-is-scrollable.html
scheib/chromium
<!DOCTYPE html> <html> <head> <link rel="stylesheet" type="text/css" href="do-not-crash-when-checking-frame-view-is-scrollable.css"> <script> document.createElement("div").offsetParent; if (window.testRunner) testRunner.dumpAsText(); </script> </head> <body> </body> </html>
introToAngular/examples/snapshots/snapshot15/index.html
theclinicdotcom/screencasts
<html ng-app="nameApp"> <head> <meta charset="utf-8"> <title>Angular.js Example</title> <script src="//cdnjs.cloudflare.com/ajax/libs/angular.js/1.2.1/angular.min.js"></script> <script> var nameApp = angular.module('nameApp', []); nameApp.controller('NameCtrl', function ($scope){ $scope.names = ['Larry', 'Curly', 'Moe']; $scope.addName = function() { $scope.names.push($scope.enteredName); }; }); </script> </head> <body ng-controller="NameCtrl"> <ul> <li ng-repeat="name in names">{{name}}</li> </ul> <form ng-submit="addName()"> <input type="text" ng-model="enteredName"> <input type="submit" value="add"> </form> </body> </html>
www/bower_components/polymer/test/unit/styling-scoped-elements.html
soracoder/wallpapp
<dom-module id="x-child"> <template> <div id="simple">simple</div> <div id="complex1" class="scoped">complex1</div> <div id="complex2" selected>complex2</div> <div id="media">media</div> <div id="shadow" class="shadowTarget">shadowTarget</div> <div id="deep" class="deepTarget">deepTarget</div> </template> </dom-module> <script> Polymer({ is: 'x-child', hostAttributes: { class: 'nug' } }); </script> <dom-module id="x-child2"> <style> :host(.wide) #target{ border: none; } </style> <template> <div id="target">x-child2</div> </template> </dom-module> <script> Polymer({ is: 'x-child2', _scopeCssViaAttr: true }); </script> <dom-module id="x-styled"> <style> :host { display: block; border: 1px solid orange; } :host(.wide) { border-width: 2px; } #simple { border: 3px solid orange; } .scoped, [selected] { border: 4px solid pink; } @media(max-width: 10000px) { .media { border: 5px solid brown; } } .container ::content > * { border: 6px solid navy; } x-child::shadow .shadowTarget { border: 7px solid tomato; } x-child /deep/ .deepTarget { border: 8px solid red; } #priority { border: 9px solid orange; } x-child2.wide::shadow #target { border: 12px solid brown; } .container1 > ::content > .content1 { border: 13px solid navy; } .container2 > ::content .content2 { border: 14px solid navy; } .computed { border: 15px solid orange; } .computeda { border: 20px solid orange; } #child { border: 16px solid tomato; display: block; } </style> <template> <content select=".blank"></content> <div id="simple">simple</div> <div id="complex1" class="scoped">complex1</div> <div id="complex2" selected>complex2</div> <div id="media" class="media">media</div> <div class="container1"> <content select=".content1"></content> </div> <div class="container2"> <content select=".content2"></content> </div> <div class="container"> <content></content> </div> <x-child id="child"></x-child> <div id="priority">priority</div> <x-child2 class="wide" id="child2"></x-child2> <div id="computed" class$="{{computeClass(aClass)}}">Computed</div> <div id="repeatContainer"> <template id="repeat" is="x-repeat" items="{{items}}"> <a class$="{{parent.aaClass}}">A Computed</a> </template> </div> </template> </dom-module> <script> Polymer({ is: 'x-styled', properties: { items: {value: [{}]} }, computeClass: function(className) { return className; } }); </script> <dom-module id="x-button"> <style> :host { border: 10px solid beige; } :host(.special) { border: 11px solid beige; } </style> <template> Button! </template> </dom-module> <script> Polymer({ is: 'x-button', extends: 'button' }); </script> <template id="dynamic"> <div class="added"> Added <div class="sub-added"> Sub-added </div> </div> </div> </template> <dom-module id="x-dynamic-scope"> <style> .added { border: 17px solid beige; } .sub-added { border: 18px solid #fafafa; } </style> <template> <div id="container"></div> </template> </dom-module> <script> (function() { var doc = document._currentScript.ownerDocument; var dynamic = doc.querySelector('template#dynamic'); Polymer({ is: 'x-dynamic-scope', ready: function() { // setup node for scope watching this.scopeSubtree(this.$.container, true); // simulate 3rd party action by using normal dom to add to element. var dom = document.importNode(dynamic.content, true); this.$.container.appendChild(dom); } }); })(); </script>
vendor/zurb/foundation/doc/templates/forum_post.html
milardovich/agenda-moparman
<!--topic 1--> <div class="row post impressions new hide-for-small"> <div class="small-12 columns"> <ul class="post-count-spacing small-block-grid-2 large-block-grid-2"> <% if (comments_count > 0) { %> <li> <div class="post-count new already-checked"> <a href="#"> <div class="post-count-container new already-checked"> <span class="reply-count new-post already-checked">NEW</span> </div> <div class="total-post-count new total-replies"> <% if (comments_count == 1) { %> <%= comments_count %> Reply <% } else { %> <%= comments_count %> Replies <% } %> </div> </a> </div> </li> <% } else { %> <li> <div class="post-count new-general"> <a href="<%= url %>"> <div class="post-count-container new-general"> <span class="reply-count new-general">NEW</span> </div> </a> </div> <a href="<%= url %>"></a> </li> <% } %> <li> <div class="post-description"> <h5 class="content-title"> <a href="<%= url %>"><%= title || "Untitled" %></a> </h5> <p class="author-name"> By <span class="author"> <strong> <%= author_name %> <% if (typeof(latest_comment_author_name) != "undefined") { %>,<% } %> </strong> </span> <% if (typeof(latest_comment_author_name) != "undefined") { %> <span class="by">last Reply by</span> <span class="when"> <span class="author"> <strong><%= latest_comment_author_name %></strong> </span> about <%= latest_comment_created_at_time_ago %> ago </span> <% } else { %> <span class="when">about <%= created_at_time_ago %> ago</span> <% } %> </p> <div class="post-description copy"> <p><%= body %></p> </div> </div> </li> </ul> <hr class="dashed"> </div> </div> <!-- end topic 1 large --> <!-- start topic 1 small --> <div class="row post impressions new show-for-small"> <div class="small-12 columns"> <ul class="post-count-spacing small-block-grid-2 large-block-grid-2"> <% if (comments_count > 0) { %> <li> <div class="post-count new already-checked"> <a href="<%= url %>"> <div class="post-count-container new already-checked"> <span class="reply-count new-post already-checked">NEW</span> </div> <% if (comments_count > 0) { %> <div class="total-post-count new total-replies"> <% if (comments_count == 1) { %> <%= comments_count %> Reply <% } else { %> <%= comments_count %> Replies <% } %> </div> <% } %> </a> </div> </li> <% } else { %> <li> <div class="post-count new-general"> <a href="<%= url %>"> <div class="post-count-container new-general"> <span class="reply-count new-general">NEW</span> </div> </a> </div> <a href="<%= url %>"></a> </li> <% } %> <li> <h5 class="content-title"> <a href="<%= url %>"><%= title || "Untitled" %></a> </h5> <p class="author-name"> By <span class="author"> <strong> <%= author_name %> <% if (typeof(latest_comment_author_name) != "undefined") { %>,<% } %> </strong> </span> <% if (typeof(latest_comment_author_name) != "undefined") { %> <span class="by">last Reply by</span> <span class="when"> <span class="author"> <strong><%= latest_comment_author_name %></strong> </span> about <%= latest_comment_created_at_time_ago %> ago </span> <% } else { %> <span class="when">about <%= created_at_time_ago %> ago</span> <% } %> </p> </li> </ul> <div class="post-description"> <div class="post-description copy"> <p>Having issues installing with Compass and can't find a fix online. $ foundation new test Creating ./test exist test... (continued)</p> </div> </div> <hr class="dashed"> </div> </div> <!--end topic 1 small-->
_layouts/post.html
vaquero-io/vaquero-io.github.io
<!doctype html> <!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> <!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> <!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]--> <head> {% include _head.html %} </head> <body class="post"> {% include _browser-upgrade.html %} {% include _navigation.html %} {% if page.image.feature %} <div class="image-wrap"> <img src= {% if page.image.feature contains 'http' %} "{{ page.image.feature }}" {% else %} "{{ site.url }}/images/{{ page.image.feature }}" {% endif %} alt="{{ page.title }} feature image"> {% if page.image.credit %} <span class="image-credit">Photo Credit: <a href="{{ page.image.creditlink }}">{{ page.image.credit }}</a></span> {% endif %} </div><!-- /.image-wrap --> {% endif %} <div id="main" role="main"> <div class="article-author-side"> {% include _author-bio.html %} </div> <article class="post"> <div class="headline-wrap"> {% if page.link %} <h1><a href="{{ page.link }}">{{ page.title }}</a></h1> {% else %} <h1><a href="{{ site.url }}{{ page.url }}" rel="bookmark" title="{{ page.title }}">{{ page.title }}</a></h1> {% endif %} </div><!--/ .headline-wrap --> <div class="article-wrap"> {{ content }} <hr /> <footer role="contentinfo"> {% if page.share != false %}{% include _social-share.html %}{% endif %} <p class="byline"><strong>{{ page.title }}</strong> was published on <time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %d, %Y" }}</time>{% if page.modified %} and last modified on <time datetime="{{ page.modified | date: "%Y-%m-%d" }}">{{ page.modified | date: "%B %d, %Y" }}</time>{% endif %}.</p> </footer> </div><!-- /.article-wrap --> {% if site.owner.disqus-shortname and page.comments == true %} <section id="disqus_thread"></section><!-- /#disqus_thread --> {% endif %} </article> </div><!-- /#main --> <div class="footer-wrap"> <div class="related-articles"> <h4>You might also enjoy <small class="pull-right">(<a href="{{ site.url }}/posts/">View all posts</a>)</small></h4> <ul> {% for post in site.related_posts limit:3 %} <li><a href="{{ site.url }}{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li> {% endfor %} </ul> <hr /> </div><!-- /.related-articles --> <footer> {% include _footer.html %} </footer> </div><!-- /.footer-wrap --> {% include _scripts.html %} </body> </html>
www/profiles/unimelb/libraries/jquery.jcarousel/examples/dynamic_flickr_api.html
marcom-unimelb/Unimelb-Web-Templates-Drupal
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us"> <head> <title>jCarousel Examples</title> <link href="../style.css" rel="stylesheet" type="text/css" /> <!-- jQuery library --> <script type="text/javascript" src="../lib/jquery-1.4.2.min.js"></script> <!-- jCarousel library --> <script type="text/javascript" src="../lib/jquery.jcarousel.min.js"></script> <!-- jCarousel skin stylesheet --> <link rel="stylesheet" type="text/css" href="../skins/ie7/skin.css" /> <style type="text/css"> #mycarousel .jcarousel-item-placeholder { background: transparent url(images/loading-small.gif) 50% 50% no-repeat; } </style> <script type="text/javascript"> function mycarousel_itemLoadCallback(carousel, state) { if (carousel.prevFirst != null) { // Remove the last visible items to keep the list small for (var i = carousel.prevFirst; i <= carousel.prevLast; i++) { // jCarousel takes care not to remove visible items carousel.remove(i); } } var per_page = carousel.last - carousel.first + 1; var currPage = 0; var f,l; var cr = carousel; for (var i = carousel.first; i <= carousel.last; i++) { var page = Math.ceil(i / per_page); if (currPage != page) { currPage = page; f = ((page - 1) * per_page) + 1; l = f + per_page - 1; f = f < carousel.first ? carousel.first : f; l = l > carousel.last ? carousel.last : l; if (carousel.has(f, l)) { continue; } mycarousel_makeRequest(carousel, f, l, per_page, page); } } }; function mycarousel_makeRequest(carousel, first, last, per_page, page) { // Lock carousel until request has been made carousel.lock(); jQuery.get( 'dynamic_flickr_api.php', { 'per_page': per_page, 'page': page }, function(data) { mycarousel_itemAddCallback(carousel, first, last, data, page); }, 'xml' ); }; function mycarousel_itemAddCallback(carousel, first, last, data, page) { // Unlock carousel.unlock(); // Set size carousel.size($('photos', data).attr('total')); var photos = $('photo', data); var per_page = carousel.last - carousel.first + 1; for (var i = first; i <= last; i++) { var pos = i - 1; var idx = Math.round(((pos / per_page) - Math.floor(pos / per_page)) * per_page); carousel.add(i, mycarousel_getItemHTML(photos.get(idx))); } }; /** * Global item html creation helper. */ function mycarousel_getItemHTML(photo) { var url = 'http://farm'+$(photo).attr('farm')+'.static.flickr.com/'+$(photo).attr('server')+'/'+$(photo).attr('id')+'_'+$(photo).attr('secret')+'_s.jpg'; return '<a href="http://www.flickr.com/photos/'+$(photo).attr('owner')+'/'+$(photo).attr('id')+'/" target="_blank" title="'+$(photo).attr('title')+'"><img src="' + url + '" border="0" width="75" height="75" alt="'+$(photo).attr('title')+'" /></a>'; }; jQuery(document).ready(function() { jQuery('#mycarousel').jcarousel({ itemLoadCallback: mycarousel_itemLoadCallback }); }); </script> </head> <body> <div id="wrap"> <h1>jCarousel</h1> <h2>Riding carousels with jQuery</h2> <h3>Carousel with dynamic content loading via Ajax from the Flickr API</h3> <p> The data is loaded dynamically from the <a href="http://flickr.com/services/api/">Flickr API</a> method <a href="http://flickr.com/services/api/flickr.photos.getRecent.html">flickr.photos.getRecent</a>. All items not in the visible range are removed from the list to keep the list small. </p> <p> Note: There are constantly added new photos at flickr, so you possibly get different photos at certain positions. </p> <div id="mycarousel" class="jcarousel-skin-ie7"> <ul> <!-- The content will be dynamically loaded in here --> </ul> </div> <p> <strong>If you're using this example on your own server, don't forget to set your API key in dynamic_flickr_api.php!</strong> </p> </div> </body> </html>
webkit/LayoutTests/dom/html/level2/html/resources/COPYRIGHT.html
danialbehzadi/Nokia-RM-1013-2.0.0.11
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" /> <title>W3C IPR SOFTWARE NOTICE</title> <style type="text/css"> <!-- html, body { background: #fff; color: #000; } /* body for Windows IE3 */ --> </style> </head> <body> <h1> W3C IPR SOFTWARE NOTICE </h1> <h3> Copyright &copy; 2002-2004 <a href="http://www.w3.org/">World Wide Web Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href="http://www.inria.fr/">Institut National de Recherche en Informatique et en Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>). All Rights Reserved. </h3> <p> The DOM Conformance Test Suite for Level 2 html is published under the W3C Software Copyright Notice and License. The software license requires "Notice of any changes or modifications to the W3C files, including the date changes were made." Consequently, modified versions of the DOM ECMAScript or Java tests must document that they do not conform to the DOM Conformance Test Suites; in the case of the Java language binding, the package names can no longer be in the 'org.w3c' package. </p> <p> <b>Note:</b> The original version of the W3C Software Copyright Notice and License could be found at <a href='http://www.w3.org/Consortium/Legal/copyright-software-19980720'>http://www.w3.org/Consortium/Legal/copyright-software-19980720</a> </p> <h3> Copyright &copy; 1994-2004 <a href="http://www.w3.org/">World Wide Web Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href="http://www.inria.fr/">Institut National de Recherche en Informatique et en Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>). All Rights Reserved. http://www.w3.org/Consortium/Legal/ </h3> <p> This W3C work (including software, documents, or other related items) is being provided by the copyright holders under the following license. By obtaining, using and/or copying this work, you (the licensee) agree that you have read, understood, and will comply with the following terms and conditions: </p> <p> Permission to use, copy, and modify this software and its documentation, with or without modification,&nbsp; for any purpose and without fee or royalty is hereby granted, provided that you include the following on ALL copies of the software and documentation or portions thereof, including modifications, that you make: </p> <ol> <li> The full text of this NOTICE in a location viewable to users of the redistributed or derivative work. </li> <li> Any pre-existing intellectual property disclaimers, notices, or terms and conditions. If none exist, a short notice of the following form (hypertext is preferred, text is permitted) should be used within the body of any redistributed or derivative code: "Copyright &copy; [$date-of-software] <a href="http://www.w3.org/">World Wide Web Consortium</a>, (<a href="http://www.lcs.mit.edu/">Massachusetts Institute of Technology</a>, <a href="http://www.inria.fr/">Institut National de Recherche en Informatique et en Automatique</a>, <a href="http://www.keio.ac.jp/">Keio University</a>). All Rights Reserved. http://www.w3.org/Consortium/Legal/" </li> <li> Notice of any changes or modifications to the W3C files, including the date changes were made. (We recommend you provide URIs to the location from which the code is derived.) </li> </ol> <p> THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. </p> <p> COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION. </p> <p> The name and trademarks of copyright holders may NOT be used in advertising or publicity pertaining to the software without specific, written prior permission. Title to copyright in this software and any associated documentation will at all times remain with copyright holders. </p> </body> </html>
openstack_dashboard/dashboards/identity/domains/templates/domains/index.html
FNST-OpenStack/horizon
{% extends 'base.html' %} {% load i18n %} {% block title %}{% trans "Domains" %}{% endblock %} {% block page_header %} {% include "horizon/common/_domain_page_header.html" with title=page_title %} {% endblock page_header %} {% block main %} {{ table.render }} {% endblock %}
tests/wpt/web-platform-tests/offscreen-canvas/fill-and-stroke-styles/2d.fillStyle.parse.hsl-clamp-2.html
totallybradical/temp_servo2
<!DOCTYPE html> <!-- DO NOT EDIT! This test has been generated by tools/gentest.py. --> <title>OffscreenCanvas test: 2d.fillStyle.parse.hsl-clamp-2</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/common/canvas-tests.js"></script> <h1>2d.fillStyle.parse.hsl-clamp-2</h1> <p class="desc"></p> <p class="notes"> <script> var t = async_test(""); t.step(function() { var offscreenCanvas = new OffscreenCanvas(100, 50); var ctx = offscreenCanvas.getContext('2d'); ctx.fillStyle = '#f00'; ctx.fillStyle = 'hsl(120, -200%, 49.9%)'; ctx.fillRect(0, 0, 100, 50); _assertPixel(offscreenCanvas, 50,25, 127,127,127,255, "50,25", "127,127,127,255"); t.done(); }); </script>
themes/material/bower_components/angular-material/modules/js/tabs/tabs-default-theme.css
colorgap/bowyer
/*! * Angular Material Design * https://github.com/angular/material * @license MIT * v1.1.3 */ md-tabs.md-THEME_NAME-theme md-tabs-wrapper { background-color: transparent; border-color: '{{foreground-4}}'; } md-tabs.md-THEME_NAME-theme .md-paginator md-icon { color: '{{primary-color}}'; } md-tabs.md-THEME_NAME-theme md-ink-bar { color: '{{accent-color}}'; background: '{{accent-color}}'; } md-tabs.md-THEME_NAME-theme .md-tab { color: '{{foreground-2}}'; } md-tabs.md-THEME_NAME-theme .md-tab[disabled], md-tabs.md-THEME_NAME-theme .md-tab[disabled] md-icon { color: '{{foreground-3}}'; } md-tabs.md-THEME_NAME-theme .md-tab.md-active, md-tabs.md-THEME_NAME-theme .md-tab.md-active md-icon, md-tabs.md-THEME_NAME-theme .md-tab.md-focused, md-tabs.md-THEME_NAME-theme .md-tab.md-focused md-icon { color: '{{primary-color}}'; } md-tabs.md-THEME_NAME-theme .md-tab.md-focused { background: '{{primary-color-0.1}}'; } md-tabs.md-THEME_NAME-theme .md-tab .md-ripple-container { color: '{{accent-A100}}'; } md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper { background-color: '{{accent-color}}'; } md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon { color: '{{accent-A100}}'; } md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon { color: '{{accent-contrast}}'; } md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused { background: '{{accent-contrast-0.1}}'; } md-tabs.md-THEME_NAME-theme.md-accent > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar { color: '{{primary-600-1}}'; background: '{{primary-600-1}}'; } md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper { background-color: '{{primary-color}}'; } md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon { color: '{{primary-100}}'; } md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon { color: '{{primary-contrast}}'; } md-tabs.md-THEME_NAME-theme.md-primary > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused { background: '{{primary-contrast-0.1}}'; } md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper { background-color: '{{warn-color}}'; } md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon { color: '{{warn-100}}'; } md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon { color: '{{warn-contrast}}'; } md-tabs.md-THEME_NAME-theme.md-warn > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused { background: '{{warn-contrast-0.1}}'; } md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper { background-color: '{{primary-color}}'; } md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon { color: '{{primary-100}}'; } md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon { color: '{{primary-contrast}}'; } md-toolbar > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused { background: '{{primary-contrast-0.1}}'; } md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper { background-color: '{{accent-color}}'; } md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon { color: '{{accent-A100}}'; } md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon { color: '{{accent-contrast}}'; } md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused { background: '{{accent-contrast-0.1}}'; } md-toolbar.md-accent > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-ink-bar { color: '{{primary-600-1}}'; background: '{{primary-600-1}}'; } md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper { background-color: '{{warn-color}}'; } md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]), md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]) md-icon { color: '{{warn-100}}'; } md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active, md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-active md-icon, md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused, md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused md-icon { color: '{{warn-contrast}}'; } md-toolbar.md-warn > md-tabs.md-THEME_NAME-theme > md-tabs-wrapper > md-tabs-canvas > md-pagination-wrapper > md-tab-item:not([disabled]).md-focused { background: '{{warn-contrast-0.1}}'; }
www/js/dojox/storage/demos/helloworld.html
avz-cmf/zaboy-middleware
<html> <head> <script src="../../../dojo/dojo.js"></script> <script src="../storage-browser.js"></script> <script> dojo.require("dojox.storage"); function runDemo(){ // setup event handlers dojo.byId("saveButton").onclick = saveValue; // write out what our storage provider is for debugging dojo.byId("currentProvider").innerHTML = dojox.storage.manager.currentProvider.declaredClass; loadValues(); } function loadValues(){ // get any values that were saved before and write them into the page var results = dojox.storage.get("myValues"); if(results){ var printMe = "<ul>"; for(var i = 0; i < results.length; i++){ printMe += "<li>" + results[i] + "</li>"; } printMe += "</ul>"; dojo.byId("allValues").innerHTML = printMe; } } function saveValue(){ var value = dojo.byId("saveValue").value; if(value == undefined || value === ""){ alert("Please enter a correct value"); return; } // get the old values first, since we are saving everything // as one key var results = dojox.storage.get("myValues"); if(!results){ results = new Array(); } // add new value results.push(value); dojox.storage.put("myValues", results, function(status, keyName){ if(status == dojox.storage.FAILED){ alert("You do not have permission to store data for this web site."); }else if(status == dojox.storage.SUCCESS){ loadValues(); } }); } // wait until the storage system is finished loading if(!dojox.storage.manager.isInitialized()){ dojo.connect(dojox.storage.manager, "loaded", runDemo); }else{ dojo.connect(dojo, "loaded", runDemo); } </script> </head> <body> <h1>Dojo Storage Hello World</h1> <p>Simple Dojo Storage example. Enter values below to have them persisted in Dojo Storage; refresh browser page or close browser and then return to this page to see the values again. Note that Dojo Storage will not work from file:// URLs.</p> <h2>Save Values:</h2> <div> <input id="saveValue" type="text"></input> <button id="saveButton">Save Value</button> </div> <h2>All Saved Values:</h2> <p id="allValues"></p> <p>Using Dojo Storage Provider (autodetected): <span id="currentProvider"></span> <p> </body> </html>
workflows/weka/templates/interactions/weka_filter_integers.html
anirudhvenkats/clowdflows
<div id="widgetinteract-{{widget.pk}}" rel="{{widget.pk}}" class="widgetinteractdialog" title="{{widget.name}} wants your input!"> <form id="interactionform-{{widget.pk}}" name="interactionform-{{widget.pk}}"> {% for i in intList %} <input type="checkbox" name="intListOut" value="{{i}}" style="display:inline;width:auto;">{{i}}<br> {% endfor %} <input type="hidden" name="widget_id" value="{{widget.pk}}"> </form> </div>
core/src/main/resources/hudson/node_monitors/DiskSpaceMonitor/help_zh_TW.html
msrb/jenkins
<div> 監控每個 Slave 的 <tt>$JENKINS_HOME</tt> 可用磁碟空間,低於臨界值的 Slave 會被標為離線。 <p> 所有建置都在這個目錄裡執行。如果滿了,接下來的建置都會失敗。 </div>
files/formstone/0.8.11/css/checkbox.css
as-com/jsdelivr
/*! formstone v0.8.11 [checkbox.css] 2015-09-17 | MIT License | formstone.it */ /** * @class * @name .fs-checkbox-element * @type element * @description Target elmement */ /** * @class * @name .fs-checkbox * @type element * @description Base widget class */ /** * @class * @name .fs-checkbox.fs-checkbox-checked * @type modifier * @description Indicates checked state */ /** * @class * @name .fs-checkbox.fs-checkbox-radio * @type modifier * @description Indicates radio interface */ /** * @class * @name .fs-checkbox.fs-checkbox-toggle * @type modifier * @description Indicates toggle interface */ /** * @class * @name .fs-checkbox.fs-checkbox-focus * @type modifier * @description Indicates focused state */ /** * @class * @name .fs-checkbox.fs-checkbox-disabled * @type modifier * @description Indicates disabled state */ .fs-checkbox { /** * @class * @name .fs-checkbox-enabled * @type modifier * @description Indicates enabled state */ /** * @class * @name .fs-checkbox-label * @type element * @description Label element */ /** * @class * @name .fs-checkbox-marker * @type element * @description Marker element */ /** * @class * @name .fs-checkbox-flag * @type element * @description Flag element */ } .fs-checkbox.fs-checkbox-enabled { cursor: pointer; margin: 0 0 10px 0; overflow: hidden; } .fs-checkbox.fs-checkbox-enabled:focus { box-shadow: none; outline: none; } .fs-checkbox, .fs-checkbox:after, .fs-checkbox:before, .fs-checkbox *, .fs-checkbox *:after, .fs-checkbox *:before { box-sizing: border-box; -webkit-transition: none; transition: none; -webkit-user-select: none !important; -moz-user-select: none !important; -ms-user-select: none !important; user-select: none !important; } .fs-checkbox-element_wrapper { position: relative; border: 0; height: 0; margin: 0; opacity: 0; overflow: hidden; padding: 0; width: 0; } .fs-checkbox-element { position: absolute; top: 0; left: 0; z-index: -1; pointer-events: none; -webkit-transition: none; transition: none; } .fs-checkbox-label { color: #666666; cursor: pointer; display: block; font-size: 14px; line-height: 20px; overflow: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .fs-checkbox-marker { width: 20px; height: 20px; background: #ffffff; border: 1px solid #cccccc; border-radius: 3px; cursor: pointer; display: block; float: left; margin: 0 10px 0 0; } .fs-checkbox-flag { width: 100%; height: 100%; margin: 0; } .fs-checkbox-flag:before { width: 5px; height: 10px; border: 2px solid #999999; border-top: 0; border-left: 0; content: ''; display: block; margin: 3px 0 0 6px; -webkit-transition: -webkit-transform 0.15s ease; transition: transform 0.15s ease; -webkit-transform: rotate(45deg) scale(0); -ms-transform: rotate(45deg) scale(0); transform: rotate(45deg) scale(0); } .fs-checkbox-checked .fs-checkbox-flag:before { -webkit-transform: rotate(45deg) scale(1); -ms-transform: rotate(45deg) scale(1); transform: rotate(45deg) scale(1); } .no-csstransforms .fs-checkbox-flag:before { width: 100%; height: 100%; content: "\2713"; display: none; line-height: 1; text-align: center; } .no-csstransforms .fs-checkbox-checked .fs-checkbox-flag:before { display: block; } .fs-checkbox-radio .fs-checkbox-marker { border-radius: 100%; } .fs-checkbox-radio .fs-checkbox-flag { background: #999999; border: 3px solid #ffffff; border-radius: 100%; -webkit-transform: scale(0); -ms-transform: scale(0); transform: scale(0); -webkit-transition: -webkit-transform 0.15s ease; transition: transform 0.15s ease; } .fs-checkbox-radio .fs-checkbox-flag:before { display: none; } .fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag { -webkit-transform: scale(1); -ms-transform: scale(1); transform: scale(1); } .fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before { display: none; } .no-csstransforms .fs-checkbox-radio .fs-checkbox-flag:before { display: none; } .no-csstransforms .fs-checkbox-radio.fs-checkbox-checked .fs-checkbox-flag:before { display: block; } .fs-checkbox-focus .fs-checkbox-label { color: #333333; } .fs-checkbox-focus .fs-checkbox-marker { border-color: #999999; box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); } .fs-checkbox-disabled { cursor: default; opacity: 0.5; } .fs-checkbox-disabled .fs-checkbox-label { color: #666666; cursor: default; } .fs-checkbox-disabled .fs-checkbox-marker { border-color: #cccccc; cursor: default; } .fs-checkbox-toggle { position: relative; } .fs-checkbox-toggle .fs-checkbox-label { line-height: 40px; } .fs-checkbox-toggle .fs-checkbox-marker { width: 100px; height: 40px; position: relative; border-radius: 3px; } .fs-checkbox-toggle .fs-checkbox-marker:after { clear: both; content: ''; display: table; } .fs-checkbox-toggle .fs-checkbox-flag { width: 50%; height: 100%; position: absolute; top: 0; left: 0; background: #999999; border: 2px solid #ffffff; border-radius: 3px; display: block; margin: 0; -webkit-transition: left 0.15s ease; transition: left 0.15s ease; } .fs-checkbox-toggle .fs-checkbox-flag:before { display: none; } .fs-checkbox-toggle .fs-checkbox-flag:after { width: 2px; height: 10px; position: absolute; top: 0; right: 0; bottom: 0; left: 0; background: #ffffff; box-shadow: 3px 0 0 #ffffff, -3px 0 0 #ffffff; content: ''; margin: auto; opacity: 0.75; } .no-touch .fs-checkbox-toggle:hover .fs-checkbox-flag:after { opacity: 1; } .fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag { left: 50%; } .fs-checkbox-toggle.fs-checkbox-checked .fs-checkbox-flag:before { display: none; } .fs-checkbox-toggle.fs-checkbox-disabled .fs-checkbox-flag:after { display: none; } .fs-checkbox-toggle .fs-checkbox-state { width: 50%; color: #666666; display: block; font-size: 12px; line-height: 40px; margin: 0; text-align: center; text-transform: uppercase; } .fs-checkbox-toggle .fs-checkbox-state_on { float: left; } .fs-checkbox-toggle .fs-checkbox-state_off { float: right; }
third_party/web_platform_tests/referrer-policy/no-referrer/meta-csp/same-origin/http-https/script-tag/generic.keep-origin-redirect.http.html
youtube/cobalt
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'no-referrer'</title> <meta name="description" content="Check that sub-resource never gets the referrer URL."> <meta http-equiv="Content-Security-Policy" content="referrer no-referrer"> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec/specs/referrer-policy/#referrer-policy-state-no-referrer"> <meta name="assert" content="The referrer URL is omitted when a document served over http requires an https sub-resource via script-tag using the meta-csp delivery method with keep-origin-redirect and when the target request is same-origin."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <!-- TODO(kristijanburnik): Minify and merge both: --> <script src="/referrer-policy/generic/common.js"></script> <script src="/referrer-policy/generic/referrer-policy-test-case.js?pipe=sub"></script> </head> <body> <script> ReferrerPolicyTestCase( { "referrer_policy": "no-referrer", "delivery_method": "meta-csp", "redirection": "keep-origin-redirect", "origin": "same-origin", "source_protocol": "http", "target_protocol": "https", "subresource": "script-tag", "subresource_path": "/referrer-policy/generic/subresource/script.py", "referrer_url": "omitted" }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
tests/html/test_local_bookmark.html
jeenalee/servo
<html> <head> <style type="text/css"> body { font-size:40px; } </style> </head> <body> <div> <div id="text1"> 1st text </div> <div id="text2"> 2nd text </div> <div id="text3"> 3rd text </div> </div> <div> <span>This</span> <span> is</span> <span>span</span> <span>This </span> <span>is</span> <span>span</span> </div> <a name="top"> [name is "top"] </a> <h3 id="h3"> [id is "h3"] <hr/> <span> text </span> <span style="font-family:Times New Roman"> Times New Roman </span> <span style="font-family:Verdana"> Verdana </span> <span style="font-family:Arail"> Arial </span> <span style="font-family:Courier New"> Courier New </span> <span style="font-family:Georgia"> Georgia</span> <span style="font-family:Lucida Console"> Lucida Console </span> <div id ="num"> [id is "num"] </div> <span> 1 </span> <span> 2 </span> <div> 3 </div> <span> 4 </span> <span> 5 </span> </h3> <h4> --- Bottom --- </h4> </body> </html>
three.js/examples/canvas_lights_pointlights.html
ryangibbs/tosser
<!DOCTYPE html> <html lang="en"> <head> <title>three.js canvas - point light</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> <style> body { background-color: #000000; margin: 0px; overflow: hidden; } #info { position: absolute; top: 0px; width: 100%; color: #ffffff; padding: 5px; font-family: Monospace; font-size: 13px; text-align: center; } a { color: #ff0080; text-decoration: none; } a:hover { color: #0080ff; } </style> </head> <body> <div id="container"></div> <div id="info"> <a href="http://threejs.org" target="_blank">three.js</a> - point lights demo.<br /> Walt Disney head by <a href="http://davidoreilly.com/post/18087489343/disneyhead" target="_blank">David OReilly</a> </div> <script src="../build/three.min.js"></script> <script src="js/renderers/Projector.js"></script> <script src="js/renderers/CanvasRenderer.js"></script> <script> var camera, scene, renderer, light1, light2, light3, loader, mesh; init(); animate(); function init() { var container = document.getElementById( 'container' ); camera = new THREE.PerspectiveCamera( 60, window.innerWidth / window.innerHeight, 1, 1000 ); camera.position.set( 0, - 6, 100 ); scene = new THREE.Scene(); scene.add( new THREE.AmbientLight( 0x00020 ) ); light1 = new THREE.PointLight( 0xff0040, 1, 50 ); scene.add( light1 ); light2 = new THREE.PointLight( 0x0040ff, 1, 50 ); scene.add( light2 ); light3 = new THREE.PointLight( 0x80ff80, 1, 50 ); scene.add( light3 ); var PI2 = Math.PI * 2; var program = function ( context ) { context.beginPath(); context.arc( 0, 0, 0.5, 0, PI2, true ); context.fill(); } var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0xff0040, program: program } ) ); light1.add( sprite ); var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0x0040ff, program: program } ) ); light2.add( sprite ); var sprite = new THREE.Sprite( new THREE.SpriteCanvasMaterial( { color: 0x80ff80, program: program } ) ); light3.add( sprite ); loader = new THREE.JSONLoader(); loader.load( 'obj/WaltHeadLo.js', function ( geometry ) { mesh = new THREE.Mesh( geometry, new THREE.MeshLambertMaterial( { color: 0xffffff, shading: THREE.FlatShading, overdraw: 0.5 } ) ); scene.add( mesh ); } ); renderer = new THREE.CanvasRenderer(); renderer.setPixelRatio( window.devicePixelRatio ); renderer.setSize( window.innerWidth, window.innerHeight ); container.appendChild( renderer.domElement ); // window.addEventListener( 'resize', onWindowResize, false ); } function onWindowResize() { camera.aspect = window.innerWidth / window.innerHeight; camera.updateProjectionMatrix(); renderer.setSize( window.innerWidth, window.innerHeight ); } // function animate() { requestAnimationFrame( animate ); render(); } function render() { var time = Date.now() * 0.0005; if ( mesh ) mesh.rotation.y -= 0.01; light1.position.x = Math.sin( time * 0.7 ) * 30; light1.position.y = Math.cos( time * 0.5 ) * 40; light1.position.z = Math.cos( time * 0.3 ) * 30; light2.position.x = Math.cos( time * 0.3 ) * 30; light2.position.y = Math.sin( time * 0.5 ) * 40; light2.position.z = Math.sin( time * 0.7 ) * 30; light3.position.x = Math.sin( time * 0.7 ) * 30; light3.position.y = Math.cos( time * 0.3 ) * 40; light3.position.z = Math.sin( time * 0.5 ) * 30; renderer.render( scene, camera ); } </script> </body> </html>
wp-content/themes/ekogito/vendor/uikit/css/components/tooltip.gradient.css
michaelbontyes/ekogito
/*! UIkit 2.26.2 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */ /* ======================================================================== Component: Tooltip ========================================================================== */ /* * 1. Hide by default * 2. Set fixed position * 3. Set dimensions * 4. Set style */ .uk-tooltip { /* 1 */ display: none; /* 2 */ position: absolute; z-index: 1030; /* 3 */ box-sizing: border-box; max-width: 200px; padding: 5px 8px; /* 4 */ background: #333333; color: rgba(255, 255, 255, 0.7); font-size: 12px; line-height: 18px; border-radius: 3px; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); } /* Triangle ========================================================================== */ /* * 1. Dashed is less antialised than solid */ .uk-tooltip:after { content: ""; display: block; position: absolute; width: 0; height: 0; /* 1 */ border: 5px dashed #333333; } /* Direction modifiers ========================================================================== */ /* * Top */ .uk-tooltip-top:after, .uk-tooltip-top-left:after, .uk-tooltip-top-right:after { bottom: -5px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; border-top-color: #333333; } /* * Bottom */ .uk-tooltip-bottom:after, .uk-tooltip-bottom-left:after, .uk-tooltip-bottom-right:after { top: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; border-bottom-color: #333333; } /* * Top/Bottom center */ .uk-tooltip-top:after, .uk-tooltip-bottom:after { left: 50%; margin-left: -5px; } /* * Top/Bottom left */ .uk-tooltip-top-left:after, .uk-tooltip-bottom-left:after { left: 10px; } /* * Top/Bottom right */ .uk-tooltip-top-right:after, .uk-tooltip-bottom-right:after { right: 10px; } /* * Left */ .uk-tooltip-left:after { right: -5px; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; border-left-color: #333333; } /* * Right */ .uk-tooltip-right:after { left: -5px; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; border-right-color: #333333; }
~packages/fancybox/demo/index.html
nbir/gambit-interface
<!DOCTYPE html> <html> <head> <title>fancyBox - Fancy jQuery Lightbox Alternative | Demonstration</title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <!-- Add jQuery library --> <script type="text/javascript" src="../lib/jquery-1.8.2.min.js"></script> <!-- Add mousewheel plugin (this is optional) --> <script type="text/javascript" src="../lib/jquery.mousewheel-3.0.6.pack.js"></script> <!-- Add fancyBox main JS and CSS files --> <script type="text/javascript" src="../source/jquery.fancybox.js?v=2.1.3"></script> <link rel="stylesheet" type="text/css" href="../source/jquery.fancybox.css?v=2.1.2" media="screen" /> <!-- Add Button helper (this is optional) --> <link rel="stylesheet" type="text/css" href="../source/helpers/jquery.fancybox-buttons.css?v=1.0.5" /> <script type="text/javascript" src="../source/helpers/jquery.fancybox-buttons.js?v=1.0.5"></script> <!-- Add Thumbnail helper (this is optional) --> <link rel="stylesheet" type="text/css" href="../source/helpers/jquery.fancybox-thumbs.css?v=1.0.7" /> <script type="text/javascript" src="../source/helpers/jquery.fancybox-thumbs.js?v=1.0.7"></script> <!-- Add Media helper (this is optional) --> <script type="text/javascript" src="../source/helpers/jquery.fancybox-media.js?v=1.0.5"></script> <script type="text/javascript"> $(document).ready(function() { /* * Simple image gallery. Uses default settings */ $('.fancybox').fancybox(); /* * Different effects */ // Change title type, overlay closing speed $(".fancybox-effects-a").fancybox({ helpers: { title : { type : 'outside' }, overlay : { speedOut : 0 } } }); // Disable opening and closing animations, change title type $(".fancybox-effects-b").fancybox({ openEffect : 'none', closeEffect : 'none', helpers : { title : { type : 'over' } } }); // Set custom style, close if clicked, change title type and overlay color $(".fancybox-effects-c").fancybox({ wrapCSS : 'fancybox-custom', closeClick : true, openEffect : 'none', helpers : { title : { type : 'inside' }, overlay : { css : { 'background' : 'rgba(238,238,238,0.85)' } } } }); // Remove padding, set opening and closing animations, close if clicked and disable overlay $(".fancybox-effects-d").fancybox({ padding: 0, openEffect : 'elastic', openSpeed : 150, closeEffect : 'elastic', closeSpeed : 150, closeClick : true, helpers : { overlay : null } }); /* * Button helper. Disable animations, hide close button, change title type and content */ $('.fancybox-buttons').fancybox({ openEffect : 'none', closeEffect : 'none', prevEffect : 'none', nextEffect : 'none', closeBtn : false, helpers : { title : { type : 'inside' }, buttons : {} }, afterLoad : function() { this.title = 'Image ' + (this.index + 1) + ' of ' + this.group.length + (this.title ? ' - ' + this.title : ''); } }); /* * Thumbnail helper. Disable animations, hide close button, arrows and slide to next gallery item if clicked */ $('.fancybox-thumbs').fancybox({ prevEffect : 'none', nextEffect : 'none', closeBtn : false, arrows : false, nextClick : true, helpers : { thumbs : { width : 50, height : 50 } } }); /* * Media helper. Group items, disable animations, hide arrows, enable media and button helpers. */ $('.fancybox-media') .attr('rel', 'media-gallery') .fancybox({ openEffect : 'none', closeEffect : 'none', prevEffect : 'none', nextEffect : 'none', arrows : false, helpers : { media : {}, buttons : {} } }); /* * Open manually */ $("#fancybox-manual-a").click(function() { $.fancybox.open('1_b.jpg'); }); $("#fancybox-manual-b").click(function() { $.fancybox.open({ href : 'iframe.html', type : 'iframe', padding : 5 }); }); $("#fancybox-manual-c").click(function() { $.fancybox.open([ { href : '1_b.jpg', title : 'My title' }, { href : '2_b.jpg', title : '2nd title' }, { href : '3_b.jpg' } ], { helpers : { thumbs : { width: 75, height: 50 } } }); }); }); </script> <style type="text/css"> .fancybox-custom .fancybox-skin { box-shadow: 0 0 50px #222; } </style> </head> <body> <h1>fancyBox</h1> <p>This is a demonstration. More information and examples: <a href="http://fancyapps.com/fancybox/">www.fancyapps.com/fancybox/</a></p> <h3>Simple image gallery</h3> <p> <a class="fancybox" href="1_b.jpg" data-fancybox-group="gallery" title="Lorem ipsum dolor sit amet"><img src="1_s.jpg" alt="" /></a> <a class="fancybox" href="2_b.jpg" data-fancybox-group="gallery" title="Etiam quis mi eu elit temp"><img src="2_s.jpg" alt="" /></a> <a class="fancybox" href="3_b.jpg" data-fancybox-group="gallery" title="Cras neque mi, semper leon"><img src="3_s.jpg" alt="" /></a> <a class="fancybox" href="4_b.jpg" data-fancybox-group="gallery" title="Sed vel sapien vel sem uno"><img src="4_s.jpg" alt="" /></a> </p> <h3>Different effects</h3> <p> <a class="fancybox-effects-a" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a> <a class="fancybox-effects-b" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a> <a class="fancybox-effects-c" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a> <a class="fancybox-effects-d" href="5_b.jpg" title="Lorem ipsum dolor sit amet, consectetur adipiscing elit"><img src="5_s.jpg" alt="" /></a> </p> <h3>Various types</h3> <p> fancyBox will try to guess content type from href attribute but you can specify it directly by adding classname (fancybox.image, fancybox.iframe, etc). </p> <ul> <li><a class="fancybox" href="#inline1" title="Lorem ipsum dolor sit amet">Inline</a></li> <li><a class="fancybox fancybox.ajax" href="ajax.txt">Ajax</a></li> <li><a class="fancybox fancybox.iframe" href="iframe.html">Iframe</a></li> <li><a class="fancybox" href="http://www.adobe.com/jp/events/cs3_web_edition_tour/swfs/perform.swf">Swf</a></li> </ul> <div id="inline1" style="width:400px;display: none;"> <h3>Etiam quis mi eu elit</h3> <p> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam quis mi eu elit tempor facilisis id et neque. Nulla sit amet sem sapien. Vestibulum imperdiet porta ante ac ornare. Nulla et lorem eu nibh adipiscing ultricies nec at lacus. Cras laoreet ultricies sem, at blandit mi eleifend aliquam. Nunc enim ipsum, vehicula non pretium varius, cursus ac tortor. Vivamus fringilla congue laoreet. Quisque ultrices sodales orci, quis rhoncus justo auctor in. Phasellus dui eros, bibendum eu feugiat ornare, faucibus eu mi. Nunc aliquet tempus sem, id aliquam diam varius ac. Maecenas nisl nunc, molestie vitae eleifend vel, iaculis sed magna. Aenean tempus lacus vitae orci posuere porttitor eget non felis. Donec lectus elit, aliquam nec eleifend sit amet, vestibulum sed nunc. </p> </div> <p> Ajax example will not run from your local computer and requires a server to run. </p> <h3>Button helper</h3> <p> <a class="fancybox-buttons" data-fancybox-group="button" href="1_b.jpg"><img src="1_s.jpg" alt="" /></a> <a class="fancybox-buttons" data-fancybox-group="button" href="2_b.jpg"><img src="2_s.jpg" alt="" /></a> <a class="fancybox-buttons" data-fancybox-group="button" href="3_b.jpg"><img src="3_s.jpg" alt="" /></a> <a class="fancybox-buttons" data-fancybox-group="button" href="4_b.jpg"><img src="4_s.jpg" alt="" /></a> </p> <h3>Thumbnail helper</h3> <p> <a class="fancybox-thumbs" data-fancybox-group="thumb" href="4_b.jpg"><img src="4_s.jpg" alt="" /></a> <a class="fancybox-thumbs" data-fancybox-group="thumb" href="3_b.jpg"><img src="3_s.jpg" alt="" /></a> <a class="fancybox-thumbs" data-fancybox-group="thumb" href="2_b.jpg"><img src="2_s.jpg" alt="" /></a> <a class="fancybox-thumbs" data-fancybox-group="thumb" href="1_b.jpg"><img src="1_s.jpg" alt="" /></a> </p> <h3>Media helper</h3> <p> Will not run from your local computer, requires a server to run. </p> <ul> <li><a class="fancybox-media" href="http://www.youtube.com/watch?v=opj24KnzrWo">Youtube</a></li> <li><a class="fancybox-media" href="http://vimeo.com/25634903">Vimeo</a></li> <li><a class="fancybox-media" href="http://www.metacafe.com/watch/7635964/">Metacafe</a></li> <li><a class="fancybox-media" href="http://www.dailymotion.com/video/xoeylt_electric-guest-this-head-i-hold_music">Dailymotion</a></li> <li><a class="fancybox-media" href="http://twitvid.com/QY7MD">Twitvid</a></li> <li><a class="fancybox-media" href="http://twitpic.com/7p93st">Twitpic</a></li> <li><a class="fancybox-media" href="http://instagr.am/p/IejkuUGxQn">Instagram</a></li> </ul> <h3>Open manually</h3> <ul> <li><a id="fancybox-manual-a" href="javascript:;">Open single item</a></li> <li><a id="fancybox-manual-b" href="javascript:;">Open single item, custom options</a></li> <li><a id="fancybox-manual-c" href="javascript:;">Open gallery</a></li> </ul> <p> Photo Credit: Instagrammer @whitjohns </p> </body> </html>
ajax/libs/selectize.js/0.7.0/css/selectize.legacy.css
wackyapples/cdnjs
/** * selectize.legacy.css (v0.7.0) - Default Theme * Copyright (c) 2013 Brian Reavis & contributors * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this * file except in compliance with the License. You may obtain a copy of the License at: * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF * ANY KIND, either express or implied. See the License for the specific language * governing permissions and limitations under the License. * * @author Brian Reavis <brian@thirdroute.com> */ .selectize-control.plugin-drag_drop.multi > .selectize-input > div.ui-sortable-placeholder { background: #f2f2f2 !important; background: rgba(0, 0, 0, 0.06) !important; border: 0 none !important; visibility: visible !important; -webkit-box-shadow: inset 0 0 12px 4px #ffffff; box-shadow: inset 0 0 12px 4px #ffffff; } .selectize-control.plugin-drag_drop .ui-sortable-placeholder::after { content: '!'; visibility: hidden; } .selectize-control.plugin-drag_drop .ui-sortable-helper { -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); } .selectize-dropdown-header { position: relative; padding: 7px 10px; background: #f8f8f8; border-bottom: 1px solid #d0d0d0; -webkit-border-radius: 3px 3px 0 0; -moz-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; } .selectize-dropdown-header-close { position: absolute; top: 50%; right: 10px; margin-top: -12px; font-size: 20px !important; line-height: 20px; color: #303030; opacity: 0.4; } .selectize-dropdown-header-close:hover { color: #000000; } .selectize-dropdown.plugin-optgroup_columns .optgroup { float: left; border-top: 0 none; border-right: 1px solid #f2f2f2; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .selectize-dropdown.plugin-optgroup_columns .optgroup:last-child { border-right: 0 none; } .selectize-dropdown.plugin-optgroup_columns .optgroup:before { display: none; } .selectize-dropdown.plugin-optgroup_columns .optgroup-header { border-top: 0 none; } .selectize-control.plugin-remove_button .item { position: relative; padding-right: 24px !important; } .selectize-control.plugin-remove_button .item .remove { position: absolute; top: 0; right: 0; bottom: 0; display: inline-block; width: 17px; padding: 1px 0 0 0; font-size: 12px; font-weight: bold; color: inherit; text-align: center; vertical-align: middle; border-left: 1px solid #74b21e; -webkit-border-radius: 0 2px 2px 0; -moz-border-radius: 0 2px 2px 0; border-radius: 0 2px 2px 0; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .selectize-control.plugin-remove_button .item .remove:hover { background: rgba(0, 0, 0, 0.05); } .selectize-control.plugin-remove_button .item.active .remove { border-left-color: #6f9839; } .selectize-control { position: relative; } .selectize-dropdown, .selectize-input, .selectize-input input { font-family: inherit; font-size: 13px; -webkit-font-smoothing: inherit; line-height: 20px; color: #303030; } .selectize-input, .selectize-control.single .selectize-input.focus { display: inline-block; cursor: text; background: #ffffff; } .selectize-input { position: relative; z-index: 1; display: inline-block; width: 100%; padding: 10px 10px; overflow: hidden; border: 1px solid #d0d0d0; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.1); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .selectize-control.multi .selectize-input.has-items { padding: 8px 10px 4px; } .selectize-input.full { background-color: #f2f2f2; } .selectize-input.disabled, .selectize-input.disabled * { cursor: default !important; } .selectize-input.focus { -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15); } .selectize-input.dropdown-active { -webkit-border-radius: 3px 3px 0 0; -moz-border-radius: 3px 3px 0 0; border-radius: 3px 3px 0 0; } .selectize-input > * { display: -moz-inline-stack; display: inline-block; *display: inline; vertical-align: baseline; zoom: 1; } .selectize-control.multi .selectize-input > div { padding: 1px 5px; margin: 0 4px 4px 0; color: #3d5d18; cursor: pointer; background: #b8e76f; border: 1px solid #74b21e; } .selectize-control.multi .selectize-input > div.active { color: #303030; background: #92c836; border: 1px solid #6f9839; } .selectize-control.multi .selectize-input.disabled > div, .selectize-control.multi .selectize-input.disabled > div.active { color: #878787; background: #f8f8f8; border: 1px solid #b4b4b4; } .selectize-input > input { max-width: 100% !important; max-height: none !important; min-height: 0 !important; padding: 0 !important; margin: 0 2px 0 0 !important; line-height: inherit !important; text-indent: 0 !important; background: none !important; border: 0 none !important; -webkit-box-shadow: none !important; box-shadow: none !important; -webkit-user-select: auto !important; } .selectize-input > input:focus { outline: none !important; } .selectize-input::after { display: block; clear: left; content: ' '; } .selectize-input.dropdown-active::before { position: absolute; right: 0; bottom: 0; left: 0; display: block; height: 1px; background: #f0f0f0; content: ' '; } .selectize-dropdown { position: absolute; z-index: 2; margin-top: -1px; background: #ffffff; border: 1px solid #d0d0d0; border-top: 0 none; -webkit-border-radius: 0 0 3px 3px; -moz-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; } .selectize-dropdown [data-selectable] { overflow: hidden; cursor: pointer; } .selectize-dropdown [data-selectable] .highlight { background: rgba(255, 237, 40, 0.4); -webkit-border-radius: 1px; -moz-border-radius: 1px; border-radius: 1px; } .selectize-dropdown [data-selectable], .selectize-dropdown .optgroup-header { padding: 7px 10px; } .selectize-dropdown .optgroup:first-child .optgroup-header { border-top: 0 none; } .selectize-dropdown .optgroup-header { color: #303030; cursor: default; background: #f8f8f8; } .selectize-dropdown .active { color: #303030; background-color: #fffceb; } .selectize-dropdown .active.create { color: #303030; } .selectize-dropdown .create { color: rgba(48, 48, 48, 0.5); } .selectize-dropdown-content { max-height: 200px; overflow-x: hidden; overflow-y: auto; } .selectize-control.single .selectize-input, .selectize-control.single .selectize-input input { cursor: pointer; } .selectize-control.single .selectize-input.focus, .selectize-control.single .selectize-input.focus input { cursor: text; } .selectize-control.single .selectize-input:after { position: absolute; top: 50%; right: 15px; display: block; width: 0; height: 0; margin-top: -3px; border-color: #808080 transparent transparent transparent; border-style: solid; border-width: 5px 5px 0 5px; content: ' '; } .selectize-control.single .selectize-input.dropdown-active:after { margin-top: -4px; border-color: transparent transparent #808080 transparent; border-width: 0 5px 5px 5px; } .selectize-control .selectize-input.disabled { background-color: #fafafa; opacity: 0.5; } .selectize-control.multi .selectize-input [data-value] { text-shadow: 0 1px 0 rgba(255, 255, 255, 0.1); background-color: #b2e567; background-image: -moz-linear-gradient(top, #b8e76f, #a9e25c); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#b8e76f), to(#a9e25c)); background-image: -webkit-linear-gradient(top, #b8e76f, #a9e25c); background-image: -o-linear-gradient(top, #b8e76f, #a9e25c); background-image: linear-gradient(to bottom, #b8e76f, #a9e25c); background-repeat: repeat-x; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb8e76f', endColorstr='#ffa9e25c', GradientType=0); -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1); } .selectize-control.multi .selectize-input [data-value].active { background-color: #88c332; background-image: -moz-linear-gradient(top, #92c836, #7abc2c); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#92c836), to(#7abc2c)); background-image: -webkit-linear-gradient(top, #92c836, #7abc2c); background-image: -o-linear-gradient(top, #92c836, #7abc2c); background-image: linear-gradient(to bottom, #92c836, #7abc2c); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff92c836', endColorstr='#ff7abc2c', GradientType=0); } .selectize-control.single .selectize-input { background-color: #f3f3f3; background-image: -moz-linear-gradient(top, #f5f5f5, #efefef); background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#f5f5f5), to(#efefef)); background-image: -webkit-linear-gradient(top, #f5f5f5, #efefef); background-image: -o-linear-gradient(top, #f5f5f5, #efefef); background-image: linear-gradient(to bottom, #f5f5f5, #efefef); background-repeat: repeat-x; filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffefefef', GradientType=0); -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 0 #e0e0e0, 0 3px 0 #c8c8c8, 0 4px 1px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 0 #e0e0e0, 0 3px 0 #c8c8c8, 0 4px 1px rgba(0, 0, 0, 0.1); } .selectize-control.single .selectize-input, .selectize-dropdown.single { border-color: #b8b8b8; } .selectize-dropdown .optgroup-header { font-size: 0.8em; font-weight: bold; border-top: 1px solid #f0f0f0; border-bottom: 1px solid #f0f0f0; }
tests/automation/single_instance/open_single/index.html
trojanspike/nw.js
<!DOCTYPE html> <html> <head> <title>open Single-instance</title> </head> <body> <h1>open Single-instance</h1> We are using node.js <script> var gui = require('nw.gui'); var fs = require('fs'); fs.appendFileSync('msg_s', '1'); setTimeout(function() { gui.App.quit(); }, 2000); </script> </body> </html>
docs/_layouts/default.html
OpenAccessClinic/OA_clinic
<!DOCTYPE html> <html lang="en"> {% include head.html %} <body> {% include nav.html %} {{ content }} {% include footer.html %} </body> </html>
www/lib/font-awesome/src/3.2.1/icon/retweet/index.html
vinnylinck/listagram
<!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <meta charset="utf-8" /> <title>icon-retweet: Font Awesome Icons</title> <meta name="description" content="Font Awesome, the iconic font designed for Bootstrap"> <meta name="author" content="Dave Gandy"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">--> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- CSS ================================================== --> <link rel="stylesheet" href="../../assets/css/site.css"> <link rel="stylesheet" href="../../assets/css/pygments.css"> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css"> <!--[if IE 7]> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css"> <![endif]--> <!-- Le fav and touch icons --> <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> <script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-30136587-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body data-spy="scroll" data-target=".navbar"> <div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer --> <div class="navbar navbar-inverse navbar-static-top hidden-print"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="hidden-tablet "><a href="../../">Home</a></li> <li><a href="../../get-started/">Get Started</a></li> <li class="dropdown-split-left"><a href="../../icons/">Icons</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i>&nbsp; Icons</a></li> <li class="divider"></li> <li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i>&nbsp; New Icons in 3.2.1</a></li> <li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i>&nbsp; Web Application Icons</a></li> <li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i>&nbsp; Currency Icons</a></li> <li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i>&nbsp; Text Editor Icons</a></li> <li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i>&nbsp; Directional Icons</a></li> <li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i>&nbsp; Video Player Icons</a></li> <li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i>&nbsp; Brand Icons</a></li> <li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i>&nbsp; Medical Icons</a></li> </ul> </li> <li class="dropdown-split-left"><a href="../../examples/">Examples</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../examples/">Examples</a></li> <li class="divider"></li> <li><a href="../../examples/#new-styles">New Styles</a></li> <li><a href="../../examples/#inline-icons">Inline Icons</a></li> <li><a href="../../examples/#larger-icons">Larger Icons</a></li> <li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li> <li><a href="../../examples/#buttons">Buttons</a></li> <li><a href="../../examples/#button-groups">Button Groups</a></li> <li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li> <li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li> <li><a href="../../examples/#navigation">Navigation</a></li> <li><a href="../../examples/#form-inputs">Form Inputs</a></li> <li><a href="../../examples/#animated-spinner">Animated Spinner</a></li> <li><a href="../../examples/#rotated-flipped">Rotated &amp; Flipped</a></li> <li><a href="../../examples/#stacked">Stacked</a></li> <li><a href="../../examples/#custom">Custom CSS</a></li> </ul> </li> <li><a href="../../whats-new/"> <span class="hidden-tablet">What's </span>New</a> </li> <li><a href="../../community/">Community</a></li> <li><a href="../../license/">License</a></li> </ul> <ul class="nav pull-right"> <li><a href="http://blog.fontawesome.io">Blog</a></li> </ul> </div> </div> </div> </div> <div class="jumbotron jumbotron-icon"> <div class="container"> <div class="info-icons"> <i class="icon-retweet icon-6"></i>&nbsp;&nbsp; <span class="hidden-phone"> <i class="icon-retweet icon-5"></i>&nbsp;&nbsp; <span class="hidden-tablet"><i class="icon-retweet icon-4"></i>&nbsp;&nbsp;</span> <i class="icon-retweet icon-3"></i>&nbsp;&nbsp; <i class="icon-retweet icon-2"></i>&nbsp; </span> <i class="icon-retweet icon-1"></i> </div> <h1 class="info-class"> icon-retweet <small> <i class="icon-retweet"></i> &middot; Unicode: <span class="upper">f079</span> &middot; Created: v1.0 &middot; Categories: Web Application Icons </small> </h1> </div> </div> <div class="container"> <section> <div class="row-fluid"> <div class="span9"> <p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code>&lt;i&gt;</code> tag:</p> <div class="well well-transparent"> <div style="font-size: 24px; line-height: 1.5em;"> <i class="icon-retweet"></i> icon-retweet </div> </div> <div class="highlight"><pre><code class="html"><span class="nt">&lt;i</span> <span class="na">class=</span><span class="s">&quot;icon-retweet&quot;</span><span class="nt">&gt;&lt;/i&gt;</span> icon-retweet </code></pre></div> <br> <div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div> </div> <div class="span3"> <div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div> </div> </div> </div> </section> </div> <div class="push"><!-- necessary for sticky footer --></div> </div> <footer class="footer hidden-print"> <div class="container text-center"> <div> <i class="icon-flag"></i> Font Awesome 3.2.1 <span class="hidden-phone">&middot;</span><br class="visible-phone"> Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a> </div> <div> Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> <span class="hidden-phone">&middot;</span><br class="visible-phone"> Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a> <span class="hidden-phone hidden-tablet">&middot;</span><br class="visible-phone visible-tablet"> Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a> </div> <div> Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a> </div> <div class="project"> <a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> &middot; <a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a> </div> </div> </footer> <script src="http://platform.twitter.com/widgets.js"></script> <script src="../../assets/js/jquery-1.7.1.min.js"></script> <script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script> <script src="../../assets/js/bootstrap-2.3.1.min.js"></script> <script src="../../assets/js/site.js"></script> </body> </html>
www/lib/font-awesome/src/3.2.1/icon/linux/index.html
vinnylinck/TodoSyncPoc
<!DOCTYPE html> <!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]--> <!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]--> <!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]--> <!--[if (gte IE 9)|!(IE)]><!--> <html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]--> <head> <!-- Basic Page Needs ================================================== --> <meta charset="utf-8" /> <title>icon-linux: Font Awesome Icons</title> <meta name="description" content="Font Awesome, the iconic font designed for Bootstrap"> <meta name="author" content="Dave Gandy"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">--> <!--[if lt IE 9]> <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script> <![endif]--> <!-- CSS ================================================== --> <link rel="stylesheet" href="../../assets/css/site.css"> <link rel="stylesheet" href="../../assets/css/pygments.css"> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css"> <!--[if IE 7]> <link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css"> <![endif]--> <!-- Le fav and touch icons --> <link rel="shortcut icon" href="../../assets/ico/favicon.ico"> <script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script> <script type="text/javascript">try{Typekit.load();}catch(e){}</script> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-30136587-1']); _gaq.push(['_trackPageview']); (function() { var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true; ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s); })(); </script> </head> <body data-spy="scroll" data-target=".navbar"> <div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer --> <div class="navbar navbar-inverse navbar-static-top hidden-print"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a> <div class="nav-collapse collapse"> <ul class="nav"> <li class="hidden-tablet "><a href="../../">Home</a></li> <li><a href="../../get-started/">Get Started</a></li> <li class="dropdown-split-left"><a href="../../icons/">Icons</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i>&nbsp; Icons</a></li> <li class="divider"></li> <li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i>&nbsp; New Icons in 3.2.1</a></li> <li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i>&nbsp; Web Application Icons</a></li> <li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i>&nbsp; Currency Icons</a></li> <li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i>&nbsp; Text Editor Icons</a></li> <li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i>&nbsp; Directional Icons</a></li> <li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i>&nbsp; Video Player Icons</a></li> <li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i>&nbsp; Brand Icons</a></li> <li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i>&nbsp; Medical Icons</a></li> </ul> </li> <li class="dropdown-split-left"><a href="../../examples/">Examples</a></li> <li class="dropdown dropdown-split-right hidden-phone"> <a href="#" class="dropdown-toggle" data-toggle="dropdown"> <i class="icon-caret-down"></i> </a> <ul class="dropdown-menu pull-right"> <li><a href="../../examples/">Examples</a></li> <li class="divider"></li> <li><a href="../../examples/#new-styles">New Styles</a></li> <li><a href="../../examples/#inline-icons">Inline Icons</a></li> <li><a href="../../examples/#larger-icons">Larger Icons</a></li> <li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li> <li><a href="../../examples/#buttons">Buttons</a></li> <li><a href="../../examples/#button-groups">Button Groups</a></li> <li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li> <li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li> <li><a href="../../examples/#navigation">Navigation</a></li> <li><a href="../../examples/#form-inputs">Form Inputs</a></li> <li><a href="../../examples/#animated-spinner">Animated Spinner</a></li> <li><a href="../../examples/#rotated-flipped">Rotated &amp; Flipped</a></li> <li><a href="../../examples/#stacked">Stacked</a></li> <li><a href="../../examples/#custom">Custom CSS</a></li> </ul> </li> <li><a href="../../whats-new/"> <span class="hidden-tablet">What's </span>New</a> </li> <li><a href="../../community/">Community</a></li> <li><a href="../../license/">License</a></li> </ul> <ul class="nav pull-right"> <li><a href="http://blog.fontawesome.io">Blog</a></li> </ul> </div> </div> </div> </div> <div class="jumbotron jumbotron-icon"> <div class="container"> <div class="info-icons"> <i class="icon-linux icon-6"></i>&nbsp;&nbsp; <span class="hidden-phone"> <i class="icon-linux icon-5"></i>&nbsp;&nbsp; <span class="hidden-tablet"><i class="icon-linux icon-4"></i>&nbsp;&nbsp;</span> <i class="icon-linux icon-3"></i>&nbsp;&nbsp; <i class="icon-linux icon-2"></i>&nbsp; </span> <i class="icon-linux icon-1"></i> </div> <h1 class="info-class"> icon-linux <small> <i class="icon-linux"></i> &middot; Unicode: <span class="upper">f17c</span> &middot; Created: v3.2 &middot; Categories: Brand Icons </small> </h1> </div> </div> <div class="container"> <section> <div class="row-fluid"> <div class="span9"> <p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code>&lt;i&gt;</code> tag:</p> <div class="well well-transparent"> <div style="font-size: 24px; line-height: 1.5em;"> <i class="icon-linux"></i> icon-linux </div> </div> <div class="highlight"><pre><code class="html"><span class="nt">&lt;i</span> <span class="na">class=</span><span class="s">&quot;icon-linux&quot;</span><span class="nt">&gt;&lt;/i&gt;</span> icon-linux </code></pre></div> <br> <div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div> </div> <div class="span3"> <div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div> </div> </div> </div> </section> </div> <div class="push"><!-- necessary for sticky footer --></div> </div> <footer class="footer hidden-print"> <div class="container text-center"> <div> <i class="icon-flag"></i> Font Awesome 3.2.1 <span class="hidden-phone">&middot;</span><br class="visible-phone"> Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a> </div> <div> Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a> <span class="hidden-phone">&middot;</span><br class="visible-phone"> Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a> <span class="hidden-phone hidden-tablet">&middot;</span><br class="visible-phone visible-tablet"> Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a> </div> <div> Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a> </div> <div class="project"> <a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> &middot; <a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a> </div> </div> </footer> <script src="http://platform.twitter.com/widgets.js"></script> <script src="../../assets/js/jquery-1.7.1.min.js"></script> <script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script> <script src="../../assets/js/bootstrap-2.3.1.min.js"></script> <script src="../../assets/js/site.js"></script> </body> </html>
zsite-root/zsite-web/src/main/resources/static/pc/plugins/datatables/extensions/KeyTable/examples/index.html
zuolg/zstie
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <link rel="shortcut icon" type="image/ico" href="http://www.datatables.net/favicon.ico"> <meta name="viewport" content="initial-scale=1.0, maximum-scale=2.0"> <link rel="stylesheet" type="text/css" href="../../../examples/resources/syntax/shCore.css"> <link rel="stylesheet" type="text/css" href="../../../examples/resources/demo.css"> <script type="text/javascript" language="javascript" src="../../../media/js/jquery.js"></script> <script type="text/javascript" language="javascript" src="../../../examples/resources/syntax/shCore.js"></script> <script type="text/javascript" language="javascript" src="../../../examples/resources/demo.js"></script> <title>KeyTable examples - KeyTable examples</title> </head> <body class="dt-example"> <div class="container"> <section> <h1>KeyTable example <span>KeyTable examples</span></h1> <div class="info"> <p>KeyTable provides enhanced accessibility and navigation options for DataTables enhanced tables, by allowing Excel like cell navigation on any table. Events (focus, blur, action etc) can be assigned to individual cells, columns, rows or all cells to allow advanced interaction options.. Key features include:</p> <ul class="markdown"> <li>Easy to use spreadsheet like interaction</li> <li>Fully integrated with DataTables</li> <li>Wide range of supported events</li> <li>Works without DataTables if you just want a plain table</li> </ul> </div> </section> </div> <section> <div class="footer"> <div class="gradient"></div> <div class="liner"> <div class="toc"> <div class="toc-group"> <h3><a href="./index.html">Examples</a></h3> <ul class="toc"> <li><a href="./simple.html">Basic initialisation</a></li> <li><a href="./events.html">Events</a></li> <li><a href="./scrolling.html">Scrolling table</a></li> <li><a href="./html.html">Plain HTML table</a></li> </ul> </div> </div> <div class="epilogue"> <p>Please refer to the <a href="http://www.datatables.net">DataTables documentation</a> for full information about its API properties and methods.<br> Additionally, there are a wide range of <a href="http://www.datatables.net/extras">extras</a> and <a href="http://www.datatables.net/plug-ins">plug-ins</a> which extend the capabilities of DataTables.</p> <p class="copyright">DataTables designed and created by <a href= "http://www.sprymedia.co.uk">SpryMedia Ltd</a> &#169; 2007-2014<br> DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> </div> </div> </div> </section> </body> </html>
usr/lib/brackets/src/extensions/default/JavaScriptQuickEdit/unittest-files/jquery-ui/tests/unit/draggable/draggable.html
MatiasNAmendola/gnome-web
<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>jQuery UI Draggable Test Suite</title> <script src="../../jquery.js"></script> <link rel="stylesheet" href="../../../external/qunit.css"> <script src="../../../external/qunit.js"></script> <script src="../../jquery.simulate.js"></script> <script src="../testsuite.js"></script> <script> TestHelpers.loadResources({ css: [ "ui.core" ], js: [ "ui/jquery.ui.core.js", "ui/jquery.ui.widget.js", "ui/jquery.ui.mouse.js", "ui/jquery.ui.draggable.js" ] }); </script> <script src="draggable_common.js"></script> <script src="draggable_core.js"></script> <script src="draggable_events.js"></script> <script src="draggable_methods.js"></script> <script src="draggable_options.js"></script> <script> // disable this stale testsuite for testswarm only var url = window.location.search; url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + 9 ) ); if ( url && url.indexOf("http") == 0 ) { // reset config to kill previous tests; make sure testsuite.js is loaded afterwards to init the testswarm script QUnit.init(); test("draggable", function() { ok(true, "disabled draggable testsuite"); }); } </script> <script src="../swarminject.js"></script> </head> <body> <h1 id="qunit-header">jQuery UI Draggable Test Suite</h1> <h2 id="qunit-banner"></h2> <div id="qunit-testrunner-toolbar"></div> <h2 id="qunit-userAgent"></h2> <ol id="qunit-tests"></ol> <div id="qunit-fixture"> <div id="draggable1" style="background: green; width: 200px; height: 100px;">Relative</div> <div id="draggable2" style="background: green; width: 200px; height: 100px; position: absolute; top: 10px; left: 10px;"><span>Absolute</span></div> <div style='width: 1px; height: 1000px;'></div> <div style="position: absolute; width: 1px; height: 2000px;"></div> </div> </body> </html>
www/css/jquery-ui-timepicker-addon.css
weprove/titan
.ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div dl { text-align: left; } .ui-timepicker-div dl dt { float: left; clear:left; padding: 0 0 0 5px; } .ui-timepicker-div dl dd { margin: 0 10px 10px 40%; } .ui-timepicker-div td { font-size: 90%; } .ui-tpicker-grid-label { background: none; border: none; margin: 0; padding: 0; } .ui-timepicker-div .ui_tpicker_unit_hide{ display: none; } .ui-timepicker-rtl{ direction: rtl; } .ui-timepicker-rtl dl { text-align: right; padding: 0 5px 0 0; } .ui-timepicker-rtl dl dt{ float: right; clear: right; } .ui-timepicker-rtl dl dd { margin: 0 40% 10px 10px; } /* Shortened version style */ .ui-timepicker-div.ui-timepicker-oneLine { padding-right: 2px; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time, .ui-timepicker-div.ui-timepicker-oneLine dt { display: none; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_time_label { display: block; padding-top: 2px; } .ui-timepicker-div.ui-timepicker-oneLine dl { text-align: right; } .ui-timepicker-div.ui-timepicker-oneLine dl dd, .ui-timepicker-div.ui-timepicker-oneLine dl dd > div { display:inline-block; margin:0; } .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_minute:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_second:before { content:':'; display:inline-block; } .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_millisec:before, .ui-timepicker-div.ui-timepicker-oneLine dl dd.ui_tpicker_microsec:before { content:'.'; display:inline-block; } .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide, .ui-timepicker-div.ui-timepicker-oneLine .ui_tpicker_unit_hide:before{ display: none; }
third_party/web_platform_tests/conformance-checkers/html/elements/del/cite/scheme-trailing-space-novalid.html
youtube/cobalt
<!DOCTYPE html> <meta charset=utf-8> <title>invalid cite: scheme-trailing-space</title> <del cite="a: foo.com"></del>
sample.css
jden/node-skrollr-css
@keyframes nameofthing { 0 { font-size: 10px; } 30 { font-size: 15px; } 100 { font-size: 12px; } }
public/vendor/picnic/releases/plugins.css
joerx/flux-do
@charset "UTF-8"; /*! normalize.css v3.0.1 | MIT License | git.io/normalize */ /** * 1. Set default font family to sans-serif. * 2. Prevent iOS text size adjust after orientation change, without disabling * user zoom. */ html { font-family: sans-serif; /* 1 */ -ms-text-size-adjust: 100%; /* 2 */ -webkit-text-size-adjust: 100%; /* 2 */ } /** * Remove default margin. */ body { margin: 0; } /* HTML5 display definitions ========================================================================== */ /** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox. * Correct `block` display not defined for `main` in IE 11. */ article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary { display: block; } /** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */ audio, canvas, progress, video { display: inline-block; /* 1 */ vertical-align: baseline; /* 2 */ } /** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */ audio:not([controls]) { display: none; height: 0; } /** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */ [hidden], template { display: none; } /* Links ========================================================================== */ /** * Remove the gray background color from active links in IE 10. */ a { background: transparent; } /** * Improve readability when focused and also mouse hovered in all browsers. */ a:active, a:hover { outline: 0; } /* Text-level semantics ========================================================================== */ /** * Address styling not present in IE 8/9/10/11, Safari, and Chrome. */ abbr[title] { border-bottom: 1px dotted; } /** * Address style set to `bolder` in Firefox 4+, Safari, and Chrome. */ b, strong { font-weight: bold; } /** * Address styling not present in Safari and Chrome. */ dfn { font-style: italic; } /** * Address variable `h1` font-size and margin within `section` and `article` * contexts in Firefox 4+, Safari, and Chrome. */ h1 { font-size: 2em; margin: 0.67em 0; } /** * Address styling not present in IE 8/9. */ mark { background: #ff0; color: #000; } /** * Address inconsistent and variable font size in all browsers. */ small { font-size: 80%; } /** * Prevent `sub` and `sup` affecting `line-height` in all browsers. */ sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } /* Embedded content ========================================================================== */ /** * Remove border when inside `a` element in IE 8/9/10. */ img { border: 0; } /** * Correct overflow not hidden in IE 9/10/11. */ svg:not(:root) { overflow: hidden; } /* Grouping content ========================================================================== */ /** * Address margin not present in IE 8/9 and Safari. */ figure { margin: 1em 40px; } /** * Address differences between Firefox and other browsers. */ hr { box-sizing: content-box; height: 0; } /** * Contain overflow in all browsers. */ pre { overflow: auto; } /** * Address odd `em`-unit font size rendering in all browsers. */ code, kbd, pre, samp { font-family: monospace, monospace; font-size: 1em; } /* Forms ========================================================================== */ /** * Known limitation: by default, Chrome and Safari on OS X allow very limited * styling of `select`, unless a `border` property is set. */ /** * 1. Correct color not being inherited. * Known issue: affects color of disabled elements. * 2. Correct font properties not being inherited. * 3. Address margins set differently in Firefox 4+, Safari, and Chrome. */ button, input, optgroup, select, textarea { color: inherit; /* 1 */ font: inherit; /* 2 */ margin: 0; /* 3 */ } /** * Address `overflow` set to `hidden` in IE 8/9/10/11. */ button { overflow: visible; } /** * Address inconsistent `text-transform` inheritance for `button` and `select`. * All other form control elements do not inherit `text-transform` values. * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera. * Correct `select` style inheritance in Firefox. */ button, select { text-transform: none; } /** * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` * and `video` controls. * 2. Correct inability to style clickable `input` types in iOS. * 3. Improve usability and consistency of cursor style between image-type * `input` and others. */ button, html input[type="button"], input[type="reset"], input[type="submit"] { -webkit-appearance: button; /* 2 */ cursor: pointer; /* 3 */ } /** * Re-set default cursor for disabled elements. */ button[disabled], html input[disabled] { cursor: default; } /** * Remove inner padding and border in Firefox 4+. */ button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } /** * Address Firefox 4+ setting `line-height` on `input` using `!important` in * the UA stylesheet. */ input { line-height: normal; } /** * It's recommended that you don't attempt to style these elements. * Firefox's implementation doesn't respect box-sizing, padding, or width. * * 1. Address box sizing set to `content-box` in IE 8/9/10. * 2. Remove excess padding in IE 8/9/10. */ input[type="checkbox"], input[type="radio"] { box-sizing: border-box; /* 1 */ padding: 0; /* 2 */ } /** * Fix the cursor style for Chrome's increment/decrement buttons. For certain * `font-size` values of the `input`, it causes the cursor style of the * decrement button to change from `default` to `text`. */ input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button { height: auto; } /** * Remove inner padding and search cancel button in Safari and Chrome on OS X. * Safari (but not Chrome) clips the cancel button when the search input has * padding (and `textfield` appearance). */ input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } /** * Define consistent border, margin, and padding. */ fieldset { border: 1px solid #c0c0c0; margin: 0 2px; padding: 0.35em 0.625em 0.75em; } /** * 1. Correct `color` not being inherited in IE 8/9/10/11. * 2. Remove padding so people aren't caught out if they zero out fieldsets. */ legend { border: 0; /* 1 */ padding: 0; /* 2 */ } /** * Remove default vertical scrollbar in IE 8/9/10/11. */ textarea { overflow: auto; } /** * Don't inherit the `font-weight` (applied by a rule above). * NOTE: the default cannot safely be changed in Chrome and Safari on OS X. */ optgroup { font-weight: bold; } /* Tables ========================================================================== */ /** * Remove most spacing between table cells. */ table { border-collapse: collapse; border-spacing: 0; } td, th { padding: 0; } * { box-sizing: inherit; } html, body { font-family: Arial, Helvetica, sans-serif; box-sizing: border-box; height: 100%; } body { color: #111; font-size: 1.1em; line-height: 1.5; background: #fff; } h1, h2, h3, h4, h5, h6 { margin: 0; padding: 0.6em 0; } li { margin: 0 0 0.3em; } a { color: #0074d9; text-decoration: none; box-shadow: none; transition: all 0.3s; } code { padding: 0.3em 0.6em; font-size: .8em; background: #f5f5f5; } pre { text-align: left; padding: 0.3em 0.6em; background: #f5f5f5; border-radius: 0.2em; } pre code { padding: 0; } blockquote { padding: 0 0 0 1em; margin: 0 0 0 .1em; box-shadow: inset 5px 0 rgba(17, 17, 17, 0.3); } label { cursor: pointer; } [class^="icon-"]:before, [class*=" icon-"]:before { margin: 0 0.6em 0 0; } i[class^="icon-"]:before, i[class*=" icon-"]:before { margin: 0; } .label, [data-tooltip]:after, button, .button, [type=submit], .dropimage { display: inline-block; text-align: center; margin: 0; padding: 0.3em 0.9em; vertical-align: middle; background: #0074d9; color: #fff; border: 0; border-radius: 0.2em; width: auto; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .success.label, .success[data-tooltip]:after, button.success, .success.button, .success[type=submit], .success.dropimage { background: #2ecc40; } .warning.label, .warning[data-tooltip]:after, button.warning, .warning.button, .warning[type=submit], .warning.dropimage { background: #ff851b; } .error.label, .error[data-tooltip]:after, button.error, .error.button, .error[type=submit], .error.dropimage { background: #ff4136; } .pseudo.label, .pseudo[data-tooltip]:after, button.pseudo, .pseudo.button, .pseudo[type=submit], .pseudo.dropimage { background: transparent; color: #111; } .label, [data-tooltip]:after { font-size: .6em; padding: .4em .6em; margin-left: 1em; line-height: 1; } button, .button, [type=submit], .dropimage { margin: 0.3em 0; cursor: pointer; transition: all 0.3s; height: auto; box-shadow: 0 0 transparent inset; } button:hover, .button:hover, [type=submit]:hover, .dropimage:hover, button:focus, .button:focus, [type=submit]:focus, .dropimage:focus { box-shadow: inset 0 0 0 99em rgba(255, 255, 255, 0.2); border: 0; } button.pseudo:hover, .pseudo.button:hover, .pseudo[type=submit]:hover, .pseudo.dropimage:hover, button.pseudo:focus, .pseudo.button:focus, .pseudo[type=submit]:focus, .pseudo.dropimage:focus { box-shadow: inset 0 0 0 99em rgba(17, 17, 17, 0.1); } button.active, .active.button, .active[type=submit], .active.dropimage, button:active, .button:active, [type=submit]:active, .dropimage:active, button.pseudo:active, .pseudo.button:active, .pseudo[type=submit]:active, .pseudo.dropimage:active { box-shadow: inset 0 0 0 99em rgba(17, 17, 17, 0.2); } button[disabled], [disabled].button, [disabled][type=submit], [disabled].dropimage { cursor: default; box-shadow: none; background: #bbb; } :checked + .toggle, :checked + .toggle:hover { box-shadow: inset 0 0 0 99em rgba(17, 17, 17, 0.2); } [type] + .toggle { padding: 0.3em 0.9em; margin-right: 0; } [type] + .toggle:after, [type] + .toggle:before { display: none; } input, textarea, .select select { line-height: 1.5; margin: 0; height: 2.1em; padding: 0.3em 0.6em; border: 1px solid #ccc; border-radius: 0.2em; transition: all 0.3s; width: 100%; } input:focus, textarea:focus, .select select:focus { border: 1px solid #0074d9; outline: 0; } textarea { height: auto; } [type=file], [type=color] { cursor: pointer; } [type=file] { height: auto; } select { background: #fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyIiBoZWlnaHQ9IjMiPjxwYXRoIGQ9Im0gMCwxIDEsMiAxLC0yIHoiLz48L3N2Zz4=) no-repeat scroll 95% center/10px 15px; background-position: calc(100% - 15px) center; border: 1px solid #ccc; border-radius: 0.2em; cursor: pointer; width: 100%; height: 2.1em; box-sizing: border-box; padding: 0.3em 0.45em; transition: all .3s; -moz-appearance: none; -webkit-appearance: none; appearance: none; } select::-ms-expand { display: none; } select:focus, select:active { border: 1px solid #0074d9; transition: outline 0s; } select:-moz-focusring { color: transparent; text-shadow: 0 0 0 #111; } select option { font-size: inherit; padding: 0.3em 0.45em; } [type=radio], [type=checkbox] { opacity: 0; width: 0; position: absolute; display: inline-block; } [type=radio] + .checkable:hover:before, [type=checkbox] + .checkable:hover:before, [type=radio]:focus + .checkable:before, [type=checkbox]:focus + .checkable:before { border: 1px solid #0074d9; } [type=radio] + .checkable, [type=checkbox] + .checkable { position: relative; cursor: pointer; padding-left: 1.5em; margin-right: .6em; } [type=radio] + .checkable:before, [type=checkbox] + .checkable:before, [type=radio] + .checkable:after, [type=checkbox] + .checkable:after { content: ''; position: absolute; display: inline-block; left: 0; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); font-size: 1em; line-height: 1em; color: transparent; font-family: sans; text-align: center; box-sizing: border-box; width: 1em; height: 1em; border-radius: 50%; transition: all 0.3s; } [type=radio] + .checkable:before, [type=checkbox] + .checkable:before { border: 1px solid #aaa; } [type=radio]:checked + .checkable:after, [type=checkbox]:checked + .checkable:after { background: #555; -webkit-transform: scale(0.5) translateY(-100%); transform: scale(0.5) translateY(-100%); } [type=checkbox] + .checkable:before { border-radius: 0.2em; } [type=checkbox] + .checkable:after { content: "✔"; background: none; -webkit-transform: scale(2) translateY(-25%); transform: scale(2) translateY(-25%); } [type=checkbox]:checked + .checkable:after { color: #111; background: none; -webkit-transform: translateY(-50%); transform: translateY(-50%); transition: all 0.3s; } table { text-align: left; } td, th { padding: 0.3em 2.4em 0.3em 0.6em; } th { text-align: left; font-weight: 900; color: #fff; background-color: #0074d9; } .success th { background-color: #2ecc40; } .warning th { background-color: #ff851b; } .error th { background-color: #ff4136; } .dull th { background-color: #aaa; } tr:nth-child(even) { background: rgba(0, 0, 0, 0.05); } .row > * { margin: 0.6em 0; } @media (min-width: 60em) { .row { width: calc(100% + 2 * 0.6em); display: table; table-layout: fixed; border-spacing: 0.6em 0; margin: 0.6em 0 0.6em -0.6em; } .row > * { display: table-cell; vertical-align: top; margin: 0; } .none { display: none; } .half { width: 50%; } .third { width: 33.3333%; } .two-third { width: 66.6666%; } .fourth { width: 25%; } .three-fourth { width: 75%; } .fifth { width: 20%; } .two-fifth { width: 40%; } .three-fifth { width: 60%; } .four-fifth { width: 80%; } } nav { position: fixed; top: 0; left: 0; right: 0; height: 3em; padding: 0; background: #fff; box-shadow: 0 0 0.2em rgba(17, 17, 17, 0.2); z-index: 10; transition: all .3s; -webkit-transform-style: preserve-3d; transform-style: preserve-3d; } nav .brand, nav .menu, nav .burger { float: right; position: relative; top: 50%; -webkit-transform: translateY(-50%); transform: translateY(-50%); } nav .brand { font-weight: 700; float: left; padding: 0 0.6em; max-width: 50%; white-space: nowrap; color: #111; } nav .brand * { vertical-align: middle; } nav .logo { height: 2em; margin-right: .3em; } nav .select::after { height: calc(100% - 1px); padding: 0; line-height: 2.4em; } nav .menu > * { margin-right: 0.6em; } .burger { display: none; } @media all and (max-width: 60em) { nav .burger { display: inline-block; cursor: pointer; bottom: -1000em; margin: 0; } nav .menu, nav .show:checked ~ .burger { position: fixed; min-height: 100%; width: 0; overflow: hidden; top: 0; right: 0; bottom: -1000em; margin: 0; background: #fff; transition: all .3s ease; -webkit-transform: none; transform: none; } nav .show:checked ~ .burger { color: transparent; width: 100%; border-radius: 0; background: rgba(0, 0, 0, 0.2); transition: all .3s ease; } nav .show:checked ~ .menu { width: 70%; overflow: auto; transition: all .3s ease; } nav .menu > * { display: block; margin: 0.3em; text-align: left; } nav .menu > a { padding: 0.3em 0.9em; } } .stack, .stack .toggle { margin-top: 0; margin-bottom: 0; display: block; width: 100%; text-align: left; border-radius: 0; } .stack:first-child, .stack:first-child .toggle { border-top-left-radius: 0.2em; border-top-right-radius: 0.2em; } .stack:last-child, .stack:last-child .toggle { border-bottom-left-radius: 0.2em; border-bottom-right-radius: 0.2em; } input.stack, textarea.stack, select.stack { transition: border-bottom 0 ease 0; border-bottom-width: 0; } input.stack:last-child, textarea.stack:last-child, select.stack:last-child { border-bottom-width: 1px; } input.stack:focus + input, input.stack:focus + textarea, input.stack:focus + select, textarea.stack:focus + input, textarea.stack:focus + textarea, textarea.stack:focus + select, select.stack:focus + input, select.stack:focus + textarea, select.stack:focus + select { border-top-color: #0074d9; } .card, .modal .overlay ~ * { position: relative; box-shadow: 0; border-radius: 0.2em; border: 1px solid #ccc; overflow: hidden; text-align: left; background: #fff; margin-bottom: 0.6em; padding: 0; } .card > *, .modal .overlay ~ * > * { width: 100%; display: block; } .card > *:last-child, .modal .overlay ~ * > *:last-child { margin-bottom: 0; } .card header, .modal .overlay ~ * header, .card section, .modal .overlay ~ * section, .card > p, .modal .overlay ~ * > p { padding: .6em .8em; } .card section, .modal .overlay ~ * section { padding: .6em .8em 0; } .card header, .modal .overlay ~ * header { font-weight: bold; position: relative; border-bottom: 1px solid #eee; } .card header h1, .modal .overlay ~ * header h1, .card header h2, .modal .overlay ~ * header h2, .card header h3, .modal .overlay ~ * header h3, .card header h4, .modal .overlay ~ * header h4, .card header h5, .modal .overlay ~ * header h5, .card header h6, .modal .overlay ~ * header h6 { padding: 0; margin: 0 2em 0 0; line-height: 1; display: inline-block; } .card header:last-child, .modal .overlay ~ * header:last-child { border-bottom: 0; } .card footer, .modal .overlay ~ * footer { padding: .8em; } .card p, .modal .overlay ~ * p { margin: 0.3em 0; } .card p:first-child, .modal .overlay ~ * p:first-child { margin-top: 0; } .card p:last-child, .modal .overlay ~ * p:last-child { margin-bottom: 0; } .card > p, .modal .overlay ~ * > p { margin: 0; padding-right: 2.5em; } .card .close, .modal .overlay ~ * .close { position: absolute; top: .4em; right: .3em; font-size: 1.2em; padding: 0 .5em; cursor: pointer; width: auto; } .card .close:hover, .modal .overlay ~ * .close:hover { color: #ff4136; } .card h1 + .close, .modal .overlay ~ * h1 + .close { margin: .2em; } .card h2 + .close, .modal .overlay ~ * h2 + .close { margin: .1em; } .card .dangerous, .modal .overlay ~ * .dangerous { background: #ff4136; float: right; } .modal { text-align: center; } .modal > input { display: none; } .modal > input ~ * { opacity: 0; max-height: 0; overflow: hidden; } .modal .overlay { top: 0; left: 0; bottom: 0; right: 0; position: fixed; margin: 0; border-radius: 0; background: rgba(17, 17, 17, 0.6); transition: all 0.3s; z-index: 99; } .modal .overlay:before, .modal .overlay:after { display: none; } .modal .overlay ~ * { border: 0; position: fixed; top: 50%; left: 50%; -webkit-transform: translateX(-50%) translateY(-50%) scale(0.2, 0.2); transform: translateX(-50%) translateY(-50%) scale(0.2, 0.2); z-index: 100; transition: all 0.3s; } .modal > input:checked ~ * { display: block; opacity: 1; max-height: 10000px; transition: all 0.3s; } .modal > input:checked ~ .overlay ~ * { max-height: 90%; overflow: auto; -webkit-transform: translateX(-50%) translateY(-50%) scale(1, 1); transform: translateX(-50%) translateY(-50%) scale(1, 1); } @media (max-width: 60em) { .modal .overlay ~ * { min-width: 90%; } } .dropimage { position: relative; display: block; padding: 0; padding-bottom: 56.25%; overflow: hidden; cursor: pointer; border: 0; background-color: #ddd; background-size: cover; background-position: center center; background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2ZXJzaW9uPSIxLjEiPjxnIHN0eWxlPSJmaWxsOiMzMzMiPjxwYXRoIGQ9Ik0gMTg3IDIzMCBDIDE3NSAyMzAgMTY1IDI0MCAxNjUgMjUyIEwgMTY1IDMwMCBMIDE2NSA0MDggQyAxNjUgNDIwIDE3NSA0MzAgMTg3IDQzMCBMIDQ2MyA0MzAgQyA0NzUgNDMwIDQ4NSA0MjAgNDg1IDQwOCBMIDQ4NSAzMDAgTCA0ODUgMjUyIEMgNDg1IDI0MCA0NzUgMjMwIDQ2MyAyMzAgTCAxODcgMjMwIHogTSAzNjAgMjU2IEEgNzAgNzIgMCAwIDEgNDMwIDMyOCBBIDcwIDcyIDAgMCAxIDM2MCA0MDAgQSA3MCA3MiAwIDAgMSAyOTAgMzI4IEEgNzAgNzIgMCAwIDEgMzYwIDI1NiB6Ii8+PGNpcmNsZSBjeD0iMzYwIiBjeT0iMzMwIiByPSI0MSIvPjxwYXRoIGQ9Im0yMDUgMjI1IDUtMTAgMjAgMCA1IDEwLTMwIDAiLz48cGF0aCBkPSJNMjg1IDIwMEwyNzAgMjI1IDM3NiAyMjUgMzYxIDIwMCAyODUgMjAwek0zMTAgMjA1TDMzNyAyMDUgMzM3IDIxOCAzMTAgMjE4IDMxMCAyMDV6Ii8+PHBhdGggZD0ibTQwNSAyMjUgNS0xMCAyMCAwIDUgMTAtMzAgMCIvPjwvZz48L3N2Zz4=); } .dropimage input { left: 0; width: 100%; height: 100%; border: 0; margin: 0; padding: 0; opacity: 0; position: absolute; } .tabs { position: relative; overflow: hidden; } .tabs > .row { width: calc(100% + 2 * .6em); display: table; table-layout: fixed; margin-left: -.6em; margin-bottom: .6em; position: relative; padding-left: 0; transition: all .3s; border-spacing: 0; margin: .6em 0; } .tabs > .row:before, .tabs > .row:after { display: none; } .tabs > .row > *, .tabs > .row img { display: table-cell; vertical-align: top; margin: 0; width: 100%; } .tabs > input { display: none; } .tabs > input + * { width: 100%; } .tabs > input + label { width: auto; } .two.tabs > .row { width: 200%; left: -100%; } .two.tabs input:nth-of-type(1):checked ~ .row { margin-left: 100%; } .three.tabs > .row { width: 300%; left: -200%; } .three.tabs input:nth-of-type(1):checked ~ .row { margin-left: 200%; } .three.tabs input:nth-of-type(2):checked ~ .row { margin-left: 100%; } .four.tabs > .row { width: 400%; left: -300%; } .four.tabs input:nth-of-type(1):checked ~ .row { margin-left: 300%; } .four.tabs input:nth-of-type(2):checked ~ .row { margin-left: 200%; } .four.tabs input:nth-of-type(3):checked ~ .row { margin-left: 100%; } [data-tooltip] { position: relative; } [data-tooltip]:after, [data-tooltip]:before { position: absolute; z-index: 10; opacity: 0; border-width: 0; height: 0; padding: 0; overflow: hidden; transition: opacity .6s ease, height 0s ease .6s; top: calc(100% - 6px); left: 0; margin-top: 12px; } [data-tooltip]:after { margin-left: 0; font-size: 0.8em; background: #111; content: attr(data-tooltip); white-space: nowrap; } [data-tooltip]:before { content: ''; width: 0; height: 0; border-width: 0; border-style: solid; border-color: transparent transparent #111; margin-top: 0; left: 10px; } [data-tooltip]:hover:after, [data-tooltip]:focus:after, [data-tooltip]:hover:before, [data-tooltip]:focus:before { opacity: 1; border-width: 6px; height: auto; } [data-tooltip]:hover:after, [data-tooltip]:focus:after { padding: 0.45em 0.9em; } .tooltip-top:after, .tooltip-top:before { top: auto; bottom: calc(100% - 6px); left: 0; margin-bottom: 12px; } .tooltip-top:before { border-color: #111 transparent transparent; margin-bottom: 0; left: 10px; } .tooltip-right:after, .tooltip-right:before { left: 100%; margin-left: 6px; margin-top: 0; top: 0; } .tooltip-right:before { border-color: transparent #111 transparent transparent; margin-left: -6px; left: 100%; top: 7px; } .tooltip-left:after, .tooltip-left:before { right: 100%; margin-right: 6px; left: auto; margin-top: 0; top: 0; } .tooltip-left:before { border-color: transparent transparent transparent #111; margin-right: -6px; right: 100%; top: 7px; }
doc/index-files/index-11.html
chenyihan/Simple-SQLite-ORM-Android
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="zh"> <head> <!-- Generated by javadoc (version 1.7.0_15) on Sat Feb 07 00:09:54 CST 2015 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>P - 索引</title> <meta name="date" content="2015-02-07"> <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="P - 索引"; } //--> </script> <noscript> <div>您的浏览器已禁用 JavaScript。</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../overview-summary.html">概览</a></li> <li>程序包</li> <li>类</li> <li>使用</li> <li><a href="../overview-tree.html">树</a></li> <li><a href="../deprecated-list.html">已过时</a></li> <li class="navBarCell1Rev">索引</li> <li><a href="../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-10.html">上一个字母</a></li> <li><a href="index-12.html">下一个字母</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-filesindex-11.html" target="_top">框架</a></li> <li><a href="index-11.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="contentContainer"><a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">I</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">Q</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">T</a>&nbsp;<a href="index-16.html">U</a>&nbsp;<a href="index-17.html">V</a>&nbsp;<a name="_P_"> <!-- --> </a> <h2 class="title">P</h2> <dl> <dt><a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html" title="org.cyy.fw.android.dborm中的类"><span class="strong">POJOClassDefineException</span></a> - <a href="../org/cyy/fw/android/dborm/package-summary.html">org.cyy.fw.android.dborm</a>中的异常错误</dt> <dd> <div class="block">POJO defined exception<BR> It describes not comply with the POJO specifications of the framework, such as the setter and getter specifications</div> </dd> <dt><span class="strong"><a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html#POJOClassDefineException()">POJOClassDefineException()</a></span> - 异常错误 的构造器org.cyy.fw.android.dborm.<a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html" title="org.cyy.fw.android.dborm中的类">POJOClassDefineException</a></dt> <dd>&nbsp;</dd> <dt><span class="strong"><a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html#POJOClassDefineException(java.lang.String)">POJOClassDefineException(String)</a></span> - 异常错误 的构造器org.cyy.fw.android.dborm.<a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html" title="org.cyy.fw.android.dborm中的类">POJOClassDefineException</a></dt> <dd>&nbsp;</dd> <dt><span class="strong"><a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html#POJOClassDefineException(java.lang.String, java.lang.Throwable)">POJOClassDefineException(String, Throwable)</a></span> - 异常错误 的构造器org.cyy.fw.android.dborm.<a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html" title="org.cyy.fw.android.dborm中的类">POJOClassDefineException</a></dt> <dd>&nbsp;</dd> <dt><span class="strong"><a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html#POJOClassDefineException(java.lang.Throwable)">POJOClassDefineException(Throwable)</a></span> - 异常错误 的构造器org.cyy.fw.android.dborm.<a href="../org/cyy/fw/android/dborm/POJOClassDefineException.html" title="org.cyy.fw.android.dborm中的类">POJOClassDefineException</a></dt> <dd>&nbsp;</dd> <dt><a href="../org/cyy/fw/android/dborm/PrimaryKey.html" title="org.cyy.fw.android.dborm中的注释"><span class="strong">PrimaryKey</span></a> - <a href="../org/cyy/fw/android/dborm/package-summary.html">org.cyy.fw.android.dborm</a>中的注释类型</dt> <dd> <div class="block">Primary key annotation<BR> Acts on attributes</div> </dd> </dl> <a href="index-1.html">A</a>&nbsp;<a href="index-2.html">B</a>&nbsp;<a href="index-3.html">C</a>&nbsp;<a href="index-4.html">D</a>&nbsp;<a href="index-5.html">E</a>&nbsp;<a href="index-6.html">F</a>&nbsp;<a href="index-7.html">G</a>&nbsp;<a href="index-8.html">I</a>&nbsp;<a href="index-9.html">M</a>&nbsp;<a href="index-10.html">O</a>&nbsp;<a href="index-11.html">P</a>&nbsp;<a href="index-12.html">Q</a>&nbsp;<a href="index-13.html">R</a>&nbsp;<a href="index-14.html">S</a>&nbsp;<a href="index-15.html">T</a>&nbsp;<a href="index-16.html">U</a>&nbsp;<a href="index-17.html">V</a>&nbsp;</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="导航"> <li><a href="../overview-summary.html">概览</a></li> <li>程序包</li> <li>类</li> <li>使用</li> <li><a href="../overview-tree.html">树</a></li> <li><a href="../deprecated-list.html">已过时</a></li> <li class="navBarCell1Rev">索引</li> <li><a href="../help-doc.html">帮助</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="index-10.html">上一个字母</a></li> <li><a href="index-12.html">下一个字母</a></li> </ul> <ul class="navList"> <li><a href="../index.html?index-filesindex-11.html" target="_top">框架</a></li> <li><a href="index-11.html" target="_top">无框架</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../allclasses-noframe.html">所有类</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> </body> </html>
src/meerkat/templates/meerkat/main.html
Pawamoy/django-meerkat
{% extends "suit_dashboard/base.html" %} {% load i18n static %} {% block title %} GenIDA Admin {% endblock %} {#{% block dashboard_css %}#} {# {{ block.super }}#} {#{% endblock %}#} {% block dashboard_js %} <script src="{% static "meerkat/highcharts/highcharts.js" %}"></script> <script src="{% static "meerkat/highcharts/modules/heatmap.js" %}"></script> <script src="{% static "meerkat/highcharts/highcharts-more.js" %}"></script> {% endblock %}
slick/trunk/Slick/javadoc-util/org/newdawn/slick/opengl/CompositeIOException.html
dxiao/PPBunnies
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.6.0_22) on Sun Aug 26 15:15:27 EDT 2012 --> <TITLE> CompositeIOException (Slick Util - LWJGL Utilities extracted from Slick) </TITLE> <META NAME="date" CONTENT="2012-08-26"> <LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { if (location.href.indexOf('is-external=true') == -1) { parent.document.title="CompositeIOException (Slick Util - LWJGL Utilities extracted from Slick)"; } } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <HR> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/CompositeIOException.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/newdawn/slick/opengl/CompositeImageData.html" title="class in org.newdawn.slick.opengl"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/newdawn/slick/opengl/CursorLoader.html" title="class in org.newdawn.slick.opengl"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/newdawn/slick/opengl/CompositeIOException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CompositeIOException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <!-- ======== START OF CLASS DATA ======== --> <H2> <FONT SIZE="-1"> org.newdawn.slick.opengl</FONT> <BR> Class CompositeIOException</H2> <PRE> java.lang.Object <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.lang.Throwable <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.lang.Exception <IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">java.io.IOException <IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>org.newdawn.slick.opengl.CompositeIOException</B> </PRE> <DL> <DT><B>All Implemented Interfaces:</B> <DD>java.io.Serializable</DD> </DL> <HR> <DL> <DT><PRE>public class <B>CompositeIOException</B><DT>extends java.io.IOException</DL> </PRE> <P> A collection of IOException that failed image data loading <P> <P> <DL> <DT><B>Author:</B></DT> <DD>kevin</DD> <DT><B>See Also:</B><DD><A HREF="../../../../serialized-form.html#org.newdawn.slick.opengl.CompositeIOException">Serialized Form</A></DL> <HR> <P> <!-- ======== CONSTRUCTOR SUMMARY ======== --> <A NAME="constructor_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Constructor Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE><B><A HREF="../../../../org/newdawn/slick/opengl/CompositeIOException.html#CompositeIOException()">CompositeIOException</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Create a new composite IO Exception</TD> </TR> </TABLE> &nbsp; <!-- ========== METHOD SUMMARY =========== --> <A NAME="method_summary"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2"> <B>Method Summary</B></FONT></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;void</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/newdawn/slick/opengl/CompositeIOException.html#addException(java.lang.Exception)">addException</A></B>(java.lang.Exception&nbsp;e)</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Add an exception that caused this exceptino</TD> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1"> <CODE>&nbsp;java.lang.String</CODE></FONT></TD> <TD><CODE><B><A HREF="../../../../org/newdawn/slick/opengl/CompositeIOException.html#getMessage()">getMessage</A></B>()</CODE> <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Throwable"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Throwable</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</CODE></TD> </TR> </TABLE> &nbsp;<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor"> <TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH> </TR> <TR BGCOLOR="white" CLASS="TableRowColor"> <TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD> </TR> </TABLE> &nbsp; <P> <!-- ========= CONSTRUCTOR DETAIL ======== --> <A NAME="constructor_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Constructor Detail</B></FONT></TH> </TR> </TABLE> <A NAME="CompositeIOException()"><!-- --></A><H3> CompositeIOException</H3> <PRE> public <B>CompositeIOException</B>()</PRE> <DL> <DD>Create a new composite IO Exception <P> </DL> <!-- ============ METHOD DETAIL ========== --> <A NAME="method_detail"><!-- --></A> <TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY=""> <TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor"> <TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2"> <B>Method Detail</B></FONT></TH> </TR> </TABLE> <A NAME="addException(java.lang.Exception)"><!-- --></A><H3> addException</H3> <PRE> public void <B>addException</B>(java.lang.Exception&nbsp;e)</PRE> <DL> <DD>Add an exception that caused this exceptino <P> <DD><DL> <DT><B>Parameters:</B><DD><CODE>e</CODE> - The exception</DL> </DD> </DL> <HR> <A NAME="getMessage()"><!-- --></A><H3> getMessage</H3> <PRE> public java.lang.String <B>getMessage</B>()</PRE> <DL> <DD><DL> <DT><B>Overrides:</B><DD><CODE>getMessage</CODE> in class <CODE>java.lang.Throwable</CODE></DL> </DD> <DD><DL> <DT><B>See Also:</B><DD><CODE>Throwable.getMessage()</CODE></DL> </DD> </DL> <!-- ========= END OF CLASS DATA ========= --> <HR> <!-- ======= START OF BOTTOM NAVBAR ====== --> <A NAME="navbar_bottom"><!-- --></A> <A HREF="#skip-navbar_bottom" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_bottom_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/CompositeIOException.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;<A HREF="../../../../org/newdawn/slick/opengl/CompositeImageData.html" title="class in org.newdawn.slick.opengl"><B>PREV CLASS</B></A>&nbsp; &nbsp;<A HREF="../../../../org/newdawn/slick/opengl/CursorLoader.html" title="class in org.newdawn.slick.opengl"><B>NEXT CLASS</B></A></FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="../../../../index.html?org/newdawn/slick/opengl/CompositeIOException.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="CompositeIOException.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> <TR> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> SUMMARY:&nbsp;NESTED&nbsp;|&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_summary">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_summary">METHOD</A></FONT></TD> <TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2"> DETAIL:&nbsp;FIELD&nbsp;|&nbsp;<A HREF="#constructor_detail">CONSTR</A>&nbsp;|&nbsp;<A HREF="#method_detail">METHOD</A></FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> <i>Copyright &#169; 2006 New Dawn Software. All Rights Reserved.</i> </BODY> </HTML>
webstat/webstat/awstats.allvbg.ru.browserdetail.082011.html
pomahtuk/symphony-test
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html lang='en'> <head> <meta name="generator" content="AWStats 6.7 (build 1.892) from config file awstats.allvbg.ru.conf (http://awstats.sourceforge.net)"> <meta name="robots" content="noindex,nofollow"> <meta http-equiv="content-type" content="text/html; charset=iso-8859-1"> <meta http-equiv="description" content="Awstats - Advanced Web Statistics for allvbg.ru (2011-09)"> <title>Statistics for allvbg.ru (2011-09)</title> <style type="text/css"> <!-- body { font: 11px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; margin-top: 0; margin-bottom: 0; } .aws_bodyl { } .aws_border { border-collapse: collapse; background-color: #CCCCDD; padding: 1px 1px 1px 1px; margin-top: 0px; margin-bottom: 0px; } .aws_title { font: 13px verdana, arial, helvetica, sans-serif; font-weight: bold; background-color: #CCCCDD; text-align: center; margin-top: 0; margin-bottom: 0; padding: 1px 1px 1px 1px; color: #000000; } .aws_blank { font: 13px verdana, arial, helvetica, sans-serif; background-color: #FFFFFF; text-align: center; margin-bottom: 0; padding: 1px 1px 1px 1px; } .aws_data { background-color: #FFFFFF; border-top-width: 1px; border-left-width: 0px; border-right-width: 0px; border-bottom-width: 0px; } .aws_formfield { font: 13px verdana, arial, helvetica; } .aws_button { font-family: arial,verdana,helvetica, sans-serif; font-size: 12px; border: 1px solid #ccd7e0; background-image : url(/awstatsicons/other/button.gif); } th { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; } th.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; padding: 1px 2px 1px 1px; font-size: 13px; font-weight: bold; } td { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:center; color: #000000; } td.aws { border-color: #ECECEC; border-left-width: 0px; border-right-width: 1px; border-top-width: 0px; border-bottom-width: 1px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px;} td.awsm { border-left-width: 0px; border-right-width: 0px; border-top-width: 0px; border-bottom-width: 0px; font: 11px verdana, arial, helvetica, sans-serif; text-align:left; color: #000000; padding: 0px; } b { font-weight: bold; } a { font: 11px verdana, arial, helvetica, sans-serif; } a:link { color: #0011BB; text-decoration: none; } a:visited { color: #0011BB; text-decoration: none; } a:hover { color: #605040; text-decoration: underline; } .currentday { font-weight: bold; } //--> </style> </head> <body style="margin-top: 0px"> <a name="top">&nbsp;</a> <a name="menu">&nbsp;</a> <form name="FormDateFilter" action="/cgi-bin/awstats.pl?config=allvbg.ru&amp;output=browserdetail" style="padding: 0px 0px 0px 0px; margin-top: 0"> <table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%"> <tr><td> <table class="aws_data" border="0" cellpadding="1" cellspacing="0" width="100%"> <tr><td class="aws" valign="middle"><b>Statistics for:</b>&nbsp;</td><td class="aws" valign="middle"><span style="font-size: 14px;">allvbg.ru</span></td><td align="right" rowspan="3"><a href="http://awstats.sourceforge.net" target="awstatshome"><img src="/awstatsicons/other/awstats_logo6.png" border="0" alt='Awstats Web Site' title='Awstats Web Site' /></a></td></tr> <tr valign="middle"><td class="aws" valign="middle" width="150"><b>Last Update:</b>&nbsp;</td><td class="aws" valign="middle"><span style="font-size: 12px;">30 Sep 2011 - 00:01</span></td></tr> <tr><td class="aws" valign="middle"><b>Reported period:</b></td><td class="aws" valign="middle"><span style="font-size: 14px;">Month Sep 2011</span></td></tr> </table> </td></tr></table> </form> <table> <tr><td class="aws"><a href="javascript:parent.window.close();">Close window</a></td></tr> </table> <a name="browsersversions">&nbsp;</a><br /><table class="aws_border" border="0" cellpadding="2" cellspacing="0" width="100%"> <tr><td class="aws_title" width="70%">Browsers </td><td class="aws_blank">&nbsp;</td></tr> <tr><td colspan="2"> <table class="aws_data" border="1" cellpadding="2" cellspacing="0" width="100%"> <tr bgcolor="#ECECEC"><th colspan="2">Versions</th><th width="80">Grabber</th><th bgcolor="#66DDEE" width="80">Hits</th><th bgcolor="#66DDEE" width="80">Percent</th><th>&nbsp;</th></tr> <tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>MSIE</b></td><td>&nbsp;</td><td><b>88</b></td><td><b>1.4 %</b></td><td>&nbsp;</td></tr> <tr><td width="32"><img src="/awstatsicons/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 9.0</td><td>No</td><td>2</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr> <tr><td><img src="/awstatsicons/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 7.0</td><td>No</td><td>44</td><td>0.7 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="4" height="5" /><br /></td></tr> <tr><td><img src="/awstatsicons/browser/msie.png" alt='' title='' /></td><td class="aws">Msie 6.0</td><td>No</td><td>42</td><td>0.7 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="4" height="5" /><br /></td></tr> <tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>FIREFOX</b></td><td>&nbsp;</td><td><b>1407</b></td><td><b>23.7 %</b></td><td>&nbsp;</td></tr> <tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 7.0</td><td>No</td><td>322</td><td>5.4 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="28" height="5" /><br /></td></tr> <tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 6.0.2</td><td>No</td><td>1077</td><td>18.2 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="92" height="5" /><br /></td></tr> <tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 3.6.23</td><td>No</td><td>5</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr> <tr><td><img src="/awstatsicons/browser/firefox.png" alt='' title='' /></td><td class="aws">Firefox 3.6.22</td><td>No</td><td>3</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr> <tr bgcolor="#F6F6F6"><td class="aws" colspan="2"><b>Others</b></td><td>&nbsp;</td><td><b>4422</b></td><td><b>74.7 %</b></td><td>&nbsp;</td></tr> <tr><td><img src="/awstatsicons/browser/safari.png" alt='' title='' /></td><td class="aws">Safari</td><td>No</td><td>3066</td><td>51.8 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="261" height="5" /><br /></td></tr> <tr><td><img src="/awstatsicons/browser/opera.png" alt='' title='' /></td><td class="aws">Opera</td><td>No</td><td>1352</td><td>22.8 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="115" height="5" /><br /></td></tr> <tr><td><img src="/awstatsicons/browser/unknown.png" alt='' title='' /></td><td class="aws"><span style="color: #666688">Unknown</span></td><td width="80">?</td><td>4</td><td>0 %</td><td class="aws"><img src="/awstatsicons/other/hh.png" width="2" height="5" /><br /></td></tr> </table></td></tr></table><br /> <br /><br /> <span dir="ltr" style="font: 11px verdana, arial, helvetica; color: #000000;"><b>Advanced Web Statistics 6.7 (build 1.892)</b> - <a href="http://awstats.sourceforge.net" target="awstatshome">Created by awstats</a></span><br /> <br /> </body> </html>
ajax/libs/timelinejs/2.33.1/css/themes/font/Lora-Istok.css
yogeshsaroya/new-cdnjs
version https://git-lfs.github.com/spec/v1 oid sha256:16e98c59a08881077bb9795903a361a52e5d6ee10f96194c0373e49212c080c1 size 1967
clean/Linux-x86_64-4.04.2-2.0.5/released/8.6/demos/8.10.0.html
coq-bench/coq-bench.github.io
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>demos: Not compatible 👼</title> <link rel="shortcut icon" type="image/png" href="../../../../../favicon.png" /> <link href="../../../../../bootstrap.min.css" rel="stylesheet"> <link href="../../../../../bootstrap-custom.css" rel="stylesheet"> <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet"> <script src="../../../../../moment.min.js"></script> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <div class="container"> <div class="navbar navbar-default" role="navigation"> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="../../../../.."><i class="fa fa-lg fa-flag-checkered"></i> Coq bench</a> </div> <div id="navbar" class="collapse navbar-collapse"> <ul class="nav navbar-nav"> <li><a href="../..">clean / released</a></li> <li class="active"><a href="">8.6 / demos - 8.10.0</a></li> </ul> </div> </div> </div> <div class="article"> <div class="row"> <div class="col-md-12"> <a href="../..">« Up</a> <h1> demos <small> 8.10.0 <span class="label label-info">Not compatible 👼</span> </small> </h1> <p>📅 <em><script>document.write(moment("2022-01-18 12:47:20 +0000", "YYYY-MM-DD HH:mm:ss Z").fromNow());</script> (2022-01-18 12:47:20 UTC)</em><p> <h2>Context</h2> <pre># Packages matching: installed # Name # Installed # Synopsis base-bigarray base base-num base Num library distributed with the OCaml compiler base-threads base base-unix base camlp5 7.14 Preprocessor-pretty-printer of OCaml conf-findutils 1 Virtual package relying on findutils conf-perl 1 Virtual package relying on perl coq 8.6 Formal proof management system num 0 The Num library for arbitrary-precision integer and rational arithmetic ocaml 4.04.2 The OCaml compiler (virtual package) ocaml-base-compiler 4.04.2 Official 4.04.2 release ocaml-config 1 OCaml Switch Configuration ocamlfind 1.9.1 A library manager for OCaml # opam file: opam-version: &quot;2.0&quot; maintainer: &quot;Hugo.Herbelin@inria.fr&quot; homepage: &quot;https://github.com/coq-contribs/demos&quot; license: &quot;LGPL 2.1&quot; build: [make &quot;-j%{jobs}%&quot;] install: [make &quot;install&quot;] remove: [&quot;rm&quot; &quot;-R&quot; &quot;%{lib}%/coq/user-contrib/Demos&quot;] depends: [ &quot;ocaml&quot; &quot;coq&quot; {&gt;= &quot;8.10&quot; &amp; &lt; &quot;8.11~&quot;} ] tags: [ &quot;keyword: sorting&quot; &quot;keyword: Cases&quot; &quot;keyword: Tauto&quot; &quot;keyword: AutoRewrite&quot; &quot;keyword: Prolog&quot; &quot;category: Miscellaneous/Coq Use Examples&quot; ] authors: [ &quot;Coq group&quot; ] bug-reports: &quot;https://github.com/coq-contribs/demos/issues&quot; dev-repo: &quot;git+https://github.com/coq-contribs/demos.git&quot; synopsis: &quot;Demos of some Coq tools appeared in version V6.0&quot; description: &quot;&quot;&quot; Example of sorting algorithms defined using the Cases (pattern-matching) construction. Demo of the decision tactic Tauto for intuitionistic propositional calculus. Demo of the AutoRewrite tactic. Demo of the Prolog tactic applied to the compilation of miniML programs.&quot;&quot;&quot; flags: light-uninstall url { src: &quot;https://github.com/coq-contribs/demos/archive/v8.10.0.tar.gz&quot; checksum: &quot;md5=c41462e54b6780eada13c3b37ae0bd7f&quot; } </pre> <h2>Lint</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Dry install 🏜️</h2> <p>Dry install with the current Coq version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam install -y --show-action coq-demos.8.10.0 coq.8.6</code></dd> <dt>Return code</dt> <dd>5120</dd> <dt>Output</dt> <dd><pre>[NOTE] Package coq is already installed (current version is 8.6). The following dependencies couldn&#39;t be met: - coq-demos -&gt; coq &gt;= 8.10 -&gt; ocaml &gt;= 4.05.0 base of this switch (use `--unlock-base&#39; to force) No solution found, exiting </pre></dd> </dl> <p>Dry install without Coq/switch base, to test if the problem was incompatibility with the current Coq/OCaml version:</p> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>opam remove -y coq; opam install -y --show-action --unlock-base coq-demos.8.10.0</code></dd> <dt>Return code</dt> <dd>0</dd> </dl> <h2>Install dependencies</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Install 🚀</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Duration</dt> <dd>0 s</dd> </dl> <h2>Installation size</h2> <p>No files were installed.</p> <h2>Uninstall 🧹</h2> <dl class="dl-horizontal"> <dt>Command</dt> <dd><code>true</code></dd> <dt>Return code</dt> <dd>0</dd> <dt>Missing removes</dt> <dd> none </dd> <dt>Wrong removes</dt> <dd> none </dd> </dl> </div> </div> </div> <hr/> <div class="footer"> <p class="text-center"> Sources are on <a href="https://github.com/coq-bench">GitHub</a> © Guillaume Claret 🐣 </p> </div> </div> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <script src="../../../../../bootstrap.min.js"></script> </body> </html>
ReportImportTests/net.sf.jabref.model/.classes/DuplicateCheck.html
JessicaDias/JabRef_ES2
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html id="htmlId"> <head> <title>Coverage Report :: DuplicateCheck</title> <style type="text/css"> @import "../../.css/coverage.css"; </style> </head> <body> <div class="header"></div> <div class="content"> <div class="breadCrumbs"> [ <a href="../../index.html">all classes</a> ] [ <a href="../index.html">net.sf.jabref.model</a> ] </div> <h1>Coverage Summary for Class: DuplicateCheck (net.sf.jabref.model)</h1> <table class="coverageStats"> <tr> <th class="name">Class</th> <th class="coverageStat "> Class, % </th> <th class="coverageStat "> Method, % </th> <th class="coverageStat "> Line, % </th> </tr> <tr> <td class="name">DuplicateCheck</td> <td class="coverageStat"> <span class="percent"> 0% </span> <span class="absValue"> (0/ 1) </span> </td> <td class="coverageStat"> <span class="percent"> 0% </span> <span class="absValue"> (0/ 10) </span> </td> <td class="coverageStat"> <span class="percent"> 0% </span> <span class="absValue"> (0/ 133) </span> </td> </tr> </table> <br/> <br/> <div class="sourceCode"><i>1</i>&nbsp;package net.sf.jabref.model; <i>2</i>&nbsp; <i>3</i>&nbsp;import java.util.HashMap; <i>4</i>&nbsp;import java.util.HashSet; <i>5</i>&nbsp;import java.util.List; <i>6</i>&nbsp;import java.util.Map; <i>7</i>&nbsp;import java.util.Optional; <i>8</i>&nbsp;import java.util.Set; <i>9</i>&nbsp; <i>10</i>&nbsp;import net.sf.jabref.model.database.BibDatabase; <i>11</i>&nbsp;import net.sf.jabref.model.database.BibDatabaseMode; <i>12</i>&nbsp;import net.sf.jabref.model.entry.AuthorList; <i>13</i>&nbsp;import net.sf.jabref.model.entry.BibEntry; <i>14</i>&nbsp;import net.sf.jabref.model.entry.EntryType; <i>15</i>&nbsp;import net.sf.jabref.model.entry.FieldName; <i>16</i>&nbsp;import net.sf.jabref.model.entry.FieldProperty; <i>17</i>&nbsp;import net.sf.jabref.model.entry.InternalBibtexFields; <i>18</i>&nbsp; <i>19</i>&nbsp;import org.apache.commons.logging.Log; <i>20</i>&nbsp;import org.apache.commons.logging.LogFactory; <i>21</i>&nbsp; <i>22</i>&nbsp;/** <i>23</i>&nbsp; * This class contains utility method for duplicate checking of entries. <i>24</i>&nbsp; */ <b class="nc"><i>25</i>&nbsp;public class DuplicateCheck {</b> <i>26</i>&nbsp; <b class="nc"><i>27</i>&nbsp; private static final Log LOGGER = LogFactory.getLog(DuplicateCheck.class);</b> <i>28</i>&nbsp; <i>29</i>&nbsp; /* <i>30</i>&nbsp; * Integer values for indicating result of duplicate check (for entries): <i>31</i>&nbsp; * <i>32</i>&nbsp; */ <i>33</i>&nbsp; private static final int NOT_EQUAL = 0; <i>34</i>&nbsp; private static final int EQUAL = 1; <i>35</i>&nbsp; private static final int EMPTY_IN_ONE = 2; <i>36</i>&nbsp; private static final int EMPTY_IN_TWO = 3; <i>37</i>&nbsp; private static final int EMPTY_IN_BOTH = 4; <i>38</i>&nbsp; <b class="nc"><i>39</i>&nbsp; public static double duplicateThreshold = 0.75; // The overall threshold to signal a duplicate pair</b> <i>40</i>&nbsp; // Non-required fields are investigated only if the required fields give a value within <i>41</i>&nbsp; // the doubt range of the threshold: <i>42</i>&nbsp; private static final double DOUBT_RANGE = 0.05; <i>43</i>&nbsp; <i>44</i>&nbsp; private static final double REQUIRED_WEIGHT = 3; // Weighting of all required fields <i>45</i>&nbsp; <i>46</i>&nbsp; // Extra weighting of those fields that are most likely to provide correct duplicate detection: <b class="nc"><i>47</i>&nbsp; private static final Map&lt;String, Double&gt; FIELD_WEIGHTS = new HashMap&lt;&gt;();</b> <i>48</i>&nbsp; <i>49</i>&nbsp; <i>50</i>&nbsp; static { <b class="nc"><i>51</i>&nbsp; DuplicateCheck.FIELD_WEIGHTS.put(FieldName.AUTHOR, 2.5);</b> <b class="nc"><i>52</i>&nbsp; DuplicateCheck.FIELD_WEIGHTS.put(FieldName.EDITOR, 2.5);</b> <b class="nc"><i>53</i>&nbsp; DuplicateCheck.FIELD_WEIGHTS.put(FieldName.TITLE, 3.);</b> <b class="nc"><i>54</i>&nbsp; DuplicateCheck.FIELD_WEIGHTS.put(FieldName.JOURNAL, 2.);</b> <b class="nc"><i>55</i>&nbsp; }</b> <i>56</i>&nbsp; <i>57</i>&nbsp; <i>58</i>&nbsp; /** <i>59</i>&nbsp; * Checks if the two entries represent the same publication. <i>60</i>&nbsp; * <i>61</i>&nbsp; * @param one BibEntry <i>62</i>&nbsp; * @param two BibEntry <i>63</i>&nbsp; * @return boolean <i>64</i>&nbsp; */ <i>65</i>&nbsp; public static boolean isDuplicate(BibEntry one, BibEntry two, BibDatabaseMode bibDatabaseMode) { <i>66</i>&nbsp; <i>67</i>&nbsp; // First check if they are of the same type - a necessary condition: <b class="nc"><i>68</i>&nbsp; if (!one.getType().equals(two.getType())) {</b> <b class="nc"><i>69</i>&nbsp; return false;</b> <i>70</i>&nbsp; } <b class="nc"><i>71</i>&nbsp; EntryType type = EntryTypes.getTypeOrDefault(one.getType(), bibDatabaseMode);</b> <i>72</i>&nbsp; <i>73</i>&nbsp; // The check if they have the same required fields: <b class="nc"><i>74</i>&nbsp; List&lt;String&gt; var = type.getRequiredFieldsFlat();</b> <i>75</i>&nbsp; double[] req; <b class="nc"><i>76</i>&nbsp; if (var == null) {</b> <b class="nc"><i>77</i>&nbsp; req = new double[]{0., 0.};</b> <i>78</i>&nbsp; } else { <b class="nc"><i>79</i>&nbsp; req = DuplicateCheck.compareFieldSet(var, one, two);</b> <i>80</i>&nbsp; } <i>81</i>&nbsp; <b class="nc"><i>82</i>&nbsp; if (Math.abs(req[0] - DuplicateCheck.duplicateThreshold) &gt; DuplicateCheck.DOUBT_RANGE) {</b> <i>83</i>&nbsp; // Far from the threshold value, so we base our decision on the req. fields only <b class="nc"><i>84</i>&nbsp; return req[0] &gt;= DuplicateCheck.duplicateThreshold;</b> <i>85</i>&nbsp; } <i>86</i>&nbsp; // Close to the threshold value, so we take a look at the optional fields, if any: <b class="nc"><i>87</i>&nbsp; List&lt;String&gt; optionalFields = type.getOptionalFields();</b> <b class="nc"><i>88</i>&nbsp; if (optionalFields != null) {</b> <b class="nc"><i>89</i>&nbsp; double[] opt = DuplicateCheck.compareFieldSet(optionalFields, one, two);</b> <b class="nc"><i>90</i>&nbsp; double totValue = ((DuplicateCheck.REQUIRED_WEIGHT * req[0] * req[1]) + (opt[0] * opt[1])) / ((req[1] * DuplicateCheck.REQUIRED_WEIGHT) + opt[1]);</b> <b class="nc"><i>91</i>&nbsp; return totValue &gt;= DuplicateCheck.duplicateThreshold;</b> <i>92</i>&nbsp; } <b class="nc"><i>93</i>&nbsp; return req[0] &gt;= DuplicateCheck.duplicateThreshold;</b> <i>94</i>&nbsp; } <i>95</i>&nbsp; <i>96</i>&nbsp; private static double[] compareFieldSet(List&lt;String&gt; fields, BibEntry one, BibEntry two) { <b class="nc"><i>97</i>&nbsp; double res = 0;</b> <b class="nc"><i>98</i>&nbsp; double totWeights = 0.;</b> <b class="nc"><i>99</i>&nbsp; for (String field : fields) {</b> <i>100</i>&nbsp; double weight; <b class="nc"><i>101</i>&nbsp; if (DuplicateCheck.FIELD_WEIGHTS.containsKey(field)) {</b> <b class="nc"><i>102</i>&nbsp; weight = DuplicateCheck.FIELD_WEIGHTS.get(field);</b> <i>103</i>&nbsp; } else { <b class="nc"><i>104</i>&nbsp; weight = 1.0;</b> <i>105</i>&nbsp; } <b class="nc"><i>106</i>&nbsp; totWeights += weight;</b> <b class="nc"><i>107</i>&nbsp; int result = DuplicateCheck.compareSingleField(field, one, two);</b> <b class="nc"><i>108</i>&nbsp; if (result == EQUAL) {</b> <b class="nc"><i>109</i>&nbsp; res += weight;</b> <b class="nc"><i>110</i>&nbsp; } else if (result == EMPTY_IN_BOTH) {</b> <b class="nc"><i>111</i>&nbsp; totWeights -= weight;</b> <i>112</i>&nbsp; } <b class="nc"><i>113</i>&nbsp; }</b> <b class="nc"><i>114</i>&nbsp; if (totWeights &gt; 0) {</b> <b class="nc"><i>115</i>&nbsp; return new double[]{res / totWeights, totWeights};</b> <i>116</i>&nbsp; } <b class="nc"><i>117</i>&nbsp; return new double[] {0.5, 0.0};</b> <i>118</i>&nbsp; } <i>119</i>&nbsp; <i>120</i>&nbsp; private static int compareSingleField(String field, BibEntry one, BibEntry two) { <b class="nc"><i>121</i>&nbsp; Optional&lt;String&gt; optionalStringOne = one.getField(field);</b> <b class="nc"><i>122</i>&nbsp; Optional&lt;String&gt; optionalStringTwo = two.getField(field);</b> <b class="nc"><i>123</i>&nbsp; if (!optionalStringOne.isPresent()) {</b> <b class="nc"><i>124</i>&nbsp; if (!optionalStringTwo.isPresent()) {</b> <b class="nc"><i>125</i>&nbsp; return EMPTY_IN_BOTH;</b> <i>126</i>&nbsp; } <b class="nc"><i>127</i>&nbsp; return EMPTY_IN_ONE;</b> <b class="nc"><i>128</i>&nbsp; } else if (!optionalStringTwo.isPresent()) {</b> <b class="nc"><i>129</i>&nbsp; return EMPTY_IN_TWO;</b> <i>130</i>&nbsp; } <i>131</i>&nbsp; <i>132</i>&nbsp; // Both strings present <b class="nc"><i>133</i>&nbsp; String stringOne = optionalStringOne.get();</b> <b class="nc"><i>134</i>&nbsp; String stringTwo = optionalStringTwo.get();</b> <i>135</i>&nbsp; <b class="nc"><i>136</i>&nbsp; if (InternalBibtexFields.getFieldProperties(field).contains(FieldProperty.PERSON_NAMES)) {</b> <i>137</i>&nbsp; // Specific for name fields. <i>138</i>&nbsp; // Harmonise case: <b class="nc"><i>139</i>&nbsp; String authorOne = AuthorList.fixAuthorLastNameOnlyCommas(stringOne, false).replace(&quot; and &quot;, &quot; &quot;).toLowerCase();</b> <b class="nc"><i>140</i>&nbsp; String authorTwo = AuthorList.fixAuthorLastNameOnlyCommas(stringTwo, false).replace(&quot; and &quot;, &quot; &quot;).toLowerCase();</b> <b class="nc"><i>141</i>&nbsp; double similarity = DuplicateCheck.correlateByWords(authorOne, authorTwo);</b> <b class="nc"><i>142</i>&nbsp; if (similarity &gt; 0.8) {</b> <b class="nc"><i>143</i>&nbsp; return EQUAL;</b> <i>144</i>&nbsp; } <b class="nc"><i>145</i>&nbsp; return NOT_EQUAL;</b> <b class="nc"><i>146</i>&nbsp; } else if (FieldName.PAGES.equals(field)) {</b> <i>147</i>&nbsp; // Pages can be given with a variety of delimiters, &quot;-&quot;, &quot;--&quot;, &quot; - &quot;, &quot; -- &quot;. <i>148</i>&nbsp; // We do a replace to harmonize these to a simple &quot;-&quot;: <i>149</i>&nbsp; // After this, a simple test for equality should be enough: <b class="nc"><i>150</i>&nbsp; stringOne = stringOne.replaceAll(&quot;[- ]+&quot;, &quot;-&quot;);</b> <b class="nc"><i>151</i>&nbsp; stringTwo = stringTwo.replaceAll(&quot;[- ]+&quot;, &quot;-&quot;);</b> <b class="nc"><i>152</i>&nbsp; if (stringOne.equals(stringTwo)) {</b> <b class="nc"><i>153</i>&nbsp; return EQUAL;</b> <i>154</i>&nbsp; } <b class="nc"><i>155</i>&nbsp; return NOT_EQUAL;</b> <b class="nc"><i>156</i>&nbsp; } else if (FieldName.JOURNAL.equals(field)) {</b> <i>157</i>&nbsp; // We do not attempt to harmonize abbreviation state of the journal names, <i>158</i>&nbsp; // but we remove periods from the names in case they are abbreviated with <i>159</i>&nbsp; // and without dots: <b class="nc"><i>160</i>&nbsp; stringOne = stringOne.replace(&quot;.&quot;, &quot;&quot;).toLowerCase();</b> <b class="nc"><i>161</i>&nbsp; stringTwo = stringTwo.replace(&quot;.&quot;, &quot;&quot;).toLowerCase();</b> <b class="nc"><i>162</i>&nbsp; double similarity = DuplicateCheck.correlateByWords(stringOne, stringTwo);</b> <b class="nc"><i>163</i>&nbsp; if (similarity &gt; 0.8) {</b> <b class="nc"><i>164</i>&nbsp; return EQUAL;</b> <i>165</i>&nbsp; } <b class="nc"><i>166</i>&nbsp; return NOT_EQUAL;</b> <i>167</i>&nbsp; } else { <b class="nc"><i>168</i>&nbsp; stringOne = stringOne.toLowerCase();</b> <b class="nc"><i>169</i>&nbsp; stringTwo = stringTwo.toLowerCase();</b> <b class="nc"><i>170</i>&nbsp; double similarity = DuplicateCheck.correlateByWords(stringOne, stringTwo);</b> <b class="nc"><i>171</i>&nbsp; if (similarity &gt; 0.8) {</b> <b class="nc"><i>172</i>&nbsp; return EQUAL;</b> <i>173</i>&nbsp; } <b class="nc"><i>174</i>&nbsp; return NOT_EQUAL;</b> <i>175</i>&nbsp; } <i>176</i>&nbsp; } <i>177</i>&nbsp; <i>178</i>&nbsp; public static double compareEntriesStrictly(BibEntry one, BibEntry two) { <b class="nc"><i>179</i>&nbsp; Set&lt;String&gt; allFields = new HashSet&lt;&gt;();</b> <b class="nc"><i>180</i>&nbsp; allFields.addAll(one.getFieldNames());</b> <b class="nc"><i>181</i>&nbsp; allFields.addAll(two.getFieldNames());</b> <i>182</i>&nbsp; <b class="nc"><i>183</i>&nbsp; int score = 0;</b> <b class="nc"><i>184</i>&nbsp; for (String field : allFields) {</b> <b class="nc"><i>185</i>&nbsp; Optional&lt;String&gt; stringOne = one.getField(field);</b> <b class="nc"><i>186</i>&nbsp; Optional&lt;String&gt; stringTwo = two.getField(field);</b> <b class="nc"><i>187</i>&nbsp; if (stringOne.equals(stringTwo)) {</b> <b class="nc"><i>188</i>&nbsp; score++;</b> <i>189</i>&nbsp; } <b class="nc"><i>190</i>&nbsp; }</b> <b class="nc"><i>191</i>&nbsp; if (score == allFields.size()) {</b> <b class="nc"><i>192</i>&nbsp; return 1.01; // Just to make sure we can</b> <i>193</i>&nbsp; // use score&gt;1 without <i>194</i>&nbsp; // trouble. <i>195</i>&nbsp; } <b class="nc"><i>196</i>&nbsp; return (double) score / allFields.size();</b> <i>197</i>&nbsp; } <i>198</i>&nbsp; <i>199</i>&nbsp; /** <i>200</i>&nbsp; * Goes through all entries in the given database, and if at least one of <i>201</i>&nbsp; * them is a duplicate of the given entry, as per <i>202</i>&nbsp; * Util.isDuplicate(BibEntry, BibEntry), the duplicate is returned. <i>203</i>&nbsp; * The search is terminated when the first duplicate is found. <i>204</i>&nbsp; * <i>205</i>&nbsp; * @param database The database to search. <i>206</i>&nbsp; * @param entry The entry of which we are looking for duplicates. <i>207</i>&nbsp; * @return The first duplicate entry found. null if no duplicates are found. <i>208</i>&nbsp; */ <i>209</i>&nbsp; public static Optional&lt;BibEntry&gt; containsDuplicate(BibDatabase database, BibEntry entry, BibDatabaseMode bibDatabaseMode) { <b class="nc"><i>210</i>&nbsp; for (BibEntry other : database.getEntries()) {</b> <b class="nc"><i>211</i>&nbsp; if (DuplicateCheck.isDuplicate(entry, other, bibDatabaseMode)) {</b> <b class="nc"><i>212</i>&nbsp; return Optional.of(other); // Duplicate found.</b> <i>213</i>&nbsp; } <b class="nc"><i>214</i>&nbsp; }</b> <b class="nc"><i>215</i>&nbsp; return Optional.empty(); // No duplicate found.</b> <i>216</i>&nbsp; } <i>217</i>&nbsp; <i>218</i>&nbsp; /** <i>219</i>&nbsp; * Compare two strings on the basis of word-by-word correlation analysis. <i>220</i>&nbsp; * <i>221</i>&nbsp; * @param s1 The first string <i>222</i>&nbsp; * @param s2 The second string <i>223</i>&nbsp; * @return a value in the interval [0, 1] indicating the degree of match. <i>224</i>&nbsp; */ <i>225</i>&nbsp; public static double correlateByWords(String s1, String s2) { <b class="nc"><i>226</i>&nbsp; String[] w1 = s1.split(&quot;\\s&quot;);</b> <b class="nc"><i>227</i>&nbsp; String[] w2 = s2.split(&quot;\\s&quot;);</b> <b class="nc"><i>228</i>&nbsp; int n = Math.min(w1.length, w2.length);</b> <b class="nc"><i>229</i>&nbsp; int misses = 0;</b> <b class="nc"><i>230</i>&nbsp; for (int i = 0; i &lt; n; i++) {</b> <b class="nc"><i>231</i>&nbsp; double corr = similarity(w1[i], w2[i]);</b> <b class="nc"><i>232</i>&nbsp; if (corr &lt; 0.75) {</b> <b class="nc"><i>233</i>&nbsp; misses++;</b> <i>234</i>&nbsp; } <i>235</i>&nbsp; } <b class="nc"><i>236</i>&nbsp; double missRate = (double) misses / (double) n;</b> <b class="nc"><i>237</i>&nbsp; return 1 - missRate;</b> <i>238</i>&nbsp; } <i>239</i>&nbsp; <i>240</i>&nbsp; <i>241</i>&nbsp; /** <i>242</i>&nbsp; * Calculates the similarity (a number within 0 and 1) between two strings. <i>243</i>&nbsp; * http://stackoverflow.com/questions/955110/similarity-string-comparison-in-java <i>244</i>&nbsp; */ <i>245</i>&nbsp; private static double similarity(String s1, String s2) { <b class="nc"><i>246</i>&nbsp; String longer = s1;</b> <b class="nc"><i>247</i>&nbsp; String shorter = s2;</b> <i>248</i>&nbsp; <b class="nc"><i>249</i>&nbsp; if (s1.length() &lt; s2.length()) { // longer should always have greater length</b> <b class="nc"><i>250</i>&nbsp; longer = s2;</b> <b class="nc"><i>251</i>&nbsp; shorter = s1;</b> <i>252</i>&nbsp; } <b class="nc"><i>253</i>&nbsp; int longerLength = longer.length();</b> <b class="nc"><i>254</i>&nbsp; if (longerLength == 0) {</b> <b class="nc"><i>255</i>&nbsp; return 1.0;</b> <i>256</i>&nbsp; /* both strings are zero length */ } <b class="nc"><i>257</i>&nbsp; double sim = (longerLength - editDistance(longer, shorter)) / (double) longerLength;</b> <b class="nc"><i>258</i>&nbsp; LOGGER.debug(&quot;Longer string: &quot; + longer + &quot; Shorter string: &quot; + shorter + &quot; Similarity: &quot; + sim);</b> <b class="nc"><i>259</i>&nbsp; return sim;</b> <i>260</i>&nbsp; <i>261</i>&nbsp; } <i>262</i>&nbsp; <i>263</i>&nbsp; /* <i>264</i>&nbsp; * Levenshtein Edit Distance <i>265</i>&nbsp; * http://stackoverflow.com/questions/955110/similarity-string-comparison-in-java <i>266</i>&nbsp; */ <i>267</i>&nbsp; private static int editDistance(String s1, String s2) { <b class="nc"><i>268</i>&nbsp; String s1LowerCase = s1.toLowerCase();</b> <b class="nc"><i>269</i>&nbsp; String s2LowerCase = s2.toLowerCase();</b> <i>270</i>&nbsp; <b class="nc"><i>271</i>&nbsp; int[] costs = new int[s2LowerCase.length() + 1];</b> <b class="nc"><i>272</i>&nbsp; for (int i = 0; i &lt;= s1LowerCase.length(); i++) {</b> <b class="nc"><i>273</i>&nbsp; int lastValue = i;</b> <b class="nc"><i>274</i>&nbsp; for (int j = 0; j &lt;= s2LowerCase.length(); j++) {</b> <b class="nc"><i>275</i>&nbsp; if (i == 0) {</b> <b class="nc"><i>276</i>&nbsp; costs[j] = j;</b> <b class="nc"><i>277</i>&nbsp; } else if (j &gt; 0) {</b> <b class="nc"><i>278</i>&nbsp; int newValue = costs[j - 1];</b> <b class="nc"><i>279</i>&nbsp; if (s1LowerCase.charAt(i - 1) != s2LowerCase.charAt(j - 1)) {</b> <b class="nc"><i>280</i>&nbsp; newValue = Math.min(Math.min(newValue, lastValue), costs[j]) + 1;</b> <i>281</i>&nbsp; } <b class="nc"><i>282</i>&nbsp; costs[j - 1] = lastValue;</b> <b class="nc"><i>283</i>&nbsp; lastValue = newValue;</b> <i>284</i>&nbsp; <i>285</i>&nbsp; } <i>286</i>&nbsp; } <b class="nc"><i>287</i>&nbsp; if (i &gt; 0) {</b> <b class="nc"><i>288</i>&nbsp; costs[s2LowerCase.length()] = lastValue;</b> <i>289</i>&nbsp; } <i>290</i>&nbsp; } <b class="nc"><i>291</i>&nbsp; LOGGER.debug(&quot;String 1: &quot; + s1LowerCase + &quot; String 2: &quot; + s2LowerCase + &quot; Distance: &quot; + costs[s2LowerCase.length()]);</b> <b class="nc"><i>292</i>&nbsp; return costs[s2LowerCase.length()];</b> <i>293</i>&nbsp; } <i>294</i>&nbsp; <i>295</i>&nbsp; <i>296</i>&nbsp;} </div> </div> <div class="footer"> <div style="float:right;">generated on 2017-07-15 00:44</div> </div> </body> </html>
kurssit/2019-2020/rub4.1/index.html
riikkak/riikkak.github.io
--- layout: content-posts title: Etusivu theme: swedish course: rub4.1 sitemap: changefreq: weekly --- {% include posts-frontpage.html course=page.course %}
index.html
sriharsha67/Calc
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Calc</title> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.4/css/bootstrap.min.css"> <link rel="stylesheet" href="css/main.css"> <script src="https://code.jquery.com/jquery-2.1.4.min.js"></script> <script src="js/jquery.hotkeys.js"></script> <script src="js/app.js"></script> </head> <body> <div id="calculator" class="container-fluid vcenter"> <div id="result" class="row">0</div> <div id="preview" class="row"></div> <div class="row key-row"> <div id="key-AC" class="col-xs-3 key" data-code="AC">AC</div> <div id="key-MULTIPLY" class="col-xs-3 key" data-code="MULTIPLY">X</div> <div id="key-DIVISION" class="col-xs-3 key" data-code="DIVISION">/</div> <div id="key-DEL" class="col-xs-3 key" data-code="DEL">DEL</div> </div> <div class="row key-row"> <div class="col-xs-9 key-group"> <div class="container-fluid"> <div class="row key-row"> <div id="key-7" class="col-xs-4 key" data-code="7">7</div> <div id="key-8" class="col-xs-4 key" data-code="8">8</div> <div id="key-9" class="col-xs-4 key" data-code="9">9</div> <div id="key-4" class="col-xs-4 key" data-code="4">4</div> <div id="key-5" class="col-xs-4 key" data-code="5">5</div> <div id="key-6" class="col-xs-4 key" data-code="6">6</div> <div id="key-1" class="col-xs-4 key" data-code="1">1</div> <div id="key-2" class="col-xs-4 key" data-code="2">2</div> <div id="key-3" class="col-xs-4 key" data-code="3">3</div> </div> </div> </div> <div class="col-xs-3 key-group"> <div id="key-MINUS" class="key" data-code="MINUS">-</div> <div id="key-PLUS" class="key" data-code="PLUS">+</div> </div> </div> <div class="row key-row"> <div id="key-DOT" class="col-xs-3 key" data-code="DOT">.</div> <div id="key-0" class="col-xs-3 key" data-code="0">0</div> <div id="key-EQL" class="col-xs-6 key" data-code="EQL">=</div> </div> </div> </body> </html>
doc/de/soulan/example/rmi/ssl/class-use/EasyRSAHelper.html
soulan/JavaRMIWithCustomCA
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="de"> <head> <!-- Generated by javadoc (1.8.0_73) on Sat Mar 05 16:18:23 CET 2016 --> <title>Uses of Class de.soulan.example.rmi.ssl.EasyRSAHelper</title> <meta name="date" content="2016-03-05"> <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 de.soulan.example.rmi.ssl.EasyRSAHelper"; } } 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="../../../../../../de/soulan/example/rmi/ssl/EasyRSAHelper.html" title="class in de.soulan.example.rmi.ssl">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?de/soulan/example/rmi/ssl/class-use/EasyRSAHelper.html" target="_top">Frames</a></li> <li><a href="EasyRSAHelper.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 de.soulan.example.rmi.ssl.EasyRSAHelper" class="title">Uses of Class<br>de.soulan.example.rmi.ssl.EasyRSAHelper</h2> </div> <div class="classUseContainer">No usage of de.soulan.example.rmi.ssl.EasyRSAHelper</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="../../../../../../de/soulan/example/rmi/ssl/EasyRSAHelper.html" title="class in de.soulan.example.rmi.ssl">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../index-files/index-1.html">Index</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?de/soulan/example/rmi/ssl/class-use/EasyRSAHelper.html" target="_top">Frames</a></li> <li><a href="EasyRSAHelper.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>
public/modules/users/views/authentication/signin.client.view.html
amcginlay/comedystore
<section class="row" data-ng-controller="AuthenticationController"> <!--<h3 class="col-md-12 text-center">Sign in using your social accounts</h3>--> <!--<div class="col-md-12 text-center">--> <!--<a href="/auth/facebook" class="undecorated-link">--> <!--<img src="/modules/users/img/buttons/facebook.png">--> <!--</a>--> <!--<a href="/auth/twitter" class="undecorated-link">--> <!--<img src="/modules/users/img/buttons/twitter.png">--> <!--</a>--> <!--<a href="/auth/google" class="undecorated-link">--> <!--<img src="/modules/users/img/buttons/google.png">--> <!--</a>--> <!--<a href="/auth/linkedin" class="undecorated-link">--> <!--<img src="/modules/users/img/buttons/linkedin.png">--> <!--</a>--> <!--<a href="/auth/github" class="undecorated-link">--> <!--<img src="/modules/users/img/buttons/github.png">--> <!--</a>--> <!--</div>--> <h3 class="col-md-12 text-center">Sign In</h3> <div class="col-xs-offset-2 col-xs-8 col-md-offset-5 col-md-2"> <form data-ng-submit="signin()" class="signin form-horizontal" autocomplete="off"> <fieldset> <div class="form-group"> <label for="username">Username</label> <input type="text" id="username" name="username" class="form-control" data-ng-model="credentials.username" placeholder="Username"> </div> <div class="form-group"> <label for="password">Password</label> <input type="password" id="password" name="password" class="form-control" data-ng-model="credentials.password" placeholder="Password"> </div> <div class="text-center form-group"> <button type="submit" class="btn btn-primary">Sign in</button>&nbsp; or&nbsp; <a href="/#!/signup">Sign up</a> </div> <!--<div class="forgot-password">--> <!--<a href="/#!/password/forgot">Forgot your password?</a>--> <!--</div>--> <div data-ng-show="error" class="text-center text-danger"> <strong data-ng-bind="error"></strong> </div> </fieldset> </form> </div> </section> <script> $( document ).ready(function() { cssfixOther(); }); </script>
vsdoc/topic_00000000000002A5.html
asiboro/asiboro.github.io
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="GENERATOR" content="VSdocman - documentation generator; https://www.helixoft.com" /> <link rel="icon" href="favicon.ico"> <title>tlece_ApplyPostVacancyInterview.CreatedUtc Property</title> <link rel="stylesheet" type="text/css" href="msdn2019/toc.css" /> <script src="msdn2019/toc.js"></script> <link rel="stylesheet" type="text/css" href="msdn2019/msdn2019.css"></link> <script src="msdn2019/msdn2019.js" type="text/javascript"></script> <script src="SyntaxHighlighter/scripts/shCore_helixoft.js" type="text/javascript"></script> <script src="SyntaxHighlighter/scripts/shBrushVb.js" type="text/javascript"></script> <script src="SyntaxHighlighter/scripts/shBrushCSharp.js" type="text/javascript"></script> <script src="SyntaxHighlighter/scripts/shBrushFSharp.js" type="text/javascript"></script> <script src="SyntaxHighlighter/scripts/shBrushCpp.js" type="text/javascript"></script> <script src="SyntaxHighlighter/scripts/shBrushJScript.js" type="text/javascript"></script> <link href="SyntaxHighlighter/styles/shCore.css" rel="stylesheet" type="text/css" /> <link href="SyntaxHighlighter/styles/shThemeMsdnLW.css" rel="stylesheet" type="text/css" /> <script type="text/javascript"> SyntaxHighlighter.all(); </script> <link rel="stylesheet" type="text/css" href="vsdocman_overrides.css"></link> </head> <body style="direction: ltr;"> <div id="topic"> <!--HEADER START--> <div id="header"> <div id="header-top-container"> <div id="header-top-parent-container1"> <div id="header-top-container1"> <div id="runningHeaderText1"><a id="headerLogo" href="#" onclick="window.location.href = getCssCustomProperty('--headerLogoLink'); return false;">logo</a></div> <div id="runningHeaderText1b"><script> document.write(getCssCustomProperty('--headerTopCustomLineHtml')); </script></div> </div> </div> <div id="header-top-container2"> <div id="runningHeaderText">SOLUTION-WIDE PROPERTIES Reference</div> <div id="search-bar-container"> <form id="search-bar" action="search--.html"> <input id="HeaderSearchInput" type="search" name="search" placeholder="Search" > <button id="btn-search" class="c-glyph" title="Search"> <span>Search</span> </button> </form> <button id="cancel-search" class="cancel-search" title="Cancel"> <span>Cancel</span> </button> </div> </div> </div> <hr /> <div id="header-breadcrumbs"></div> <div id="headerLinks"> </div> <hr /> </div> <!--HEADER END--> <div id="mainSection"> <div id="toc-area"> <div id="toc-container" class="stickthis full-height"> <div id="-1"></div> <div id="c-1"> <div id="ci-1" class="inner-for-height"></div> </div> </div> </div> <div id="mainBody"> <h1 class="title">tlece_ApplyPostVacancyInterview.CreatedUtc Property</h1> <div class="metadata"> Namespace: <a href="topic_0000000000000265.html">Tlece.Recruitment.Entities</a> <br />Assembly: Tlece.Recruitment (in Tlece.Recruitment.dll) </div> <div class="section_container"> <div id="syntaxSection" class="section"> <div id="syntaxCodeBlocks"> <div class="codeSnippetContainer"> <div class="codeSnippetTabs"> <div class="codeSnippetTabLeftCornerActive"> </div> <div class="codeSnippetTab csFirstTab csActiveTab codeVB"> <a>VB</a> </div> <div class="codeSnippetTab csNaTab codeCsharp"> <a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a> </div> <div class="codeSnippetTab csNaTab codeFsharp"> <a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a> </div> <div class="codeSnippetTab csNaTab codeCpp"> <a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a> </div> <div class="codeSnippetTab csLastTab csNaTab codeJScript"> <a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a> </div> <div class="codeSnippetTabRightCorner"> </div> <div style="clear:both;"> </div> </div> <div class="codeSnippetCodeCollection"> <div class="codeSnippetToolbar"> <a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a> </div> <div class="codeSnippetCode codeVB"> <pre xml:space="preserve" class="brush: vb">Public Property CreatedUtc() As <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">Date</a></pre> </div> <div class="codeSnippetCode codeNA"> <pre xml:space="preserve">This language is not supported or no code example is available.</pre> </div> </div> </div> <div class="codeSnippetContainer"> <div class="codeSnippetTabs"> <div class="codeSnippetTabLeftCorner"> </div> <div class="codeSnippetTab csFirstTab csNaTab codeVB"> <a>VB</a> </div> <div class="codeSnippetTab csActiveTab codeCsharp"> <a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a> </div> <div class="codeSnippetTab csNaTab codeFsharp"> <a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a> </div> <div class="codeSnippetTab csNaTab codeCpp"> <a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a> </div> <div class="codeSnippetTab csLastTab csNaTab codeJScript"> <a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a> </div> <div class="codeSnippetTabRightCorner"> </div> <div style="clear:both;"> </div> </div> <div class="codeSnippetCodeCollection"> <div class="codeSnippetToolbar"> <a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a> </div> <div class="codeSnippetCode codeCsharp"> <pre xml:space="preserve" class="brush: csharp">public <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> CreatedUtc {get; set;}</pre> </div> <div class="codeSnippetCode codeNA"> <pre xml:space="preserve">This language is not supported or no code example is available.</pre> </div> </div> </div> <div class="codeSnippetContainer"> <div class="codeSnippetTabs"> <div class="codeSnippetTabLeftCorner"> </div> <div class="codeSnippetTab csFirstTab csNaTab codeVB"> <a>VB</a> </div> <div class="codeSnippetTab csNaTab codeCsharp"> <a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a> </div> <div class="codeSnippetTab csNaTab codeFsharp"> <a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a> </div> <div class="codeSnippetTab csActiveTab codeCpp"> <a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a> </div> <div class="codeSnippetTab csLastTab csNaTab codeJScript"> <a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a> </div> <div class="codeSnippetTabRightCorner"> </div> <div style="clear:both;"> </div> </div> <div class="codeSnippetCodeCollection"> <div class="codeSnippetToolbar"> <a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a> </div> <div class="codeSnippetCode codeCpp"> <pre xml:space="preserve" class="brush: cpp">public: &nbsp;<br />property <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> CreatedUtc {&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> get( );&nbsp;<br /> void set(&nbsp;<br /> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> value&nbsp;<br /> );&nbsp;<br />}</pre> </div> <div class="codeSnippetCode codeNA"> <pre xml:space="preserve">This language is not supported or no code example is available.</pre> </div> </div> </div> <div class="codeSnippetContainer"> <div class="codeSnippetTabs"> <div class="codeSnippetTabLeftCorner"> </div> <div class="codeSnippetTab csFirstTab csNaTab codeVB"> <a>VB</a> </div> <div class="codeSnippetTab csNaTab codeCsharp"> <a href="javascript: CodeSnippet_SetLanguage('Csharp');">C#</a> </div> <div class="codeSnippetTab csNaTab codeFsharp"> <a href="javascript: CodeSnippet_SetLanguage('Fsharp');">F#</a> </div> <div class="codeSnippetTab csNaTab codeCpp"> <a href="javascript: CodeSnippet_SetLanguage('Cpp');">C++</a> </div> <div class="codeSnippetTab csActiveTab csLastTab codeJScript"> <a href="javascript: CodeSnippet_SetLanguage('JScript');">JScript</a> </div> <div class="codeSnippetTabRightCornerActive"> </div> <div style="clear:both;"> </div> </div> <div class="codeSnippetCodeCollection"> <div class="codeSnippetToolbar"> <a title="Copy to clipboard." href="javascript:void(0)" onclick="CopyCode(this);">Copy</a> </div> <div class="codeSnippetCode codeJScript"> <pre xml:space="preserve" class="brush: js">public function get CreatedUtc() : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a>;&nbsp;<br />public function set CreatedUtc(value : <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a>);</pre> </div> <div class="codeSnippetCode codeNA"> <pre xml:space="preserve">This language is not supported or no code example is available.</pre> </div> </div> </div> </div> <h4 class="subHeading"> Property Value</h4> <a target="_top" href="https://docs.microsoft.com/en-us/dotnet/api/system.datetime">DateTime</a> </div> </div> <div class="section_container"> <div class="section_heading"> <span><a href="javascript:void(0)" title="Collapse" onclick="toggleSection(this);">Applies to</a></span> <div>&nbsp;</div> </div> <div id="frameworksSection" class="section"> <h4 class="subHeading">.NET Framework</h4>Supported in: 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1<br /> </div> </div> <div class="section_container"> <div class="section_heading"> <span><a href="javascript:void(0)" title="Collapse" onclick="toggleSection(this);">See Also</a></span> <div>&nbsp;</div> </div> <div id="seeAlsoSection" class="section"> <div> <a href="topic_000000000000029D.html">tlece_ApplyPostVacancyInterview Class</a><br /> <a href="topic_0000000000000265.html">Tlece.Recruitment.Entities Namespace</a><br /> </div> </div> </div> </div> <div id="internal-toc-area"> <div id="internal-toc-container" class="stickthis"> <h3 id="internal-toc-heading">In this article</h3> <span id="internal-toc-definition-localized-text">Definition</span> </div> </div> </div> <div id="footer"> <div id="footer-container"> <p><span style="color: #FF0000;">Generated with unregistered version of <a target="_top" href="http://www.helixoft.com/vsdocman/overview.html">VSdocman</a></span>&nbsp;<br />Your own footer text will only be shown in registered version.</p> </div> </div> </div> </body> </html>
_layouts/events.html
arnp/personal-site
{% include header-main.html %} {% include events.html %} {% include footer.html %}
material-master/templates/pleinair.html
Philz69/Compagnion
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta content="IE=edge" http-equiv="X-UA-Compatible"> <meta content="initial-scale=1.0, maximum-scale=1.0, user-scalable=no, width=device-width" name="viewport"> <title>Plein Air</title> <!-- css --> <link href="../css/base.css" rel="stylesheet"> <link href="../css/project.css" rel="stylesheet"> <!-- favicon --> <!-- ... --> </head> <body class="page-brand"> <header class="header header-transparent header-waterfall ui-header affix"> <ul class="nav nav-list pull-left"> <a href="" onclick="window.location='../templates/villes.html';"> <img class="icon icon-lg" src="../images/icons/home.svg" style="height:56px;"> </img> </a> </ul> <p class="header-logo margin-left-no" href="">Plein Air</p> <ul class="nav nav-list pull-right"> <a href="#" onclick="history.back()"> <img class="icon icon-lg" src="../images/icons/back.svg" style="height:56px;"> </img> </a> </ul> </header> <nav aria-hidden="true" class="menu" id="ui_menu" tabindex="-1"> <div class="menu-scroll"> <div class="menu-content"> <a class="menu-logo" href="index.html">APP NAME HERE</a> <ul class="nav"> <a class="collapsed waves-attach" data-toggle="collapse" href="#ui_menu_javascript">Temporaire</a> <ul class="menu-collapse collapse" id="ui_menu_javascript"> <li> <a class="waves-attach" href="ui-affix.html">Temporaire</a> </li> </ul> </li> </ul> </div> </div> </nav> <main class="content"> <div class="content-header ui-content-header"> </div> </div> <div class="container"> <div class="row"> <div class="col-lg-6 col-lg-push-3 col-sm-10 col-sm-push-1"> <section class="content-inner margin-top-no"> </section> </div> </div> <div class="row"> <div class="col-sm-4"> <div class="card btn-flat waves-attach cards" > <aside class ="card-side pull-left card-side-icon"> <img src="../images/icons/ete.svg" class="card-side-icon-svg" style="margin:50% auto;"> </img> </aside> <div class="card-main "> <div class="card-inner"> <p class="card-heading"> Été </p> <p class="margin-bottom-lg"> </p> </div> </div> </div> </div> <div class="col-sm-4"> <div class="card btn-flat waves-attach cards"> <aside class="card-side pull-left card-side-icon"> <img src="../images/icons/hiver.svg" class="card-side-icon-svg" style="margin:50% auto;"> </img> </aside> <div class="card-main "> <div class="card-inner"> <p class="card-heading"> Hiver </p> <p class="margin-bottom-lg"> </p> </div> </div> </div> </div> </div> </div> </div> <footer class="ui-footer"> <div class="container"> <img src="../images/icons/ico.png" style="height:40px; width:40px;"> Companion</img> </div> </footer> </main> <!-- js --> <script src="../js/jquery-2.2.3.min.js"></script> <script src="../js/base.js"></script> <script src="../js/project.js"></script> <script src="../js/categories.js"></script> <script src="../js/geolocalisation.js"></script> </body> </html>
web/flat-ui/css/flat-ui.css
JulesMarcil/Twinkler1.2.3
@font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-black-webfont.eot'); src: url('../fonts/lato/lato-black-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-black-webfont.woff') format('woff'), url('../fonts/lato/lato-black-webfont.ttf') format('truetype'), url('../fonts/lato/lato-black-webfont.svg#latoblack') format('svg'); font-weight: 900; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-bold-webfont.eot'); src: url('../fonts/lato/lato-bold-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-bold-webfont.woff') format('woff'), url('../fonts/lato/lato-bold-webfont.ttf') format('truetype'), url('../fonts/lato/lato-bold-webfont.svg#latobold') format('svg'); font-weight: bold; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-bolditalic-webfont.eot'); src: url('../fonts/lato/lato-bolditalic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-bolditalic-webfont.woff') format('woff'), url('../fonts/lato/lato-bolditalic-webfont.ttf') format('truetype'), url('../fonts/lato/lato-bolditalic-webfont.svg#latobold_italic') format('svg'); font-weight: bold; font-style: italic; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-italic-webfont.eot'); src: url('../fonts/lato/lato-italic-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-italic-webfont.woff') format('woff'), url('../fonts/lato/lato-italic-webfont.ttf') format('truetype'), url('../fonts/lato/lato-italic-webfont.svg#latoitalic') format('svg'); font-weight: normal; font-style: italic; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-light-webfont.eot'); src: url('../fonts/lato/lato-light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-light-webfont.woff') format('woff'), url('../fonts/lato/lato-light-webfont.ttf') format('truetype'), url('../fonts/lato/lato-light-webfont.svg#latolight') format('svg'); font-weight: 300; font-style: normal; } @font-face { font-family: 'Lato'; src: url('../fonts/lato/lato-regular-webfont.eot'); src: url('../fonts/lato/lato-regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/lato/lato-regular-webfont.woff') format('woff'), url('../fonts/lato/lato-regular-webfont.ttf') format('truetype'), url('../fonts/lato/lato-regular-webfont.svg#latoregular') format('svg'); font-weight: normal; font-style: normal; } @font-face { font-family: 'Flat-UI-Icons'; src: url('../fonts/Flat-UI-Icons.eot'); src: url('../fonts/Flat-UI-Icons.eot?#iefix') format('embedded-opentype'), url('../fonts/Flat-UI-Icons.woff') format('woff'), url('../fonts/Flat-UI-Icons.ttf') format('truetype'), url('../fonts/Flat-UI-Icons.svg#Flat-UI-Icons') format('svg'); font-weight: normal; font-style: normal; } /* Use the following CSS code if you want to use data attributes for inserting your icons */ [data-icon]:before { font-family: 'Flat-UI-Icons'; content: attr(data-icon); speak: none; font-weight: normal; font-variant: normal; text-transform: none; -webkit-font-smoothing: antialiased; } /* Use the following CSS code if you want to have a class per icon */ /* Instead of a list of all class selectors, you can use the generic selector below, but it's slower: [class*="fui-"] { */ .fui-arrow-right, .fui-arrow-left, .fui-cmd, .fui-check-inverted, .fui-heart, .fui-location, .fui-plus, .fui-check, .fui-cross, .fui-list, .fui-new, .fui-video, .fui-photo, .fui-volume, .fui-time, .fui-eye, .fui-chat, .fui-search, .fui-user, .fui-mail, .fui-lock, .fui-gear, .fui-radio-unchecked, .fui-radio-checked, .fui-checkbox-unchecked, .fui-checkbox-checked, .fui-calendar-solid, .fui-pause, .fui-play, .fui-check-inverted-2 { display: inline-block; font-family: 'Flat-UI-Icons'; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; -webkit-font-smoothing: antialiased; } .fui-arrow-right:before { content: "\e02c"; } .fui-arrow-left:before { content: "\e02d"; } .fui-cmd:before { content: "\e02f"; } .fui-check-inverted:before { content: "\e006"; } .fui-heart:before { content: "\e007"; } .fui-location:before { content: "\e008"; } .fui-plus:before { content: "\e009"; } .fui-check:before { content: "\e00a"; } .fui-cross:before { content: "\e00b"; } .fui-list:before { content: "\e00c"; } .fui-new:before { content: "\e00d"; } .fui-video:before { content: "\e00e"; } .fui-photo:before { content: "\e00f"; } .fui-volume:before { content: "\e010"; } .fui-time:before { content: "\e011"; } .fui-eye:before { content: "\e012"; } .fui-chat:before { content: "\e013"; } .fui-search:before { content: "\e01c"; } .fui-user:before { content: "\e01d"; } .fui-mail:before { content: "\e01e"; } .fui-lock:before { content: "\e01f"; } .fui-gear:before { content: "\e024"; } .fui-radio-unchecked:before { content: "\e02b"; } .fui-radio-checked:before { content: "\e032"; } .fui-checkbox-unchecked:before { content: "\e033"; } .fui-checkbox-checked:before { content: "\e034"; } .fui-calendar-solid:before { content: "\e022"; } .fui-pause:before { content: "\e03b"; } .fui-play:before { content: "\e03c"; } .fui-check-inverted-2:before { content: "\e000"; } .inline-block { display: inline-block; zoom: 1; *display: inline; } .clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; } .clearfix:after { clear: both; } .drop-ie-gradient { filter: unquote("progid:DXImageTransform.Microsoft.gradient(enabled = false)"); } .dropdown-arrow-inverse { border-bottom-color: #34495e !important; border-top-color: #34495e !important; } body { font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 14px; line-height: 1.231; color: #34495e; background-color: #ffffff; } a { color: #16a085; text-decoration: none; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; } a:hover, a:focus { color: #1abc9c; text-decoration: none; } .img-rounded { border-radius: 6px; } .img-comment { font-size: 15px; line-height: 1.231; font-style: italic; margin: 24px 0; } p { font-size: 18px; line-height: 1.71109; } .lead { font-size: 28px; line-height: 1.4642745000000001; font-weight: 300; } @media (min-width: 768px) { .lead { font-size: 21px; } } small { font-size: 83%; line-height: 2.050846; } .text-primary { color: #1abc9c; } a.text-primary:hover, a.text-primary:focus { color: #15967d; } .text-success { color: #2ecc71; } a.text-success:hover, a.text-success:focus { color: #25a35a; } .text-danger { color: #e74c3c; } a.text-danger:hover, a.text-danger:focus { color: #b93d30; } .text-warning { color: #f1c40f; } a.text-warning:hover, a.text-warning:focus { color: #c19d0c; } .text-info { color: #3498db; } a.text-info:hover, a.text-info:focus { color: #2a7aaf; } .text-inverse { color: #ffffff; } a.text-inverse:hover, a.text-inverse:focus { color: #cccccc; } .text-muted { color: #bdc3c7; } a.text-muted:hover, a.text-muted:focus { color: #979c9f; } h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 { font-family: 'Lato', Helvetica, Arial, sans-serif; font-weight: 700; line-height: 1.2; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small, .h1 small, .h2 small, .h3 small, .h4 small, .h5 small, .h6 small { color: #7f8c9a; } h1, h2, h3 { margin-top: 2px; margin-bottom: 4px; } h4, h5, h6 { margin-top: 4px; margin-bottom: 6px; } h6 { font-weight: normal; } h1, .h1 { font-size: 61px; } h2, .h2 { font-size: 52px; } h3, .h3 { font-size: 40px; } h4, .h4 { font-size: 29px; } h5, .h5 { font-size: 28px; } h6, .h6 { font-size: 24px; } h1 small, .h1 small { font-size: 24px; } h2 small, .h2 small { font-size: 18px; } h3 small, .h3 small, h4 small, .h4 small { font-size: 14px; } blockquote { position: relative; border-left: none; padding: 0 0 0 19px; } blockquote:before { position: absolute; left: 0; width: 3px; height: 100%; top: 0; bottom: 0; background-color: #ebedee; content: ""; border-radius: 2px; } blockquote p { font-size: 21px; line-height: 2; font-weight: normal; margin-bottom: .4em; } blockquote small { font-size: 19px; line-height: 2; font-style: italic; color: #34495e; } blockquote small:before { content: ""; } address { margin-bottom: 1.231; line-height: 1.231; } .btn, .btn-group > .btn, .btn-group > .dropdown-menu, .btn-group > .popover { font-size: 15px; font-weight: 400; } .btn-block { white-space: normal; } .btn { border: none; background: #bdc3c7; color: #ffffff; padding: 9px 12px 10px; line-height: 22px; text-decoration: none; border-radius: 6px; -webkit-transition: 0.25s linear; -moz-transition: 0.25s linear; -o-transition: 0.25s linear; transition: 0.25s linear; -webkit-backface-visibility: hidden; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } .btn:hover, .btn:focus, .btn-group:focus .btn.dropdown-toggle { background-color: #cacfd2; color: #ffffff; outline: none; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; } .btn:active, .btn-group.open .btn.dropdown-toggle, .btn.active { background-color: #a1a6a9; color: rgba(255, 255, 255, 0.75); -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .btn.disabled, .btn[disabled] { background-color: #bdc3c7; color: rgba(255, 255, 255, 0.75); opacity: 0.7; filter: alpha(opacity=70); } .btn.btn-hg, .input-group-hg .btn { font-size: 22px; line-height: 22px; padding: 15px 20px 16px; } .btn.btn-hg > [class^="fui-"], .input-group-hg .btn > [class^="fui-"] { top: 1px; } .btn.btn-hg > [class^="fui-"].pull-right, .input-group-hg .btn > [class^="fui-"].pull-right { margin-right: -2px; } .btn.btn-lg, .input-group-lg .btn { font-size: 17px; line-height: 20px; padding: 12px 18px 13px; } .btn.btn-lg > [class^="fui-"], .input-group-lg .btn > [class^="fui-"] { top: 0; } .btn.btn-lg > [class^="fui-"].pull-right, .input-group-lg .btn > [class^="fui-"].pull-right { margin-right: -2px; } .btn.btn-sm, .input-group-sm .btn { font-size: 13px; line-height: 20px; padding: 6px 13px 8px; } .btn.btn-sm > [class^="fui-"], .input-group-sm .btn > [class^="fui-"] { top: 0; } .btn.btn-xs, .input-group-xs .btn { font-size: 12px; padding: 8px 13px 9px; line-height: 1.2; } .btn.btn-xs > [class^="fui-"], .input-group-xs .btn > [class^="fui-"] { top: 0; } .btn.btn-primary { background-color: #1abc9c; } .btn.btn-primary:hover, .btn.btn-primary:focus, .btn-group:focus .btn.btn-primary.dropdown-toggle { background-color: #48c9b0; } .btn.btn-primary:active, .btn-group.open .btn.btn-primary.dropdown-toggle, .btn.btn-primary.active { background-color: #16a085; } .btn.btn-info { background-color: #3498db; } .btn.btn-info:hover, .btn.btn-info:focus, .btn-group:focus .btn.btn-info.dropdown-toggle { background-color: #5dade2; } .btn.btn-info:active, .btn-group.open .btn.btn-info.dropdown-toggle, .btn.btn-info.active { background-color: #2c81ba; } .btn.btn-danger { background-color: #e74c3c; } .btn.btn-danger:hover, .btn.btn-danger:focus, .btn-group:focus .btn.btn-danger.dropdown-toggle { background-color: #ec7063; } .btn.btn-danger:active, .btn-group.open .btn.btn-danger.dropdown-toggle, .btn.btn-danger.active { background-color: #c44133; } .btn.btn-success { background-color: #2ecc71; } .btn.btn-success:hover, .btn.btn-success:focus, .btn-group:focus .btn.btn-success.dropdown-toggle { background-color: #58d68d; } .btn.btn-success:active, .btn-group.open .btn.btn-success.dropdown-toggle, .btn.btn-success.active { background-color: #27ad60; } .btn.btn-warning { background-color: #f1c40f; } .btn.btn-warning:hover, .btn.btn-warning:focus, .btn-group:focus .btn.btn-warning.dropdown-toggle { background-color: #f5d313; } .btn.btn-warning:active, .btn-group.open .btn.btn-warning.dropdown-toggle, .btn.btn-warning.active { background-color: #cda70d; } .btn.btn-inverse { background-color: #34495e; } .btn.btn-inverse:hover, .btn.btn-inverse:focus, .btn-group:focus .btn.btn-inverse.dropdown-toggle { background-color: #415b76; } .btn.btn-inverse:active, .btn-group.open .btn.btn-inverse.dropdown-toggle, .btn.btn-inverse.active { background-color: #2c3e50; } .btn.btn-default { background-color: #bdc3c7; } .btn.btn-default:hover, .btn.btn-default:focus, .btn-group:focus .btn.btn-default.dropdown-toggle { background-color: #cacfd2; } .btn.btn-default:active, .btn-group.open .btn.btn-default.dropdown-toggle, .btn.btn-default.active { background-color: #a1a6a9; } .btn > [class^="fui-"] { margin: 0 1px; position: relative; top: 1px; vertical-align: top; display: inline-block; zoom: 1; *display: inline; } .btn > [class^="fui-"].pull-right { margin-right: 0; } .btn-toolbar .btn.active { color: #ffffff; } .btn-toolbar .btn:first-child { border-radius: 6px 0 0 6px; } .btn-toolbar .btn:last-child { border-radius: 0 6px 6px 0; } .btn-toolbar .btn > [class^="fui-"] { font-size: 16px; top: 0; margin: 0 4px; } .btn-tip { font-weight: 300; padding-left: 10px; } .btn-group > .btn { border-radius: 0; text-align: center; } .btn-group > .btn:active + .btn, .btn-group > .btn.active + .btn { border-left-color: transparent; } .btn-group > .btn:first-of-type, .btn-group > .btn:first-of-type:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-top-left-radius: 6px; border-bottom-left-radius: 6px; } .btn-group > .btn:last-of-type, .btn-group > .btn:last-of-type:not(:first-child):not(:last-child):not(.dropdown-toggle) { border-top-right-radius: 6px; border-bottom-right-radius: 6px; } .btn-group > .btn + .btn { margin-left: 0; } .btn-group > .btn + .dropdown-toggle { border-left: 2px solid rgba(52, 73, 94, 0.15); padding-left: 13px; padding-right: 13px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .btn-group > .btn + .dropdown-toggle .caret { margin-left: 3px; margin-right: 3px; } .btn-group > .btn.btn-gh + .dropdown-toggle .caret { margin-left: 7px; margin-right: 7px; } .btn-group > .btn.btn-sm + .dropdown-toggle .caret { margin-left: 0; margin-right: 0; } .caret { border-width: 8px 6px; border-bottom-color: #34495e; border-top-color: #34495e; border-style: solid; border-bottom-style: none; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; -webkit-transform: scale(1.001); -moz-transform: scale(1.001); -ms-transform: scale(1.001); -o-transform: scale(1.001); transform: scale(1.001); } .dropup .caret, .dropup .btn-lg .caret, .navbar-fixed-bottom .dropdown .caret { border-bottom-width: 8px; } .btn-lg .caret { border-top-width: 8px; border-right-width: 6px; border-left-width: 6px; } .navbar { font-size: 16px; border-radius: 6px; background: #eceef0; border: none; } .navbar .navbar-collapse { padding-left: 0; padding-right: 0; } .navbar .navbar-brand { border-radius: 6px 0 0 6px; color: #526476; font-size: 24px; line-height: 29.55px; font-weight: 700; margin-left: -15px; padding: 23px 28px 24px 17px; text-shadow: none; display: inline-block; } .navbar .navbar-brand:hover, .navbar .navbar-brand:focus { color: #1abc9c; } .navbar .navbar-brand[class*="fui-"] { font-weight: normal; } .navbar .navbar-brand small { line-height: 1; } .navbar .nav { margin-right: 0; display: inline-block; float: left; } .navbar .nav > li { position: relative; display: inline-block; } .navbar .nav > li:hover > ul { opacity: 1; top: 100%; visibility: visible; z-index: 100; -webkit-transform: scale(1, 1); display: block\9; } .navbar .nav > li.active > a, .navbar .nav > li.active > a:hover, .navbar .nav > li.active > a:focus { background: none; color: #1abc9c; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .navbar .nav > li:first-child { border-radius: 6px 6px 0 0; } .navbar .nav > li:last-child { border-radius: 0 0 6px 6px; } .navbar .nav > li > ul { padding-top: 13px; top: 80%; padding-left: 0; } .navbar .nav > li > ul:before { content: ""; border-style: solid; border-width: 0 9px 9px 9px; border-color: transparent transparent #34495e transparent; height: 0; position: absolute; left: 15px; top: 5px; width: 0; -webkit-transform: rotate(360deg); } .navbar .nav > li > ul li:hover ul { opacity: 1; -webkit-transform: scale(1, 1); visibility: visible; display: block\9; } .navbar .nav > li > ul li ul { left: 100%; } .navbar .nav > li > a { color: #526476; display: inline-block; font-weight: 700; font-size: 15px; line-height: 28px; padding: 22px 20px; text-shadow: none; -webkit-transition: background-color .25s, color .25s, border-bottom-color .25s; -moz-transition: background-color .25s, color .25s, border-bottom-color .25s; -o-transition: background-color .25s, color .25s, border-bottom-color .25s; transition: background-color .25s, color .25s, border-bottom-color .25s; -webkit-backface-visibility: hidden; } .navbar .nav > li > a:hover, .navbar .nav > li > a:focus { color: #1abc9c; background-color: transparent; } .navbar .nav > li > a[class*="fui-"] { font-size: 24px; font-weight: normal; } .navbar .nav > li > a > [class*="fui-"] { font-size: 24px; margin: -4px 0 0; position: relative; top: 4px; } .navbar .nav > li > a > [class*="fui-"] + * { margin-left: 12px; } .navbar .nav > li:first-child > a { border-radius: 0 0 0 6px; } .navbar .nav ul { border-radius: 4px; left: 0; list-style-type: none; margin-left: 0; opacity: 0; position: absolute; top: 0; width: 234px; -webkit-transform: scale(1, 0.99); -webkit-transform-origin: 0 0; visibility: hidden; -webkit-transition: 0.3s ease-out; -moz-transition: 0.3s ease-out; -o-transition: 0.3s ease-out; transition: 0.3s ease-out; -webkit-backface-visibility: hidden; } .navbar .nav ul ul { left: 95%; padding-left: 5px; } .navbar .nav ul li { background-color: #34495e; padding: 0 3px 3px; position: relative; } .navbar .nav ul li:first-child { border-radius: 6px 6px 0 0; padding-top: 3px; } .navbar .nav ul li:last-child { border-radius: 0 0 6px 6px; } .navbar .nav ul li.active > a, .navbar .nav ul li.active > a:hover, .navbar .nav ul li.active > a:focus { color: #ffffff; padding-left: 9px; padding-right: 9px; } .navbar .nav ul li.active + li > a { padding-left: 9px; padding-right: 9px; } .navbar .nav ul a { border-radius: 2px; color: #ffffff; display: block; font-size: 14px; padding: 6px 9px; text-decoration: none; } .navbar .nav ul a:hover { background-color: #1abc9c; } .navbar .btn-navbar { background: none; border: none; color: #34495e; margin: 18px 15px 14px; text-shadow: none; display: none; } .navbar .btn-navbar:hover, .navbar .btn-navbar:focus { background: none; color: #1abc9c; } .navbar .btn-navbar:before { content: "\e00c"; font-family: "Flat-UI-Icons"; font-size: 22px; font-style: normal; font-weight: normal; -webkit-font-smoothing: antialiased; } .navbar .btn-navbar .icon-bar { display: none; } .navbar-inner { background: #eceef0; border: none; padding-left: 0; padding-right: 0; border-radius: 6px; } .navbar-inverse { font-size: 17px; background-color: #34495e; } .navbar-inverse .navbar-brand { border-bottom: 2px solid #2c3e50; border-right: 2px solid #2c3e50; color: #ffffff; padding: 10px 28px 11px 32px; } .navbar-inverse .btn-navbar { color: #ffffff; margin: 7px 10px; } .navbar-inverse .btn-icon { margin: 8px 5px 8px 15px; } .navbar-inverse .nav > li:first-child.active > a { padding-left: 20px; } .navbar-inverse .nav > li:first-child > a { border-left: none; } .navbar-inverse .nav > li.active > a, .navbar-inverse .nav > li.active > a:hover, .navbar-inverse .nav > li.active > a:focus { background-color: #1abc9c; border-bottom-color: #16a085; border-left: none; color: #ffffff; padding-left: 20px; } .navbar-inverse .nav > li.active + li > a { border-left: none; padding-left: 20px; } .navbar-inverse .nav > li > a { font-size: 16px; border-bottom: 2px solid #2c3e50; border-left: 2px solid #2c3e50; color: #ffffff; padding: 16px 20px 15px; line-height: 20px; } .navbar-inverse .nav.pull-right { margin-right: -15px; } .navbar-inverse .nav.pull-right > li > a { border-radius: 0 6px 6px 0; } .navbar-unread, .navbar-new { font-family: 'Lato', Helvetica, Arial, sans-serif; background-color: #1abc9c; border-radius: 50%; color: #ffffff; font-size: 0; font-weight: 700; height: 6px; line-height: 14px; position: absolute; right: 12px; text-align: center; top: 28px; width: 6px; z-index: 10; } .active .navbar-unread, .active .navbar-new { background-color: #ffffff; display: none; } .navbar-inverse .navbar-unread, .navbar-inverse .navbar-new { top: 15px; } .navbar-new { background-color: #e74c3c; font-size: 12px; line-height: 17px; height: 18px; margin: -9px -1px; min-width: 18px; padding: 0 1px; width: auto; -webkit-font-smoothing: subpixel-antialiased; } .navbar.navbar-inverse .nav li.dropdown.open > .dropdown-toggle { background-color: #1abc9c; border-bottom-color: #16a085; color: #ffffff; } .navbar.navbar-inverse .nav li.dropdown.open > .dropdown-toggle .caret { border-bottom-color: #ffffff !important; border-top-color: #ffffff !important; } .navbar .nav li.dropdown.open > .dropdown-toggle { background: none; color: #1abc9c; } .navbar .nav li.dropdown.open > .dropdown-toggle .caret { border-bottom-color: #1abc9c !important; border-top-color: #1abc9c !important; } .navbar .nav li.dropdown.open .dropdown-menu { opacity: 1; top: 100%; visibility: visible; z-index: 1000; -webkit-transform: none; } .navbar .nav li.dropdown > .dropdown-toggle { outline: none; } .navbar .nav li.dropdown > .dropdown-toggle:hover .caret, .navbar .nav li.dropdown > .dropdown-toggle:focus .caret { border-bottom-color: #1abc9c; border-top-color: #1abc9c; } .navbar .nav li.dropdown > .dropdown-toggle .caret { border-left-width: 6px; border-right-width: 6px; border-top-width: 8px; border-bottom-color: #4c6a89; border-top-color: #4c6a89; margin-left: 10px; } .navbar .nav li.dropdown .dropdown-menu { background-color: #34495e; opacity: 0; padding: 0; visibility: hidden; } .navbar .nav li.dropdown .dropdown-menu:before { display: none; } .navbar .nav li.dropdown .dropdown-menu:after { border-bottom-color: #34495e; } .navbar .nav li.dropdown .dropdown-menu > li > a { border-radius: 3px; color: #ffffff; padding: 6px 8px 8px; } .navbar .nav li.dropdown .dropdown-menu .divider { background-color: #2c3e50; border-bottom: none; margin: 2px 0 5px; padding: 0; height: 2px; } .navbar.navbar-fixed-bottom .navbar-inner .navbar-search .form-control, .navbar.navbar-fixed-top .navbar-inner .navbar-search .form-control { border-radius: 50px 0 0 50px !important; } .navbar.navbar-fixed-bottom .navbar-inner .navbar-search .btn, .navbar.navbar-fixed-top .navbar-inner .navbar-search .btn { border-radius: 0 50px 50px 0; } .navbar.navbar-fixed-bottom .nav > li:hover > ul { bottom: 100%; padding-bottom: 13px; top: auto; } .navbar.navbar-fixed-bottom .nav > li:hover > ul li:hover ul { bottom: 0; } .navbar.navbar-fixed-bottom .nav ul { bottom: 80%; top: auto; } .select { display: inline-block; margin-bottom: 10px; } [class*="span"] > .select[class*="span"] { margin-left: 0; } .select[class*="span"] .btn { width: 100%; } .select.select-block { display: block; float: none; margin-left: 0; width: auto; *zoom: 1; } .select.select-block:before, .select.select-block:after { display: table; content: ""; } .select.select-block:after { clear: both; } .select.select-block .btn { width: 100%; } .select .btn { width: 220px; } .select .btn.btn-hg .filter-option { left: 20px; right: 40px; top: 16px; } .select .btn.btn-hg .caret { right: 20px; } .select .btn.btn-lg .filter-option { left: 18px; right: 38px; top: 12px; } .select .btn.btn-sm .filter-option { left: 13px; right: 33px; top: 7px; } .select .btn.btn-sm .caret { right: 13px; } .select .btn.btn-xs .filter-option { left: 13px; right: 33px; top: 5px; } .select .btn.btn-xs .caret { right: 13px; } .select .btn .filter-option { height: 26px; left: 13px; overflow: hidden; position: absolute; right: 33px; text-align: left; top: 10px; } .select .btn .caret { position: absolute; right: 16px; margin-top: 8px; } .select .btn .dropdown-toggle { border-radius: 6px; } .select .btn .dropdown-menu { min-width: 100%; } .select .btn .dropdown-menu dt { cursor: default; display: block; padding: 3px 20px; } .select .btn .dropdown-menu li:not(.disabled) > a:hover small { color: rgba(255, 255, 255, 0.004); } .select .btn .dropdown-menu li > a { min-height: 20px; } .select .btn .dropdown-menu li > a.opt { padding-left: 35px; } .select .btn .dropdown-menu li small { padding-left: .5em; } .select .btn .dropdown-menu li > dt small { font-weight: normal; } .select .btn > .disabled, .select .btn .dropdown-menu li.disabled > a { cursor: default; } .select .caret { border-bottom-color: #ffffff; border-top-color: #ffffff; } textarea { font-size: 15px; line-height: 24px; padding: 5px 11px; } label { font-weight: normal; line-height: 1.4285755000000002em; } .form-control:-moz-placeholder { color: #b2bcc5; } .form-control::-moz-placeholder { color: #b2bcc5; } .form-control:-ms-input-placeholder { color: #b2bcc5; } .form-control::-webkit-input-placeholder { color: #b2bcc5; } .form-control.placeholder { color: #b2bcc5; } .form-control { border: 2px solid #bdc3c7; color: #34495e; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 15px; padding: 8px 12px; height: 41px; -webkit-appearance: none; border-radius: 6px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-transition: border .25s linear, color .25s linear, background-color .25s linear; -moz-transition: border .25s linear, color .25s linear, background-color .25s linear; -o-transition: border .25s linear, color .25s linear, background-color .25s linear; transition: border .25s linear, color .25s linear, background-color .25s linear; -webkit-backface-visibility: hidden; } .form-group.focus .form-control, .form-control:focus { border-color: #1abc9c; outline: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control { background-color: #f4f6f6; border-color: #d5dbdb; color: #d5dbdb; cursor: default; } .form-control.flat { border-color: transparent; } .form-control.flat:hover { border-color: #bdc3c7; } .form-control.flat:focus { border-color: #1abc9c; } .input-sm { height: 34px; padding: 8px 10px; font-size: 13px; line-height: 1.231; border-radius: 6px; } select.input-sm { height: 34px; line-height: 34px; } textarea.input-sm { height: auto; } .input-lg { height: 45px; padding: 10px 15px; font-size: 17px; line-height: 1.231; border-radius: 6px; } select.input-lg { height: 45px; line-height: 45px; } textarea.input-lg { height: auto; } .input-hg { height: 53px; padding: 10px 16px; font-size: 22px; line-height: 1.231; border-radius: 6px; } select.input-hg { height: 53px; line-height: 53px; } textarea.input-hg { height: auto; } .has-warning .help-block, .has-warning .control-label { color: #f1c40f; } .has-warning .form-control { color: #f1c40f; border-color: #f1c40f; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .has-warning .form-control:-moz-placeholder { color: #f1c40f; } .has-warning .form-control::-moz-placeholder { color: #f1c40f; } .has-warning .form-control:-ms-input-placeholder { color: #f1c40f; } .has-warning .form-control::-webkit-input-placeholder { color: #f1c40f; } .has-warning .form-control.placeholder { color: #f1c40f; } .has-warning .form-control:focus { border-color: #f1c40f; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .has-warning .input-group-addon { color: #f1c40f; border-color: #f1c40f; background-color: #ffffff; } .has-error .help-block, .has-error .control-label { color: #e74c3c; } .has-error .form-control { color: #e74c3c; border-color: #e74c3c; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .has-error .form-control:-moz-placeholder { color: #e74c3c; } .has-error .form-control::-moz-placeholder { color: #e74c3c; } .has-error .form-control:-ms-input-placeholder { color: #e74c3c; } .has-error .form-control::-webkit-input-placeholder { color: #e74c3c; } .has-error .form-control.placeholder { color: #e74c3c; } .has-error .form-control:focus { border-color: #e74c3c; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .has-error .input-group-addon { color: #e74c3c; border-color: #e74c3c; background-color: #ffffff; } .has-success .help-block, .has-success .control-label { color: #2ecc71; } .has-success .form-control { color: #2ecc71; border-color: #2ecc71; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .has-success .form-control:-moz-placeholder { color: #2ecc71; } .has-success .form-control::-moz-placeholder { color: #2ecc71; } .has-success .form-control:-ms-input-placeholder { color: #2ecc71; } .has-success .form-control::-webkit-input-placeholder { color: #2ecc71; } .has-success .form-control.placeholder { color: #2ecc71; } .has-success .form-control:focus { border-color: #2ecc71; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .has-success .input-group-addon { color: #2ecc71; border-color: #2ecc71; background-color: #ffffff; } .form-group { position: relative; margin-bottom: 20px; } .form-group { position: relative; } .form-control + .input-icon { position: absolute; top: 2px; right: 2px; line-height: 37px; vertical-align: middle; font-size: 20px; color: #b2bcc5; background-color: #ffffff; padding: 0 12px 0 0; border-radius: 6px; } .input-hg + .input-icon { line-height: 49px; padding: 0 16px 0 0; } .input-lg + .input-icon { line-height: 41px; padding: 0 15px 0 0; } .input-sm + .input-icon { font-size: 14px; line-height: 30px; padding: 0 10px 0 0; } .has-success .input-icon { color: #2ecc71; } .has-warning .input-icon { color: #f1c40f; } .has-error .input-icon { color: #e74c3c; } .form-control[disabled] + .input-icon, .form-control[readonly] + .input-icon, fieldset[disabled] .form-control + .input-icon, .form-control.disabled + .input-icon { color: #d5dbdb; background-color: #f4f6f6; } .checkbox, .radio { margin-bottom: 12px; padding-left: 32px; position: relative; -webkit-transition: color 0.25s linear; -moz-transition: color 0.25s linear; -o-transition: color 0.25s linear; transition: color 0.25s linear; -webkit-backface-visibility: hidden; } .checkbox input, .radio input { outline: none !important; display: none; } .checkbox .icons, .radio .icons { color: #bdc3c7; display: block; height: 20px; left: 0; position: absolute; top: 0; width: 20px; text-align: center; line-height: 21px; font-size: 20px; cursor: pointer; -webkit-transition: color 0.25s linear; -moz-transition: color 0.25s linear; -o-transition: color 0.25s linear; transition: color 0.25s linear; -webkit-backface-visibility: hidden; } .checkbox .icons .first-icon, .radio .icons .first-icon, .checkbox .icons .second-icon, .radio .icons .second-icon { display: inline-table; position: absolute; left: 0; top: 0; background-color: #ffffff; opacity: 1; filter: alpha(opacity=100); } .checkbox .icons .second-icon, .radio .icons .second-icon { opacity: 0; filter: alpha(opacity=0); } .checkbox:hover, .radio:hover { color: #bdc3c7; -webkit-transition: color 0.25s linear; -moz-transition: color 0.25s linear; -o-transition: color 0.25s linear; transition: color 0.25s linear; -webkit-backface-visibility: hidden; } .checkbox.checked, .radio.checked { color: #16a085; } .checkbox.checked .first-icon, .radio.checked .first-icon { opacity: 0; filter: alpha(opacity=0); } .checkbox.checked .second-icon, .radio.checked .second-icon { color: #16a085; -webkit-transition: color 0.25s linear; -moz-transition: color 0.25s linear; -o-transition: color 0.25s linear; transition: color 0.25s linear; -webkit-backface-visibility: hidden; opacity: 1; filter: alpha(opacity=100); } .checkbox.disabled, .radio.disabled { cursor: default; color: #e6e8ea; } .checkbox.disabled .icons, .radio.disabled .icons { color: #e6e8ea; } .checkbox.disabled .first-icon, .radio.disabled .first-icon { opacity: 1; filter: alpha(opacity=100); } .checkbox.disabled .second-icon, .radio.disabled .second-icon { opacity: 0; filter: alpha(opacity=0); } .checkbox.disabled.checked .icons, .radio.disabled.checked .icons { color: #e6e8ea; } .checkbox.disabled.checked .first-icon, .radio.disabled.checked .first-icon { opacity: 0; filter: alpha(opacity=0); } .checkbox.disabled.checked .second-icon, .radio.disabled.checked .second-icon { color: #e6e8ea; opacity: 1; filter: alpha(opacity=100); } .tagsinput { background: white; border: 2px solid #1abc9c; border-radius: 6px; height: 100px; margin-bottom: 18px; padding: 6px 1px 1px 6px; overflow-y: auto; text-align: left; } .tagsinput .tag { border-radius: 4px; background-color: #1abc9c; color: #ffffff; cursor: pointer; margin-right: 5px; margin-bottom: 5px; overflow: hidden; line-height: 15px; padding: 6px 13px 8px 19px; position: relative; vertical-align: middle; display: inline-block; zoom: 1; *display: inline; -webkit-transition: 0.14s linear; -moz-transition: 0.14s linear; -o-transition: 0.14s linear; transition: 0.14s linear; -webkit-backface-visibility: hidden; } .tagsinput .tag:hover { background-color: #16a085; color: #ffffff; padding-left: 12px; padding-right: 20px; } .tagsinput .tag:hover .tagsinput-remove-link { color: #ffffff; opacity: 1; display: block\9; } .tagsinput input { background: transparent; border: none; color: #34495e; font-family: 'Lato', Helvetica, Arial, sans-serif; font-size: 14px; margin: 0px; padding: 0 0 0 5px; outline: 0; margin-right: 5px; margin-bottom: 5px; width: 12px; } .tagsinput-remove-link { bottom: 0; color: #ffffff; cursor: pointer; font-size: 12px; opacity: 0; padding: 7px 7px 5px 0; position: absolute; right: 0; text-align: right; text-decoration: none; top: 0; width: 100%; z-index: 2; display: none\9; } .tagsinput-remove-link:before { color: #ffffff; content: "\e00b"; font-family: "Flat-UI-Icons"; } .tagsinput-add-container { vertical-align: middle; display: inline-block; zoom: 1; *display: inline; } .tagsinput-add { background-color: #d6dbdf; border-radius: 3px; color: #ffffff; cursor: pointer; margin-bottom: 5px; padding: 6px 9px; display: inline-block; zoom: 1; *display: inline; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; } .tagsinput-add:hover { background-color: #1abc9c; } .tagsinput-add:before { content: "\e009"; font-family: "Flat-UI-Icons"; } .tags_clear { clear: both; width: 100%; height: 0px; } .not_valid { background: #fbd8db !important; color: #90111a !important; margin-left: 5px !important; } .progress { background: #ebedef; border-radius: 32px; height: 12px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .progress-bar { background: #1abc9c; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .progress-bar-success { background-color: #2ecc71; } .progress-bar-warning { background-color: #f1c40f; } .progress-bar-danger { background-color: #e74c3c; } .progress-bar-info { background-color: #3498db; } .ui-slider { background: #ebedef; border-radius: 32px; height: 12px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; margin-bottom: 20px; position: relative; } .ui-slider-handle { background-color: #16a085; border-radius: 50%; cursor: pointer; height: 18px; margin-left: -9px; position: absolute; top: -3px; width: 18px; z-index: 2; -webkit-transition: background 0.25s; -moz-transition: background 0.25s; -o-transition: background 0.25s; transition: background 0.25s; -webkit-backface-visibility: hidden; } .ui-slider-handle[style*='100'] { margin-left: -15px; } .ui-slider-handle:hover, .ui-slider-handle:focus { background-color: #48c9b0; outline: none; } .ui-slider-handle:active { background-color: #16a085; } .ui-slider-range { background-color: #1abc9c; border-radius: 30px 0 0 30px; display: block; height: 100%; position: absolute; z-index: 1; } .ui-slider-segment { background-color: #d9dbdd; border-radius: 50%; float: left; height: 6px; margin: 3px -6px 0 0; width: 6px; } .ui-slider-value { float: right; font-weight: 500; margin-top: 12px; } .ui-slider-value.first { clear: left; float: left; } .pager { background-color: #34495e; border-radius: 6px; color: #ffffff; font-size: 16px; font-weight: 700; display: inline-block; zoom: 1; *display: inline; } .pager li:first-child > a, .pager li:first-child > span { border-left: none; border-radius: 6px 0 0 6px; } .pager li > a, .pager li > span { background: none; border: none; border-left: 2px solid #2c3e50; color: #ffffff; padding: 9px 15px 10px; text-decoration: none; white-space: nowrap; border-radius: 0 6px 6px 0; } .pager li > a:hover, .pager li > span:hover, .pager li > a:focus, .pager li > span:focus { background-color: #2c3e50; } .pager li > a:active, .pager li > span:active { background-color: #2c3e50; } .pager li > a [class*="fui-"] + span, .pager li > span [class*="fui-"] + span { margin-left: 8px; } .pager li > a span + [class*="fui-"], .pager li > span span + [class*="fui-"] { margin-left: 8px; } .pagination { position: relative; } .pagination ul { background: #d6dbdf; color: #ffffff; padding: 0; margin: 0; display: inline-block; border-radius: 6px; } .pagination ul li { display: inline-block; margin-right: -3px; vertical-align: middle; } .pagination ul li:first-child { border-radius: 6px 0 0 6px; } .pagination ul li:first-child.previous + li > a, .pagination ul li:first-child.previous + li > span { border-left-width: 5px; } .pagination ul li:last-child { border-radius: 0 6px 6px 0; margin-right: 0; } .pagination ul li.previous > a, .pagination ul li.next > a, .pagination ul li.previous > span, .pagination ul li.next > span { background: transparent; border: none; border-right: 2px solid #e4e7ea; font-size: 16px; margin: 0 9px 0 0; padding: 12px 17px; border-radius: 6px 0 0 6px; } .pagination ul li.previous > a, .pagination ul li.next > a, .pagination ul li.previous > span, .pagination ul li.next > span, .pagination ul li.previous > a:hover, .pagination ul li.next > a:hover, .pagination ul li.previous > span:hover, .pagination ul li.next > span:hover, .pagination ul li.previous > a:focus, .pagination ul li.next > a:focus, .pagination ul li.previous > span:focus, .pagination ul li.next > span:focus { border-color: #e4e7ea !important; } @media (max-width: 480px) { .pagination ul li.previous > a, .pagination ul li.next > a, .pagination ul li.previous > span, .pagination ul li.next > span { margin-right: 0; } } .pagination ul li.next { margin-left: 9px; } .pagination ul li.next > a, .pagination ul li.next > span { border-left: 2px solid #e4e7ea; border-right: none; margin: 0; border-radius: 0 6px 6px 0; } .pagination ul li.active > a, .pagination ul li.active > span { background-color: #ffffff; border-color: #ffffff; border-width: 2px !important; color: #d6dbdf; margin: 10px 5px 9px; } .pagination ul li.active > a:hover, .pagination ul li.active > span:hover, .pagination ul li.active > a:focus, .pagination ul li.active > span:focus { background-color: #ffffff; border-color: #ffffff; color: #d6dbdf; } .pagination ul li.active.previous, .pagination ul li.active.next { border-color: #e4e7ea; } .pagination ul li.active.previous { margin-right: 6px; } .pagination ul li > a, .pagination ul li > span { display: inline-block; background: #ffffff; border: 5px solid #d6dbdf; color: #ffffff; line-height: 16px; margin: 7px 2px 6px; min-width: 0; min-height: 16px; padding: 0 4px; border-radius: 50px; -webkit-transition: background .2s ease-out, border-color 0s ease-out, color .2s ease-out; -moz-transition: background .2s ease-out, border-color 0s ease-out, color .2s ease-out; -o-transition: background .2s ease-out, border-color 0s ease-out, color .2s ease-out; transition: background .2s ease-out, border-color 0s ease-out, color .2s ease-out; -webkit-backface-visibility: hidden; } .pagination ul li > a:hover, .pagination ul li > span:hover, .pagination ul li > a:focus, .pagination ul li > span:focus { background-color: #1abc9c; border-color: #1abc9c; color: #ffffff; -webkit-transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out; -moz-transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out; -o-transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out; transition: background .2s ease-out, border-color .2s ease-out, color .2s ease-out; -webkit-backface-visibility: hidden; } .pagination ul li > a:active, .pagination ul li > span:active { background-color: #16a085; border-color: #16a085; } .pagination > .btn.previous, .pagination > .btn.next { margin-right: 8px; font-size: 14px; padding-left: 23px; padding-right: 23px; } .pagination > .btn.previous [class*="fui-"], .pagination > .btn.next [class*="fui-"] { font-size: 16px; margin-left: -2px; margin-top: -2px; } .pagination > .btn.next { margin-left: 8px; margin-right: 0; } .pagination > .btn.next [class*="fui-"] { margin-right: -2px; margin-left: 4px; } .tooltip { font-size: 14px; } .tooltip.in { opacity: 1; } .tooltip.top { padding-bottom: 9px; } .tooltip.top .tooltip-arrow { border-top-color: #34495e; border-width: 9px 9px 0; bottom: 0; margin-left: -9px; } .tooltip.right .tooltip-arrow { border-right-color: #34495e; border-width: 9px 9px 9px 0; margin-top: -9px; left: -3px; } .tooltip.bottom { padding-top: 8px; } .tooltip.bottom .tooltip-arrow { border-bottom-color: #34495e; border-width: 0 9px 9px; margin-left: -9px; top: -1px; } .tooltip.left .tooltip-arrow { border-left-color: #34495e; border-width: 9px 0 9px 9px; margin-top: -9px; right: -3px; } .tooltip-inner { background-color: #34495e; line-height: 18px; padding: 12px 12px; text-align: center; width: 183px; border-radius: 6px; } .dropdown-menu { background-color: #f3f4f5; border: none; display: block; margin-top: 8px; opacity: 0; padding: 0; visibility: hidden; width: 100%; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; } .dropdown-menu.typeahead { display: none; opacity: 1; visibility: visible; width: auto; margin-top: 2px; } .open > .dropdown-menu { margin-top: 18px; opacity: 1; visibility: visible; } .dropdown-menu li:first-child dt + a { border-radius: 0; } .dropdown-menu li:first-child > a { border-radius: 6px 6px 0 0; padding-top: 8px; } .dropdown-menu li:last-child > a { border-radius: 0 0 6px 6px; padding-bottom: 10px; } .dropdown-menu li.active > a, .dropdown-menu li.selected > a, .dropdown-menu li.active > a.highlighted, .dropdown-menu li.selected > a.highlighted { background: #1abc9c; color: #ffffff; } .dropdown-menu li.active > a:hover, .dropdown-menu li.selected > a:hover, .dropdown-menu li.active > a.highlighted:hover, .dropdown-menu li.selected > a.highlighted:hover, .dropdown-menu li.active > a:focus, .dropdown-menu li.selected > a:focus, .dropdown-menu li.active > a.highlighted:focus, .dropdown-menu li.selected > a.highlighted:focus { background: #16a085; color: #ffffff; } .dropdown-menu li > a { color: rgba(52, 73, 94, 0.75); padding: 6px 15px 8px; text-decoration: none; *zoom: 1; -webkit-transition: background-color 0.25s; -moz-transition: background-color 0.25s; -o-transition: background-color 0.25s; transition: background-color 0.25s; -webkit-backface-visibility: hidden; } .dropdown-menu li > a:before, .dropdown-menu li > a:after { display: table; content: ""; } .dropdown-menu li > a:after { clear: both; } .dropdown-menu li > a:hover, .dropdown-menu li > a:active, .dropdown-menu li > a:focus { background: #e1e4e7; color: inherit; outline: none; } .dropdown-menu li > a.highlighted { background: #c9cfd4; color: #ffffff; } .dropdown-menu li > a.highlighted:hover, .dropdown-menu li > a.highlighted:focus { background: #bac1c8; color: #ffffff; } .dropdown-menu li > a:before { float: right; margin-top: 3px; } .dropdown-menu li dt { font-weight: 300; margin-bottom: 3px; margin-top: 12px; padding: 0 15px; } .dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu { margin-bottom: 8px; } .dropup .dropdown-arrow, .navbar-fixed-bottom .dropdown .dropdown-arrow { border-bottom: none; border-top: 8px outset #f3f4f5; bottom: 100%; top: auto; } .navbar-fixed-bottom .nav > li > ul:before { border-bottom: none; border-top: 9px outset #34495e; bottom: 4px; top: auto; } .open.dropup > .dropdown-menu { margin-bottom: 18px; } .open.dropup > .dropdown-arrow { margin-bottom: 10px; } .open.dropup > .dropdown-arrow.dropdown-arrow-inverse { border-top-color: #34495e; } .open > .dropdown-arrow { margin-top: 9px; opacity: 1; } .dropdown-arrow { border-style: solid; border-width: 0 9px 9px 9px; border-color: transparent transparent #f3f4f5 transparent; height: 0; margin-top: 0; opacity: 0; position: absolute; right: 13px; top: 100%; width: 0; z-index: 10; -webkit-transform: rotate(360deg); -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; } .dropdown-inverse { background-color: #34495e; color: #cccccc; padding: 4px 0 6px; } .dropdown-inverse li { margin: 0 4px -2px; } .dropdown-inverse li:first-child > a, .dropdown-inverse li:last-child > a { border-radius: 2px; padding-bottom: 7px; padding-top: 5px; } .dropdown-inverse li:first-child dt + a, .dropdown-inverse li:last-child dt + a { border-radius: 2px; } .dropdown-inverse li.active > a, .dropdown-inverse li.selected > a { background: #1abc9c; color: #ffffff; position: relative; z-index: 1; } .dropdown-inverse li dt { padding-left: 11px; padding-right: 11px; } .dropdown-inverse li .divider { margin-left: 11px; margin-right: 11px; } .dropdown-inverse li > a { border-radius: 2px; color: #ffffff; padding: 5px 11px 7px; } .dropdown-inverse li > a:hover, .dropdown-inverse li > a:active, .dropdown-inverse li > a:focus { background: #2c3e50; } .dropdown-inverse li > a.highlighted { background: #526476; } .dropdown-inverse li > a.highlighted:hover, .dropdown-inverse li > a.highlighted:focus { background: #677786; } .dropdown-inverse li .divider { background-color: #526476; border-bottom-color: #526476; } /* ============================================================ * bootstrapSwitch v1.3 by Larentis Mattia @spiritualGuru * http://www.larentis.eu/switch/ * ============================================================ * Licensed under the Apache License, Version 2.0 * http://www.apache.org/licenses/LICENSE-2.0 * ============================================================ */ .has-switch { border-radius: 30px; display: inline-block; cursor: pointer; line-height: 1.231; overflow: hidden; position: relative; text-align: left; width: 80px; -webkit-mask: url('../images/switch/mask.png') 0 0 no-repeat; mask: url('../images/switch/mask.png') 0 0 no-repeat; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; -o-user-select: none; user-select: none; } .has-switch.deactivate { opacity: 0.5; filter: alpha(opacity=50); cursor: default !important; } .has-switch.deactivate label, .has-switch.deactivate span { cursor: default !important; } .has-switch > div { width: 130px; position: relative; top: 0; } .has-switch > div.switch-animate { -webkit-transition: left 0.25s ease-out; -moz-transition: left 0.25s ease-out; -o-transition: left 0.25s ease-out; transition: left 0.25s ease-out; -webkit-backface-visibility: hidden; } .has-switch > div.switch-off { left: -50px; } .has-switch > div.switch-off label { background-color: #7f8c9a; border-color: #bdc3c7; -webkit-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5); -moz-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5); box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5); } .has-switch > div.switch-on { left: 0; } .has-switch > div.switch-on label { background-color: #1abc9c; } .has-switch input[type=checkbox] { display: none; } .has-switch span { cursor: pointer; font-size: 15px; font-weight: bold; float: left; height: 29px; line-height: 19px; margin: 0; padding-bottom: 6px; padding-top: 5px; position: relative; text-align: center; width: 50%; z-index: 1; -webkit-transition: 0.25s ease-out; -moz-transition: 0.25s ease-out; -o-transition: 0.25s ease-out; transition: 0.25s ease-out; -webkit-backface-visibility: hidden; } .has-switch span.switch-left { border-radius: 30px 0 0 30px; background-color: #34495e; color: #1abc9c; border-left: 1px solid transparent; } .has-switch span.switch-right { border-radius: 0 30px 30px 0; background-color: #bdc3c7; color: #ffffff; text-indent: 7px; } .has-switch span.switch-right [class*="fui-"] { text-indent: 0; } .has-switch label { border: 4px solid #34495e; border-radius: 50%; float: left; height: 29px; margin: 0 -15px 0 -14px; padding: 0; position: relative; vertical-align: middle; width: 29px; z-index: 100; -webkit-transition: 0.25s ease-out; -moz-transition: 0.25s ease-out; -o-transition: 0.25s ease-out; transition: 0.25s ease-out; -webkit-backface-visibility: hidden; } .switch-square { border-radius: 6px; -webkit-mask: url('../images/switch/mask.png') 0 0 no-repeat; mask: url('../images/switch/mask.png') 0 0 no-repeat; } .switch-square > div.switch-off label { border-color: #7f8c9a; border-radius: 6px 0 0 6px; } .switch-square span.switch-left { border-radius: 6px 0 0 6px; } .switch-square span.switch-left [class*="fui-"] { text-indent: -10px; } .switch-square span.switch-right { border-radius: 0 6px 6px 0; } .switch-square span.switch-right [class*="fui-"] { text-indent: 5px; } .switch-square label { border-radius: 0 6px 6px 0; border-color: #1abc9c; } .share { background-color: #eff0f2; position: relative; border-radius: 6px; } .share:before { content: ""; border-style: solid; border-width: 0 9px 9px 9px; border-color: transparent transparent #eff0f2 transparent; height: 0; position: absolute; left: 23px; top: -9px; width: 0; -webkit-transform: rotate(360deg); } .share ul { list-style-type: none; margin: 0; padding: 15px; } .share li { padding-top: 11px; *zoom: 1; } .share li:before, .share li:after { display: table; content: ""; } .share li:after { clear: both; } .share li:first-child { padding-top: 0; } .share .toggle { float: right; margin: 0; } .share .btn { border-radius: 0 0 6px 6px; } .share-label { float: left; font-size: 15px; padding-top: 5px; width: 50%; } .pallete-item { width: 140px; float: left; margin: 0 0 20px 20px; } .palette { color: #ffffff; margin: 0; padding: 15px; text-transform: uppercase; } .palette dt { display: block; font-weight: bold; opacity: 0.8; filter: alpha(opacity=80); } .palette dd { font-weight: 200; margin-left: 0; opacity: 0.8; filter: alpha(opacity=80); } .palette-turquoise { background-color: #1abc9c; } .palette-green-sea { background-color: #16a085; } .palette-emerald { background-color: #2ecc71; } .palette-nephritis { background-color: #27ae60; } .palette-peter-river { background-color: #3498db; } .palette-belize-hole { background-color: #2980b9; } .palette-amethyst { background-color: #9b59b6; } .palette-wisteria { background-color: #8e44ad; } .palette-wet-asphalt { background-color: #34495e; } .palette-midnight-blue { background-color: #2c3e50; } .palette-sun-flower { background-color: #f1c40f; } .palette-orange { background-color: #f39c12; } .palette-carrot { background-color: #e67e22; } .palette-pumpkin { background-color: #d35400; } .palette-alizarin { background-color: #e74c3c; } .palette-pomegranate { background-color: #c0392b; } .palette-clouds { background-color: #ecf0f1; } .palette-silver { background-color: #bdc3c7; } .palette-concrete { background-color: #95a5a6; } .palette-asbestos { background-color: #7f8c8d; } .palette-clouds { color: #bdc3c7; } .palette-paragraph { color: #7f8c8d; font-size: 12px; line-height: 17px; } .palette-paragraph span { color: #bdc3c7; } .palette-headline { color: #7f8c8d; font-size: 13px; font-weight: 700; margin-top: -3px; } .tile { background-color: #eff0f2; border-radius: 6px; padding: 14px; position: relative; text-align: center; } .tile.tile-hot:before { background: url(../images/tile/ribbon.png) 0 0 no-repeat; background-size: 82px 82px; content: ''; height: 82px; position: absolute; right: -4px; top: -4px; width: 82px; } .tile p { font-size: 15px; margin-bottom: 33px; } .tile-image { height: 100px; margin: 31px 0 27px; vertical-align: bottom; } .tile-image.big-illustration { height: 111px; margin-top: 20px; width: 112px; } .tile-title { font-size: 20px; margin: 0; } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) { .tile.tile-hot:before { background-image: url(../images/tile/ribbon-2x.png); } } .todo { color: #798795; margin-bottom: 20px; border-radius: 6px; } .todo ul { background-color: #2c3e50; margin: 0; padding: 0; list-style-type: none; border-radius: 0 0 6px 6px; } .todo li { background: #34495e url(../images/todo/todo.png) 92% center no-repeat; background-size: 20px 20px; cursor: pointer; margin-top: 2px; padding: 18px 42px 19px 25px; position: relative; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; } .todo li:first-child { margin-top: 0; } .todo li:last-child { border-radius: 0 0 6px 6px; padding-bottom: 20px; } .todo li.todo-done { background: transparent url(../images/todo/done.png) 92% center no-repeat; background-size: 20px 20px; color: #1abc9c; } .todo li.todo-done .todo-name { color: #1abc9c; } .todo-search { position: relative; background: #1abc9c; background-size: 16px 16px; border-radius: 6px 6px 0 0; color: #34495e; padding: 19px 25px 20px; } .todo-search:before { position: absolute; font-family: 'Flat-UI-Icons'; content: "\e01c"; font-size: 16px; display: inline-block; top: 50%; left: 92%; margin: -0.5em 0 0 -1em; } input.todo-search-field { background: none; border: none; color: #34495e; font-size: 19px; font-weight: 700; margin: 0; line-height: 23px; padding: 5px 0; text-indent: 0; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } input.todo-search-field:-moz-placeholder { color: #34495e; } input.todo-search-field::-moz-placeholder { color: #34495e; } input.todo-search-field:-ms-input-placeholder { color: #34495e; } input.todo-search-field::-webkit-input-placeholder { color: #34495e; } input.todo-search-field.placeholder { color: #34495e; } .todo-icon { float: left; font-size: 24px; padding: 11px 22px 0 0; } .todo-content { padding-top: 1px; overflow: hidden; } .todo-name { color: #ffffff; font-size: 17px; margin: 1px 0 3px; } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) { .todo li { background-image: url(../images/todo/todo-2x.png); } .todo li.todo-done { background-image: url(../images/todo/done-2x.png); } } .video-js { background-color: transparent; margin-top: -95px; position: relative; padding: 0; font-size: 10px; vertical-align: middle; border-radius: 6px 6px 0 0; -webkit-backface-visibility: hidden; -moz-backface-visibility: hidden; -ms-backface-visibility: hidden; backface-visibility: hidden; } .video-js .vjs-tech { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 6px 6px 0 0; } .video-js:-moz-full-screen { position: absolute; } body.vjs-full-window { padding: 0; margin: 0; height: 100%; overflow-y: auto; } .video-js.vjs-fullscreen { position: fixed; overflow: hidden; z-index: 1000; left: 0; top: 0; bottom: 0; right: 0; width: 100% !important; height: 100% !important; _position: absolute; } .video-js:-webkit-full-screen { width: 100% !important; height: 100% !important; } .vjs-poster { margin: 0 auto; padding: 0; cursor: pointer; position: relative; width: 100%; max-height: 100%; border-radius: 6px 6px 0 0; } .video-js .vjs-text-track-display { text-align: center; position: absolute; bottom: 4em; left: 1em; right: 1em; font-family: 'Lato', Helvetica, Arial, sans-serif; } .video-js .vjs-text-track { display: none; color: #ffffff; font-size: 1.4em; text-align: center; margin-bottom: .1em; background: #000; background: rgba(0, 0, 0, 0.5); } .video-js .vjs-subtitles { color: #fff; } .video-js .vjs-captions { color: #fc6; } .vjs-tt-cue { display: block; } .vjs-fade-in { visibility: visible !important; opacity: 1 !important; -webkit-transition: visibility 0s linear 0s, opacity .3s linear; -moz-transition: visibility 0s linear 0s, opacity .3s linear; -o-transition: visibility 0s linear 0s, opacity .3s linear; transition: visibility 0s linear 0s, opacity .3s linear; -webkit-backface-visibility: hidden; } .vjs-fade-out { visibility: hidden !important; opacity: 0 !important; -webkit-transition: visibility 0s linear 1.5s, opacity 1.5s linear; -moz-transition: visibility 0s linear 1.5s, opacity 1.5s linear; -o-transition: visibility 0s linear 1.5s, opacity 1.5s linear; transition: visibility 0s linear 1.5s, opacity 1.5s linear; -webkit-backface-visibility: hidden; } .vjs-control-bar { position: absolute; bottom: -47px; left: 0; right: 0; margin: 0; padding: 0; height: 47px; color: #ffffff; background: #273747; border-radius: 0 0 6px 6px; } .vjs-control-bar.vjs-fade-out { visibility: visible !important; opacity: 1 !important; } .vjs-control { background-position: center center; background-repeat: no-repeat; position: relative; float: left; text-align: center; margin: 0; padding: 0; height: 18px; width: 18px; } .vjs-control:focus { outline: 0; } .vjs-control div { background-position: center center; background-repeat: no-repeat; } .vjs-control-text { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; } .vjs-play-control { cursor: pointer !important; height: 47px; left: 0; position: absolute; top: 0; width: 58px; } .vjs-play-control div { position: relative; height: 47px; } .vjs-play-control div:before, .vjs-play-control div:after { position: absolute; font-family: "Flat-UI-Icons"; color: #1abc9c; font-size: 16px; top: 50%; left: 50%; margin: -0.55em 0 0 -0.5em; -webkit-transition: color .25s, opacity .25s; -moz-transition: color .25s, opacity .25s; -o-transition: color .25s, opacity .25s; transition: color .25s, opacity .25s; -webkit-backface-visibility: hidden; } .vjs-play-control div:after { content: "\e03b"; } .vjs-play-control div:before { content: "\e03c"; } .vjs-paused .vjs-play-control:hover div:before { color: #16a085; } .vjs-paused .vjs-play-control div:after { opacity: 0; filter: alpha(opacity=0); } .vjs-paused .vjs-play-control div:before { opacity: 1; filter: alpha(opacity=100); } .vjs-playing .vjs-play-control:hover div:after { color: #16a085; } .vjs-playing .vjs-play-control div:after { opacity: 1; filter: alpha(opacity=100); } .vjs-playing .vjs-play-control div:before { opacity: 0; filter: alpha(opacity=0); } .vjs-rewind-control { width: 5em; cursor: pointer !important; } .vjs-rewind-control div { width: 19px; height: 16px; background: none transparent; margin: .5em auto 0; } .vjs-mute-control { background: url(../images/video/volume-full.png) center -48px no-repeat; background-size: 16px 64px; cursor: pointer !important; position: absolute; right: 51px; top: 14px; } .vjs-mute-control:hover div, .vjs-mute-control:focus div { opacity: 0; } .vjs-mute-control.vjs-vol-0, .vjs-mute-control.vjs-vol-0 div { background-image: url(../images/video/volume-off.png); } .vjs-mute-control div { background: #273747 url(../images/video/volume-full.png) no-repeat center 2px; background-size: 16px 64px; height: 18px; -webkit-transition: opacity 0.25s; -moz-transition: opacity 0.25s; -o-transition: opacity 0.25s; transition: opacity 0.25s; -webkit-backface-visibility: hidden; } .vjs-volume-control, .vjs-volume-level, .vjs-volume-handle, .vjs-volume-bar { display: none; } .vjs-progress-control { position: absolute; left: 60px; right: 180px; height: 12px; width: auto; top: 18px; background: #425669; -webkit-border-radius: 32px; -moz-border-radius: 32px; border-radius: 32px; } .vjs-progress-holder { position: relative; cursor: pointer !important; padding: 0; margin: 0; height: 12px; } .vjs-play-progress, .vjs-load-progress { position: absolute; display: block; height: 12px; margin: 0; padding: 0; left: 0; top: 0; -webkit-border-radius: 32px; -moz-border-radius: 32px; border-radius: 32px; } .vjs-play-progress { background: #1abc9c; left: -1px; } .vjs-load-progress { background: #d6dbdf; border-radius: 32px 0 0 32px; } .vjs-load-progress[style*='100%'], .vjs-load-progress[style*='99%'] { -webkit-border-radius: 32px; -moz-border-radius: 32px; border-radius: 32px; } .vjs-seek-handle { background-color: #16a085; position: absolute; width: 18px; height: 18px; margin: -3px 0 0 1px; left: 0; top: 0; border-radius: 50%; -webkit-transition: background-color 0.25s; -moz-transition: background-color 0.25s; -o-transition: background-color 0.25s; transition: background-color 0.25s; -webkit-backface-visibility: hidden; } .vjs-seek-handle[style*='95.'] { margin-left: 3px; } .vjs-seek-handle[style='left: 0%;'] { margin-left: -2px; } .vjs-seek-handle:hover, .vjs-seek-handle:focus { background-color: #148d75; } .vjs-seek-handle:active { background-color: #117a65; } .vjs-time-controls { position: absolute; height: 20px; width: 50px; top: 16px; font: 300 13px 'Lato', Helvetica, Arial, sans-serif; } .vjs-current-time { right: 128px; text-align: right; } .vjs-duration { color: #5d6d7e; right: 69px; text-align: left; } .vjs-remaining-time { display: none; } .vjs-time-divider { color: #5d6d7e; font-size: 14px; position: absolute; right: 121px; top: 15px; } .vjs-secondary-controls { float: right; } .vjs-fullscreen-control { background-image: url(../images/video/fullscreen.png); background-position: center -47px; background-size: 15px 64px; cursor: pointer !important; position: absolute; right: 17px; top: 13px; } .vjs-fullscreen-control:hover div, .vjs-fullscreen-control:focus div { opacity: 0; } .vjs-fullscreen-control div { height: 18px; background: url(../images/video/fullscreen.png) no-repeat center 2px; background-size: 15px 64px; -webkit-transition: opacity 0.25s; -moz-transition: opacity 0.25s; -o-transition: opacity 0.25s; transition: opacity 0.25s; -webkit-backface-visibility: hidden; } .vjs-menu-button { display: none !important; } @-webkit-keyframes sharp { 0% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { background: #ebedee; border-radius: 0; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-moz-keyframes sharp { 0% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { background: #ebedee; border-radius: 0; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @-o-keyframes sharp { 0% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { background: #ebedee; border-radius: 0; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } @keyframes sharp { 0% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); transform: rotate(0deg); } 50% { background: #ebedee; border-radius: 0; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); } 100% { background: #e74c3c; border-radius: 10px; -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); transform: rotate(360deg); } } .vjs-loading-spinner { background: #ebedee; display: none; height: 16px; left: 50%; margin: -8px 0 0 -8px; position: absolute; top: 50%; width: 16px; border-radius: 10px; -webkit-animation: sharp 2s ease infinite; -moz-animation: sharp 2s ease infinite; -o-animation: sharp 2s ease infinite; animation: sharp 2s ease infinite; } .login { background: url(../images/login/imac.png) 0 0 no-repeat; background-size: 940px 778px; color: #ffffff; margin-bottom: 77px; padding: 38px 38px 267px; position: relative; } .login-screen { background-color: #1abc9c; min-height: 473px; padding: 123px 199px 33px 306px; } .login-icon { left: 200px; position: absolute; top: 160px; width: 96px; } .login-icon > img { display: block; margin-bottom: 6px; width: 100%; } .login-icon > h4 { font-size: 17px; font-weight: 200; line-height: 34px; opacity: 0.95; filter: alpha(opacity=95); } .login-icon > h4 small { color: inherit; display: block; font-size: inherit; font-weight: 700; } .login-form { background-color: #edeff1; padding: 24px 23px 20px; position: relative; border-radius: 6px; } .login-form:before { content: ''; border-style: solid; border-width: 12px 12px 12px 0; border-color: transparent #edeff1 transparent transparent; height: 0; position: absolute; left: -12px; top: 35px; width: 0; -webkit-transform: rotate(360deg); } .login-form .control-group { margin-bottom: 6px; position: relative; } .login-form .login-field { border-color: transparent; font-size: 17px; text-indent: 3px; } .login-form .login-field:focus { border-color: #1abc9c; } .login-form .login-field:focus + .login-field-icon { color: #1abc9c; } .login-form .login-field-icon { color: #bfc9ca; font-size: 16px; position: absolute; right: 13px; top: 9px; -webkit-transition: 0.25s; -moz-transition: 0.25s; -o-transition: 0.25s; transition: 0.25s; -webkit-backface-visibility: hidden; } .login-link { color: #bfc9ca; display: block; font-size: 13px; margin-top: 15px; text-align: center; } @media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (-o-min-device-pixel-ratio: 3/2), only screen and (-o-min-device-pixel-ratio: 2/1), only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 2) { .login { background-image: url(../images/login/imac-2x.png); } } footer { background-color: #edeff1; color: #bac1c8; font-size: 15px; padding: 0; } footer a { color: #9aa4af; font-weight: 700; } footer p { font-size: 15px; line-height: 20px; } .footer-title { margin: 0 0 22px; padding-top: 21px; font-size: 24px; line-height: 40px; } .footer-brand { display: block; margin-bottom: 26px; width: 220px; } .footer-brand img { width: 216px; } .footer-banner { background-color: #1abc9c; color: #d1f2eb; margin-left: 42px; min-height: 316px; padding: 0 30px 30px; } .footer-banner .footer-title { color: #ffffff; } .footer-banner a { color: #b7f5e9; text-decoration: underline; } .footer-banner a:hover { text-decoration: none; } .footer-banner ul { list-style-type: none; margin: 0 0 26px; padding: 0; } .footer-banner ul li { border-top: 1px solid #1bc5a3; line-height: 19px; padding: 6px 0; } .footer-banner ul li:first-child { border-top: none; padding-top: 1px; } .last-col { overflow: hidden; } .ptn, .pvn, .pan { padding-top: 0; } .ptx, .pvx, .pax { padding-top: 3px; } .pts, .pvs, .pas { padding-top: 5px; } .ptm, .pvm, .pam { padding-top: 10px; } .ptl, .pvl, .pal { padding-top: 20px; } .prn, .phn, .pan { padding-right: 0; } .prx, .phx, .pax { padding-right: 3px; } .prs, .phs, .pas { padding-right: 5px; } .prm, .phm, .pam { padding-right: 10px; } .prl, .phl, .pal { padding-right: 20px; } .pbn, .pvn, .pan { padding-bottom: 0; } .pbx, .pvx, .pax { padding-bottom: 3px; } .pbs, .pvs, .pas { padding-bottom: 5px; } .pbm, .pvm, .pam { padding-bottom: 10px; } .pbl, .pvl, .pal { padding-bottom: 20px; } .pln, .phn, .pan { padding-left: 0; } .plx, .phx, .pax { padding-left: 3px; } .pls, .phs, .pas { padding-left: 5px; } .plm, .phm, .pam { padding-left: 10px; } .pll, .phl, .pal { padding-left: 20px; } .mtn, .mvn, .man { margin-top: 0px; } .mtx, .mvx, .max { margin-top: 3px; } .mts, .mvs, .mas { margin-top: 5px; } .mtm, .mvm, .mam { margin-top: 10px; } .mtl, .mvl, .mal { margin-top: 20px; } .mrn, .mhn, .man { margin-right: 0px; } .mrx, .mhx, .max { margin-right: 3px; } .mrs, .mhs, .mas { margin-right: 5px; } .mrm, .mhm, .mam { margin-right: 10px; } .mrl, .mhl, .mal { margin-right: 20px; } .mbn, .mvn, .man { margin-bottom: 0px; } .mbx, .mvx, .max { margin-bottom: 3px; } .mbs, .mvs, .mas { margin-bottom: 5px; } .mbm, .mvm, .mam { margin-bottom: 10px; } .mbl, .mvl, .mal { margin-bottom: 20px; } .mln, .mhn, .man { margin-left: 0px; } .mlx, .mhx, .max { margin-left: 3px; } .mls, .mhs, .mas { margin-left: 5px; } .mlm, .mhm, .mam { margin-left: 10px; } .mll, .mhl, .mal { margin-left: 20px; }
manpages/man8/mount.cifs.8.html
yuweijun/yuweijun.github.io
<!DOCTYPE html> <HTML><head><TITLE>Manpage of MOUNT\&.CIFS</TITLE> <meta charset="utf-8"> <link rel="stylesheet" href="/css/main.css" type="text/css"> </head> <body> <header class="site-header"> <div class="wrap"> <div class="site-title"><a href="/manpages/index.html">linux manpages</a></div> <div class="site-description">{"type":"documentation"}</div> </div> </header> <div class="page-content"><div class="wrap"> <H1>MOUNT\&.CIFS</H1> Section: System Administration tools (8)<BR>Updated: 02/07/2010<BR><A HREF="#index">Index</A> <A HREF="/manpages/index.html">Return to Main Contents</A><HR> <A NAME="lbAB">&nbsp;</A> <H2>NAME</H2> mount.cifs - mount using the Common Internet File System (CIFS) <A NAME="lbAC">&nbsp;</A> <H2>SYNOPSIS</H2> <DL COMPACT> <DT> <DD>mount.cifs {service} {mount-point} [-o&nbsp;options] </DL> <A NAME="lbAD">&nbsp;</A> <H2>DESCRIPTION</H2> <P> This tool is part of the cifs-utils suite. <P> mount.cifs mounts a Linux CIFS filesystem. It is usually invoked indirectly by the <B><A HREF="/manpages/index.html?8+mount">mount</A></B>(8) command when using the &quot;-t cifs&quot; option. This command only works in Linux, and the kernel must support the cifs filesystem. The CIFS protocol is the successor to the SMB protocol and is supported by most Windows servers and many other commercial servers and Network Attached Storage appliances as well as by the popular Open Source server Samba. <P> The mount.cifs utility attaches the UNC name (exported network resource) specified as <I>service</I> (using //server/share syntax, where &quot;server&quot; is the server name or IP address and &quot;share&quot; is the name of the share) to the local directory <I>mount-point</I>. <P> Options to <I>mount.cifs</I> are specified as a comma-separated list of key=value pairs. It is possible to send options other than those listed here, assuming that the cifs filesystem kernel module (cifs.ko) supports them. Unrecognized cifs mount options passed to the cifs vfs kernel code will be logged to the kernel log. <P> <I>mount.cifs</I> causes the cifs vfs to launch a thread named cifsd. After mounting it keeps running until the mounted resource is unmounted (usually via the umount utility). <P> <P> <I>mount.cifs -V</I> command displays the version of cifs mount helper. <P> <P> <I>modinfo cifs</I> command displays the version of cifs module. <A NAME="lbAE">&nbsp;</A> <H2>OPTIONS</H2> <P> user=<I>arg</I> <DL COMPACT><DT><DD> specifies the username to connect as. If this is not given, then the environment variable <I>USER</I> is used. This option can also take the form &quot;user%password&quot; or &quot;workgroup/user&quot; or &quot;workgroup/user%password&quot; to allow the password and workgroup to be specified as part of the username. <P> <DL COMPACT><DT><DD> <BR> <FONT SIZE="+1"> <B>Note</B> </FONT> <BR> The cifs vfs accepts the parameter <I>user=</I>, or for users familiar with smbfs it accepts the longer form of the parameter <I>username=</I>. Similarly the longer smbfs style parameter names may be accepted as synonyms for the shorter cifs parameters <I>pass=</I>,<I>dom=</I> and <I>cred=</I>. <P> </DL> </DL> <P> password=<I>arg</I> <DL COMPACT><DT><DD> specifies the CIFS password. If this option is not given then the environment variable <I>PASSWD</I> is used. If the password is not specified directly or indirectly via an argument to mount, <I>mount.cifs</I> will prompt for a password, unless the guest option is specified. <P> Note that a password which contains the delimiter character (i.e. a comma ',') will fail to be parsed correctly on the command line. However, the same password defined in the PASSWD environment variable or via a credentials file (see below) or entered at the password prompt will be read correctly. </DL> <P> credentials=<I>filename</I> <DL COMPACT><DT><DD> specifies a file that contains a username and/or password and optionally the name of the workgroup. The format of the file is: <P> <DL COMPACT><DT><DD> <PRE> username=<I>value</I> password=<I>value</I> domain=<I>value</I> </PRE> </DL> <P> This is preferred over having passwords in plaintext in a shared file, such as /etc/fstab. Be sure to protect any credentials file properly. </DL> <P> uid=<I>arg</I> <DL COMPACT><DT><DD> sets the uid that will own all files or directories on the mounted filesystem when the server does not provide ownership information. It may be specified as either a username or a numeric uid. When not specified, the default is uid 0. The mount.cifs helper must be at version 1.10 or higher to support specifying the uid in non-numeric form. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information. </DL> <P> forceuid <DL COMPACT><DT><DD> instructs the client to ignore any uid provided by the server for files and directories and to always assign the owner to be the value of the uid= option. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information. </DL> <P> cruid=<I>arg</I> <DL COMPACT><DT><DD> sets the uid of the owner of the credentials cache. This is primarily useful with sec=krb5. The default is the real uid of the process performing the mount. Setting this parameter directs the upcall to look for a credentials cache owned by that user. </DL> <P> gid=<I>arg</I> <DL COMPACT><DT><DD> sets the gid that will own all files or directories on the mounted filesystem when the server does not provide ownership information. It may be specified as either a groupname or a numeric gid. When not specified, the default is gid 0. The mount.cifs helper must be at version 1.10 or higher to support specifying the gid in non-numeric form. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information. </DL> <P> forcegid <DL COMPACT><DT><DD> instructs the client to ignore any gid provided by the server for files and directories and to always assign the owner to be the value of the gid= option. See the section on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS below for more information. </DL> <P> port=<I>arg</I> <DL COMPACT><DT><DD> sets the port number on which the client will attempt to contact the CIFS server. If this value is specified, look for an existing connection with this port, and use that if one exists. If one doesn't exist, try to create a new connection on that port. If that connection fails, return an error. If this value isn't specified, look for an existing connection on port 445 or 139. If no such connection exists, try to connect on port 445 first and then port 139 if that fails. Return an error if both fail. </DL> <P> servernetbiosname=<I>arg</I> <DL COMPACT><DT><DD> Specify the server netbios name (RFC1001 name) to use when attempting to setup a session to the server. Although rarely needed for mounting to newer servers, this option is needed for mounting to some older servers (such as OS/2 or Windows 98 and Windows ME) since when connecting over port 139 they, unlike most newer servers, do not support a default server name. A server name can be up to 15 characters long and is usually uppercased. </DL> <P> servern=<I>arg</I> <DL COMPACT><DT><DD> Synonym for <I>servernetbiosname</I>. </DL> <P> netbiosname=<I>arg</I> <DL COMPACT><DT><DD> When mounting to servers via port 139, specifies the RFC1001 source name to use to represent the client netbios machine name when doing the RFC1001 netbios session initialize. </DL> <P> file_mode=<I>arg</I> <DL COMPACT><DT><DD> If the server does not support the CIFS Unix extensions this overrides the default file mode. </DL> <P> dir_mode=<I>arg</I> <DL COMPACT><DT><DD> If the server does not support the CIFS Unix extensions this overrides the default mode for directories. </DL> <P> ip=<I>arg</I> <DL COMPACT><DT><DD> sets the destination IP address. This option is set automatically if the server name portion of the requested UNC name can be resolved so rarely needs to be specified by the user. </DL> <P> domain=<I>arg</I> <DL COMPACT><DT><DD> sets the domain (workgroup) of the user </DL> <P> guest <DL COMPACT><DT><DD> don't prompt for a password </DL> <P> iocharset <DL COMPACT><DT><DD> Charset used to convert local path names to and from Unicode. Unicode is used by default for network path names if the server supports it. If iocharset is not specified then the nls_default specified during the local client kernel build will be used. If server does not support Unicode, this parameter is unused. </DL> <P> ro <DL COMPACT><DT><DD> mount read-only </DL> <P> rw <DL COMPACT><DT><DD> mount read-write </DL> <P> setuids <DL COMPACT><DT><DD> If the CIFS Unix extensions are negotiated with the server the client will attempt to set the effective uid and gid of the local process on newly created files, directories, and devices (create, mkdir, mknod). If the CIFS Unix Extensions are not negotiated, for newly created files and directories instead of using the default uid and gid specified on the the mount, cache the new file's uid and gid locally which means that the uid for the file can change when the inode is reloaded (or the user remounts the share). </DL> <P> nosetuids <DL COMPACT><DT><DD> The client will not attempt to set the uid and gid on on newly created files, directories, and devices (create, mkdir, mknod) which will result in the server setting the uid and gid to the default (usually the server uid of the user who mounted the share). Letting the server (rather than the client) set the uid and gid is the default.If the CIFS Unix Extensions are not negotiated then the uid and gid for new files will appear to be the uid (gid) of the mounter or the uid (gid) parameter specified on the mount. </DL> <P> perm <DL COMPACT><DT><DD> Client does permission checks (vfs_permission check of uid and gid of the file against the mode and desired operation), Note that this is in addition to the normal ACL check on the target machine done by the server software. Client permission checking is enabled by default. </DL> <P> noperm <DL COMPACT><DT><DD> Client does not do permission checks. This can expose files on this mount to access by other users on the local client system. It is typically only needed when the server supports the CIFS Unix Extensions but the UIDs/GIDs on the client and server system do not match closely enough to allow access by the user doing the mount. Note that this does not affect the normal ACL check on the target machine done by the server software (of the server ACL against the user name provided at mount time). </DL> <P> dynperm <DL COMPACT><DT><DD> Instructs the server to maintain ownership and permissions in memory that can't be stored on the server. This information can disappear at any time (whenever the inode is flushed from the cache), so while this may help make some applications work, it's behavior is somewhat unreliable. See the section below on FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS for more information. </DL> <P> directio <DL COMPACT><DT><DD> Do not do inode data caching on files opened on this mount. This precludes mmaping files on this mount. In some cases with fast networks and little or no caching benefits on the client (e.g. when the application is doing large sequential reads bigger than page size without rereading the same data) this can provide better performance than the default behavior which caches reads (readahead) and writes (writebehind) through the local Linux client pagecache if oplock (caching token) is granted and held. Note that direct allows write operations larger than page size to be sent to the server. On some kernels this requires the cifs.ko module to be built with the CIFS_EXPERIMENTAL configure option. </DL> <P> mapchars <DL COMPACT><DT><DD> Translate six of the seven reserved characters (not backslash, but including the colon, question mark, pipe, asterik, greater than and less than characters) to the remap range (above 0xF000), which also allows the CIFS client to recognize files created with such characters by Windows's POSIX emulation. This can also be useful when mounting to most versions of Samba (which also forbids creating and opening files whose names contain any of these seven characters). This has no effect if the server does not support Unicode on the wire. Please note that the files created with mapchars mount option may not be accessible if the share is mounted without that option. </DL> <P> nomapchars <DL COMPACT><DT><DD> Do not translate any of these seven characters (default) </DL> <P> intr <DL COMPACT><DT><DD> currently unimplemented </DL> <P> nointr <DL COMPACT><DT><DD> (default) currently unimplemented </DL> <P> hard <DL COMPACT><DT><DD> The program accessing a file on the cifs mounted file system will hang when the server crashes. </DL> <P> soft <DL COMPACT><DT><DD> (default) The program accessing a file on the cifs mounted file system will not hang when the server crashes and will return errors to the user application. </DL> <P> noacl <DL COMPACT><DT><DD> Do not allow POSIX ACL operations even if server would support them. <P> The CIFS client can get and set POSIX ACLs (getfacl, setfacl) to Samba servers version 3.0.10 and later. Setting POSIX ACLs requires enabling both CIFS_XATTR and then CIFS_POSIX support in the CIFS configuration options when building the cifs module. POSIX ACL support can be disabled on a per mount basis by specifying &quot;noacl&quot; on mount. </DL> <P> cifsacl <DL COMPACT><DT><DD> This option is used to map CIFS/NTFS ACLs to/from Linux permission bits, map SIDs to/from UIDs and GIDs, and get and set Security Descriptors. <P> See sections on <I>CIFS/NTFS ACL, SID/UID/GID MAPPING, SECURITY DESCRIPTORS</I> for more information. </DL> <P> backupuid=<I>arg</I> <DL COMPACT><DT><DD> Restrict access to files with the backup intent to a user. Either a name or an id must be provided as an argument, there are no default values. <P> See section <I>ACCESSING FILES WITH BACKUP INTENT</I> for more details </DL> <P> backupgid=<I>arg</I> <DL COMPACT><DT><DD> Restrict access to files with the backup intent to a group. Either a name or an id must be provided as an argument, there are no default values. <P> See section <I>ACCESSING FILES WITH BACKUP INTENT</I> for more details </DL> <P> nocase <DL COMPACT><DT><DD> Request case insensitive path name matching (case sensitive is the default if the server suports it). </DL> <P> ignorecase <DL COMPACT><DT><DD> Synonym for <I>nocase</I>. </DL> <P> sec= <DL COMPACT><DT><DD> Security mode. Allowed values are: <P> <DL COMPACT><DT><DD> * none attempt to connection as a null user (no name) </DL> <P> <DL COMPACT><DT><DD> * krb5 Use Kerberos version 5 authentication </DL> <P> <DL COMPACT><DT><DD> * krb5i Use Kerberos authentication and forcibly enable packet signing </DL> <P> <DL COMPACT><DT><DD> * ntlm Use NTLM password hashing (default) </DL> <P> <DL COMPACT><DT><DD> * ntlmi Use NTLM password hashing and force packet signing </DL> <P> <DL COMPACT><DT><DD> * ntlmv2 Use NTLMv2 password hashing </DL> <P> <DL COMPACT><DT><DD> * ntlmv2i Use NTLMv2 password hashing and force packet signing </DL> <P> <DL COMPACT><DT><DD> * ntlmssp Use NTLMv2 password hashing encapsulated in Raw NTLMSSP message </DL> <P> <DL COMPACT><DT><DD> * ntlmsspi Use NTLMv2 password hashing encapsulated in Raw NTLMSSP message, and force packet signing </DL> <P> If the server requires signing during protocol negotiation, then it may be enabled automatically. Packet signing may also be enabled automatically if it's enabled in /proc/fs/cifs/SecurityFlags. </DL> <P> nobrl <DL COMPACT><DT><DD> Do not send byte range lock requests to the server. This is necessary for certain applications that break with cifs style mandatory byte range locks (and most cifs servers do not yet support requesting advisory byte range locks). </DL> <P> sfu <DL COMPACT><DT><DD> When the CIFS Unix Extensions are not negotiated, attempt to create device files and fifos in a format compatible with Services for Unix (SFU). In addition retrieve bits 10-12 of the mode via the SETFILEBITS extended attribute (as SFU does). In the future the bottom 9 bits of the mode mode also will be emulated using queries of the security descriptor (ACL). [NB: requires version 1.39 or later of the CIFS VFS. To recognize symlinks and be able to create symlinks in an SFU interoperable form requires version 1.40 or later of the CIFS VFS kernel module. </DL> <P> serverino <DL COMPACT><DT><DD> Use inode numbers (unique persistent file identifiers) returned by the server instead of automatically generating temporary inode numbers on the client. Although server inode numbers make it easier to spot hardlinked files (as they will have the same inode numbers) and inode numbers may be persistent (which is userful for some sofware), the server does not guarantee that the inode numbers are unique if multiple server side mounts are exported under a single share (since inode numbers on the servers might not be unique if multiple filesystems are mounted under the same shared higher level directory). Note that not all servers support returning server inode numbers, although those that support the CIFS Unix Extensions, and Windows 2000 and later servers typically do support this (although not necessarily on every local server filesystem). Parameter has no effect if the server lacks support for returning inode numbers or equivalent. This behavior is enabled by default. </DL> <P> noserverino <DL COMPACT><DT><DD> Client generates inode numbers itself rather than using the actual ones from the server. <P> See section <I>INODE NUMBERS</I> for more information. </DL> <P> nounix <DL COMPACT><DT><DD> Disable the CIFS Unix Extensions for this mount. This can be useful in order to turn off multiple settings at once. This includes POSIX acls, POSIX locks, POSIX paths, symlink support and retrieving uids/gids/mode from the server. This can also be useful to work around a bug in a server that supports Unix Extensions. <P> See section <I>INODE NUMBERS</I> for more information. </DL> <P> nouser_xattr <DL COMPACT><DT><DD> (default) Do not allow getfattr/setfattr to get/set xattrs, even if server would support it otherwise. </DL> <P> rsize=<I>arg</I> <DL COMPACT><DT><DD> default network read size (usually 16K). The client currently can not use rsize larger than CIFSMaxBufSize. CIFSMaxBufSize defaults to 16K and may be changed (from 8K to the maximum kmalloc size allowed by your kernel) at module install time for cifs.ko. Setting CIFSMaxBufSize to a very large value will cause cifs to use more memory and may reduce performance in some cases. To use rsize greater than 127K (the original cifs protocol maximum) also requires that the server support a new Unix Capability flag (for very large read) which some newer servers (e.g. Samba 3.0.26 or later) do. rsize can be set from a minimum of 2048 to a maximum of 130048 (127K or CIFSMaxBufSize, whichever is smaller) </DL> <P> wsize=<I>bytes</I> <DL COMPACT><DT><DD> Maximum amount of data that the kernel will send in a write request in bytes. Prior to RHEL6.2 kernels, the default and maximum was 57344 (14 * 4096 pages). As of RHEL6.2, the default depends on whether the client and server negotiate large writes via POSIX extensions. If they do then the default is 1M, and the maximum allowed is 16M. If they do not, then the default is 65536 and the maximum allowed is 131007. <P> Note that this value is just a starting point for negotiation. The client and server may negotiate this size downward according to the server's capabilities. </DL> <P> fsc <DL COMPACT><DT><DD> Enable local disk caching using FS-Cache for CIFS. This option could be useful to improve performance on a slow link, heavily loaded server and/or network where reading from the disk is faster than reading from the server (over the network). This could also impact the scalability positively as the number of calls to the server are reduced. But, be warned that local caching is not suitable for all workloads, for e.g., read-once type workloads. So, you need to consider carefully the situation/workload before using this option. Currently, local disk caching is enabled for CIFS files opened as read-only. <P> NOTE: This feature is available only in the recent kernels that have been built with the kernel config option CONFIG_CIFS_FSCACHE. You also need to have cachefilesd daemon installed and running to make the cache operational. </DL> <P> multiuser <DL COMPACT><DT><DD> Map user accesses to individual credentials when accessing the server. By default, CIFS mounts only use a single set of user credentials (the mount credentials) when accessing a share. With this option, the client instead creates a new session with the server using the user's credentials whenever a new user accesses the mount. Further accesses by that user will also use those credentials. Because the kernel cannot prompt for passwords, multiuser mounts are limited to mounts using sec= options that don't require passwords. <P> With this change, it's feasible for the server to handle permissions enforcement, so this option also implies &quot;noperm&quot;. Furthermore, when unix extensions aren't in use and the administrator has not overriden ownership using the uid= or gid= options, ownership of files is presented as the current user accessing the share. </DL> <P> actimeo=<I>arg</I> <DL COMPACT><DT><DD> The time (in seconds) that the CIFS client caches attributes of a file or directory before it requests attribute information from a server. During this period the changes that occur on the server remain undetected until the client checks the server again. <P> By default, the attribute cache timeout is set to 1 second. This means more frequent on-the-wire calls to the server to check whether attributes have changed which could impact performance. With this option users can make a tradeoff between performance and cache metadata correctness, depending on workload needs. Shorter timeouts mean better cache coherency, but frequent increased number of calls to the server. Longer timeouts mean a reduced number of calls to the server but looser cache coherency. The actimeo value is a positive integer that can hold values between 0 and a maximum value of 2^30 * HZ (frequency of timer interrupt) setting. </DL> <P> noposixpaths <DL COMPACT><DT><DD> If unix extensions are enabled on a share, then the client will typically allow filenames to include any character besides '/' in a pathname component, and will use forward slashes as a pathname delimiter. This option prevents the client from attempting to negotiate the use of posix-style pathnames to the server. </DL> <P> posixpaths <DL COMPACT><DT><DD> Inverse of <I>noposixpaths</I>. </DL> <P> prefixpath= <DL COMPACT><DT><DD> It's possible to mount a subdirectory of a share. The preferred way to do this is to append the path to the UNC when mounting. However, it's also possible to do the same by setting this option and providing the path there. </DL> <P> --verbose <DL COMPACT><DT><DD> Print additional debugging information for the mount. Note that this parameter must be specified before the -o. For example: <P> mount -t cifs //server/share /mnt --verbose -o user=username </DL> <A NAME="lbAF">&nbsp;</A> <H2>SERVICE FORMATTING AND DELIMITERS</H2> <P> It's generally preferred to use forward slashes (/) as a delimiter in service names. They are considered to be the &quot;universal delimiter&quot; since they are generally not allowed to be embedded within path components on Windows machines and the client can convert them to blackslashes (\) unconditionally. Conversely, backslash characters are allowed by POSIX to be part of a path component, and can't be automatically converted in the same way. <P> mount.cifs will attempt to convert backslashes to forward slashes where it's able to do so, but it cannot do so in any path component following the sharename. <A NAME="lbAG">&nbsp;</A> <H2>INODE NUMBERS</H2> <P> When Unix Extensions are enabled, we use the actual inode number provided by the server in response to the POSIX calls as an inode number. <P> When Unix Extensions are disabled and &quot;serverino&quot; mount option is enabled there is no way to get the server inode number. The client typically maps the server-assigned &quot;UniqueID&quot; onto an inode number. <P> Note that the UniqueID is a different value from the server inode number. The UniqueID value is unique over the scope of the entire server and is often greater than 2 power 32. This value often makes programs that are not compiled with LFS (Large File Support), to trigger a glibc EOVERFLOW error as this won't fit in the target structure field. It is strongly recommended to compile your programs with LFS support (i.e. with -D_FILE_OFFSET_BITS=64) to prevent this problem. You can also use &quot;noserverino&quot; mount option to generate inode numbers smaller than 2 power 32 on the client. But you may not be able to detect hardlinks properly. <A NAME="lbAH">&nbsp;</A> <H2>CIFS/NTFS ACL, SID/UID/GID MAPPING, SECURITY DESCRIPTORS</H2> This option is used to work with file objects which posses Security Descriptors and CIFS/NTFS ACL instead of UID, GID, file permission bits, and POSIX ACL as user authentication model. This is the most common authentication model for CIFS servers and is the one used by Windows. <P> Support for this requires both CIFS_XATTR and CIFS_ACL support in the CIFS configuration options when building the cifs module. <P> A CIFS/NTFS ACL is mapped to file permission bits using an algorithm specified in the following Microsoft TechNet document: <P> <DL COMPACT><DT><DD> * <A HREF="http://technet.microsoft.com/en-us/library/bb463216.aspx">http://technet.microsoft.com/en-us/library/bb463216.aspx</A> </DL> <P> Security descriptors for a file object can be retrieved and set directly using extended attribute named system.cifs_acl. The security descriptors presented via this interface are &quot;raw&quot; blobs of data and need a userspace utility to either parse and format or to assemble it. <P> Some of the things to consider while using this mount option: <P> <DL COMPACT><DT><DD> * There may be an increased latency when handling metadata due to additional requests to get and set security descriptors. </DL> <P> <DL COMPACT><DT><DD> * The mapping between a CIFS/NTFS ACL and POSIX file permission bits is imperfect and some ACL information may be lost in the translation. </DL> <P> <DL COMPACT><DT><DD> * While RHEL6 supports the mapping of permission bits to windows ACLs, it does not map the owner SIDs to UID/GID or vice versa. </DL> <A NAME="lbAI">&nbsp;</A> <H2>ACCESSING FILES WITH BACKUP INTENT</H2> <P> For an user on the server, desired access to a file is determined by the permissions and rights associated with that file. This is typically accomplished using owenrship and ACL. For a user who does not have access rights to a file, it is still possible to access that file for a specific or a targeted purpose by granting special rights. One of the specific purposes is to access a file with the intent to either backup or restore i.e. backup intent. The right to access a file with the backup intent can typically be granted by making that user a part of the built-in group Backup Operators. Thus, when this user attempts to open a file with the backup intent, open request is sent by setting the bit FILE_OPEN_FOR_BACKUP_INTENT as one of the CreateOptions. <P> As an example, on a Windows server, a user named testuser, cannot open this file with such a security descriptor. <P> REVISION:0x1 <P> CONTROL:0x9404 <P> OWNER:Administrator <P> GROUP:Domain Users <P> ACL:Administrator:ALLOWED/0x0/FULL <P> But the user testuser, if it becomes part of the group Backup Operators, can open the file with the backup intent. <P> Any user on the client side who can authenticate as such a user on the server, can access the files with the backup intent. But it is desirable and preferable for security reasons amongst many, to restrict this special right. <P> The mount option backupuid is used to restrict this special right to a user which is specified by either a name or an id. The mount option backupgid is used to restrict this special right to the users in a group which is specified by either a name or an id. These two mount options can be used together. <A NAME="lbAJ">&nbsp;</A> <H2>FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS</H2> <P> The core CIFS protocol does not provide unix ownership information or mode for files and directories. Because of this, files and directories will generally appear to be owned by whatever values the uid= or gid= options are set, and will have permissions set to the default file_mode and dir_mode for the mount. Attempting to change these values via chmod/chown will return success but have no effect. <P> When the client and server negotiate unix extensions, files and directories will be assigned the uid, gid, and mode provided by the server. Because CIFS mounts are generally single-user, and the same credentials are used no matter what user accesses the mount, newly created files and directories will generally be given ownership corresponding to whatever credentials were used to mount the share. <P> If the uid's and gid's being used do not match on the client and server, the forceuid and forcegid options may be helpful. Note however, that there is no corresponding option to override the mode. Permissions assigned to a file when forceuid or forcegid are in effect may not reflect the the real permissions. <P> When unix extensions are not negotiated, it's also possible to emulate them locally on the server using the &quot;dynperm&quot; mount option. When this mount option is in effect, newly created files and directories will receive what appear to be proper permissions. These permissions are not stored on the server however and can disappear at any time in the future (subject to the whims of the kernel flushing out the inode cache). In general, this mount option is discouraged. <P> It's also possible to override permission checking on the client altogether via the noperm option. Server-side permission checks cannot be overriden. The permission checks done by the server will always correspond to the credentials used to mount the share, and not necessarily to the user who is accessing the share. <A NAME="lbAK">&nbsp;</A> <H2>ENVIRONMENT VARIABLES</H2> <P> The variable <I>USER</I> may contain the username of the person to be used to authenticate to the server. The variable can be used to set both username and password by using the format username%password. <P> The variable <I>PASSWD</I> may contain the password of the person using the client. <P> The variable <I>PASSWD_FILE</I> may contain the pathname of a file to read the password from. A single line of input is read and used as the password. <A NAME="lbAL">&nbsp;</A> <H2>NOTES</H2> <P> This command may be used only by root, unless installed setuid, in which case the noeexec and nosuid mount flags are enabled. When installed as a setuid program, the program follows the conventions set forth by the mount program for user mounts, with the added restriction that users must be able to chdir() into the mountpoint prior to the mount in order to be able to mount onto it. <P> Some samba client tools like <A HREF="/manpages/index.html?8+smbclient">smbclient</A>(8) honour client-side configuration parameters present in smb.conf. Unlike those client tools, <I>mount.cifs</I> ignores smb.conf completely. <A NAME="lbAM">&nbsp;</A> <H2>CONFIGURATION</H2> <P> The primary mechanism for making configuration changes and for reading debug information for the cifs vfs is via the Linux /proc filesystem. In the directory /proc/fs/cifs are various configuration files and pseudo files which can display debug information. There are additional startup options such as maximum buffer size and number of buffers which only may be set when the kernel cifs vfs (cifs.ko module) is loaded. These can be seen by running the modinfo utility against the file cifs.ko which will list the options that may be passed to cifs during module installation (device driver load). For more information see the kernel file fs/cifs/README. <A NAME="lbAN">&nbsp;</A> <H2>BUGS</H2> <P> Mounting using the CIFS URL specification is currently not supported. <P> The credentials file does not handle usernames or passwords with leading space. <P> Note that the typical response to a bug report is a suggestion to try the latest version first. So please try doing that first, and always include which versions you use of relevant software when reporting bugs (minimum: mount.cifs (try mount.cifs -V), kernel (see /proc/version) and server type you are trying to contact. <A NAME="lbAO">&nbsp;</A> <H2>VERSION</H2> <P> This man page is correct for version 1.74 of the cifs vfs filesystem (roughly Linux kernel 3.0). <A NAME="lbAP">&nbsp;</A> <H2>SEE ALSO</H2> <P> Documentation/filesystems/cifs.txt and fs/cifs/README in the linux kernel source tree may contain additional options and information. <P> <B><A HREF="/manpages/index.html?8+cifs.upcall">cifs.upcall</A></B>(8) <A NAME="lbAQ">&nbsp;</A> <H2>AUTHOR</H2> <P> Steve French <P> The syntax and manpage were loosely based on that of smbmount. It was converted to Docbook/XML by Jelmer Vernooij. <P> The maintainer of the Linux cifs vfs and the userspace tool <I>mount.cifs</I> is Steve French. The Linux CIFS Mailing list is the preferred place to ask questions regarding these programs. <P> <HR> <A NAME="index">&nbsp;</A><H2>Index</H2> <DL> <DT><A HREF="#lbAB">NAME</A><DD> <DT><A HREF="#lbAC">SYNOPSIS</A><DD> <DT><A HREF="#lbAD">DESCRIPTION</A><DD> <DT><A HREF="#lbAE">OPTIONS</A><DD> <DT><A HREF="#lbAF">SERVICE FORMATTING AND DELIMITERS</A><DD> <DT><A HREF="#lbAG">INODE NUMBERS</A><DD> <DT><A HREF="#lbAH">CIFS/NTFS ACL, SID/UID/GID MAPPING, SECURITY DESCRIPTORS</A><DD> <DT><A HREF="#lbAI">ACCESSING FILES WITH BACKUP INTENT</A><DD> <DT><A HREF="#lbAJ">FILE AND DIRECTORY OWNERSHIP AND PERMISSIONS</A><DD> <DT><A HREF="#lbAK">ENVIRONMENT VARIABLES</A><DD> <DT><A HREF="#lbAL">NOTES</A><DD> <DT><A HREF="#lbAM">CONFIGURATION</A><DD> <DT><A HREF="#lbAN">BUGS</A><DD> <DT><A HREF="#lbAO">VERSION</A><DD> <DT><A HREF="#lbAP">SEE ALSO</A><DD> <DT><A HREF="#lbAQ">AUTHOR</A><DD> </DL> <HR> This document was created by <A HREF="/manpages/index.html">man2html</A>, using the manual pages.<BR> Time: 05:34:27 GMT, December 24, 2015 </div></div> </body> </HTML>