path
stringlengths
5
312
repo_name
stringlengths
5
116
content
stringlengths
2
1.04M
src/htmlContent/main-view.html
Rajat-dhyani/brackets
<!-- Copyright (c) 2012 - present Adobe Systems Incorporated. All rights reserved. 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, 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 AUTHORS OR 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. --> <!-- HTML template for the body tag of index.html. It is rendered dynamically in brackets.js with Mustache and localized with the i18n RequireJS plugin. LOCALIZATION NOTE: All display text for this file must use templating so the text can be localized. English text goes in src/nls/root/strings.js. All other translations go in the strings.js file for the specific local in the nls folder. If a translation is missing for a specific key English is used as a fallback Strings should be referenced using the double brackets syntax. Example: {{keyname}}. Note, all strings are HTML escaped unless the form {{&keyname}} is used. --> <!-- Main UI: horizontal set of sidebar, main content vertical stack, and vertical toolbar --> <div class="main-view"> <div id="sidebar" class="sidebar panel quiet-scrollbars horz-resizable right-resizer collapsible" data-minsize="0" data-maxsize="80%" data-forceleft=".content"> <div class="working-set-splitview-btn btn-alt-quiet"></div> <div class="working-set-option-btn btn-alt-quiet"></div> <div id="working-set-list-container"> </div> <div id="project-files-header"> <span id="project-title" class="title"></span> </div> <div id="project-files-container"> <!-- This will contain a dynamically generated <ul> hierarchy at runtime --> </div> </div> <!-- Vertical stack of titlebar (in-browser), editor, bottom panels, status bar (status bar is injected later - see StatusBar.init()). Note: all children must be in a vertical stack with heights explicitly set in a fixed unit such as px (not percent/em/auto). If you change the height later, you must call WorkspaceManager.recomputeLayout() each time. Otherwise the layout will not get set correctly. Use WorkspaceManager to have this managed for you automatically. --> <div class="content"> <!-- Horizontal titlebar containing menus & filename when inBrowser --> <div id="titlebar" class="toolbar no-focus"> <!-- Menu bar --> <ul class="nav" data-dropdown="dropdown"> </ul> <!-- Filename label --> <div class="title-wrapper"> <span class="title"></span>&nbsp;<span class='dirty-dot' style="visibility:hidden;">•</span> </div> </div> <div id="editor-holder" {{#shouldAddAA}}class="subpixel-aa"{{/shouldAddAA}}> <!-- View Panes are programatically created here --> </div> <!-- Bottom panels and status bar are programmatically created here --> </div> <!-- Vertical toolbar docked to right --> <div id="main-toolbar" class="toolbar no-focus collapsible"> <!-- Top-aligned buttons --> <div class="buttons"> <a id="toolbar-go-live" href="#"></a> <!-- tooltip for this is set in JS --> <a id="toolbar-extension-manager" title="{{Strings.EXTENSION_MANAGER_TITLE}}" href="#"></a> <a id="update-notification" title="{{Strings.UPDATE_NOTIFICATION_TOOLTIP}}" href="#" style="display: none"></a> </div> <div class="bottom-buttons"></div> </div> <!-- Hack to ensure that the code editor's web font is loaded early. --> <!-- For more info, see note in brackets.less for class .dummy-text, or issue 76 --> <div class="dummy-text">x</div> </div> <!-- Modal Windows --> <div id="context-menu-bar"> <ul data-dropdown="dropdown"></ul> </div> <div id="codehint-menu-bar"> <ul data-dropdown="dropdown"></ul> </div> <div id="hidden-editors"></div>
tmp/install_4e730b9d77cb3/media/libraries/jquery/plugins/timepicker/timepicker.css
berkeley-amsa/past-site
/* css for timepicker */ .ui-timepicker-div .ui-widget-header { margin-bottom: 8px; } .ui-timepicker-div dl { text-align: left; padding: 0 20px 0 5px; } .ui-timepicker-div dl dt { height: 25px; } .ui-timepicker-div dl dd { padding-left: 0; margin: -25px 0 10px 65px; } .ui-timepicker-div td { font-size: 90%; }
tests/wpt/mozilla/tests/css/position_fixed_b.html
UK992/servo
<html> <head> <link rel="stylesheet" type="text/css" href="/fonts/ahem.css"> <style> body, html { margin: 0; } .container { display: block; background: blue; font-family: 'Ahem'; font-size: 20px; } div { position: absolute; } .fixed_block { top: 0; left: 0; } .positioned_fixed_block { left: 25px; top: 292px; background: yellow; float: left; } .sized_fixed_block { top: 100px; left: 0; background: red; height: 50px; width: 50px; float: left; } </style> </head> <body> <div class="container"> <div class="fixed_block"> a </div> <div class="sized_fixed_block"> b </div> <div class="positioned_fixed_block"> c </div> </div> </body> </html>
lms/templates/email_change_successful.html
BehavioralInsightsTeam/edx-platform
<%inherit file="main.html" /> <%! from django.utils.translation import ugettext as _ from django.urls import reverse %> <section class="container activation"> <section class="message"> <h1 class="valid">${_("E-mail change successful!")}</h1> <hr class="horizontal-divider"> <p>${_('You should see your new email in your {link_start}dashboard{link_end}.').format( link_start='<a href="{url}">'.format(url=reverse('dashboard')), link_end='</a>', )}</p> </section> </section>
webapi/webapi-webgl-khronos-tests/webgl/khronos/extra/fbo-lost-context.html
yhe39/crosswalk-test-suite
<!-- /* ** Copyright (c) 2012 The Khronos Group Inc. ** ** Permission is hereby granted, free of charge, to any person obtaining a ** copy of this software and/or associated documentation files (the ** "Materials"), to deal in the Materials without restriction, including ** without limitation the rights to use, copy, modify, merge, publish, ** distribute, sublicense, and/or sell copies of the Materials, and to ** permit persons to whom the Materials are 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 Materials. ** ** THE MATERIALS ARE 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 AUTHORS OR 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 ** MATERIALS OR THE USE OR OTHER DEALINGS IN THE MATERIALS. */ --> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>WebGL FBO Lost Context Test</title> <link rel="stylesheet" href="../resources/js-test-style.css"/> <script src="../../debug/webgl-debug.js"></script> <script src="../resources/js-test-pre.js"></script> <script src="../conformance/resources/webgl-test-utils.js"></script> </head> <body> <div id="description"></div> <div id="console"></div> <script id="vshader" type="x-shader/x-vertex"> attribute vec4 vPosition; attribute vec2 texCoord0; uniform mat4 world; varying vec2 texCoord; void main() { gl_Position = vPosition * world; texCoord = texCoord0; } </script> <script id="fshader" type="x-shader/x-fragment"> precision mediump float; uniform sampler2D tex; varying vec2 texCoord; void main() { gl_FragColor = texture2D(tex, texCoord); } </script> <canvas id="canvas" width="1024" height="1024"> </canvas> <script> "use strict"; description("This test is to help see if an WebGL app *can* get lost context."); debug(""); debug("Canvas.getContext"); var wtu = WebGLTestUtils; var g_worldLoc; var g_texLoc; var g_textures = []; var gl = wtu.create3DContext("canvas"); if (!gl) { testFailed("context does not exist"); } else { testPassed("context exists"); debug(""); debug("Checking for out of memory handling."); var program = wtu.setupProgram(["vshader", "fshader"], ["vPosition", "texCoord0"]); var size = gl.getParameter(gl.MAX_RENDERBUFFER_SIZE); debug("max render buffer size: " + size); size = size / 2; debug("size used: " + size); var allocateFramebuffers = true; var itervalId; var count = 0; gl = WebGLDebugUtils.makeDebugContext(gl, function(err, functionName, args) { window.clearInterval(intervalId); assertMsg(err == gl.OUT_OF_MEMORY, "correctly returns gl.OUT_OF_MEMORY when out of memory"); finish(); }); function createFBO() { var tex = gl.createTexture(); gl.bindTexture(gl.TEXTURE_2D, tex); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, gl.LINEAR); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); gl.texImage2D(gl.TEXTURE_2D, 0, // level gl.RGBA, // internalFormat size, // width size, // height 0, // border gl.RGBA, // format gl.UNSIGNED_BYTE, // type null); // data var fb = gl.createFramebuffer(); gl.bindFramebuffer(gl.FRAMEBUFFER, fb); gl.framebufferTexture2D( gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, tex, 0); var status = gl.checkFramebufferStatus(gl.FRAMEBUFFER); if (status != gl.FRAMEBUFFER_COMPLETE) { testFailed("gl.checkFramebufferStatus() returned " + WebGLDebugUtils.glEnumToString(status)); } return { fb: fb, tex: tex }; } gl.disable(gl.DEPTH_TEST); var numFBOs = 32; for (var ii = 0; ii < numFBOs; ++ii) { createFBO(); var t = createFBO(); tex = t.tex; fb = t.fb; gl.bindFramebuffer(gl.FRAMEBUFFER, fb); gl.scissor(0, 0, size, size); gl.clearColor(0, ii / numFBOs, 1 - ii / numFBOs, 1); gl.clear(gl.COLOR_BUFFER_BIT); g_textures.push(tex); } gl.bindFramebuffer(gl.FRAMEBUFFER, null); var vertexObject = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([ -1,1,0, 1,1,0, -1,-1,0, -1,-1,0, 1,1,0, 1,-1,0 ]), gl.STATIC_DRAW); gl.enableVertexAttribArray(0); gl.vertexAttribPointer(0, 3, gl.FLOAT, false, 0, 0); var vertexObject = gl.createBuffer(); gl.bindBuffer(gl.ARRAY_BUFFER, vertexObject); gl.bufferData(gl.ARRAY_BUFFER, new Float32Array([ 0,0, 1,0, 0,1, 0,1, 1,0, 1,1 ]), gl.STATIC_DRAW); gl.enableVertexAttribArray(1); gl.vertexAttribPointer(1, 2, gl.FLOAT, false, 0, 0); gl.bindTexture(gl.TEXTURE_2D, tex); g_texLoc = gl.getUniformLocation(gl.program, "tex"); gl.uniform1i(g_texLoc, 0); g_worldLoc = gl.getUniformLocation(gl.program, "world"); gl.uniformMatrix4fv(g_worldLoc, false, [ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1]); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE); gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, gl.LINEAR); setInterval(render, 1000/60); } var g_angle = 0; var g_texIndex = 0; function render() { g_angle += 0.1; g_texIndex++; if (g_texIndex >= g_textures.length) { g_texIndex = 0; } gl.bindTexture(gl.TEXTURE_2D, g_textures[g_texIndex]); gl.uniformMatrix4fv(g_worldLoc, false, rotationZ(g_angle)); gl.clearColor(1,0,0,1); gl.clear(gl.COLOR_BUFFER_BIT | gl.DEPTH_BUFFER_BIT); gl.drawArrays(gl.TRIANGLES, 0, 6); } /** * Creates a 4-by-4 matrix which rotates around the z-axis by the given angle. * @param {number} angle The angle by which to rotate (in radians). * @return {!o3djs.math.Matrix4} The rotation matrix. */ function rotationZ(angle) { var c = Math.cos(angle); var s = Math.sin(angle); return [ c, s, 0, 0, -s, c, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1 ]; }; debug(""); var successfullyParsed = true; </script> <script> "use strict"; </script> </body> </html>
rsf-web/templates/src/webapp/content/templates/double-list-select.html
ern/rsf
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns:rsf="http://ponder.org.uk/rsf"> <head> <title>Double List Selection</title> <link href="../css/tool-default.css" type="text/css" rel="stylesheet" media="all" rsf:id="scr=contribute-style"/> <link href="../css/tool.css" type="text/css" rel="stylesheet" media="all" rsf:id="scr=contribute-style"/> <!-- Comment out YAHOO logger defns for production --> <link type="text/css" rel="stylesheet" href="../yui/logger/assets/logger.css" rsf:id="scr=contribute-style"/> <script type="text/javascript" src="../yui/yahoo/yahoo.js" rsf:id="scr=contribute-script"></script> <script type="text/javascript" src="../yui/dom/dom.js" rsf:id="scr=contribute-script"></script> <script type="text/javascript" src="../yui/event/event.js" rsf:id="scr=contribute-script"></script> <script type="text/javascript" src="../yui/dragdrop/dragdrop.js" rsf:id="scr=contribute-script"></script> <script type="text/javascript" src="../yui/logger/logger.js" rsf:id="scr=contribute-script"></script> <script type="text/javascript" src="../js/double-list-select.js" rsf:id="scr=contribute-script"></script> </head> <body> <div class="portletBody"> <h1>Double List Selection</h1> <!-- <script> //<![CDATA[ window.setTimeout(function() { var myLogReader1 = new YAHOO.widget.LogReader(null,{width: "60em", verboseOutput: false}); myLogReader1.formatMsg = function(oLogMsg) { var category = oLogMsg.category; return "<p><span class='"+category+"'>"+category+"</span> "+ this.html2Text(oLogMsg.msg)+"</p>"; }}, 10 ); //]]> </script> --> <!-- Implementation of double list input control, markup taken from http://www-personal.umich.edu/~gsilver/sak-ui-elements/html/inputDoubleList.html --> <form> <div id="input-doublelist:" rsf:id="input-doublelist:"> <table class="inputDoubleList" summary="layout"> <tr> <th><label rsf:id="label1" for="input-doublelist:list1">Source pick list</label></th> <th></th> <th><label rsf:id="label2" for="input-doublelist:list2">Destination pick list</label></th> </tr> <tr> <td> <select multiple="multiple" size="10" rsf:id="list1" id="input-doublelist:list1-selection" name="list1"> <option value="1a">Option 1a</option> <option value="2a">Option 2a</option> <option value="3a">Option 3a</option> <option value="4a">Option 4a</option> <option value="5a">Option 5a</option> </select> </td> <td> <span style="display:block;text-align:center"> Move selected </span> <span style="display:block;text-align:center"> <input type="button" id="input-doublelist:move-left" rsf:id="move-left" title="Move selected" value="&lt;"></input> <input type="button" id="input-doublelist:move-right" rsf:id="move-right" title="Move selected" value="&gt;"></input> </span> <span style="display:block;text-align:center"> Move all </span> <span style="display:block;text-align:center"> <input type="button" id="input-doublelist:move-all-left" rsf:id="move-all-left" title="Move all" value="&lt;&lt;"></input> <input type="button" id="input-doublelist:move-all-right" rsf:id="move-all-right" title="Move all" value="&gt;&gt;"></input> </span> </td> <td> <select multiple="multiple" size="10" rsf:id="list2" id="input-doublelist:list2-selection"> <option value="1b">Option 1b</option> </select> </td> </tr> </table> <script rsf:id="init-select"> DoubleList.init_DoubleList("input-doublelist:"); </script> </div> <input type="submit" rsf:id="submitbutton" value="Submit" /></form> </div> </body> </html>
template/gentelella/production/projects.html
bvaugusto/petadoption
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <!-- Meta, title, CSS, favicons, etc. --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Gentallela Alela! | </title> <!-- Bootstrap core CSS --> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="fonts/css/font-awesome.min.css" rel="stylesheet"> <link href="css/animate.min.css" rel="stylesheet"> <!-- Custom styling plus plugins --> <link href="css/custom.css" rel="stylesheet"> <link href="css/icheck/flat/green.css" rel="stylesheet"> <script src="js/jquery.min.js"></script> <!--[if lt IE 9]> <script src="../assets/js/ie8-responsive-file-warning.js"></script> <![endif]--> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!--[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 class="nav-md"> <div class="container body"> <div class="main_container"> <div class="col-md-3 left_col"> <div class="left_col scroll-view"> <div class="navbar nav_title" style="border: 0;"> <a href="index.html" class="site_title"><i class="fa fa-paw"></i> <span>Gentellela Alela!</span></a> </div> <div class="clearfix"></div> <!-- menu prile quick info --> <div class="profile"> <div class="profile_pic"> <img src="images/img.jpg" alt="..." class="img-circle profile_img"> </div> <div class="profile_info"> <span>Welcome,</span> <h2>John Doe</h2> </div> </div> <!-- /menu prile quick info --> <br /> <!-- sidebar menu --> <div id="sidebar-menu" class="main_menu_side hidden-print main_menu"> <div class="menu_section"> <h3>General</h3> <ul class="nav side-menu"> <li><a><i class="fa fa-home"></i> Home <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu" style="display: none"> <li><a href="index.html">Dashboard</a> </li> <li><a href="index2.html">Dashboard2</a> </li> <li><a href="index3.html">Dashboard3</a> </li> </ul> </li> <li><a><i class="fa fa-edit"></i> Forms <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu" style="display: none"> <li><a href="form.html">General Form</a> </li> <li><a href="form_advanced.html">Advanced Components</a> </li> <li><a href="form_validation.html">Form Validation</a> </li> <li><a href="form_wizards.html">Form Wizard</a> </li> <li><a href="form_upload.html">Form Upload</a> </li> <li><a href="form_buttons.html">Form Buttons</a> </li> </ul> </li> <li><a><i class="fa fa-desktop"></i> UI Elements <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu" style="display: none"> <li><a href="general_elements.html">General Elements</a> </li> <li><a href="media_gallery.html">Media Gallery</a> </li> <li><a href="typography.html">Typography</a> </li> <li><a href="icons.html">Icons</a> </li> <li><a href="glyphicons.html">Glyphicons</a> </li> <li><a href="widgets.html">Widgets</a> </li> <li><a href="invoice.html">Invoice</a> </li> <li><a href="inbox.html">Inbox</a> </li> <li><a href="calender.html">Calender</a> </li> </ul> </li> <li><a><i class="fa fa-table"></i> Tables <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu" style="display: none"> <li><a href="tables.html">Tables</a> </li> <li><a href="tables_dynamic.html">Table Dynamic</a> </li> </ul> </li> <li><a><i class="fa fa-bar-chart-o"></i> Data Presentation <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu" style="display: none"> <li><a href="chartjs.html">Chart JS</a> </li> <li><a href="chartjs2.html">Chart JS2</a> </li> <li><a href="morisjs.html">Moris JS</a> </li> <li><a href="echarts.html">ECharts </a> </li> <li><a href="other_charts.html">Other Charts </a> </li> </ul> </li> </ul> </div> <div class="menu_section"> <h3>Live On</h3> <ul class="nav side-menu"> <li><a><i class="fa fa-bug"></i> Additional Pages <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu" style="display: none"> <li><a href="e_commerce.html">E-commerce</a> </li> <li><a href="projects.html">Projects</a> </li> <li><a href="project_detail.html">Project Detail</a> </li> <li><a href="contacts.html">Contacts</a> </li> <li><a href="profile.html">Profile</a> </li> </ul> </li> <li><a><i class="fa fa-windows"></i> Extras <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu" style="display: none"> <li><a href="page_404.html">404 Error</a> </li> <li><a href="page_500.html">500 Error</a> </li> <li><a href="plain_page.html">Plain Page</a> </li> <li><a href="login.html">Login Page</a> </li> <li><a href="pricing_tables.html">Pricing Tables</a> </li> </ul> </li> <li><a><i class="fa fa-laptop"></i> Landing Page <span class="label label-success pull-right">Coming Soon</span></a> </li> </ul> </div> </div> <!-- /sidebar menu --> <!-- /menu footer buttons --> <div class="sidebar-footer hidden-small"> <a data-toggle="tooltip" data-placement="top" title="Settings"> <span class="glyphicon glyphicon-cog" aria-hidden="true"></span> </a> <a data-toggle="tooltip" data-placement="top" title="FullScreen"> <span class="glyphicon glyphicon-fullscreen" aria-hidden="true"></span> </a> <a data-toggle="tooltip" data-placement="top" title="Lock"> <span class="glyphicon glyphicon-eye-close" aria-hidden="true"></span> </a> <a data-toggle="tooltip" data-placement="top" title="Logout"> <span class="glyphicon glyphicon-off" aria-hidden="true"></span> </a> </div> <!-- /menu footer buttons --> </div> </div> <!-- top navigation --> <div class="top_nav"> <div class="nav_menu"> <nav class="" role="navigation"> <div class="nav toggle"> <a id="menu_toggle"><i class="fa fa-bars"></i></a> </div> <ul class="nav navbar-nav navbar-right"> <li class=""> <a href="javascript:;" class="user-profile dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> <img src="images/img.jpg" alt="">John Doe <span class=" fa fa-angle-down"></span> </a> <ul class="dropdown-menu dropdown-usermenu animated fadeInDown pull-right"> <li><a href="javascript:;"> Profile</a> </li> <li> <a href="javascript:;"> <span class="badge bg-red pull-right">50%</span> <span>Settings</span> </a> </li> <li> <a href="javascript:;">Help</a> </li> <li><a href="login.html"><i class="fa fa-sign-out pull-right"></i> Log Out</a> </li> </ul> </li> <li role="presentation" class="dropdown"> <a href="javascript:;" class="dropdown-toggle info-number" data-toggle="dropdown" aria-expanded="false"> <i class="fa fa-envelope-o"></i> <span class="badge bg-green">6</span> </a> <ul id="menu1" class="dropdown-menu list-unstyled msg_list animated fadeInDown" role="menu"> <li> <a> <span class="image"> <img src="images/img.jpg" alt="Profile Image" /> </span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <a> <span class="image"> <img src="images/img.jpg" alt="Profile Image" /> </span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <a> <span class="image"> <img src="images/img.jpg" alt="Profile Image" /> </span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <a> <span class="image"> <img src="images/img.jpg" alt="Profile Image" /> </span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <div class="text-center"> <a> <strong>See All Alerts</strong> <i class="fa fa-angle-right"></i> </a> </div> </li> </ul> </li> </ul> </nav> </div> </div> <!-- /top navigation --> <!-- page content --> <div class="right_col" role="main"> <div class=""> <div class="page-title"> <div class="title_left"> <h3>Projects <small>Listing design</small></h3> </div> <div class="title_right"> <div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search for..."> <span class="input-group-btn"> <button class="btn btn-default" type="button">Go!</button> </span> </div> </div> </div> </div> <div class="clearfix"></div> <div class="row"> <div class="col-md-12"> <div class="x_panel"> <div class="x_title"> <h2>Projects</h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <p>Simple table with project listing with progress and editing options</p> <!-- start project list --> <table class="table table-striped projects"> <thead> <tr> <th style="width: 1%">#</th> <th style="width: 20%">Project Name</th> <th>Team Members</th> <th>Project Progress</th> <th>Status</th> <th style="width: 20%">#Edit</th> </tr> </thead> <tbody> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="57"></div> </div> <small>57% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="47"></div> </div> <small>47% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="77"></div> </div> <small>77% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="60"></div> </div> <small>60% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="12"></div> </div> <small>12% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="35"></div> </div> <small>35% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="87"></div> </div> <small>87% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="77"></div> </div> <small>77% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> <tr> <td>#</td> <td> <a>Pesamakini Backend UI</a> <br /> <small>Created 01.01.2015</small> </td> <td> <ul class="list-inline"> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> <li> <img src="images/user.png" class="avatar" alt="Avatar"> </li> </ul> </td> <td class="project_progress"> <div class="progress progress_sm"> <div class="progress-bar bg-green" role="progressbar" data-transitiongoal="77"></div> </div> <small>77% Complete</small> </td> <td> <button type="button" class="btn btn-success btn-xs">Success</button> </td> <td> <a href="#" class="btn btn-primary btn-xs"><i class="fa fa-folder"></i> View </a> <a href="#" class="btn btn-info btn-xs"><i class="fa fa-pencil"></i> Edit </a> <a href="#" class="btn btn-danger btn-xs"><i class="fa fa-trash-o"></i> Delete </a> </td> </tr> </tbody> </table> <!-- end project list --> </div> </div> </div> </div> </div> <!-- footer content --> <footer> <div class="copyright-info"> <p class="pull-right">Gentelella - Bootstrap Admin Template by <a href="https://colorlib.com">Colorlib</a> </p> </div> <div class="clearfix"></div> </footer> <!-- /footer content --> </div> <!-- /page content --> </div> </div> <div id="custom_notifications" class="custom-notifications dsp_none"> <ul class="list-unstyled notifications clearfix" data-tabbed_notifications="notif-group"> </ul> <div class="clearfix"></div> <div id="notif-group" class="tabbed_notifications"></div> </div> <script src="js/bootstrap.min.js"></script> <!-- bootstrap progress js --> <script src="js/progressbar/bootstrap-progressbar.min.js"></script> <script src="js/nicescroll/jquery.nicescroll.min.js"></script> <!-- icheck --> <script src="js/icheck/icheck.min.js"></script> <script src="js/custom.js"></script> <!-- pace --> <script src="js/pace/pace.min.js"></script> </body> </html>
vendor/assets/bower_components/bootlint/test/fixtures/glyphicons/on-elem-with-child.html
jmwenda/feedbunch
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Test</title> <!--[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]--> <script src="../../lib/jquery.min.js"></script> <link rel="stylesheet" href="../../lib/qunit.css"> <script src="../../lib/qunit.js"></script> <script src="../../../dist/browser/bootlint.js"></script> <script src="../generic-qunit.js"></script> </head> <body> <span class="glyphicon glyphicon-asterisk"><span id="bad-child"></span></span> <div id="qunit"></div> <ol id="bootlint"> <li data-lint="Glyphicon classes must only be used on elements that contain no text content and have no child elements."></li> </ol> </body> </html>
src/SIGivetBundle/Resources/public/Graph/docs/img/tutorial_reference_gd.html
oscartorresco/SIGivet
<html> <head><title>Image map example</title></head> <body> <map name="GraphPieChartMap"> <area shape="poly" coords="16,29,15,30,15,31,15,32,14,33,13,34,12,35,11,35,10,35,9,36,7,35,6,35,5,35,4,34,3,33,2,32,2,31,2,30,2,29,2,27,2,26,2,25,3,24,4,23,5,22,6,22,7,22,8,22,10,22,11,22,12,22,13,23,14,24,15,25,15,26,15,27" href="http://example.org/mozilla" alt="Mozilla" /> <area shape="poly" coords="17,22,78,22,78,36,17,36" href="http://example.org/mozilla" alt="Mozilla" /> <area shape="poly" coords="16,47,15,48,15,49,15,50,14,51,13,52,12,53,11,53,10,53,9,54,7,53,6,53,5,53,4,52,3,51,2,50,2,49,2,48,2,47,2,45,2,44,2,43,3,42,4,41,5,40,6,40,7,40,8,40,10,40,11,40,12,40,13,41,14,42,15,43,15,44,15,45" href="http://example.org/" alt="Explorer" /> <area shape="poly" coords="17,40,78,40,78,54,17,54" href="http://example.org/" alt="Explorer" /> <area shape="poly" coords="16,65,15,66,15,67,15,68,14,69,13,70,12,71,11,71,10,71,9,72,7,71,6,71,5,71,4,70,3,69,2,68,2,67,2,66,2,65,2,63,2,62,2,61,3,60,4,59,5,58,6,58,7,58,8,58,10,58,11,58,12,58,13,59,14,60,15,61,15,62,15,63" href="http://example.org/" alt="Opera" /> <area shape="poly" coords="17,58,78,58,78,72,17,72" href="http://example.org/" alt="Opera" /> <area shape="poly" coords="16,83,15,84,15,85,15,86,14,87,13,88,12,89,11,89,10,89,9,90,7,89,6,89,5,89,4,88,3,87,2,86,2,85,2,84,2,83,2,81,2,80,2,79,3,78,4,77,5,76,6,76,7,76,8,76,10,76,11,76,12,76,13,77,14,78,15,79,15,80,15,81" href="http://example.org/" alt="Safari" /> <area shape="poly" coords="17,76,78,76,78,90,17,90" href="http://example.org/" alt="Safari" /> <area shape="poly" coords="16,101,15,102,15,103,15,104,14,105,13,106,12,107,11,107,10,107,9,108,7,107,6,107,5,107,4,106,3,105,2,104,2,103,2,102,2,101,2,99,2,98,2,97,3,96,4,95,5,94,6,94,7,94,8,94,10,94,11,94,12,94,13,95,14,96,15,97,15,98,15,99" href="http://example.org/" alt="Konqueror" /> <area shape="poly" coords="17,94,78,94,78,108,17,108" href="http://example.org/" alt="Konqueror" /> <area shape="poly" coords="240,110,312,110,310,122,307,134,302,146,295,156,286,165,276,172,264,177,252,180,240,182,227,180,215,177,204,172,193,165,184,156,177,146,172,134,169,122,168,110,169,97,172,85,177,74,178,72" href="http://example.org/mozilla" alt="Mozilla" /> <area shape="poly" coords="80,178,206,178,206,196,80,196" href="http://example.org/mozilla" alt="Mozilla" /> <area shape="poly" coords="240,110,178,72,185,62,194,54,205,47,216,41,228,38,241,38,253,39,265,42,277,48,287,55,295,64,302,75,303,75" href="http://example.org/" alt="Explorer" /> <area shape="poly" coords="252,21,400,21,400,39,252,39" href="http://example.org/" alt="Explorer" /> <area shape="poly" coords="240,110,303,75,308,87,310,94" href="http://example.org/" alt="Opera" /> <area shape="poly" coords="326,72,400,72,400,90,326,90" href="http://example.org/" alt="Opera" /> <area shape="poly" coords="240,110,310,94,311,103" href="http://example.org/" alt="Safari" /> <area shape="poly" coords="331,90,400,90,400,108,331,108" href="http://example.org/" alt="Safari" /> <area shape="poly" coords="240,110,311,103,312,109" href="http://example.org/" alt="Konqueror" /> <area shape="poly" coords="331,108,400,108,400,126,331,126" href="http://example.org/" alt="Konqueror" /> </map> <img src="tutorial_example_29.png" width="400" height="200" usemap="#GraphPieChartMap" /> </body> </html>
docs/api/namespaces.html
mixerp/mixerp
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <meta name="generator" content="Doxygen 1.8.10"/> <title>Packages</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtreedata.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/searchdata.js"></script> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { init_search(); }); </script> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td id="projectlogo"><img alt="Logo" src="mixerp.png"/></td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.10 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="namespaces.html"><span>Packages</span></a></li> <li><a href="annotated.html"><span>Classes</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li class="current"><a href="namespaces.html"><span>Packages</span></a></li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('namespaces.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> </div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Packages</div> </div> </div><!--header--> <div class="contents"> <div class="textblock">Here are the packages with brief descriptions (if available):</div><div class="directory"> <div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span><span onclick="javascript:toggleLevel(5);">5</span><span onclick="javascript:toggleLevel(6);">6</span><span onclick="javascript:toggleLevel(7);">7</span>]</div><table class="directory"> <tr id="row_0_" class="even"><td class="entry"><span style="width:0px;display:inline-block;">&#160;</span><span id="arr_0_" class="arrow" onclick="toggleFolder('0_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p.html" target="_self">MixERP</a></td><td class="desc"></td></tr> <tr id="row_0_0_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span id="arr_0_0_" class="arrow" onclick="toggleFolder('0_0_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net.html" target="_self">Net</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_0_" class="arrow" onclick="toggleFolder('0_0_0_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api.html" target="_self">Api</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_0_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_audit.html" target="_self">Audit</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_1_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_config.html" target="_self">Config</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_2_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_core.html" target="_self">Core</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_3_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_framework.html" target="_self">Framework</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_4_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_h_r_m.html" target="_self">HRM</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_5_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_localization.html" target="_self">Localization</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_6_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_office.html" target="_self">Office</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_7_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_policy.html" target="_self">Policy</a></td><td class="desc"></td></tr> <tr id="row_0_0_0_8_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_transactions.html" target="_self">Transactions</a></td><td class="desc"></td></tr> <tr id="row_0_0_1_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_1_" class="arrow" onclick="toggleFolder('0_0_1_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_application_state.html" target="_self">ApplicationState</a></td><td class="desc"></td></tr> <tr id="row_0_0_1_0_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_application_state_1_1_cache.html" target="_self">Cache</a></td><td class="desc"></td></tr> <tr id="row_0_0_2_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_2_" class="arrow" onclick="toggleFolder('0_0_2_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_common.html" target="_self">Common</a></td><td class="desc"></td></tr> <tr id="row_0_0_2_0_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_common_1_1_events.html" target="_self">Events</a></td><td class="desc"></td></tr> <tr id="row_0_0_2_1_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_common_1_1_extensions.html" target="_self">Extensions</a></td><td class="desc"></td></tr> <tr id="row_0_0_2_2_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_common_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_2_3_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_common_1_1j_query_helper.html" target="_self">jQueryHelper</a></td><td class="desc"></td></tr> <tr id="row_0_0_2_4_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_common_1_1_postgres_helper.html" target="_self">PostgresHelper</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_3_" class="arrow" onclick="toggleFolder('0_0_3_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core.html" target="_self">Core</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_" class="arrow" onclick="toggleFolder('0_0_3_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules.html" target="_self">Modules</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_0_" class="arrow" onclick="toggleFolder('0_0_3_0_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office.html" target="_self">BackOffice</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_admin.html" target="_self">Admin</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_0_1_" class="arrow" onclick="toggleFolder('0_0_3_0_0_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_admin.html" target="_self">Admin</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_one_time_setup.html" target="_self">OneTimeSetup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_policy.html" target="_self">Policy</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_data_1_1_tax.html" target="_self">Tax</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_hubs.html" target="_self">Hubs</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_jobs.html" target="_self">Jobs</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_o_t_s.html" target="_self">OTS</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_policy.html" target="_self">Policy</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_7_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_0_7_" class="arrow" onclick="toggleFolder('0_0_3_0_0_7_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_services.html" target="_self">Services</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_7_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_services_1_1_admin.html" target="_self">Admin</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_7_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_services_1_1_o_t_s.html" target="_self">OTS</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_7_2_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_services_1_1_policy.html" target="_self">Policy</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_8_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_tax.html" target="_self">Tax</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_0_9_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_back_office_1_1_widgets.html" target="_self">Widgets</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_1_" class="arrow" onclick="toggleFolder('0_0_3_0_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_c_r_m.html" target="_self">CRM</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_c_r_m_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_2_" class="arrow" onclick="toggleFolder('0_0_3_0_2_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance.html" target="_self">Finance</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_confirmation.html" target="_self">Confirmation</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_2_1_" class="arrow" onclick="toggleFolder('0_0_3_0_2_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_data_1_1_core.html" target="_self">Core</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_data_1_1_day_operation.html" target="_self">DayOperation</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_data_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_data_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_data_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_2_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_day_operation.html" target="_self">DayOperation</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_3_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_4_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_hubs.html" target="_self">Hubs</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_5_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_6_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_2_6_" class="arrow" onclick="toggleFolder('0_0_3_0_2_6_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_services.html" target="_self">Services</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_6_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_services_1_1_day_operation.html" target="_self">DayOperation</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_6_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_services_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_7_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_2_8_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_finance_1_1_widgets.html" target="_self">Widgets</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_3_" class="arrow" onclick="toggleFolder('0_0_3_0_3_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m.html" target="_self">HRM</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_1_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m_1_1_first_steps.html" target="_self">FirstSteps</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_2_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m_1_1_payroll.html" target="_self">Payroll</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_3_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_4_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_3_4_" class="arrow" onclick="toggleFolder('0_0_3_0_3_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m_1_1_tasks.html" target="_self">Tasks</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_4_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m_1_1_tasks_1_1_employee.html" target="_self">Employee</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_3_4_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_h_r_m_1_1_tasks_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_4_" class="arrow" onclick="toggleFolder('0_0_3_0_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory.html" target="_self">Inventory</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_confirmation.html" target="_self">Confirmation</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_4_1_" class="arrow" onclick="toggleFolder('0_0_3_0_4_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_data_1_1_domains.html" target="_self">Domains</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_data_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_data_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_data_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_1_4_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_data_1_1_transactions.html" target="_self">Transactions</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_2_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_3_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_4_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_4_4_" class="arrow" onclick="toggleFolder('0_0_3_0_4_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_services.html" target="_self">Services</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_4_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_services_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_4_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_services_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_5_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_4_5_" class="arrow" onclick="toggleFolder('0_0_3_0_4_5_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_4_5_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_inventory_1_1_setup_1_1_parties.html" target="_self">Parties</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_5_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_5_" class="arrow" onclick="toggleFolder('0_0_3_0_5_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_manufacturing.html" target="_self">Manufacturing</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_5_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_manufacturing_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_6_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_p_o_s.html" target="_self">POS</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_7_" class="arrow" onclick="toggleFolder('0_0_3_0_7_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase.html" target="_self">Purchase</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_confirmation.html" target="_self">Confirmation</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_7_1_" class="arrow" onclick="toggleFolder('0_0_3_0_7_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_data_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_data_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_data_1_1_transactions.html" target="_self">Transactions</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_2_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_3_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_4_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_7_4_" class="arrow" onclick="toggleFolder('0_0_3_0_7_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_services.html" target="_self">Services</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_7_4_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_purchase_1_1_services_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_8_" class="arrow" onclick="toggleFolder('0_0_3_0_8_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales.html" target="_self">Sales</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_confirmation.html" target="_self">Confirmation</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_8_1_" class="arrow" onclick="toggleFolder('0_0_3_0_8_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_data_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_data_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_1_2_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_data_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_1_3_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_data_1_1_transactions.html" target="_self">Transactions</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_2_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_3_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_4_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span id="arr_0_0_3_0_8_4_" class="arrow" onclick="toggleFolder('0_0_3_0_8_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_services.html" target="_self">Services</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_4_0_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_services_1_1_entry.html" target="_self">Entry</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_4_1_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_services_1_1_notification.html" target="_self">Notification</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_4_2_" class="even" style="display:none;"><td class="entry"><span style="width:112px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_services_1_1_receipt.html" target="_self">Receipt</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_5_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_setup.html" target="_self">Setup</a></td><td class="desc"></td></tr> <tr id="row_0_0_3_0_8_6_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_core_1_1_modules_1_1_sales_1_1_widgets.html" target="_self">Widgets</a></td><td class="desc"></td></tr> <tr id="row_0_0_4_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_4_" class="arrow" onclick="toggleFolder('0_0_4_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_currency_conversion.html" target="_self">CurrencyConversion</a></td><td class="desc"></td></tr> <tr id="row_0_0_4_0_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_currency_conversion_1_1_currencylayer.html" target="_self">Currencylayer</a></td><td class="desc"></td></tr> <tr id="row_0_0_4_1_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_currency_conversion_1_1_open_exchange_rates.html" target="_self">OpenExchangeRates</a></td><td class="desc"></td></tr> <tr id="row_0_0_5_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_db_factory.html" target="_self">DbFactory</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_6_" class="arrow" onclick="toggleFolder('0_0_6_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities.html" target="_self">Entities</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_0_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_audit.html" target="_self">Audit</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_1_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_config.html" target="_self">Config</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_2_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_core.html" target="_self">Core</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_3_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_4_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_h_r_m.html" target="_self">HRM</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_5_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_localization.html" target="_self">Localization</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_6_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_office.html" target="_self">Office</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_7_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_policy.html" target="_self">Policy</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_8_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_6_8_" class="arrow" onclick="toggleFolder('0_0_6_8_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_public.html" target="_self">Public</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_8_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_public_1_1_meta.html" target="_self">Meta</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_9_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_6_9_" class="arrow" onclick="toggleFolder('0_0_6_9_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_transactions.html" target="_self">Transactions</a></td><td class="desc"></td></tr> <tr id="row_0_0_6_9_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entities_1_1_transactions_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_7_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_7_" class="arrow" onclick="toggleFolder('0_0_7_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entity_parser.html" target="_self">EntityParser</a></td><td class="desc"></td></tr> <tr id="row_0_0_7_0_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_entity_parser_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_8_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_8_" class="arrow" onclick="toggleFolder('0_0_8_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_first_steps.html" target="_self">FirstSteps</a></td><td class="desc"></td></tr> <tr id="row_0_0_8_0_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_first_steps_1_1_first_tasks.html" target="_self">FirstTasks</a></td><td class="desc"></td></tr> <tr id="row_0_0_8_1_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_8_1_" class="arrow" onclick="toggleFolder('0_0_8_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_first_steps_1_1_new_user.html" target="_self">NewUser</a></td><td class="desc"></td></tr> <tr id="row_0_0_8_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_first_steps_1_1_new_user_1_1_first_tasks.html" target="_self">FirstTasks</a></td><td class="desc"></td></tr> <tr id="row_0_0_8_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_first_steps_1_1_new_user_1_1_user_managment.html" target="_self">UserManagment</a></td><td class="desc"></td></tr> <tr id="row_0_0_8_2_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_first_steps_1_1_office.html" target="_self">Office</a></td><td class="desc"></td></tr> <tr id="row_0_0_9_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_9_" class="arrow" onclick="toggleFolder('0_0_9_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_framework.html" target="_self">Framework</a></td><td class="desc"></td></tr> <tr id="row_0_0_9_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_9_0_" class="arrow" onclick="toggleFolder('0_0_9_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_framework_1_1_contracts.html" target="_self">Contracts</a></td><td class="desc"></td></tr> <tr id="row_0_0_9_0_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_framework_1_1_contracts_1_1_checklist.html" target="_self">Checklist</a></td><td class="desc"></td></tr> <tr id="row_0_0_9_0_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_framework_1_1_contracts_1_1_currency.html" target="_self">Currency</a></td><td class="desc"></td></tr> <tr id="row_0_0_9_1_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_framework_1_1_controls.html" target="_self">Controls</a></td><td class="desc"></td></tr> <tr id="row_0_0_9_2_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_framework_1_1_extensions.html" target="_self">Extensions</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_10_" class="arrow" onclick="toggleFolder('0_0_10_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end.html" target="_self">FrontEnd</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_0_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_application.html" target="_self">Application</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_1_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_base.html" target="_self">Base</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_2_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_controls.html" target="_self">Controls</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_3_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_dashboard.html" target="_self">Dashboard</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_4_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_10_4_" class="arrow" onclick="toggleFolder('0_0_10_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_4_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_data_1_1_core.html" target="_self">Core</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_4_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_data_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_4_2_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_data_1_1_office.html" target="_self">Office</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_4_3_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_data_1_1_public.html" target="_self">Public</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_5_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_general.html" target="_self">General</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_6_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_handlers.html" target="_self">Handlers</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_7_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_hubs.html" target="_self">Hubs</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_8_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_installation.html" target="_self">Installation</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_9_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_10_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_modules.html" target="_self">Modules</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_11_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_public.html" target="_self">Public</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_12_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_10_12_" class="arrow" onclick="toggleFolder('0_0_10_12_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_reports.html" target="_self">Reports</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_12_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_reports_1_1_assets.html" target="_self">Assets</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_13_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_services.html" target="_self">Services</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_14_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_10_14_" class="arrow" onclick="toggleFolder('0_0_10_14_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_site.html" target="_self">Site</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_14_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_site_1_1_account.html" target="_self">Account</a></td><td class="desc"></td></tr> <tr id="row_0_0_10_14_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_front_end_1_1_site_1_1_exceptions.html" target="_self">Exceptions</a></td><td class="desc"></td></tr> <tr id="row_0_0_11_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_11_" class="arrow" onclick="toggleFolder('0_0_11_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1i18n.html" target="_self">i18n</a></td><td class="desc"></td></tr> <tr id="row_0_0_11_0_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1i18n_1_1_resources.html" target="_self">Resources</a></td><td class="desc"></td></tr> <tr id="row_0_0_12_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_12_" class="arrow" onclick="toggleFolder('0_0_12_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_messaging.html" target="_self">Messaging</a></td><td class="desc"></td></tr> <tr id="row_0_0_12_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_12_0_" class="arrow" onclick="toggleFolder('0_0_12_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_messaging_1_1_email.html" target="_self">Email</a></td><td class="desc"></td></tr> <tr id="row_0_0_12_0_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_messaging_1_1_email_1_1_database.html" target="_self">Database</a></td><td class="desc"></td></tr> <tr id="row_0_0_12_0_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_messaging_1_1_email_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_13_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_report_manager.html" target="_self">ReportManager</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_14_" class="arrow" onclick="toggleFolder('0_0_14_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas.html" target="_self">Schemas</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_0_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_14_0_" class="arrow" onclick="toggleFolder('0_0_14_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_audit.html" target="_self">Audit</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_audit_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_1_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_14_1_" class="arrow" onclick="toggleFolder('0_0_14_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_config.html" target="_self">Config</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_1_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_config_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_2_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_14_2_" class="arrow" onclick="toggleFolder('0_0_14_2_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_core.html" target="_self">Core</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_2_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_core_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_3_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_14_3_" class="arrow" onclick="toggleFolder('0_0_14_3_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_localization.html" target="_self">Localization</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_3_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_localization_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_4_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_14_4_" class="arrow" onclick="toggleFolder('0_0_14_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_office.html" target="_self">Office</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_4_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_office_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_5_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_14_5_" class="arrow" onclick="toggleFolder('0_0_14_5_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_policy.html" target="_self">Policy</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_5_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_policy_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_6_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_14_6_" class="arrow" onclick="toggleFolder('0_0_14_6_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_transactions.html" target="_self">Transactions</a></td><td class="desc"></td></tr> <tr id="row_0_0_14_6_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_schemas_1_1_transactions_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_15_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_15_" class="arrow" onclick="toggleFolder('0_0_15_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_transaction_governor.html" target="_self">TransactionGovernor</a></td><td class="desc"></td></tr> <tr id="row_0_0_15_0_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_15_0_" class="arrow" onclick="toggleFolder('0_0_15_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_transaction_governor_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_15_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_transaction_governor_1_1_data_1_1_verification.html" target="_self">Verification</a></td><td class="desc"></td></tr> <tr id="row_0_0_15_1_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_transaction_governor_1_1_verification.html" target="_self">Verification</a></td><td class="desc"></td></tr> <tr id="row_0_0_16_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_16_" class="arrow" onclick="toggleFolder('0_0_16_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_updater.html" target="_self">Updater</a></td><td class="desc"></td></tr> <tr id="row_0_0_16_0_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_updater_1_1_api.html" target="_self">Api</a></td><td class="desc"></td></tr> <tr id="row_0_0_16_1_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_16_1_" class="arrow" onclick="toggleFolder('0_0_16_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_updater_1_1_installation.html" target="_self">Installation</a></td><td class="desc"></td></tr> <tr id="row_0_0_16_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_updater_1_1_installation_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_16_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_updater_1_1_installation_1_1_tasks.html" target="_self">Tasks</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_" class="even"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_17_" class="arrow" onclick="toggleFolder('0_0_17_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility.html" target="_self">Utility</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_0_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_17_0_" class="arrow" onclick="toggleFolder('0_0_17_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_installer.html" target="_self">Installer</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_installer_1_1_domains.html" target="_self">Domains</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_installer_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_0_2_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_installer_1_1_installer.html" target="_self">Installer</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_0_3_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_installer_1_1_properties.html" target="_self">Properties</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_0_4_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_installer_1_1_u_i.html" target="_self">UI</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_1_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_17_1_" class="arrow" onclick="toggleFolder('0_0_17_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_sql_bundler.html" target="_self">SqlBundler</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_1_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_sql_bundler_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_17_1_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_utility_1_1_sql_bundler_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_18_" class="arrow" onclick="toggleFolder('0_0_18_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls.html" target="_self">WebControls</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_0_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_0_" class="arrow" onclick="toggleFolder('0_0_18_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_attachment_factory.html" target="_self">AttachmentFactory</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_0_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_attachment_factory_1_1_handlers.html" target="_self">Handlers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_0_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_attachment_factory_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_1_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_1_" class="arrow" onclick="toggleFolder('0_0_18_1_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_common.html" target="_self">Common</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_1_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_common_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_1_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_common_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_2_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_2_" class="arrow" onclick="toggleFolder('0_0_18_2_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_flag.html" target="_self">Flag</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_2_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_flag_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_3_"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_party_control.html" target="_self">PartyControl</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_4_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_4_" class="arrow" onclick="toggleFolder('0_0_18_4_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine.html" target="_self">ReportEngine</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_4_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_18_4_0_" class="arrow" onclick="toggleFolder('0_0_18_4_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_4_0_0_" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_data_1_1_connection.html" target="_self">Connection</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_4_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_report_engine_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_5_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_5_" class="arrow" onclick="toggleFolder('0_0_18_5_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_scrud_factory.html" target="_self">ScrudFactory</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_5_0_" class="even" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_18_5_0_" class="arrow" onclick="toggleFolder('0_0_18_5_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_scrud_factory_1_1_controls.html" target="_self">Controls</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_5_0_0_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_scrud_factory_1_1_controls_1_1_list_controls.html" target="_self">ListControls</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_5_0_1_" class="even" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_scrud_factory_1_1_controls_1_1_text_boxes.html" target="_self">TextBoxes</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_5_1_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_scrud_factory_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_5_2_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_scrud_factory_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_6_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_6_" class="arrow" onclick="toggleFolder('0_0_18_6_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_adjustment_factory.html" target="_self">StockAdjustmentFactory</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_6_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_adjustment_factory_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_7_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_7_" class="arrow" onclick="toggleFolder('0_0_18_7_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_transaction_factory.html" target="_self">StockTransactionFactory</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_7_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_transaction_factory_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_8_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_8_" class="arrow" onclick="toggleFolder('0_0_18_8_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_transaction_view_factory.html" target="_self">StockTransactionViewFactory</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_8_0_" style="display:none;"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span id="arr_0_0_18_8_0_" class="arrow" onclick="toggleFolder('0_0_18_8_0_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_transaction_view_factory_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_8_0_0_" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_transaction_view_factory_1_1_data_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_8_0_1_" style="display:none;"><td class="entry"><span style="width:96px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_transaction_view_factory_1_1_data_1_1_models.html" target="_self">Models</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_8_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_stock_transaction_view_factory_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_9_"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_9_" class="arrow" onclick="toggleFolder('0_0_18_9_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_transaction_checklist.html" target="_self">TransactionChecklist</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_9_0_" class="even" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_transaction_checklist_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_10_" class="even"><td class="entry"><span style="width:48px;display:inline-block;">&#160;</span><span id="arr_0_0_18_10_" class="arrow" onclick="toggleFolder('0_0_18_10_')">&#9658;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_transaction_view_factory.html" target="_self">TransactionViewFactory</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_10_0_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_transaction_view_factory_1_1_data.html" target="_self">Data</a></td><td class="desc"></td></tr> <tr id="row_0_0_18_10_1_" style="display:none;"><td class="entry"><span style="width:80px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_controls_1_1_transaction_view_factory_1_1_helpers.html" target="_self">Helpers</a></td><td class="desc"></td></tr> <tr id="row_0_0_19_"><td class="entry"><span style="width:32px;display:inline-block;">&#160;</span><span id="arr_0_0_19_" class="arrow" onclick="toggleFolder('0_0_19_')">&#9660;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_jobs.html" target="_self">WebJobs</a></td><td class="desc"></td></tr> <tr id="row_0_0_19_0_" class="even"><td class="entry"><span style="width:64px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_web_jobs_1_1_backup_database.html" target="_self">BackupDatabase</a></td><td class="desc"></td></tr> <tr id="row_1_"><td class="entry"><span style="width:16px;display:inline-block;">&#160;</span><span class="icona"><span class="icon">N</span></span><a class="el" href="namespace_peta_poco.html" target="_self">PetaPoco</a></td><td class="desc"></td></tr> </table> </div><!-- directory --> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated by <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li> </ul> </div> </body> </html>
themes/src/main/resources/theme/base/admin/resources/partials/client-credentials-jwt.html
keycloak/keycloak
<div class="form-horizontal no-margin-top" name="keyForm" novalidate kc-read-only="!client.access.configure" data-ng-controller="ClientSignedJWTCtrl"> <div class="form-group"> <label class="col-md-2 control-label" for="tokenEndpointAuthSigningAlg">{{:: 'token-endpoint-auth-signing-alg' | translate}}</label> <div class="col-sm-6"> <div> <select class="form-control" id="tokenEndpointAuthSigningAlg" ng-model="tokenEndpointAuthSigningAlg"> <option value=""></option> <option ng-repeat="provider in serverInfo.listProviderIds('clientSignature')" value="{{provider}}">{{provider}}</option> </select> </div> </div> <kc-tooltip>{{:: 'token-endpoint-auth-signing-alg.tooltip' | translate}}</kc-tooltip> </div> <div class="form-group"> <label class="col-md-2 control-label"></label> <div class="col-sm-6"> <div class="row"> <div class="col-sm-12">{{:: 'need-to-configure-keys' | translate}}</div> </div> </div> </div> </div>
themes/cambium/htdocs/luci-static/cambium/cascade.css
deepak78/luci
/*! * LuCI Bootstrap Theme * Copyright 2012 Nut & Bolt * By David Menting <david@nut-bolt.nl> * Based on Bootstrap v1.4.0 * * Copyright 2011 Twitter, Inc * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Designed and built with all the love in the world @twitter by @mdo and @fat. */ /* Reset.less * Props to Eric Meyer (meyerweb.com) for his CSS reset file. We're using an adapted version here that cuts out some of the reset HTML elements we will never need here (i.e., dfn, samp, etc). * ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- */ html, body { margin: 0; padding: 0; } h1, h2, h3, h4, h5, h6, p, pre, a, abbr, acronym, code, del, em, img, q, s, small, strike, strong, sub, sup, tt, var, dd, dl, dt, li, ol, ul, fieldset, form, label, legend, button, table, caption, tbody, tfoot, thead, tr, th, td { margin: 0; padding: 0; border: 0; font-weight: normal; font-style: normal; font-size: 100%; line-height: 1; font-family: inherit; } abbr[title], acronym[title] { border-bottom: 1px dotted; cursor: help; } table { border-collapse: collapse; border-spacing: 0; } ol, ul { list-style: none; } q:before, q:after, blockquote:before, blockquote:after { content: ""; } html { overflow-y: scroll; font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; } a:focus { outline: thin dotted; } a:hover, a:active { outline: 0; } article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; } sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; } sup { top: -0.5em; } sub { bottom: -0.25em; } img { border: 0; -ms-interpolation-mode: bicubic; } button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; } button, input { line-height: normal; *overflow: visible; } button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; } button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; } input[type="search"] { -webkit-appearance: textfield; -webkit-box-sizing: content-box; -moz-box-sizing: content-box; box-sizing: content-box; } input[type="search"]::-webkit-search-decoration { -webkit-appearance: none; } textarea { overflow: auto; vertical-align: top; } /* * Scaffolding * Basic and global styles for generating a grid system, structural layout, and page templates * ------------------------------------------------------------------------------------------- */ body { background-color: #ffffff; margin: 0; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: 18px; color: #404040; padding-top: 58px; } .container { width: 100%; max-width: 940px; margin-left: auto; margin-right: auto; zoom: 1; } .container:before, .container:after { display: table; content: ""; zoom: 1; } .container:after { clear: both; } a { color: #0069d6; text-decoration: none; line-height: inherit; font-weight: inherit; } a:hover { color: #00438a; text-decoration: underline; } .pull-right { float: right; } .pull-left { float: left; } /* Typography.less * Headings, body text, lists, code, and more for a versatile and durable typography system * ---------------------------------------------------------------------------------------- */ p, .cbi-map-descr, .cbi-section-descr { font-size: 13px; font-weight: normal; line-height: 18px; margin-bottom: 9px; } p small { font-size: 11px; color: #bfbfbf; } h1, h2, h3, h4, h5, h6 { font-weight: bold; color: #404040; } h1 small, h2 small, h3 small, h4 small, h5 small, h6 small { color: #bfbfbf; } h1 { margin-bottom: 18px; font-size: 30px; line-height: 36px; } h1 small { font-size: 18px; } h2 { font-size: 24px; line-height: 36px; } h2 small { font-size: 14px; } h3, h4, h5, h6 { line-height: 36px; } h3 { font-size: 18px; } h3 small { font-size: 14px; } h4 { font-size: 16px; } h4 small { font-size: 12px; } h5 { font-size: 14px; } h6 { font-size: 13px; color: #bfbfbf; text-transform: uppercase; } ul, ol { margin: 0 0 18px 25px; } ul ul, ul ol, ol ol, ol ul { margin-bottom: 0; } ul { list-style: disc; } ol { list-style: decimal; } li { line-height: 18px; color: #808080; } ul.unstyled { list-style: none; margin-left: 0; } dl { margin-bottom: 18px; } dl dt, dl dd { line-height: 18px; } dl dt { font-weight: bold; } dl dd { margin-left: 9px; } hr { margin: 20px 0 19px; border: 0; border-bottom: 1px solid #eee; } strong { font-style: inherit; font-weight: bold; } em { font-style: italic; font-weight: inherit; line-height: inherit; } small { font-size: 0.9em } address { display: block; line-height: 18px; margin-bottom: 18px; } code, pre { padding: 0 3px 2px; font-family: Monaco, Andale Mono, Courier New, monospace; font-size: 12px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } code { background-color: #fee9cc; color: rgba(0, 0, 0, 0.75); padding: 1px 3px; } pre { background-color: #f5f5f5; display: block; padding: 8.5px; margin: 0 0 18px; line-height: 18px; font-size: 12px; border: 1px solid #ccc; border: 1px solid rgba(0, 0, 0, 0.15); -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; white-space: pre; white-space: pre-wrap; word-wrap: break-word; } /* Forms.less * Base styles for various input types, form layouts, and states * ------------------------------------------------------------- */ form { margin-bottom: 18px; } fieldset { margin-bottom: 9px; padding-top: 9px; } fieldset legend { display: block; font-size: 19.5px; line-height: 1; color: #404040; padding-top: 20px; *padding: 0 0 5px 0px; /* IE6-7 */ *line-height: 1.5; /* IE6-7 */ } form .clearfix, form .cbi-value { margin-bottom: 18px; zoom: 1; overflow: hidden; } form .clearfix:before, form .clearfix:after, form .cbi-value:before, form .cbi-value:after { display: table; content: ""; zoom: 1; } form .clearfix:after form .cbi-value:after { clear: both; } label, input, select, textarea { font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 13px; font-weight: normal; line-height: normal; } form .input, form .cbi-value-field { margin-left: 150px; } form .cbi-value label.cbi-value-title { padding-top: 6px; font-size: 13px; line-height: 18px; float: left; width: 130px; text-align: right; color: #404040; } input[type=checkbox], input[type=radio] { cursor: pointer; } input, textarea, select, .uneditable-input { display: inline-block; width: 210px; height: 18px; padding: 4px; font-size: 13px; line-height: 18px; color: #808080; border: 1px solid #ccc; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; } select { padding: initial; } input[type=checkbox], input[type=radio] { width: auto; height: auto; padding: 0; margin: 3px 0; *margin-top: 0; /* IE6-7 */ line-height: normal; border: none; } input[type=file] { background-color: #ffffff; padding: initial; border: initial; line-height: initial; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } input[type=button], input[type=reset], input[type=submit] { width: auto; height: auto; } select, input[type=file] { height: 27px; *height: auto; line-height: 27px; *margin-top: 4px; /* For IE7, add top margin to align select with labels */ } select[multiple] { height: inherit; background-color: #ffffff; } textarea { height: auto; } .uneditable-input { background-color: #ffffff; display: block; border-color: #eee; -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025); cursor: not-allowed; } :-moz-placeholder { color: #bfbfbf; } ::-webkit-input-placeholder { color: #bfbfbf; } input, textarea { -webkit-transition: border linear 0.2s, box-shadow linear 0.2s; -moz-transition: border linear 0.2s, box-shadow linear 0.2s; -ms-transition: border linear 0.2s, box-shadow linear 0.2s; -o-transition: border linear 0.2s, box-shadow linear 0.2s; transition: border linear 0.2s, box-shadow linear 0.2s; -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); } input:focus, textarea:focus { outline: 0; border-color: rgba(82, 168, 236, 0.8); -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(82, 168, 236, 0.6); } input[type=file]:focus, input[type=checkbox]:focus, select:focus { -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; outline: 1px dotted #666; } form .clearfix.error > label, form .clearfix.error .help-block, form .clearfix.error .help-inline { color: #b94a48; } form .clearfix.error input, form .clearfix.error textarea { color: #b94a48; border-color: #ee5f5b; } form .clearfix.error input:focus, form .clearfix.error textarea:focus { border-color: #e9322d; -webkit-box-shadow: 0 0 6px #f8b9b7; -moz-box-shadow: 0 0 6px #f8b9b7; box-shadow: 0 0 6px #f8b9b7; } form .clearfix.error .input-prepend .add-on, form .clearfix.error .input-append .add-on { color: #b94a48; background-color: #fce6e6; border-color: #b94a48; } form .clearfix.warning > label, form .clearfix.warning .help-block, form .clearfix.warning .help-inline { color: #c09853; } form .clearfix.warning input, form .clearfix.warning textarea { color: #c09853; border-color: #ccae64; } form .clearfix.warning input:focus, form .clearfix.warning textarea:focus { border-color: #be9a3f; -webkit-box-shadow: 0 0 6px #e5d6b1; -moz-box-shadow: 0 0 6px #e5d6b1; box-shadow: 0 0 6px #e5d6b1; } form .clearfix.warning .input-prepend .add-on, form .clearfix.warning .input-append .add-on { color: #c09853; background-color: #d2b877; border-color: #c09853; } form .clearfix.success > label, form .clearfix.success .help-block, form .clearfix.success .help-inline { color: #468847; } form .clearfix.success input, form .clearfix.success textarea { color: #468847; border-color: #57a957; } form .clearfix.success input:focus, form .clearfix.success textarea:focus { border-color: #458845; -webkit-box-shadow: 0 0 6px #9acc9a; -moz-box-shadow: 0 0 6px #9acc9a; box-shadow: 0 0 6px #9acc9a; } form .clearfix.success .input-prepend .add-on, form .clearfix.success .input-append .add-on { color: #468847; background-color: #bcddbc; border-color: #468847; } input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] { background-color: #f5f5f5; border-color: #ddd; } .actions, .cbi-page-actions { background: #f5f5f5; margin-bottom: 18px; padding: 17px 20px 18px 150px; border-top: 1px solid #ddd; -webkit-border-radius: 0 0 3px 3px; -moz-border-radius: 0 0 3px 3px; border-radius: 0 0 3px 3px; text-align: right; } .actions .secondary-action, .cbi-page-actions .secondary-action{ float: right; } .actions .secondary-action a, .cbi-page-actions .secondary-action a { line-height: 30px; } .actions .secondary-action a:hover, .cbi-page-actions .secondary-action a:hover { text-decoration: underline; } .help-inline, .help-block { font-size: 13px; line-height: 18px; color: #bfbfbf; } .help-inline { padding-left: 5px; *position: relative; /* IE6-7 */ *top: -5px; /* IE6-7 */ } .help-block { display: block; max-width: 600px; } /* * Tables.less * Tables for, you guessed it, tabular data * ---------------------------------------- */ table { width: 100%; margin-bottom: 18px; padding: 0; font-size: 13px; border-collapse: collapse; } table th, table td { padding: 10px 10px 9px; line-height: 18px; text-align: left; } table th { padding-top: 9px; font-weight: bold; vertical-align: middle; } table td { vertical-align: top; border-top: 1px solid #ddd; } table tbody th { border-top: 1px solid #ddd; vertical-align: top; } /* Patterns.less * Repeatable UI elements outside the base styles provided from the scaffolding * ---------------------------------------------------------------------------- */ header { height: 40px; position: fixed; top: 0; left: 0; right: 0; z-index: 10000; overflow: visible; color: #BFBFBF } header a { color: #bfbfbf; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); } header h3 a:hover, header .brand:hover, header ul .active > a { background-color: #333; background-color: rgba(255, 255, 255, 0.05); color: #ffffff; text-decoration: none; } header h3 { position: relative; } header h3 a, header .brand { float: left; display: block; padding: 8px 20px 12px; margin-left: -20px; color: #ffffff; font-size: 20px; font-weight: 200; line-height: 1; } header p { margin: 0; line-height: 40px; } header .fill { background-color: #222; background-color: #222222; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#333333), to(#222222)); background-image: -moz-linear-gradient(top, #333333, #222222); background-image: -ms-linear-gradient(top, #333333, #222222); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #333333), color-stop(100%, #222222)); background-image: -webkit-linear-gradient(top, #333333, #222222); background-image: -o-linear-gradient(top, #333333, #222222); background-image: linear-gradient(top, #333333, #222222); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#333333', endColorstr='#222222', GradientType=0); -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); box-shadow: 0 1px 3px rgba(0, 0, 0, 0.25), inset 0 -1px 0 rgba(0, 0, 0, 0.1); } header div > ul, .nav { display: block; float: left; margin: 0 10px 0 0; position: relative; left: 0; } header div > ul > li, .nav > li { display: block; float: left; } header div > ul a, .nav a { display: block; float: none; padding: 10px 10px 11px; line-height: 19px; text-decoration: none; } header div > ul a:hover, .nav a:hover { color: #ffffff; text-decoration: none; } header div > ul .active > a, .nav .active > a { background-color: #222; background-color: rgba(0, 0, 0, 0.5); } header div > ul.secondary-nav, .nav.secondary-nav { float: right; margin-left: 10px; margin-right: 0; } header div > ul.secondary-nav .menu-dropdown, .nav.secondary-nav .menu-dropdown, header div > ul.secondary-nav .dropdown-menu, .nav.secondary-nav .dropdown-menu { right: 0; border: 0; } header div > ul a.menu:hover, .nav a.menu:hover, header div > ul li.open .menu, .nav li.open .menu, header div > ul .dropdown-toggle:hover, .nav .dropdown-toggle:hover, header div > ul .dropdown.open .dropdown-toggle, .nav .dropdown.open .dropdown-toggle { background: #444; background: rgba(255, 255, 255, 0.05); } header div > ul .menu-dropdown, .nav .menu-dropdown, header div > ul .dropdown-menu, .nav .dropdown-menu { background-color: #333; } header div > ul .menu-dropdown a.menu, .nav .menu-dropdown a.menu, header div > ul .dropdown-menu a.menu, .nav .dropdown-menu a.menu, header div > ul .menu-dropdown .dropdown-toggle, .nav .menu-dropdown .dropdown-toggle, header div > ul .dropdown-menu .dropdown-toggle, .nav .dropdown-menu .dropdown-toggle { color: #ffffff; } header div > ul .menu-dropdown a.menu.open, .nav .menu-dropdown a.menu.open, header div > ul .dropdown-menu a.menu.open, .nav .dropdown-menu a.menu.open, header div > ul .menu-dropdown .dropdown-toggle.open, .nav .menu-dropdown .dropdown-toggle.open, header div > ul .dropdown-menu .dropdown-toggle.open, .nav .dropdown-menu .dropdown-toggle.open { background: #444; background: rgba(255, 255, 255, 0.05); } header div > ul .menu-dropdown li a, .nav .menu-dropdown li a, header div > ul .dropdown-menu li a, .nav .dropdown-menu li a { color: #999; text-shadow: 0 1px 0 rgba(0, 0, 0, 0.5); } header div > ul .menu-dropdown li a:hover, .nav .menu-dropdown li a:hover, header div > ul .dropdown-menu li a:hover, .nav .dropdown-menu li a:hover { background-color: #191919; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#292929), to(#191919)); background-image: -moz-linear-gradient(top, #292929, #191919); background-image: -ms-linear-gradient(top, #292929, #191919); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #292929), color-stop(100%, #191919)); background-image: -webkit-linear-gradient(top, #292929, #191919); background-image: -o-linear-gradient(top, #292929, #191919); background-image: linear-gradient(top, #292929, #191919); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#292929', endColorstr='#191919', GradientType=0); color: #ffffff; } header div > ul .menu-dropdown .active a, .nav .menu-dropdown .active a, header div > ul .dropdown-menu .active a, .nav .dropdown-menu .active a { color: #ffffff; } header div > ul .menu-dropdown .divider, .nav .menu-dropdown .divider, header div > ul .dropdown-menu .divider, .nav .dropdown-menu .divider { background-color: #222; border-color: #444; } header ul .menu-dropdown li a, header ul .dropdown-menu li a { padding: 4px 15px; } li.menu, .dropdown { position: relative; } a.menu:after, .dropdown-toggle:after { width: 0; height: 0; display: inline-block; content: "&darr;"; text-indent: -99999px; vertical-align: top; margin-top: 8px; margin-left: 4px; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 4px solid #ffffff; filter: alpha(opacity=50); -khtml-opacity: 0.5; -moz-opacity: 0.5; opacity: 0.5; } .menu-dropdown, .dropdown-menu { background-color: #ffffff; float: left; display: none; position: absolute; top: 40px; z-index: 900; min-width: 160px; max-width: 220px; _width: 160px; margin-left: 0; margin-right: 0; padding: 6px 0; zoom: 1; border-color: #999; border-color: rgba(0, 0, 0, 0.2); border-style: solid; border-width: 0 1px 1px; -webkit-border-radius: 0 0 6px 6px; -moz-border-radius: 0 0 6px 6px; border-radius: 0 0 6px 6px; -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); -moz-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); -webkit-background-clip: padding-box; -moz-background-clip: padding-box; background-clip: padding-box; } .menu-dropdown li, .dropdown-menu li { float: none; display: block; background-color: none; } .menu-dropdown .divider, .dropdown-menu .divider { height: 1px; margin: 5px 0; overflow: hidden; background-color: #eee; border-bottom: 1px solid #ffffff; } header .dropdown-menu a, .dropdown-menu a { display: block; padding: 4px 15px; clear: both; font-weight: normal; line-height: 18px; color: #808080; text-shadow: 0 1px 0 #ffffff; } header .dropdown-menu a:hover, .dropdown-menu a:hover, header .dropdown-menu a.hover, .dropdown-menu a.hover { background-color: #dddddd; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#eeeeee), to(#dddddd)); background-image: -moz-linear-gradient(top, #eeeeee, #dddddd); background-image: -ms-linear-gradient(top, #eeeeee, #dddddd); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #eeeeee), color-stop(100%, #dddddd)); background-image: -webkit-linear-gradient(top, #eeeeee, #dddddd); background-image: -o-linear-gradient(top, #eeeeee, #dddddd); background-image: linear-gradient(top, #eeeeee, #dddddd); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd', GradientType=0); color: #404040; text-decoration: none; -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025); -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025); box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.025), inset 0 -1px rgba(0, 0, 0, 0.025); } .open .menu, .dropdown.open .menu, .open .dropdown-toggle, .dropdown.open .dropdown-toggle { color: #ffffff; background: #ccc; background: rgba(0, 0, 0, 0.3); } .open .menu-dropdown, .dropdown.open .menu-dropdown, .open .dropdown-menu, .dropdown.open .dropdown-menu { display: block; } .dropdown:hover ul.dropdown-menu { display: block; } .dropdown-menu .dropdown-menu { position: absolute; left: 159px; } .dropdown-menu li { position: relative; } .tabs, .cbi-tabmenu { margin: 0 0 18px; padding: 0; list-style: none; zoom: 1; } .tabs:before, .cbi-tabmenu:before, .tabs:after, .cbi-tabmenu:after { display: table; content: ""; zoom: 1; } .tabs:after, .cbi-tabmenu:after { clear: both; } .tabs > li, .cbi-tabmenu > li { float: left; } .tabs > li > a, .cbi-tabmenu > li > a { display: block; } .tabs, .cbi-tabmenu { border-color: #ddd; border-style: solid; border-width: 0 0 1px; } .tabs > li, .cbi-tabmenu > li { position: relative; margin-bottom: -1px; } .tabs > li > a, .cbi-tabmenu > li > a { padding: 0 15px; margin-right: 2px; line-height: 34px; border: 1px solid transparent; -webkit-border-radius: 4px 4px 0 0; -moz-border-radius: 4px 4px 0 0; border-radius: 4px 4px 0 0; } .tabs > li > a:hover, .cbi-tabmenu > li > a:hover { text-decoration: none; background-color: #eee; border-color: #eee #eee #ddd; } .tabs .active > a, .tabs .active > a:hover, .cbi-tabmenu .active > a, .cbi-tabmenu .active > a:hover, .cbi-tab > a:link, .cbi-tab > a:hover { color: #808080; background-color: #ffffff; border: 1px solid #ddd; border-bottom-color: transparent; cursor: default; } .tabs .menu-dropdown, .tabs .dropdown-menu, .cbi-tabmenu .menu-dropdown, .cbi-tabmenu .dropdown-menu { top: 35px; border-width: 1px; -webkit-border-radius: 0 6px 6px 6px; -moz-border-radius: 0 6px 6px 6px; border-radius: 0 6px 6px 6px; } .tabs a.menu:after, .tabs .dropdown-toggle:after, .cbi-tabmenu a.menu:after, .cbi-tabmenu .dropdown-toggle:after { border-top-color: #999; margin-top: 15px; margin-left: 5px; } .tabs li.open.menu .menu, .tabs .open.dropdown .dropdown-toggle, .cbi-tabmenu li.open.menu .menu, .cbi-tabmenu .open.dropdown .dropdown-toggle { border-color: #999; } .tabs li.open a.menu:after, .tabs .dropdown.open .dropdown-toggle:after, .cbi-tabmenu li.open a.menu:after, .cbi-tabmenu .dropdown.open .dropdown-toggle:after { border-top-color: #555; } .tab-content > .tab-pane, .tab-content > div { display: none; } .tab-content > .active { display: block; } .breadcrumb { padding: 7px 14px; margin: 0 0 18px; background-color: #f5f5f5; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#ffffff), to(#f5f5f5)); background-image: -moz-linear-gradient(top, #ffffff, #f5f5f5); background-image: -ms-linear-gradient(top, #ffffff, #f5f5f5); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #f5f5f5)); background-image: -webkit-linear-gradient(top, #ffffff, #f5f5f5); background-image: -o-linear-gradient(top, #ffffff, #f5f5f5); background-image: linear-gradient(top, #ffffff, #f5f5f5); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0); border: 1px solid #ddd; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; -webkit-box-shadow: inset 0 1px 0 #ffffff; -moz-box-shadow: inset 0 1px 0 #ffffff; box-shadow: inset 0 1px 0 #ffffff; } .breadcrumb li { display: inline; text-shadow: 0 1px 0 #ffffff; } .breadcrumb .divider { padding: 0 5px; color: #bfbfbf; } .breadcrumb .active a { color: #404040; } footer { margin-top: 17px; padding-top: 17px; border-top: 1px solid #eee; } .btn.danger, .alert-message.danger, .btn.danger:hover, .alert-message.danger:hover, .btn.error, .alert-message.error, .btn.error:hover, .alert-message.error:hover, .btn.success, .alert-message.success, .btn.success:hover, .alert-message.success:hover, .btn.info, .alert-message.info, .btn.info:hover, .alert-message.info:hover { color: #ffffff; } .btn .close, .alert-message .close { font-family: Arial, sans-serif; line-height: 18px; } .btn.danger, .alert-message.danger, .btn.error, .alert-message.error { background-color: #c43c35; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#ee5f5b), to(#c43c35)); background-image: -moz-linear-gradient(top, #ee5f5b, #c43c35); background-image: -ms-linear-gradient(top, #ee5f5b, #c43c35); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ee5f5b), color-stop(100%, #c43c35)); background-image: -webkit-linear-gradient(top, #ee5f5b, #c43c35); background-image: -o-linear-gradient(top, #ee5f5b, #c43c35); background-image: linear-gradient(top, #ee5f5b, #c43c35); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#c43c35', GradientType=0); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #c43c35 #c43c35 #882a25; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); } .btn.success, .alert-message.success { background-color: #57a957; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#62c462), to(#57a957)); background-image: -moz-linear-gradient(top, #62c462, #57a957); background-image: -ms-linear-gradient(top, #62c462, #57a957); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #62c462), color-stop(100%, #57a957)); background-image: -webkit-linear-gradient(top, #62c462, #57a957); background-image: -o-linear-gradient(top, #62c462, #57a957); background-image: linear-gradient(top, #62c462, #57a957); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#57a957', GradientType=0); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #57a957 #57a957 #3d773d; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); } .btn.info, .alert-message.info { background-color: #339bb9; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#5bc0de), to(#339bb9)); background-image: -moz-linear-gradient(top, #5bc0de, #339bb9); background-image: -ms-linear-gradient(top, #5bc0de, #339bb9); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #5bc0de), color-stop(100%, #339bb9)); background-image: -webkit-linear-gradient(top, #5bc0de, #339bb9); background-image: -o-linear-gradient(top, #5bc0de, #339bb9); background-image: linear-gradient(top, #5bc0de, #339bb9); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#339bb9', GradientType=0); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #339bb9 #339bb9 #22697d; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); } .btn, .cbi-button { cursor: pointer; display: inline-block; background-color: #e6e6e6; background-repeat: no-repeat; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); padding: 5px 14px 6px; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); color: #333; font-size: 13px; line-height: normal; border: 1px solid #ccc; border-bottom-color: #bbb; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn:hover, .cbi-button:hover { color: #333; text-decoration: none; } .btn:focus, .cbi-button:focus { outline: 1px dotted #666; } .btn.primary, .cbi-page-actions .cbi-button-apply, .cbi-page-actions .cbi-button-save { color: #ffffff; background-color: #0064cd; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#049cdb), to(#0064cd)); background-image: -moz-linear-gradient(top, #049cdb, #0064cd); background-image: -ms-linear-gradient(top, #049cdb, #0064cd); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #049cdb), color-stop(100%, #0064cd)); background-image: -webkit-linear-gradient(top, #049cdb, #0064cd); background-image: -o-linear-gradient(top, #049cdb, #0064cd); background-image: linear-gradient(top, #049cdb, #0064cd); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#049cdb', endColorstr='#0064cd', GradientType=0); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #0064cd #0064cd #003f81; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); } .cbi-button-up { background-position: center center; background-image: url('../resources/cbi/up.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); background-image: url('../resources/cbi/up.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/up.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/up.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/up.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/up.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); } .cbi-button-down { background-position: center center; background-image: url('../resources/cbi/down.gif'), -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); background-image: url('../resources/cbi/down.gif'), -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/down.gif'), -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/down.gif'), -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/down.gif'), -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: url('../resources/cbi/down.gif'), linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); } .btn.active, .btn:active { -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25), 0 1px 2px rgba(0, 0, 0, 0.05); } .btn.disabled { cursor: default; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); filter: alpha(opacity=65); -khtml-opacity: 0.65; -moz-opacity: 0.65; opacity: 0.65; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .btn[disabled] { cursor: default; background-image: none; filter: progid:DXImageTransform.Microsoft.gradient(enabled = false); filter: alpha(opacity=65); -khtml-opacity: 0.65; -moz-opacity: 0.65; opacity: 0.65; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; } .btn.large { font-size: 15px; line-height: normal; padding: 9px 14px 9px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } .btn.small { padding: 7px 9px 7px; font-size: 11px; } /* Button icons for specific pages */ .Startup .cbi-section-table input.cbi-input-apply, .Startup .cbi-section-table input.cbi-button-apply { background-image: url("../resources/cbi/apply.gif"); background-position: 7px 4px; padding: 3px 9px 3px 27px; } .Processes .cbi-section-table input.cbi-input-reload, .Startup .cbi-section-table input.cbi-input-reload { background-image: url("../resources/cbi/reload.gif"); background-position: 7px 4px; padding: 3px 9px 3px 27px; } .Processes .cbi-section-table input.cbi-input-remove, .Processes .cbi-section-table div.cbi-section-remove input, .Startup .cbi-section-table input.cbi-input-remove, .Startup .cbi-section-table div.cbi-section-remove input { background-image: url("../resources/cbi/remove.gif"); background-position: 7px 4px; padding: 3px 9px 3px 27px; } .Processes .cbi-section-table input.cbi-input-reset, .Processes .cbi-section-table input.cbi-button-reset, .Startup .cbi-section-table input.cbi-input-reset, .Startup .cbi-section-table input.cbi-button-reset { background-image: url("../resources/cbi/reset.gif"); background-position: 7px 4px; padding: 3px 9px 3px 27px; } .Startup .cbi-section-table input.cbi-input-save, .Startup .cbi-section-table input.cbi-button-save { background-image: url("../resources/cbi/save.gif"); background-position: 7px 4px; padding: 3px 9px 3px 27px; } :root .alert-message, :root .btn { border-radius: 0 \0; } button.btn::-moz-focus-inner, input[type=submit].btn::-moz-focus-inner { padding: 0; border: 0; } .close { float: right; color: #000000; font-size: 20px; font-weight: bold; line-height: 13.5px; text-shadow: 0 1px 0 #ffffff; filter: alpha(opacity=25); -khtml-opacity: 0.25; -moz-opacity: 0.25; opacity: 0.25; } .close:hover { color: #000000; text-decoration: none; filter: alpha(opacity=40); -khtml-opacity: 0.4; -moz-opacity: 0.4; opacity: 0.4; } .alert-message { position: relative; padding: 7px 15px; margin-bottom: 18px; color: #404040; background-color: #eedc94; background-repeat: repeat-x; background-image: -khtml-gradient(linear, left top, left bottom, from(#fceec1), to(#eedc94)); background-image: -moz-linear-gradient(top, #fceec1, #eedc94); background-image: -ms-linear-gradient(top, #fceec1, #eedc94); background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #fceec1), color-stop(100%, #eedc94)); background-image: -webkit-linear-gradient(top, #fceec1, #eedc94); background-image: -o-linear-gradient(top, #fceec1, #eedc94); background-image: linear-gradient(top, #fceec1, #eedc94); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceec1', endColorstr='#eedc94', GradientType=0); text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); border-color: #eedc94 #eedc94 #e4c652; border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25); text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5); border-width: 1px; border-style: solid; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25); } .alert-message .close { margin-top: 1px; *margin-top: 0; } .alert-message a { font-weight: bold; color: #404040; } .alert-message.danger p a, .alert-message.error p a, .alert-message.success p a, .alert-message.info p a { color: #ffffff; } .alert-message h5 { line-height: 18px; } .alert-message p { margin-bottom: 0; } .alert-message div { margin-top: 5px; margin-bottom: 2px; line-height: 28px; } .alert-message .btn { -webkit-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); -moz-box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); box-shadow: 0 1px 0 rgba(255, 255, 255, 0.25); } .label { padding: 1px 3px 2px; font-size: 9.75px; font-weight: bold; color: #ffffff !important; text-transform: uppercase; white-space: nowrap; background-color: #bfbfbf; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; text-shadow: none; } a.label:link, a.label:visited { color: #ffffff; } a.label:hover { text-decoration: none; } .label.important { background-color: #c43c35; } .label.warning { background-color: #f89406; } .label.success { background-color: #46a546; } .label.notice { background-color: #62cffc; } /* LuCI specific items */ .hidden { display: none } #memtotal > div, #memfree > div, #memcache > div, #membuff > div, #conns > div { border: 1px solid #CCCCCC; border-radius: 3px 3px 3px 3px; color: #808080; display: inline-block; font-size: 13px; height: 22 dpx; line-height: 18px; } #xhr_poll_status { cursor: pointer; } form.inline { display: inline } header .pull-right { padding-top: 8px; } #modemenu li:last-child span.divider { display: none } #syslog { width: 100%; } .cbi-section-table tbody tr:nth-child(odd) td, .cbi-section-table tbody tr:nth-child(odd) th { background-color: #f9f9f9; } .cbi-section-table tbody tr:hover td, .cbi-section-table tbody tr:hover th { background-color: #f5f5f5; } .cbi-section-table tr.cbi-section-table-descr th { font-weight: normal; } .left { text-align: left !important; } .right { text-align: right !important; } .cbi-value-field { line-height: 1.5em; } .cbi-value-field input[type=checkbox], .cbi-value-field input[type=radio] { margin-top: 8px; margin-right: 6px; } table table td, .cbi-value-field table td { border: none; } table.cbi-section-table input, table.cbi-section-table textarea, table.cbi-section-table select { width: auto; } table.cbi-section-table td.cbi-section-table-cell { white-space: nowrap; text-align: right; } .cbi-value-description { display: inline; } .cbi-value-description img { vertical-align: middle; } .ifacebox { background-color: #FFFFFF; border: 1px solid #CCCCCC; margin: 0 10px; text-align: center; white-space: nowrap; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .ifacebox .ifacebox-head { border-bottom: 1px solid #CCCCCC; padding: 2px; } .ifacebox .ifacebox-body { padding: 6px; } .ifacebadge { display: inline-block; white-space: nowrap; background-color: #FFFFFF; border: 1px solid #CCCCCC; padding: 2px; margin-left: 2px; background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), color-stop(25%, #ffffff), to(#e6e6e6)); background-image: -webkit-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: -moz-linear-gradient(top, #ffffff, #ffffff 25%, #e6e6e6); background-image: -ms-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: -o-linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); background-image: linear-gradient(#ffffff, #ffffff 25%, #e6e6e6); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0); text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px; -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05); } .ifacebadge-active { border-color: #000000; font-weight: bold; } .zonebadge { padding: 2px; border-radius: 4px; display: inline-block; white-space: nowrap; color: #666666; text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75); cursor: pointer; } .zonebadge em, .zonebadge strong { margin: 5px; display: inline-block; } .zonebadge input { width: 6em; height: 1em; } .zonebadge-empty { border: 1px dashed #AAAAAA; color: #AAAAAA; font-style: italic; font-size: smaller; } div.cbi-value var, td.cbi-value-field var { font-style: italic; color: #0069D6; } .uci-change-list { font-family: monospace; } .uci-change-list ins, .uci-change-legend-label ins { text-decoration: none; border: 1px solid #00FF00; background-color: #CCFFCC; display: block; padding: 2px; } .uci-change-list del, .uci-change-legend-label del { text-decoration: none; border: 1px solid #FF0000; background-color: #FFCCCC; display: block; font-style: normal; padding: 2px; } .uci-change-list var, .uci-change-legend-label var { text-decoration: none; border: 1px solid #CCCCCC; background-color: #EEEEEE; display: block; font-style: normal; padding: 2px; } .uci-change-list var ins, .uci-change-list var del { /*display: inline;*/ border: none; white-space: pre; font-style: normal; padding: 0px; } .uci-change-legend { padding: 5px; } .uci-change-legend-label { width: 150px; float: left; } .uci-change-legend-label>ins, .uci-change-legend-label>del, .uci-change-legend-label>var { float: left; margin-right: 4px; width: 10px; height: 10px; display: block; } .uci-change-legend-label var ins, .uci-change-legend-label var del { line-height: 6px; border: none; }
tf_templates/melon-flat-responsive-admin-template/Template/assets/css/plugins/daterangepicker.css
mfalcon/edujango
.clearfix { *zoom: 1; } .clearfix:before, .clearfix:after { display: table; content: ""; line-height: 0; } .clearfix:after { clear: both; } /*! * Stylesheet for the Date Range Picker, for use with Bootstrap 3.x * * Copyright 2013 Dan Grossman ( http://www.dangrossman.info ) * Licensed under the Apache License v2.0 * http://www.apache.org/licenses/LICENSE-2.0 * * Built for http://www.improvely.com */ .daterangepicker.dropdown-menu { max-width: none; } .daterangepicker.opensleft .ranges, .daterangepicker.opensleft .calendar { float: left; margin: 4px; } .daterangepicker.opensright .ranges, .daterangepicker.opensright .calendar { float: right; margin: 4px; } .daterangepicker .ranges { width: 160px; text-align: left; } .daterangepicker .ranges .range_inputs { border-top: 1px solid #ececec; padding-top: 10px; } .daterangepicker .ranges .range_inputs > div { float: left; } .daterangepicker .ranges .range_inputs > div:nth-child(2) { padding-left: 11px; } .daterangepicker .calendar { display: none; max-width: 270px; } .daterangepicker .calendar th, .daterangepicker .calendar td { white-space: nowrap; text-align: center; min-width: 32px; } .daterangepicker .ranges label { color: #333; display: block; font-size: 11px; font-weight: normal; height: 20px; line-height: 20px; margin-bottom: 2px; text-shadow: #fff 1px 1px 0px; text-transform: uppercase; width: 74px; } .daterangepicker .ranges input { font-size: 11px; } .daterangepicker .ranges .input-mini { background-color: #eee; border: 1px solid #ccc; color: #555; display: block; font-size: 11px; height: 30px; line-height: 30px; vertical-align: middle; margin: 0 0 10px 0; padding: 0 6px; width: 74px; } .daterangepicker .ranges ul { list-style: none; margin: 0; padding: 0; } .daterangepicker .ranges li { font-size: 13px; color: #555555; padding: 3px 12px; margin-bottom: 8px; cursor: pointer; } .daterangepicker .ranges li.active, .daterangepicker .ranges li:hover { background: #4d7496; color: #fff; } .daterangepicker .calendar-date { border: 1px solid #ddd; padding: 4px; border-radius: 4px; background: #fff; } .daterangepicker .calendar-time { text-align: center; margin: 8px auto 0 auto; line-height: 30px; } .daterangepicker { position: absolute; background: #fff; top: 100px; left: 20px; padding: 4px; margin-top: 0px; } .daterangepicker.opensleft:before { position: absolute; top: -7px; right: 9px; display: inline-block; border-right: 7px solid transparent; border-bottom: 7px solid #ccc; border-left: 7px solid transparent; border-bottom-color: rgba(0, 0, 0, 0.2); content: ''; } .daterangepicker.opensleft:after { position: absolute; top: -6px; right: 10px; display: inline-block; border-right: 6px solid transparent; border-bottom: 6px solid #fff; border-left: 6px solid transparent; content: ''; } .daterangepicker.opensright:before { position: absolute; top: -7px; left: 9px; display: inline-block; border-right: 7px solid transparent; border-bottom: 7px solid #ccc; border-left: 7px solid transparent; border-bottom-color: rgba(0, 0, 0, 0.2); content: ''; } .daterangepicker.opensright:after { position: absolute; top: -6px; left: 10px; display: inline-block; border-right: 6px solid transparent; border-bottom: 6px solid #fff; border-left: 6px solid transparent; content: ''; } .daterangepicker table { width: 100%; margin: 0; } .daterangepicker td, .daterangepicker th { text-align: center; width: 20px; height: 20px; cursor: pointer; white-space: nowrap; } .daterangepicker td.off { color: #999; } .daterangepicker td.disabled { color: #999; } .daterangepicker td.available:hover, .daterangepicker th.available:hover { background: #ebebeb; } .daterangepicker td.in-range { background: #ebf4f8; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; } .daterangepicker td.active, .daterangepicker td.active:hover { background-color: #4d7496; color: #fff; text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25); } .daterangepicker td.week, .daterangepicker th.week { font-size: 80%; color: #ccc; } .daterangepicker select.monthselect, .daterangepicker select.yearselect { font-size: 12px; padding: 1px; height: auto; margin: 0; cursor: default; } .daterangepicker select.monthselect { margin-right: 2%; width: 56%; } .daterangepicker select.yearselect { width: 40%; } .daterangepicker select.hourselect, .daterangepicker select.minuteselect, .daterangepicker select.ampmselect { width: 50px; margin-bottom: 0; }
solr/vendor/docs/solr-solrj/org/apache/solr/client/solrj/response/class-use/RangeFacet.Numeric.html
olli-gold/vufind
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_71) on Tue Feb 16 15:22:59 EST 2016 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.client.solrj.response.RangeFacet.Numeric (Solr 5.5.0 API)</title> <meta name="date" content="2016-02-16"> <link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.client.solrj.response.RangeFacet.Numeric (Solr 5.5.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Numeric.html" title="class in org.apache.solr.client.solrj.response">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/solr/client/solrj/response/class-use/RangeFacet.Numeric.html" target="_top">Frames</a></li> <li><a href="RangeFacet.Numeric.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.solr.client.solrj.response.RangeFacet.Numeric" class="title">Uses of Class<br>org.apache.solr.client.solrj.response.RangeFacet.Numeric</h2> </div> <div class="classUseContainer">No usage of org.apache.solr.client.solrj.response.RangeFacet.Numeric</div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../../org/apache/solr/client/solrj/response/RangeFacet.Numeric.html" title="class in org.apache.solr.client.solrj.response">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../../index.html?org/apache/solr/client/solrj/response/class-use/RangeFacet.Numeric.html" target="_top">Frames</a></li> <li><a href="RangeFacet.Numeric.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2016 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
solr/vendor/docs/solr-core/org/apache/solr/cloud/rule/class-use/Rule.Operand.html
CARLI/vufind
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="en"> <head> <!-- Generated by javadoc (version 1.7.0_71) on Tue Feb 16 15:23:08 EST 2016 --> <meta http-equiv="Content-Type" content="text/html" charset="utf-8"> <title>Uses of Class org.apache.solr.cloud.rule.Rule.Operand (Solr 5.5.0 API)</title> <meta name="date" content="2016-02-16"> <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" title="Style"> </head> <body> <script type="text/javascript"><!-- if (location.href.indexOf('is-external=true') == -1) { parent.document.title="Uses of Class org.apache.solr.cloud.rule.Rule.Operand (Solr 5.5.0 API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/solr/cloud/rule/class-use/Rule.Operand.html" target="_top">Frames</a></li> <li><a href="Rule.Operand.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h2 title="Uses of Class org.apache.solr.cloud.rule.Rule.Operand" class="title">Uses of Class<br>org.apache.solr.cloud.rule.Rule.Operand</h2> </div> <div class="classUseContainer"> <ul class="blockList"> <li class="blockList"> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> <caption><span>Packages that use <a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Rule.Operand</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Package</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="#org.apache.solr.cloud.rule">org.apache.solr.cloud.rule</a></td> <td class="colLast"> <div class="block">Classes for managing Replica placement strategy when operating in <a href="http://wiki.apache.org/solr/SolrCloud">SolrCloud</a> mode.</div> </td> </tr> </tbody> </table> </li> <li class="blockList"> <ul class="blockList"> <li class="blockList"><a name="org.apache.solr.cloud.rule"> <!-- --> </a> <h3>Uses of <a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Rule.Operand</a> in <a href="../../../../../../org/apache/solr/cloud/rule/package-summary.html">org.apache.solr.cloud.rule</a></h3> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> <caption><span>Fields in <a href="../../../../../../org/apache/solr/cloud/rule/package-summary.html">org.apache.solr.cloud.rule</a> declared as <a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Rule.Operand</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Field and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code><a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Rule.Operand</a></code></td> <td class="colLast"><span class="strong">Rule.Condition.</span><code><strong><a href="../../../../../../org/apache/solr/cloud/rule/Rule.Condition.html#operand">operand</a></strong></code>&nbsp;</td> </tr> </tbody> </table> <table border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> <caption><span>Methods in <a href="../../../../../../org/apache/solr/cloud/rule/package-summary.html">org.apache.solr.cloud.rule</a> that return <a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Rule.Operand</a></span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Modifier and Type</th> <th class="colLast" scope="col">Method and Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Rule.Operand</a></code></td> <td class="colLast"><span class="strong">Rule.Operand.</span><code><strong><a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html#valueOf(java.lang.String)">valueOf</a></strong>(<a href="http://download.oracle.com/javase/7/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;name)</code> <div class="block">Returns the enum constant of this type with the specified name.</div> </td> </tr> <tr class="rowColor"> <td class="colFirst"><code>static <a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Rule.Operand</a>[]</code></td> <td class="colLast"><span class="strong">Rule.Operand.</span><code><strong><a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html#values()">values</a></strong>()</code> <div class="block">Returns an array containing the constants of this enum type, in the order they are declared.</div> </td> </tr> </tbody> </table> </li> </ul> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../../../overview-summary.html">Overview</a></li> <li><a href="../package-summary.html">Package</a></li> <li><a href="../../../../../../org/apache/solr/cloud/rule/Rule.Operand.html" title="enum in org.apache.solr.cloud.rule">Class</a></li> <li class="navBarCell1Rev">Use</li> <li><a href="../package-tree.html">Tree</a></li> <li><a href="../../../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li>Prev</li> <li>Next</li> </ul> <ul class="navList"> <li><a href="../../../../../../index.html?org/apache/solr/cloud/rule/class-use/Rule.Operand.html" target="_top">Frames</a></li> <li><a href="Rule.Operand.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small> <i>Copyright &copy; 2000-2016 Apache Software Foundation. All Rights Reserved.</i> <script src='../../../../../../prettify.js' type='text/javascript'></script> <script type='text/javascript'> (function(){ var oldonload = window.onload; if (typeof oldonload != 'function') { window.onload = prettyPrint; } else { window.onload = function() { oldonload(); prettyPrint(); } } })(); </script> </small></p> </body> </html>
src/doc-reST/izpack.css
rkrell/izpack
@import url(html4css1.css); body { padding: 50px; background-color: #dedede; font-family: helvetica, sans-serif; font-size: 16px; } .document { padding: 2em; background-color: white; border: solid 1px #aaaaaa; } h1.title { padding: 0.5em; background-color: #dedede; border: solid 1px #aaaaaa; } h1 { border-bottom: solid 3px #aaaaaa; }
third_party/blink/web_tests/svg/dynamic-updates/SVGLinearGradientElement-svgdom-x2-prop.html
scheib/chromium
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> <html> <head> <script src="resources/SVGTestCase.js"></script> <script src="../../resources/js-test.js"></script> <script src="../../paint/invalidation/resources/text-based-repaint.js"></script> </head> <body onload="runRepaintTest()"> <h1>SVG 1.1 dynamic update tests</h1> <p id="description"></p> <div id="console"></div> <script src="script-tests/SVGLinearGradientElement-svgdom-x2-prop.js"></script> </body> </html>
vendor/angular-1.4.8/docs/examples/example-example.csp/index-production.html
confapp/data_manager
<!doctype html> <html lang="en" ng-csp> <head> <meta charset="UTF-8"> <title>Example - example-example.csp-production</title> <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.4.7/angular.min.js"></script> <script src="script.js"></script> </head> <body ng-app="cspExample"> <div ng-controller="MainController as ctrl"> <div> <button ng-click="ctrl.inc()" id="inc">Increment</button> <span id="counter"> {{ctrl.counter}} </span> </div> <div> <button ng-click="ctrl.evil()" id="evil">Evil</button> <span id="evilError"> {{ctrl.evilError}} </span> </div> </div> </body> </html>
templates/comments/form.html
alonisser/Open-Knesset
{% load comments i18n %} <form action="{% comment_form_target %}" method="post">{% csrf_token %} <input type="hidden" name="next" value="{{ request.path }}" /> {% for field in form %} {% if field.is_hidden %} {{ field }} {% else %} {% if field.errors %}{{ field.errors }}{% endif %} <p {% if field.errors %} class="error"{% endif %} {% ifequal field.name "honeypot" %} style="display:none;"{% endifequal %}> {% ifequal field.name "comment" %} {{ field.label_tag }} {{ field }}{% endifequal %} </p> {% endif %} {% endfor %} <p class="submit"> <input type="submit" name="post" class="submit-post" value="{% trans "Post comment" %}" /> </p> </form>
vendor/angular-1.0.7/docs/partials/api/ng.$interpolate.html
kristenhazard/coaching-carousel-js
<h1><code ng:non-bindable="">$interpolate</code> <span class="hint">(service in module <code ng:non-bindable="">ng</code> )</span> </h1> <div><a href="http://github.com/angular/angular.js/edit/master/src/ng/interpolate.js" class="improve-docs btn btn-primary">Improve this doc</a><h2 id="Description">Description</h2> <div class="description"><p>Compiles a string with markup into an interpolation function. This service is used by the HTML <a href="api/ng.$compile"><code>$compile</code></a> service for data binding. See <a href="api/ng.$interpolateProvider"><code>$interpolateProvider</code></a> for configuring the interpolation markup.</p> <pre><code> <pre class="prettyprint linenums"> var $interpolate = ...; // injected var exp = $interpolate('Hello {{name}}!'); expect(exp({name:'Angular'}).toEqual('Hello Angular!'); </pre> </code></pre></div> <h2 id="Dependencies">Dependencies</h2> <ul class="dependencies"><li><code ng:non-bindable=""><a href="api/ng.$parse">$parse</a></code> </li> </ul> <h2 id="Usage">Usage</h2> <div class="usage"><pre class="prettyprint linenums">$interpolate(text[, mustHaveExpression]);</pre> <h3 id="Parameters">Parameters</h3> <ul class="parameters"><li><code ng:non-bindable="">text – {string} – </code> <p>The text with markup to interpolate.</p></li> <li><code ng:non-bindable="">mustHaveExpression<i>(optional)</i> – {boolean=} – </code> <p>if set to true then the interpolation string must have embedded expression in order to return an interpolation function. Strings with no embedded expression will return null for the interpolation function.</p></li> </ul> <h3 id="Returns">Returns</h3> <div class="returns"><code ng:non-bindable="">{function(context)}</code> – <p>an interpolation function which is used to compute the interpolated string. The function has these parameters:</p> <ul> <li><code>context</code>: an object against which any expressions embedded in the strings are evaluated against.</li> </ul></div> </div> <div class="member method"><h2 id="Methods">Methods</h2> <ul class="methods"><li><h3 id="endSymbol">endSymbol()</h3> <div class="endsymbol"><p>Symbol to denote the end of expression in the interpolated string. Defaults to <code>}}</code>.</p> <p>Use <a href="api/ng.$interpolateProvider#endSymbol"><code>$interpolateProvider#endSymbol</code></a> to change the symbol.</p><h4 id="Returns">Returns</h4> <div class="returns"><code ng:non-bindable="">{string}</code> – <p>start symbol.</p></div> </div> </li> <li><h3 id="startSymbol">startSymbol()</h3> <div class="startsymbol"><p>Symbol to denote the start of expression in the interpolated string. Defaults to <code>{{</code>.</p> <p>Use <a href="api/ng.$interpolateProvider#startSymbol"><code>$interpolateProvider#startSymbol</code></a> to change the symbol.</p><h4 id="Returns">Returns</h4> <div class="returns"><code ng:non-bindable="">{string}</code> – <p>start symbol.</p></div> </div> </li> </ul> </div> </div>
app/views/wiki/layout.scala.html
JimmyMow/lila
@(title: String, pages: List[lila.wiki.Page])(body: Html)(implicit ctx: Context) @moreCss = { @cssTag("wiki.css") } @side = { <div class="sidebar"> @wiki.menu(pages) </div> } @base.layout( title = title, moreCss = moreCss, side = side.some) { <div id="wiki">@body</div> }
test/selenium/shared/admin_institution_two_delete.html
kelsey9649/mahara
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head profile="http://selenium-ide.openqa.org/profiles/test-case"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="selenium.base" href="" /> <title>admin_institution_two_delete</title> </head> <body> <table cellpadding="1" cellspacing="1" border="1"> <thead> <tr><td rowspan="1" colspan="3">admin_institution_two_delete</td></tr> </thead><tbody> <tr> <td>open</td> <td></td> <td></td> </tr> <tr> <td>clickAndWait</td> <td>link=Administration</td> <td></td> </tr> <tr> <td>clickAndWait</td> <td>link=Users</td> <td></td> </tr> <tr> <td>clickAndWait</td> <td>link=admin.two</td> <td></td> </tr> <tr> <td>verifyTextPresent</td> <td>Account settings: admin two</td> <td></td> </tr> <tr> <td>click</td> <td>edituser_delete_submit</td> <td></td> </tr> <tr> <td>assertConfirmation</td> <td>Are you sure you want to delete this user?</td> <td></td> </tr> <tr> <td>waitForPageToLoad</td> <td></td> <td></td> </tr> <tr> <td>waitForText</td> <td>//div[@id='messages']</td> <td>User deleted successfully</td> </tr> <tr> <td>clickAndWait</td> <td>link=Return to site</td> <td></td> </tr> </tbody></table> </body> </html>
LayoutTests/plugins/instance-available-before-stylesheets-loaded.html
nwjs/blink
<link rel="stylesheet" href="data:text/css,"> <embed id="plug-in" type="application/x-webkit-test-netscape" width=100 height=100></embed> <p id="result"> </p> <script> if (window.testRunner) testRunner.dumpAsText(); var plugIn = document.getElementById("plug-in"); document.getElementById("result").innerText = ("eventLoggingEnabled" in plugIn) ? "PASS: Plug-in instance available while waiting for style sheets to load" : "FAIL: Plug-in not instantiated on property access while waiting for style sheets to load"; </script>
web/bundles/sunraangular/js/angular/angular-1.2.27/docs/examples/example-example97/index-debug.html
viral810/ngSimpleCMS
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Example - example-example97-debug</title> <script src="../../../angular.js"></script> </head> <body ng-app="customInterpolationApp"> <script> var customInterpolationApp = angular.module('customInterpolationApp', []); customInterpolationApp.config(function($interpolateProvider) { $interpolateProvider.startSymbol('//'); $interpolateProvider.endSymbol('//'); }); customInterpolationApp.controller('DemoController', function() { this.label = "This binding is brought you by // interpolation symbols."; }); </script> <div ng-app="App" ng-controller="DemoController as demo"> //demo.label// </div> </body> </html>
libcef/resources/about_version.html
amikey/chromium
<!DOCTYPE HTML> <!-- about:version template page --> <html id="t" i18n-values="dir:textdirection;"> <head> <title>About Version</title> <style>/* Copyright (c) 2012 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ body { background-color: white; color: black; font-family: Helvetica,Arial,sans-serif; margin: 0; } #outer { margin-left: auto; margin-right: auto; margin-top: 10px; width: 820px; } #inner { padding-top: 10px; width: 550px; } .label { -webkit-padding-end: 5px; font-size: 0.9em; font-weight: bold; text-align: end; white-space: nowrap; } .label:after { content: ':'; } #logo { float: right; margin-left: 40px; text-align: right; width: 200px; } #company { font-size: 0.7em; text-align: right; } #copyright { font-size: 0.7em; text-align: right; } .value { font-family: monospace; max-width: 430px; padding-left: 5px; } </style> </head> <body> <div id="outer"> <div id="logo"> <div id="company">Chromium Embedded Framework (CEF)</div> <div id="copyright">Copyright &copy; $$YEAR$$ The Chromium Embedded Framework Authors.<br/>All rights reserved.<br/><a href="chrome://license">license</a> | <a href="chrome://credits">credits</a></div> </div> <table id="inner" cellpadding="0" cellspacing="0" border="0"> <tr> <td class="label" valign="top">CEF</td> <td class="value">$$CEF$$</td> </tr> <tr> <td class="label" valign="top">Chromium</td> <td class="value">$$CHROMIUM$$</td> </tr> <tr> <td class="label" valign="top">OS</td> <td class="value">$$OS$$</td> </tr> <tr> <td class="label" valign="top">WebKit</td> <td class="value">$$WEBKIT$$</td> </tr> <tr> <td class="label" valign="top">JavaScript</td> <td class="value">$$JAVASCRIPT$$</td> </tr> <tr><td class="label" valign="top">Flash</td> <td class="value" id="flash">$$FLASH$$</td> </tr> <tr> <td class="label" valign="top">User Agent</td> <td class="value">$$USERAGENT$$</td> </tr> <tr> <td class="label" valign="top">Command Line</td> <td class="value">$$COMMANDLINE$$</td> </tr> <tr> <td class="label" valign="top">Module Path</td> <td class="value">$$MODULEPATH$$</td> </tr> <tr> <td class="label" valign="top">Cache Path</td> <td class="value">$$CACHEPATH$$</td> </tr> </table> </div> </body> </html>
uohCorpus.fil/uoh/uoh.filteredcorpus.txt_output/kumaravi-2_ext.txt.out.dict_7743_inr.html
sanskritiitd/sanskrit
url: http://sanskrit.inria.fr/cgi-bin/SKT/sktreader?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=anenaiva;topic=;abs=f;allSol=2;mode=p;cpts=<!DOCTYPE html> <html><head> <meta charset="utf-8"> <title>Sanskrit Reader Companion</title> <meta name="author" content="G&#233;rard Huet"> <meta property="dc:datecopyrighted" content="2016"> <meta property="dc:rightsholder" content="G&#233;rard Huet"> <meta name="keywords" content="dictionary,sanskrit,heritage,dictionnaire,sanscrit,india,inde,indology,linguistics,panini,digital humanities,cultural heritage,computational linguistics,hypertext lexicon"> <link rel="stylesheet" type="text/css" href="http://sanskrit.inria.fr/DICO/style.css" media="screen,tv"> <link rel="shortcut icon" href="http://sanskrit.inria.fr/IMAGES/favicon.ico"> <script type="text/javascript" src="http://sanskrit.inria.fr/DICO/utf82VH.js"></script> </head> <body class="chamois_back"> <br><h1 class="title">The Sanskrit Reader Companion</h1> <table class="chamois_back" border="0" cellpadding="0%" cellspacing="15pt" width="100%"> <tr><td> <p align="center"> <div class="latin16"><a class="green" href="/cgi-bin/SKT/sktgraph?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=anenaiva;topic=;abs=f;cpts=;mode=g">&#x2713;</a> Show Summary of Solutions </p> Input: <span class="red16">anenaiva</span><hr> <br> Sentence: <span class="deva16" lang="sa">&#x0905;&#x0928;&#x0947;&#x0928;&#x0948;&#x0935;</span><br> may be analysed as:</div><br> <hr> <span class="blue">Solution 1 : <a class="green" href="/cgi-bin/SKT/sktparser?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=anenaiva;topic=;abs=f;cpts=;mode=p;n=1">&#x2713;</a></span><br> [ <span class="blue" title="0"><b>anena</b></span><table class="light_blue_back"> <tr><th><span class="latin12"><tr><th><span class="latin12">{ i. sg. m. | i. sg. n. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/5.html#ayam"><i>ayam</i></a>]</span></th></tr></span></th></tr></table>&lang;<span class="magenta">a</span><span class="green">|</span><span class="magenta">ai</span><span class="blue"> &rarr; </span><span class="red">ai</span>&rang;] <br> [ <span class="blue" title="4"><b>aiva</b></span><table class="carmin_back"> <tr><th><span class="latin12"><tr><th><span class="latin12">{ impft. [2] ac. du. 1 }[<a class="navy" href="http://sanskrit.inria.fr/DICO/11.html#i"><i>i</i></a>]</span></th></tr></span></th></tr></table>&lang;&rang;] <br> <br> <hr> <span class="blue">Solution 2 : <a class="green" href="/cgi-bin/SKT/sktparser?t=VH;lex=SH;cache=f;st=t;us=f;cp=t;text=anenaiva;topic=;abs=f;cpts=;mode=p;n=2">&#x2713;</a></span><br> [ <span class="blue" title="0"><b>anena</b></span><table class="light_blue_back"> <tr><th><span class="latin12"><tr><th><span class="latin12">{ i. sg. m. | i. sg. n. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/5.html#ayam"><i>ayam</i></a>]</span></th></tr></span></th></tr></table>&lang;<span class="magenta">a</span><span class="green">|</span><span class="magenta">e</span><span class="blue"> &rarr; </span><span class="red">ai</span>&rang;] <br> [ <span class="blue" title="4"><b>eva</b></span><table class="mauve_back"> <tr><th><span class="latin12"><tr><th><span class="latin12">{ prep. }[<a class="navy" href="http://sanskrit.inria.fr/DICO/17.html#eva"><i>eva</i></a>]</span></th></tr></span></th></tr></table>&lang;&rang;] <br> <br> <hr> <span class="magenta">2</span><span class="blue"> solution</span><span class="blue">s</span><span class="blue"> kept among </span><span class="magenta">2</span><br> <br> <hr> <br> <br> </td></tr></table> <table class="pad60"> <tr><td></td></tr></table> <div class="enpied"> <table class="bandeau"><tr><td> <a href="http://ocaml.org"><img src="http://sanskrit.inria.fr/IMAGES/ocaml.gif" alt="Le chameau Ocaml" height="50"></a> </td><td> <table class="center"> <tr><td> <a href="http://sanskrit.inria.fr/index.fr.html"><b>Top</b></a> | <a href="http://sanskrit.inria.fr/DICO/index.fr.html"><b>Index</b></a> | <a href="http://sanskrit.inria.fr/DICO/index.fr.html#stemmer"><b>Stemmer</b></a> | <a href="http://sanskrit.inria.fr/DICO/grammar.fr.html"><b>Grammar</b></a> | <a href="http://sanskrit.inria.fr/DICO/sandhi.fr.html"><b>Sandhi</b></a> | <a href="http://sanskrit.inria.fr/DICO/reader.fr.html"><b>Reader</b></a> | <a href="http://sanskrit.inria.fr/faq.fr.html"><b>Help</b></a> | <a href="http://sanskrit.inria.fr/portal.fr.html"><b>Portal</b></a> </td></tr><tr><td> &#169; G&#233;rard Huet 1994-2016</td></tr></table></td><td> <a href="http://www.inria.fr/"><img src="http://sanskrit.inria.fr/IMAGES/logo_inria.png" alt="Logo Inria" height="50"></a> <br></td></tr></table></div> </body> </html>
thirdparty/sources/boost_1_60_0/doc/html/boost_asio/reference/basic_raw_socket/bind/overload1.html
gwq5210/litlib
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=US-ASCII"> <title>basic_raw_socket::bind (1 of 2 overloads)</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="../../../../boost_asio.html" title="Boost.Asio"> <link rel="up" href="../bind.html" title="basic_raw_socket::bind"> <link rel="prev" href="../bind.html" title="basic_raw_socket::bind"> <link rel="next" href="overload2.html" title="basic_raw_socket::bind (2 of 2 overloads)"> </head> <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> <table cellpadding="2" width="100%"><tr> <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../../boost.png"></td> <td align="center"><a href="../../../../../../index.html">Home</a></td> <td align="center"><a href="../../../../../../libs/libraries.htm">Libraries</a></td> <td align="center"><a href="http://www.boost.org/users/people.html">People</a></td> <td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td> <td align="center"><a href="../../../../../../more/index.htm">More</a></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../bind.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../bind.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../boost_asio.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload2.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> <div class="section"> <div class="titlepage"><div><div><h5 class="title"> <a name="boost_asio.reference.basic_raw_socket.bind.overload1"></a><a class="link" href="overload1.html" title="basic_raw_socket::bind (1 of 2 overloads)">basic_raw_socket::bind (1 of 2 overloads)</a> </h5></div></div></div> <p> <span class="emphasis"><em>Inherited from basic_socket.</em></span> </p> <p> Bind the socket to the given local endpoint. </p> <pre class="programlisting"><span class="keyword">void</span> <span class="identifier">bind</span><span class="special">(</span> <span class="keyword">const</span> <span class="identifier">endpoint_type</span> <span class="special">&amp;</span> <span class="identifier">endpoint</span><span class="special">);</span> </pre> <p> This function binds the socket to the specified endpoint on the local machine. </p> <h6> <a name="boost_asio.reference.basic_raw_socket.bind.overload1.h0"></a> <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.bind.overload1.parameters"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_raw_socket.bind.overload1.parameters">Parameters</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl class="variablelist"> <dt><span class="term">endpoint</span></dt> <dd><p> An endpoint on the local machine to which the socket will be bound. </p></dd> </dl> </div> <h6> <a name="boost_asio.reference.basic_raw_socket.bind.overload1.h1"></a> <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.bind.overload1.exceptions"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_raw_socket.bind.overload1.exceptions">Exceptions</a> </h6> <div class="variablelist"> <p class="title"><b></b></p> <dl class="variablelist"> <dt><span class="term">boost::system::system_error</span></dt> <dd><p> Thrown on failure. </p></dd> </dl> </div> <h6> <a name="boost_asio.reference.basic_raw_socket.bind.overload1.h2"></a> <span class="phrase"><a name="boost_asio.reference.basic_raw_socket.bind.overload1.example"></a></span><a class="link" href="overload1.html#boost_asio.reference.basic_raw_socket.bind.overload1.example">Example</a> </h6> <pre class="programlisting"><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">socket</span> <span class="identifier">socket</span><span class="special">(</span><span class="identifier">io_service</span><span class="special">);</span> <span class="identifier">socket</span><span class="special">.</span><span class="identifier">open</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">v4</span><span class="special">());</span> <span class="identifier">socket</span><span class="special">.</span><span class="identifier">bind</span><span class="special">(</span><span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">endpoint</span><span class="special">(</span> <span class="identifier">boost</span><span class="special">::</span><span class="identifier">asio</span><span class="special">::</span><span class="identifier">ip</span><span class="special">::</span><span class="identifier">tcp</span><span class="special">::</span><span class="identifier">v4</span><span class="special">(),</span> <span class="number">12345</span><span class="special">));</span> </pre> </div> <table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr> <td align="left"></td> <td align="right"><div class="copyright-footer">Copyright &#169; 2003-2015 Christopher M. Kohlhoff<p> Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>) </p> </div></td> </tr></table> <hr> <div class="spirit-nav"> <a accesskey="p" href="../bind.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../bind.html"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../../../boost_asio.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="overload2.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a> </div> </body> </html>
kyotocabinet/doc/api/functions_func_0x77.html
sapo/kyoto
<!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>Kyoto Cabinet: Class Members - Functions</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="doxygen.css" rel="stylesheet" type="text/css" /> </head> <body> <div id="top"><!-- do not remove this div! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 56px;"> <td style="padding-left: 0.5em;"> <div id="projectname">Kyoto Cabinet </div> </td> </tr> </tbody> </table> </div> <!-- Generated by Doxygen 1.7.6.1 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="namespaces.html"><span>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 class="current"><a href="functions.html"><span>Class&#160;Members</span></a></li> </ul> </div> <div id="navrow3" class="tabs2"> <ul class="tablist"> <li><a href="functions.html"><span>All</span></a></li> <li class="current"><a href="functions_func.html"><span>Functions</span></a></li> <li><a href="functions_vars.html"><span>Variables</span></a></li> <li><a href="functions_enum.html"><span>Enumerations</span></a></li> <li><a href="functions_eval.html"><span>Enumerator</span></a></li> </ul> </div> <div id="navrow4" class="tabs3"> <ul class="tablist"> <li><a href="functions_func.html#index_a"><span>a</span></a></li> <li><a href="functions_func_0x62.html#index_b"><span>b</span></a></li> <li><a href="functions_func_0x63.html#index_c"><span>c</span></a></li> <li><a href="functions_func_0x64.html#index_d"><span>d</span></a></li> <li><a href="functions_func_0x65.html#index_e"><span>e</span></a></li> <li><a href="functions_func_0x66.html#index_f"><span>f</span></a></li> <li><a href="functions_func_0x67.html#index_g"><span>g</span></a></li> <li><a href="functions_func_0x68.html#index_h"><span>h</span></a></li> <li><a href="functions_func_0x69.html#index_i"><span>i</span></a></li> <li><a href="functions_func_0x6a.html#index_j"><span>j</span></a></li> <li><a href="functions_func_0x6b.html#index_k"><span>k</span></a></li> <li><a href="functions_func_0x6c.html#index_l"><span>l</span></a></li> <li><a href="functions_func_0x6d.html#index_m"><span>m</span></a></li> <li><a href="functions_func_0x6e.html#index_n"><span>n</span></a></li> <li><a href="functions_func_0x6f.html#index_o"><span>o</span></a></li> <li><a href="functions_func_0x70.html#index_p"><span>p</span></a></li> <li><a href="functions_func_0x72.html#index_r"><span>r</span></a></li> <li><a href="functions_func_0x73.html#index_s"><span>s</span></a></li> <li><a href="functions_func_0x74.html#index_t"><span>t</span></a></li> <li><a href="functions_func_0x75.html#index_u"><span>u</span></a></li> <li><a href="functions_func_0x76.html#index_v"><span>v</span></a></li> <li class="current"><a href="functions_func_0x77.html#index_w"><span>w</span></a></li> <li><a href="functions_func_0x79.html#index_y"><span>y</span></a></li> <li><a href="functions_func_0x7e.html#index_0x7e"><span>~</span></a></li> </ul> </div> </div> <div class="contents"> &#160; <h3><a class="anchor" id="index_w"></a>- w -</h3><ul> <li>wait() : <a class="el" href="classkyotocabinet_1_1CondVar.html#a57374e8d032ba00526a516b6e7e3218f">kyotocabinet::CondVar</a> , <a class="el" href="classkyotocabinet_1_1CondMap.html#adb67f06cb182a5aec081cd2e9dcc17ac">kyotocabinet::CondMap</a> </li> <li>write() : <a class="el" href="classkyotocabinet_1_1File.html#afca36e49dded6786bb7d00c3c1926dbd">kyotocabinet::File</a> </li> <li>write_fast() : <a class="el" href="classkyotocabinet_1_1File.html#aa0c522ef6450ef22dd1f7f95eb9403ac">kyotocabinet::File</a> </li> <li>write_file() : <a class="el" href="classkyotocabinet_1_1File.html#a739f70505356aa89e94d6012892b285d">kyotocabinet::File</a> </li> <li>write_transaction() : <a class="el" href="classkyotocabinet_1_1File.html#ae296763ca2d39f898aebc3ad8aa34ea2">kyotocabinet::File</a> </li> </ul> </div><!-- contents --> <hr class="footer"/><address class="footer"><small> Generated on Fri May 25 2012 01:21:36 for Kyoto Cabinet by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.7.6.1 </small></address> </body> </html>
third_party/blink/web_tests/external/wpt/css/css-values/integer_interpolation_round_half_towards_positive_infinity_order.html
scheib/chromium
<!doctype html> <title>Testing if integer interpolation is rounded towards positive infinity</title> <link rel="author" title="Joonghun Park" href="pjh0718@gmail.com"> <link rel="help" href="https://drafts.csswg.org/css-values-4/#combine-integers"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <style> #flex-container { display: flex; animation: anim-order 4s steps(4) forwards 1; animation-delay: -1s; animation-play-state: paused; } @keyframes anim-order { from { order: -2; } to { order: 0; } } </style> <div id="flex-container"></div> <script> var test_description = "Integer interpolation should be rounded towards positive infinity"; test( t => { const container = document.getElementById("flex-container"); const order_value = Number.parseFloat(getComputedStyle(container).getPropertyValue('order')); assert_equals(order_value, -1, "Interpolation result for order should be rounded towards positive infinity"); }, test_description ); </script>
tests/wpt/web-platform-tests/core-aam/option_not_inside_combobox-manual.html
anthgur/servo
<!doctype html> <html> <head> <title>option not inside combobox</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> <link rel="stylesheet" href="/resources/testharness.css"> <link rel="stylesheet" href="/wai-aria/scripts/manual.css"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/wai-aria/scripts/ATTAcomm.js"></script> <script> setup({explicit_timeout: true, explicit_done: true }); var theTest = new ATTAcomm( { "steps" : [ { "element" : "test", "test" : { "ATK" : [ [ "property", "role", "is", "ROLE_LIST_ITEM" ] ], "AXAPI" : [ [ "property", "AXRole", "is", "AXStaticText" ], [ "property", "AXSubrole", "is", "<nil>" ], [ "property", "AXRoleDescription", "is", "text" ] ], "MSAA" : [ [ "property", "role", "is", "ROLE_SYSTEM_LISTITEM" ] ], "UIA" : [ [ "property", "ControlType", "is", "ListItem" ], [ "property", "Control Pattern", "is", "Invoke" ] ] }, "title" : "step 1", "type" : "test" } ], "title" : "option not inside combobox" } ) ; </script> </head> <body> <p>This test examines the ARIA properties for option not inside combobox.</p> <div role='listbox'> <div role='option' id='test'>content</div> </div> <div id="manualMode"></div> <div id="log"></div> <div id="ATTAmessages"></div> </body> </html>
solr-4.9.0/lucene/core/src/java/org/apache/lucene/codecs/lucene3x/package.html
williamchengit/TestRepo
<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> <!-- 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 "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body> Codec to support Lucene 3.x indexes (readonly) </body> </html>
tests/misc/some-test.html
Situphen/Python-ZMarkdown
<hr /> <ul> <li> <p>as if</p> </li> <li> <p>as if2</p> </li> </ul> <hr /> <ul> <li> <p>as if</p> </li> <li> <p>as if2</p> </li> </ul> <hr /> <ul> <li>as if non_code</li> <li>as if2</li> </ul> <p>Markdown</p> <ul> <li> <p>Python is ok</p> <ul> <li>Therefore i am</li> </ul> </li> <li> <p>Perl sucks big time</p> <ul> <li>But that's ok</li> </ul> </li> <li> <p>Python is ok Or not?</p> </li> </ul> <p>Here is a normal paragraph</p> <ol> <li>Another list with a bunch of items</li> <li> <p>Mostly fruits</p> <ol> <li>Apple</li> <li>Pare</li> </ol> </li> </ol> <p>asdfasdfasd</p> <pre><code># This is a code example import stuff Another code example * Lists and similar stuff &gt; Should be ignored </code></pre>
third_party/blink/web_tests/fast/hidpi/image-srcset-png-4-expected.html
chromium/chromium
<!DOCTYPE HTML> <link rel="stylesheet" href="resources/svg_tests.css"> <h2><a href="http://www.w3.org/html/wg/drafts/srcset/w3c-srcset">srcset</a> testcases for SVG</h2> <div class="test"> <h3>PNG with explicit dimensions - 4x</h3> <div class="expected">expected<br/> <img src="resources/srcset.png" width="100" height="50"> </div> <div class="actual">actual<br/> <img src="resources/srcset.png" width="100" height="50"> </div> This test should show a PNG image of size 100x50, and intrinsic/natural size 50x25. The left half of the image should be red and there should be a black circle in the center.<br/> <code class="stats" id="code8"></code> <br clear="all"/> </div> <script src="resources/print_img_failure.js"></script>
lib/gdata/doc/classes/GData/Client/CaptchaError.src/M000001.html
ryandotsmith/gcal_push
<?xml version="1.0" encoding="iso-8859-1"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title>new (GData::Client::CaptchaError)</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <link rel="stylesheet" href="../../../.././rdoc-style.css" type="text/css" media="screen" /> </head> <body class="standalone-code"> <pre><span class="ruby-comment cmt"># File lib/gdata/client.rb, line 33</span> <span class="ruby-keyword kw">def</span> <span class="ruby-identifier">initialize</span>(<span class="ruby-identifier">token</span>, <span class="ruby-identifier">url</span>) <span class="ruby-ivar">@token</span> = <span class="ruby-identifier">token</span> <span class="ruby-ivar">@url</span> = <span class="ruby-identifier">url</span> <span class="ruby-keyword kw">end</span></pre> </body> </html>
waliki_project/waliki_project/templates/allauth/account/email.html
fpytloun/waliki
{% extends "account/base.html" %} {% load url from future %} {% load i18n %} {% load bootstrap %} {% block head_title %}{% trans "Account" %}{% endblock %} {% block account_nav_email %}active{% endblock %} {% block account_content %} {% if user.emailaddress_set.all %} <p>{% trans 'The following e-mail addresses are associated to your account:' %}</p> <form action="{% url 'account_email' %}" class="email_list uniForm" method="post"> {% csrf_token %} <table class="table"> <thead> <tr> <th> {% trans 'E-mail' %} </th> <th> {% trans 'Status' %} </th> </tr> </thead> <tbody> {% for emailaddress in user.emailaddress_set.all %} <tr> <td> <label class="radio" for="email_radio_{{forloop.counter}}" class="{% if emailaddress.primary %}primary_email{%endif%}"> <input id="email_radio_{{forloop.counter}}" type="radio" name="email" {% if emailaddress.primary %}checked="checked"{%endif %} value="{{emailaddress.email}}"/> {{ emailaddress.email }} </label> </td> <td> {% if emailaddress.verified %} <span class="label label-info">{% trans "Verified" %}</span> {% else %} <span class="label label-warning">{% trans "Unverified" %}</span> {% endif %} {% if emailaddress.primary %}<span class="label label-success">{% trans "Primary" %}</span>{% endif %} </td> </tr> {% endfor %} </tbody> </table> <div class="form-actions"> <button class="btn btn-success" type="submit" name="action_primary" >{% trans 'Make Primary' %}</button> <button class="btn" type="submit" name="action_send" >{% trans 'Re-send Verification' %}</button> <button class="btn btn-danger" type="submit" name="action_remove" >{% trans 'Remove' %}</button> </div> </fieldset> </form> {% else %} <p><strong>{% trans 'Warning:'%}</strong> {% trans "You currently do not have any e-mail address set up. You should really add an e-mail address so you can receive notifications, reset your password, etc." %}</p> {% endif %} <h2>{% trans "Add E-mail Address" %}</h2> <form method="post" action=""> {% csrf_token %} {{ add_email_form|bootstrap }} <div class="form-actions"> <button class="btn btn-primary" name="action_add" type="submit">{% trans "Add E-mail" %}</button> </div> </form> {% endblock %} {% block extra_body %} <script type="text/javascript"> $(function(){ $("button[name='action_remove']").click(function(){ if (confirm("{% trans 'Do you really want to remove the selected e-mail address?' %}")) { return true; } return false; }); }); </script> {% endblock %}
htmlcssjs/src/main/webapp/introduce-html/example3.html
jittagornp/cpe4235
<!DOCTYPE html> <html> <head> <title>Profile</title> <meta charset="utf-8"> </head> <body> <h1>Profile</h1> <img src="../static/image/profile.png" width="100" style="float: left; margin-right: 20px;"/> <p> <strong>ชื่อ</strong> จิตกร พิทักษ์เมธากุล <br/> jittagorn pitakmetagoon <br/> <br/> <strong>ชื่อเล่น</strong> เดียร์ <br/> <br/> <strong>อาชีพ</strong> โปรแกรมเมอร์ <br/> <br/> </p> <div style="clear: both;"></div> </body> </html>
releases/0.7.6/api/scala/io/gearpump/streaming/appmaster/TaskRegistry$$TaskLocations.html
stanleyxu2005/gearpump.github.io
<!DOCTYPE html > <html> <head> <title>TaskLocations - io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations</title> <meta name="description" content="TaskLocations - io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations" /> <meta name="keywords" content="TaskLocations io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations" /> <meta http-equiv="content-type" content="text/html; charset=UTF-8" /> <link href="../../../../lib/template.css" media="screen" type="text/css" rel="stylesheet" /> <link href="../../../../lib/diagrams.css" media="screen" type="text/css" rel="stylesheet" id="diagrams-css" /> <script type="text/javascript" src="../../../../lib/jquery.js" id="jquery-js"></script> <script type="text/javascript" src="../../../../lib/jquery-ui.js"></script> <script type="text/javascript" src="../../../../lib/template.js"></script> <script type="text/javascript" src="../../../../lib/tools.tooltip.js"></script> <script type="text/javascript"> if(top === self) { var url = '../../../../index.html'; var hash = 'io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations'; var anchor = window.location.hash; var anchor_opt = ''; if (anchor.length >= 1) anchor_opt = '@' + anchor.substring(1); window.location.href = url + '#' + hash + anchor_opt; } </script> </head> <body class="type"> <div id="definition"> <img src="../../../../lib/class_big.png" /> <p id="owner"><a href="../../../package.html" class="extype" name="io">io</a>.<a href="../../package.html" class="extype" name="io.gearpump">gearpump</a>.<a href="../package.html" class="extype" name="io.gearpump.streaming">streaming</a>.<a href="package.html" class="extype" name="io.gearpump.streaming.appmaster">appmaster</a>.<a href="TaskRegistry$.html" class="extype" name="io.gearpump.streaming.appmaster.TaskRegistry">TaskRegistry</a></p> <h1>TaskLocations</h1><h3><span class="morelinks"><div>Related Doc: <a href="TaskRegistry$.html" class="extype" name="io.gearpump.streaming.appmaster.TaskRegistry">package TaskRegistry</a> </div></span></h3><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </div> <h4 id="signature" class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">case class</span> </span> <span class="symbol"> <span class="name">TaskLocations</span><span class="params">(<span name="locations">locations: <span class="extype" name="scala.Predef.Map">Map</span>[<a href="../../transport/HostPort.html" class="extype" name="io.gearpump.transport.HostPort">HostPort</a>, <span class="extype" name="scala.Predef.Set">Set</span>[<a href="../task/TaskId.html" class="extype" name="io.gearpump.streaming.task.TaskId">TaskId</a>]]</span>)</span><span class="result"> extends <span class="extype" name="scala.Product">Product</span> with <span class="extype" name="scala.Serializable">Serializable</span></span> </span> </h4> <div id="comment" class="fullcommenttop"><div class="toggleContainer block"> <span class="toggle">Linear Supertypes</span> <div class="superTypes hiddenContent"><span class="extype" name="scala.Serializable">Serializable</span>, <span class="extype" name="java.io.Serializable">Serializable</span>, <span class="extype" name="scala.Product">Product</span>, <span class="extype" name="scala.Equals">Equals</span>, <span class="extype" name="scala.AnyRef">AnyRef</span>, <span class="extype" name="scala.Any">Any</span></div> </div></div> <div id="mbrsel"> <div id="textfilter"><span class="pre"></span><span class="input"><input id="mbrsel-input" type="text" accesskey="/" /></span><span class="post"></span></div> <div id="order"> <span class="filtertype">Ordering</span> <ol> <li class="alpha in"><span>Alphabetic</span></li> <li class="inherit out"><span>By inheritance</span></li> </ol> </div> <div id="ancestors"> <span class="filtertype">Inherited<br /> </span> <ol id="linearization"> <li class="in" name="io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations"><span>TaskLocations</span></li><li class="in" name="scala.Serializable"><span>Serializable</span></li><li class="in" name="java.io.Serializable"><span>Serializable</span></li><li class="in" name="scala.Product"><span>Product</span></li><li class="in" name="scala.Equals"><span>Equals</span></li><li class="in" name="scala.AnyRef"><span>AnyRef</span></li><li class="in" name="scala.Any"><span>Any</span></li> </ol> </div><div id="ancestors"> <span class="filtertype"></span> <ol> <li class="hideall out"><span>Hide All</span></li> <li class="showall in"><span>Show all</span></li> </ol> <a href="http://docs.scala-lang.org/overviews/scaladoc/usage.html#members" target="_blank">Learn more about member selection</a> </div> <div id="visbl"> <span class="filtertype">Visibility</span> <ol><li class="public in"><span>Public</span></li><li class="all out"><span>All</span></li></ol> </div> </div> <div id="template"> <div id="allMembers"> <div id="constructors" class="members"> <h3>Instance Constructors</h3> <ol><li name="io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations#&lt;init&gt;" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="&lt;init&gt;(locations:Map[io.gearpump.transport.HostPort,Set[io.gearpump.streaming.task.TaskId]]):io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations"></a> <a id="&lt;init&gt;:TaskLocations"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">new</span> </span> <span class="symbol"> <span class="name">TaskLocations</span><span class="params">(<span name="locations">locations: <span class="extype" name="scala.Predef.Map">Map</span>[<a href="../../transport/HostPort.html" class="extype" name="io.gearpump.transport.HostPort">HostPort</a>, <span class="extype" name="scala.Predef.Set">Set</span>[<a href="../task/TaskId.html" class="extype" name="io.gearpump.streaming.task.TaskId">TaskId</a>]]</span>)</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@&lt;init&gt;(locations:Map[io.gearpump.transport.HostPort,Set[io.gearpump.streaming.task.TaskId]]):io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li></ol> </div> <div id="values" class="values members"> <h3>Value Members</h3> <ol><li name="scala.AnyRef#!=" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="!=(x$1:Any):Boolean"></a> <a id="!=(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $bang$eq" class="name">!=</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@!=(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef###" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="##():Int"></a> <a id="##():Int"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $hash$hash" class="name">##</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Int">Int</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@##():Int" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.AnyRef#==" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="==(x$1:Any):Boolean"></a> <a id="==(Any):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span title="gt4s: $eq$eq" class="name">==</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Any">Any</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@==(x$1:Any):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#asInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="asInstanceOf[T0]:T0"></a> <a id="asInstanceOf[T0]:T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">asInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Any.asInstanceOf.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@asInstanceOf[T0]:T0" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="scala.AnyRef#clone" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="clone():Object"></a> <a id="clone():AnyRef"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">clone</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.AnyRef">AnyRef</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@clone():Object" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.CloneNotSupportedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#eq" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="eq(x$1:AnyRef):Boolean"></a> <a id="eq(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">eq</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@eq(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#finalize" visbl="prt" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="finalize():Unit"></a> <a id="finalize():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">finalize</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@finalize():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Attributes</dt><dd>protected[<a href="../../../../java$lang.html" class="extype" name="java.lang">java.lang</a>] </dd><dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="symbol">classOf[java.lang.Throwable]</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#getClass" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="getClass():Class[_]"></a> <a id="getClass():Class[_]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">getClass</span><span class="params">()</span><span class="result">: <span class="extype" name="java.lang.Class">Class</span>[_]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@getClass():Class[_]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef → Any</dd></dl></div> </li><li name="scala.Any#isInstanceOf" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="isInstanceOf[T0]:Boolean"></a> <a id="isInstanceOf[T0]:Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">isInstanceOf</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@isInstanceOf[T0]:Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>Any</dd></dl></div> </li><li name="io.gearpump.streaming.appmaster.TaskRegistry.TaskLocations#locations" visbl="pub" data-isabs="false" fullComment="no" group="Ungrouped"> <a id="locations:Map[io.gearpump.transport.HostPort,Set[io.gearpump.streaming.task.TaskId]]"></a> <a id="locations:Map[HostPort,Set[TaskId]]"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier"></span> <span class="kind">val</span> </span> <span class="symbol"> <span class="name">locations</span><span class="result">: <span class="extype" name="scala.Predef.Map">Map</span>[<a href="../../transport/HostPort.html" class="extype" name="io.gearpump.transport.HostPort">HostPort</a>, <span class="extype" name="scala.Predef.Set">Set</span>[<a href="../task/TaskId.html" class="extype" name="io.gearpump.streaming.task.TaskId">TaskId</a>]]</span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@locations:Map[io.gearpump.transport.HostPort,Set[io.gearpump.streaming.task.TaskId]]" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> </li><li name="scala.AnyRef#ne" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="ne(x$1:AnyRef):Boolean"></a> <a id="ne(AnyRef):Boolean"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">ne</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.AnyRef">AnyRef</span></span>)</span><span class="result">: <span class="extype" name="scala.Boolean">Boolean</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@ne(x$1:AnyRef):Boolean" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notify" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notify():Unit"></a> <a id="notify():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notify</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@notify():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#notifyAll" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="notifyAll():Unit"></a> <a id="notifyAll():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">notifyAll</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@notifyAll():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#synchronized" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="synchronized[T0](x$1:=&gt;T0):T0"></a> <a id="synchronized[T0](⇒T0):T0"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">synchronized</span><span class="tparams">[<span name="T0">T0</span>]</span><span class="params">(<span name="arg0">arg0: ⇒ <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span>)</span><span class="result">: <span class="extype" name="java.lang.AnyRef.synchronized.T0">T0</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@synchronized[T0](x$1:=&gt;T0):T0" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait():Unit"></a> <a id="wait():Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">()</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@wait():Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long,x$2:Int):Unit"></a> <a id="wait(Long,Int):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>, <span name="arg1">arg1: <span class="extype" name="scala.Int">Int</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@wait(x$1:Long,x$2:Int):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li><li name="scala.AnyRef#wait" visbl="pub" data-isabs="false" fullComment="yes" group="Ungrouped"> <a id="wait(x$1:Long):Unit"></a> <a id="wait(Long):Unit"></a> <h4 class="signature"> <span class="modifier_kind"> <span class="modifier">final </span> <span class="kind">def</span> </span> <span class="symbol"> <span class="name">wait</span><span class="params">(<span name="arg0">arg0: <span class="extype" name="scala.Long">Long</span></span>)</span><span class="result">: <span class="extype" name="scala.Unit">Unit</span></span> </span> </h4><span class="permalink"> <a href="../../../../index.html#io.gearpump.streaming.appmaster.TaskRegistry$$TaskLocations@wait(x$1:Long):Unit" title="Permalink" target="_top"> <img src="../../../../lib/permalink.png" /> </a> </span> <div class="fullcomment"><dl class="attributes block"> <dt>Definition Classes</dt><dd>AnyRef</dd><dt>Annotations</dt><dd> <span class="name">@throws</span><span class="args">(<span> <span class="defval" name="classOf[java.lang.InterruptedException]">...</span> </span>)</span> </dd></dl></div> </li></ol> </div> </div> <div id="inheritedMembers"> <div class="parent" name="scala.Serializable"> <h3>Inherited from <span class="extype" name="scala.Serializable">Serializable</span></h3> </div><div class="parent" name="java.io.Serializable"> <h3>Inherited from <span class="extype" name="java.io.Serializable">Serializable</span></h3> </div><div class="parent" name="scala.Product"> <h3>Inherited from <span class="extype" name="scala.Product">Product</span></h3> </div><div class="parent" name="scala.Equals"> <h3>Inherited from <span class="extype" name="scala.Equals">Equals</span></h3> </div><div class="parent" name="scala.AnyRef"> <h3>Inherited from <span class="extype" name="scala.AnyRef">AnyRef</span></h3> </div><div class="parent" name="scala.Any"> <h3>Inherited from <span class="extype" name="scala.Any">Any</span></h3> </div> </div> <div id="groupedMembers"> <div class="group" name="Ungrouped"> <h3>Ungrouped</h3> </div> </div> </div> <div id="tooltip"></div> <div id="footer"> </div> </body> </html>
html/testapidocs/ch/lambdaj/proxy/nodefconstructor/package-summary.html
deeplyloving/lambdaj
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!-- NewPage --> <html lang="it"> <head> <!-- Generated by javadoc (version 1.7.0_01) on Tue Feb 14 20:29:37 CET 2012 --> <meta http-equiv="Content-Type" content="text/html" charset="UTF-8"> <title>ch.lambdaj.proxy.nodefconstructor (lambdaj 2.4 Test API)</title> <meta name="date" content="2012-02-14"> <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="ch.lambdaj.proxy.nodefconstructor (lambdaj 2.4 Test API)"; } //--> </script> <noscript> <div>JavaScript is disabled on your browser.</div> </noscript> <!-- ========= START OF TOP NAVBAR ======= --> <div class="topNav"><a name="navbar_top"> <!-- --> </a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../ch/lambdaj/mock/package-summary.html">Prev Package</a></li> <li><a href="../../../../ch/lambdaj/proxy/nodefconstructor/problem/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?ch/lambdaj/proxy/nodefconstructor/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_top"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_top"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_top"> <!-- --> </a></div> <!-- ========= END OF TOP NAVBAR ========= --> <div class="header"> <h1 title="Package" class="title">Package&nbsp;ch.lambdaj.proxy.nodefconstructor</h1> </div> <div class="contentContainer"> <ul class="blockList"> <li class="blockList"> <table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> <caption><span>Class Summary</span><span class="tabEnd">&nbsp;</span></caption> <tr> <th class="colFirst" scope="col">Class</th> <th class="colLast" scope="col">Description</th> </tr> <tbody> <tr class="altColor"> <td class="colFirst"><a href="../../../../ch/lambdaj/proxy/nodefconstructor/ElementId.html" title="class in ch.lambdaj.proxy.nodefconstructor">ElementId</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="rowColor"> <td class="colFirst"><a href="../../../../ch/lambdaj/proxy/nodefconstructor/ProxyNoDefaultConstructorTest.html" title="class in ch.lambdaj.proxy.nodefconstructor">ProxyNoDefaultConstructorTest</a></td> <td class="colLast">&nbsp;</td> </tr> <tr class="altColor"> <td class="colFirst"><a href="../../../../ch/lambdaj/proxy/nodefconstructor/RelationMetricResult.html" title="class in ch.lambdaj.proxy.nodefconstructor">RelationMetricResult</a></td> <td class="colLast">&nbsp;</td> </tr> </tbody> </table> </li> </ul> </div> <!-- ======= START OF BOTTOM NAVBAR ====== --> <div class="bottomNav"><a name="navbar_bottom"> <!-- --> </a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow"> <!-- --> </a> <ul class="navList" title="Navigation"> <li><a href="../../../../overview-summary.html">Overview</a></li> <li class="navBarCell1Rev">Package</li> <li>Class</li> <li><a href="package-use.html">Use</a></li> <li><a href="package-tree.html">Tree</a></li> <li><a href="../../../../deprecated-list.html">Deprecated</a></li> <li><a href="../../../../index-all.html">Index</a></li> <li><a href="../../../../help-doc.html">Help</a></li> </ul> </div> <div class="subNav"> <ul class="navList"> <li><a href="../../../../ch/lambdaj/mock/package-summary.html">Prev Package</a></li> <li><a href="../../../../ch/lambdaj/proxy/nodefconstructor/problem/package-summary.html">Next Package</a></li> </ul> <ul class="navList"> <li><a href="../../../../index.html?ch/lambdaj/proxy/nodefconstructor/package-summary.html" target="_top">Frames</a></li> <li><a href="package-summary.html" target="_top">No Frames</a></li> </ul> <ul class="navList" id="allclasses_navbar_bottom"> <li><a href="../../../../allclasses-noframe.html">All Classes</a></li> </ul> <div> <script type="text/javascript"><!-- allClassesLink = document.getElementById("allclasses_navbar_bottom"); if(window==top) { allClassesLink.style.display = "block"; } else { allClassesLink.style.display = "none"; } //--> </script> </div> <a name="skip-navbar_bottom"> <!-- --> </a></div> <!-- ======== END OF BOTTOM NAVBAR ======= --> <p class="legalCopy"><small>Copyright &#169; 2012. All Rights Reserved.</small></p> </body> </html>
nsqadmin/templates/topic.html
xiaozhen1900/nsq
{{template "header.html" .}} {{$g := .GraphOptions}} {{$gts := .GlobalTopicStats}} {{$firstTopic := index .TopicStats 0}} <ul class="breadcrumb"> <li><a href="/">Streams</a> <span class="divider">/</span></li> <li class="active">{{.Topic}}</li> </ul> <div class="row-fluid"> <div class="span6"> <blockquote> <p>Topic: <strong>{{.Topic}}</strong> </blockquote> </div> </div> <div class="row-fluid"> <div class="span2"> <form action="/empty_topic" method="POST"> <input type="hidden" name="topic" value="{{.Topic}}"> <button class="btn btn-medium btn-warning" type="submit">Empty Queue</button> </form> </div> <div class="span2"> <form action="/delete_topic" method="POST"> <input type="hidden" name="topic" value="{{.Topic}}"> <button class="btn btn-medium btn-danger" type="submit">Delete Topic</button> </form> </div> </div> <div class="row-fluid"> {{if not .TopicStats}} <div class="span6"> <h4>Topic Message Queue</h4> <div class="alert"> <h4>Notice</h4> No producers exist for this topic. <p>See <a href="/lookup">Lookup</a> for more information. </div> {{else}} <div class="span12"> <h4>Topic Message Queue</h4> <table class="table table-bordered table-condensed"> {{if $firstTopic.E2eProcessingLatency.Percentiles}} <tr> <th colspan="{{if $g.Enabled}}6{{else}}5{{end}}"></th> <th colspan="{{len $firstTopic.E2eProcessingLatency.Percentiles}}">E2E Processing Latency</th> </tr> {{end}} <tr> <th>NSQd Host</th> <th>Depth</th> <th>Memory + Disk</th> <th>Messages</th> {{if $g.Enabled}}<th>Rate</th>{{end}} <th>Channels</th> {{range $e2e := $firstTopic.E2eProcessingLatency.Percentiles}} <th>{{$e2e.quantile | floatToPercent}}<sup>{{$e2e.quantile | percSuffix}}</sup></th> {{end}} </tr> {{range $t := .TopicStats}} <tr> <td> <form class="form-inline" style="margin:0" action="/tombstone_topic_producer" method="POST"> <input type="hidden" name="rd" value="/topic/{{.TopicName}}"> <input type="hidden" name="topic" value="{{.TopicName}}"> <input type="hidden" name="node" value="{{.HostAddress}}"> <button class="btn btn-mini btn-link red" type="submit">✘</button> <a href="/node/{{.HostAddress}}">{{.HostAddress}}</a> </form> </td> <td> {{.Depth | commafy}}</td> <td>{{.MemoryDepth | commafy}} + {{.BackendDepth | commafy}}</td> <td>{{.MessageCount | commafy}}</td> {{if $g.Enabled}}<td class="bold rate" target="{{$g.Rate $t}}"></td> {{end}} <td>{{.ChannelCount}}</td> {{if $t.E2eProcessingLatency.Percentiles}} {{range $e2e := $t.E2eProcessingLatency.Percentiles}} <td> <span title="{{$e2e.quantile | floatToPercent}}: min = {{$e2e.min | nanotohuman}}, max = {{$e2e.max | nanotohuman}}">{{$e2e.average | nanotohuman}}</span> </td> {{end}} {{end}} </tr> {{if $g.Enabled}} <tr class="graph-row"> <td></td> <td><a href="{{$g.LargeGraph $t "depth"}}"><img width="120" src="{{$g.Sparkline $t "depth"}}"></a></td> <td></td> <td><a href="{{$g.LargeGraph $t "message_count"}}"><img width="120" src="{{$g.Sparkline $t "message_count"}}"></a></td> <td></td> <td></td> {{if $t.E2eProcessingLatency.Percentiles}} <td colspan="{{len $t.E2eProcessingLatency.Percentiles}}"> <a href="{{$g.LargeGraph $t.E2eProcessingLatency "e2e_processing_latency"}}"><img width="120" height="20" src="{{$g.Sparkline $t.E2eProcessingLatency "e2e_processing_latency"}}"></a> </td> {{end}} </tr> {{end}} {{end}} <tr class="info"> <td>Total:</td> <td> {{$gts.Depth | commafy}} </td> <td>{{$gts.MemoryDepth | commafy}} + {{$gts.BackendDepth | commafy}}</td> <td> {{$gts.MessageCount | commafy}} </td> {{if $g.Enabled}}<td class="bold rate" target="{{$g.Rate $gts}}"></td> {{end}} <td>{{$gts.ChannelCount}}</td> {{if $gts.E2eProcessingLatency.Percentiles}} {{range $e2e := $gts.E2eProcessingLatency.Percentiles}} <td> <span title="{{$e2e.quantile | floatToPercent}}: min = {{$e2e.min | nanotohuman}}, max = {{$e2e.max | nanotohuman}}">{{$e2e.average | nanotohuman}}</span> </td> {{end}} {{end}} </tr> {{if $g.Enabled}} <tr class="graph-row"> <td></td> <td><a href="{{$g.LargeGraph $gts "depth"}}"><img width="120" src="{{$g.Sparkline $gts "depth"}}"></a></td> <td></td> <td><a href="{{$g.LargeGraph $gts "message_count"}}"><img width="120" src="{{$g.Sparkline $gts "message_count"}}"></a></td> <td></td> <td></td> {{if $gts.E2eProcessingLatency.Percentiles}} <td colspan="{{len $gts.E2eProcessingLatency.Percentiles}}"> <a href="{{$g.LargeGraph $gts.E2eProcessingLatency "e2e_processing_latency"}}"><img width="120" height="20" src="{{$g.Sparkline $gts.E2eProcessingLatency "e2e_processing_latency"}}"></a> </td> {{end}} </tr> {{end}} </table> {{end}} </div></div> <div class="row-fluid"> {{ if not .ChannelStats }} <div class="span6"> <h4>Channel Message Queues</h4> <div class="alert"> <h4>Notice</h4> No channels exist for this topic. <p>Messages will queue at the topic until a channel is created. </div> {{else}} <div class="span12"> <h4>Channel Message Queues</h4> <table class="table table-bordered table-condensed"> {{if $firstTopic.E2eProcessingLatency.Percentiles}} <tr> <th colspan="{{if $g.Enabled}}10{{else}}9{{end}}"></th> <th colspan="{{len $firstTopic.E2eProcessingLatency.Percentiles}}">E2E Processing Latency</th> </tr> {{end}} <tr> <th>Channel</th> <th>Depth</th> <th>Memory + Disk</th> <th>In-Flight</th> <th>Deferred</th> <th>Requeued</th> <th>Timed Out</th> <th>Messages</th> {{if $g.Enabled}}<th>Rate</th>{{end}} <th>Connections</th> {{range $e2e := $firstTopic.E2eProcessingLatency.Percentiles}} <th>{{$e2e.quantile | floatToPercent}}<sup>{{$e2e.quantile | percSuffix}}</sup></th> {{end}} </tr> {{range $c := .ChannelStats}} <tr > <th><a href="/topic/{{$c.TopicName}}/{{$c.ChannelName | urlquery}}">{{$c.ChannelName}}</a> {{if $c.Paused}}<span class="label label-important">paused</span>{{end}} </th> <td> {{$c.Depth | commafy}}</td> <td>{{$c.MemoryDepth | commafy}} + {{$c.BackendDepth | commafy}}</td> <td>{{$c.InFlightCount | commafy}}</td> <td>{{$c.DeferredCount | commafy}}</td> <td>{{$c.RequeueCount | commafy}}</td> <td>{{$c.TimeoutCount | commafy}}</td> <td>{{$c.MessageCount | commafy}}</td> {{if $g.Enabled}}<td class="bold rate" target="{{$g.Rate $c}}"></td> {{end}} <td>{{$c.ClientCount}}</td> {{if $c.E2eProcessingLatency.Percentiles}} {{range $e2e := $c.E2eProcessingLatency.Percentiles}} <td> <span title="{{$e2e.quantile | floatToPercent}}: min = {{$e2e.min | nanotohuman}}, max = {{$e2e.max | nanotohuman}}">{{$e2e.average | nanotohuman}}</span> </td> {{end}} {{end}} </tr> {{if $g.Enabled}} <tr class="graph-row"> <td></td> <td><a href="{{$g.LargeGraph $c "depth"}}"><img width="120" height="20" src="{{$g.Sparkline $c "depth"}}"></a></td> <td></td> <td><a href="{{$g.LargeGraph $c "in_flight_count"}}"><img width="120" height="20" src="{{$g.Sparkline $c "in_flight_count"}}"></a></td> <td><a href="{{$g.LargeGraph $c "deferred_count"}}"><img width="120" height="20" src="{{$g.Sparkline $c "deferred_count"}}"></a></td> <td><a href="{{$g.LargeGraph $c "requeue_count"}}"><img width="120" height="20" src="{{$g.Sparkline $c "requeue_count"}}"></a></td> <td><a href="{{$g.LargeGraph $c "timeout_count"}}"><img width="120" height="20" src="{{$g.Sparkline $c "timeout_count"}}"></a></td> <td><a href="{{$g.LargeGraph $c "message_count"}}"><img width="120" height="20" src="{{$g.Sparkline $c "message_count"}}"></a></td> <td></td> <td><a href="{{$g.LargeGraph $c "clients"}}"><img width="120" height="20" src="{{$g.Sparkline $c "clients"}}"></a></td> {{if $c.E2eProcessingLatency.Percentiles}} <td colspan="{{len $c.E2eProcessingLatency.Percentiles}}"> <a href="{{$g.LargeGraph $c.E2eProcessingLatency "e2e_processing_latency"}}"><img width="120" height="20" src="{{$g.Sparkline $c.E2eProcessingLatency "e2e_processing_latency"}}"></a> </td> {{end}} </tr> {{end}} {{end}} </table> {{end}} </div></div> {{template "js.html" .}} {{template "footer.html" .}}
ajax/libs/oojs-ui/0.19.5/oojs-ui-mediawiki-icons-accessibility.rtl.css
pvnr0082t/cdnjs
/*! * OOjs UI v0.19.5 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2017 OOjs UI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2017-03-07T22:57:06Z */ .oo-ui-icon-bright { background-image: url('themes/mediawiki/images/icons/bright.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/bright.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/bright.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/bright.png'); } .oo-ui-image-invert.oo-ui-icon-bright { background-image: url('themes/mediawiki/images/icons/bright-invert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/bright-invert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/bright-invert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/bright-invert.png'); } .oo-ui-icon-halfBright { background-image: url('themes/mediawiki/images/icons/halfBright.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/halfBright.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/halfBright.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/halfBright.png'); } .oo-ui-image-invert.oo-ui-icon-halfBright { background-image: url('themes/mediawiki/images/icons/halfBright-invert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/halfBright-invert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/halfBright-invert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/halfBright-invert.png'); } .oo-ui-icon-notBright { background-image: url('themes/mediawiki/images/icons/notBright.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/notBright.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/notBright.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/notBright.png'); } .oo-ui-image-invert.oo-ui-icon-notBright { background-image: url('themes/mediawiki/images/icons/notBright-invert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/notBright-invert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/notBright-invert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/notBright-invert.png'); } .oo-ui-icon-moon { background-image: url('themes/mediawiki/images/icons/moon.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/moon.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/moon.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/moon.png'); } .oo-ui-image-invert.oo-ui-icon-moon { background-image: url('themes/mediawiki/images/icons/moon-invert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/moon-invert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/moon-invert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/moon-invert.png'); } .oo-ui-icon-largerText { background-image: url('themes/mediawiki/images/icons/largerText-rtl.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/largerText-rtl.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/largerText-rtl.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/largerText-rtl.png'); } .oo-ui-image-invert.oo-ui-icon-largerText { background-image: url('themes/mediawiki/images/icons/largerText-rtl-invert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/largerText-rtl-invert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/largerText-rtl-invert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/largerText-rtl-invert.png'); } .oo-ui-icon-smallerText { background-image: url('themes/mediawiki/images/icons/smallerText-rtl.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/smallerText-rtl.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/smallerText-rtl.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/smallerText-rtl.png'); } .oo-ui-image-invert.oo-ui-icon-smallerText { background-image: url('themes/mediawiki/images/icons/smallerText-rtl-invert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/smallerText-rtl-invert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/smallerText-rtl-invert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/smallerText-rtl-invert.png'); } .oo-ui-icon-visionSimulator { background-image: url('themes/mediawiki/images/icons/visionSimulator.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/visionSimulator.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/visionSimulator.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/visionSimulator.png'); } .oo-ui-image-invert.oo-ui-icon-visionSimulator { background-image: url('themes/mediawiki/images/icons/visionSimulator-invert.png'); background-image: -webkit-linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/visionSimulator-invert.svg'); background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/mediawiki/images/icons/visionSimulator-invert.svg'); background-image: -o-linear-gradient(transparent, transparent), url('themes/mediawiki/images/icons/visionSimulator-invert.png'); }
lms/templates/instructor/instructor_dashboard_2/cohort_management.html
B-MOOC/edx-platform
<%page args="section_data"/> <%! from django.utils.translation import ugettext as _ from courseware.courses import get_studio_url from microsite_configuration import microsite from openedx.core.djangoapps.course_groups.partition_scheme import get_cohorted_user_partition %> <div class="cohort-management" data-cohorts_url="${section_data['cohorts_url']}" data-upload_cohorts_csv_url="${section_data['upload_cohorts_csv_url']}" data-course_cohort_settings_url="${section_data['course_cohort_settings_url']}" data-discussion-topics-url="${section_data['discussion_topics_url']}" > </div> <%block name="headextra"> <% cohorted_user_partition = get_cohorted_user_partition(course.id) content_groups = cohorted_user_partition.groups if cohorted_user_partition else [] %> <script type="text/javascript"> $(document).ready(function() { var cohortUserPartitionId = ${cohorted_user_partition.id if cohorted_user_partition else 'null'}, contentGroups = [ % for content_group in content_groups: new edx.groups.ContentGroupModel({ id: ${content_group.id}, name: "${content_group.name | h}", user_partition_id: cohortUserPartitionId }), % endfor ]; (function (require) { require(['js/groups/views/cohorts_dashboard_factory'], function (CohortsFactory) { CohortsFactory(contentGroups, '${get_studio_url(course, 'group_configurations') | h}'); }); }).call(this, require || RequireJS.require); }); </script> </%block> <div class="cohort-state-message"></div>
zeppelin-client/src/asserts/DataTables-1.10.10/extensions/Responsive/examples/styling/compact.html
zhanglei13/zeppelin
<!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"> <title>Responsive example - Compact styling</title> <link rel="stylesheet" type="text/css" href="../../../../media/css/jquery.dataTables.css"> <link rel="stylesheet" type="text/css" href="../../css/responsive.dataTables.css"> <link rel="stylesheet" type="text/css" href="../../../../examples/resources/syntax/shCore.css"> <link rel="stylesheet" type="text/css" href="../../../../examples/resources/demo.css"> <style type="text/css" class="init"> div.container { max-width: 1200px } </style> <script type="text/javascript" language="javascript" src="//code.jquery.com/jquery-1.11.3.min.js"> </script> <script type="text/javascript" language="javascript" src="../../../../media/js/jquery.dataTables.js"> </script> <script type="text/javascript" language="javascript" src="../../js/dataTables.responsive.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> <script type="text/javascript" language="javascript" class="init"> $(document).ready(function() { var table = $('#example').DataTable( { responsive: true } ); } ); </script> </head> <body class="dt-example"> <div class="container"> <section> <h1>Responsive example <span>Compact styling</span></h1> <div class="info"> <p>DataTables' <a href="http://datatables.net/manual/styling/classes">default stylesheet</a> has a number number of features available that can be enabled by including a class name on the DataTable. One of those options is <code>compact</code> which displays the DataTable with less whitespace padding that might other be used to increase the information density of the table. Responsive's own style has support for this <code>compact</code> styling as showing in this example.</p> </div> <table id="example" class="display compact nowrap" cellspacing="0" width="100%"> <thead> <tr> <th>First name</th> <th>Last name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> <th>Extn.</th> <th>E-mail</th> </tr> </thead> <tbody> <tr> <td>Tiger</td> <td>Nixon</td> <td>System Architect</td> <td>Edinburgh</td> <td>61</td> <td>2011/04/25</td> <td>$320,800</td> <td>5421</td> <td>t.nixon@datatables.net</td> </tr> <tr> <td>Garrett</td> <td>Winters</td> <td>Accountant</td> <td>Tokyo</td> <td>63</td> <td>2011/07/25</td> <td>$170,750</td> <td>8422</td> <td>g.winters@datatables.net</td> </tr> <tr> <td>Ashton</td> <td>Cox</td> <td>Junior Technical Author</td> <td>San Francisco</td> <td>66</td> <td>2009/01/12</td> <td>$86,000</td> <td>1562</td> <td>a.cox@datatables.net</td> </tr> <tr> <td>Cedric</td> <td>Kelly</td> <td>Senior Javascript Developer</td> <td>Edinburgh</td> <td>22</td> <td>2012/03/29</td> <td>$433,060</td> <td>6224</td> <td>c.kelly@datatables.net</td> </tr> <tr> <td>Airi</td> <td>Satou</td> <td>Accountant</td> <td>Tokyo</td> <td>33</td> <td>2008/11/28</td> <td>$162,700</td> <td>5407</td> <td>a.satou@datatables.net</td> </tr> <tr> <td>Brielle</td> <td>Williamson</td> <td>Integration Specialist</td> <td>New York</td> <td>61</td> <td>2012/12/02</td> <td>$372,000</td> <td>4804</td> <td>b.williamson@datatables.net</td> </tr> <tr> <td>Herrod</td> <td>Chandler</td> <td>Sales Assistant</td> <td>San Francisco</td> <td>59</td> <td>2012/08/06</td> <td>$137,500</td> <td>9608</td> <td>h.chandler@datatables.net</td> </tr> <tr> <td>Rhona</td> <td>Davidson</td> <td>Integration Specialist</td> <td>Tokyo</td> <td>55</td> <td>2010/10/14</td> <td>$327,900</td> <td>6200</td> <td>r.davidson@datatables.net</td> </tr> <tr> <td>Colleen</td> <td>Hurst</td> <td>Javascript Developer</td> <td>San Francisco</td> <td>39</td> <td>2009/09/15</td> <td>$205,500</td> <td>2360</td> <td>c.hurst@datatables.net</td> </tr> <tr> <td>Sonya</td> <td>Frost</td> <td>Software Engineer</td> <td>Edinburgh</td> <td>23</td> <td>2008/12/13</td> <td>$103,600</td> <td>1667</td> <td>s.frost@datatables.net</td> </tr> <tr> <td>Jena</td> <td>Gaines</td> <td>Office Manager</td> <td>London</td> <td>30</td> <td>2008/12/19</td> <td>$90,560</td> <td>3814</td> <td>j.gaines@datatables.net</td> </tr> <tr> <td>Quinn</td> <td>Flynn</td> <td>Support Lead</td> <td>Edinburgh</td> <td>22</td> <td>2013/03/03</td> <td>$342,000</td> <td>9497</td> <td>q.flynn@datatables.net</td> </tr> <tr> <td>Charde</td> <td>Marshall</td> <td>Regional Director</td> <td>San Francisco</td> <td>36</td> <td>2008/10/16</td> <td>$470,600</td> <td>6741</td> <td>c.marshall@datatables.net</td> </tr> <tr> <td>Haley</td> <td>Kennedy</td> <td>Senior Marketing Designer</td> <td>London</td> <td>43</td> <td>2012/12/18</td> <td>$313,500</td> <td>3597</td> <td>h.kennedy@datatables.net</td> </tr> <tr> <td>Tatyana</td> <td>Fitzpatrick</td> <td>Regional Director</td> <td>London</td> <td>19</td> <td>2010/03/17</td> <td>$385,750</td> <td>1965</td> <td>t.fitzpatrick@datatables.net</td> </tr> <tr> <td>Michael</td> <td>Silva</td> <td>Marketing Designer</td> <td>London</td> <td>66</td> <td>2012/11/27</td> <td>$198,500</td> <td>1581</td> <td>m.silva@datatables.net</td> </tr> <tr> <td>Paul</td> <td>Byrd</td> <td>Chief Financial Officer (CFO)</td> <td>New York</td> <td>64</td> <td>2010/06/09</td> <td>$725,000</td> <td>3059</td> <td>p.byrd@datatables.net</td> </tr> <tr> <td>Gloria</td> <td>Little</td> <td>Systems Administrator</td> <td>New York</td> <td>59</td> <td>2009/04/10</td> <td>$237,500</td> <td>1721</td> <td>g.little@datatables.net</td> </tr> <tr> <td>Bradley</td> <td>Greer</td> <td>Software Engineer</td> <td>London</td> <td>41</td> <td>2012/10/13</td> <td>$132,000</td> <td>2558</td> <td>b.greer@datatables.net</td> </tr> <tr> <td>Dai</td> <td>Rios</td> <td>Personnel Lead</td> <td>Edinburgh</td> <td>35</td> <td>2012/09/26</td> <td>$217,500</td> <td>2290</td> <td>d.rios@datatables.net</td> </tr> <tr> <td>Jenette</td> <td>Caldwell</td> <td>Development Lead</td> <td>New York</td> <td>30</td> <td>2011/09/03</td> <td>$345,000</td> <td>1937</td> <td>j.caldwell@datatables.net</td> </tr> <tr> <td>Yuri</td> <td>Berry</td> <td>Chief Marketing Officer (CMO)</td> <td>New York</td> <td>40</td> <td>2009/06/25</td> <td>$675,000</td> <td>6154</td> <td>y.berry@datatables.net</td> </tr> <tr> <td>Caesar</td> <td>Vance</td> <td>Pre-Sales Support</td> <td>New York</td> <td>21</td> <td>2011/12/12</td> <td>$106,450</td> <td>8330</td> <td>c.vance@datatables.net</td> </tr> <tr> <td>Doris</td> <td>Wilder</td> <td>Sales Assistant</td> <td>Sidney</td> <td>23</td> <td>2010/09/20</td> <td>$85,600</td> <td>3023</td> <td>d.wilder@datatables.net</td> </tr> <tr> <td>Angelica</td> <td>Ramos</td> <td>Chief Executive Officer (CEO)</td> <td>London</td> <td>47</td> <td>2009/10/09</td> <td>$1,200,000</td> <td>5797</td> <td>a.ramos@datatables.net</td> </tr> <tr> <td>Gavin</td> <td>Joyce</td> <td>Developer</td> <td>Edinburgh</td> <td>42</td> <td>2010/12/22</td> <td>$92,575</td> <td>8822</td> <td>g.joyce@datatables.net</td> </tr> <tr> <td>Jennifer</td> <td>Chang</td> <td>Regional Director</td> <td>Singapore</td> <td>28</td> <td>2010/11/14</td> <td>$357,650</td> <td>9239</td> <td>j.chang@datatables.net</td> </tr> <tr> <td>Brenden</td> <td>Wagner</td> <td>Software Engineer</td> <td>San Francisco</td> <td>28</td> <td>2011/06/07</td> <td>$206,850</td> <td>1314</td> <td>b.wagner@datatables.net</td> </tr> <tr> <td>Fiona</td> <td>Green</td> <td>Chief Operating Officer (COO)</td> <td>San Francisco</td> <td>48</td> <td>2010/03/11</td> <td>$850,000</td> <td>2947</td> <td>f.green@datatables.net</td> </tr> <tr> <td>Shou</td> <td>Itou</td> <td>Regional Marketing</td> <td>Tokyo</td> <td>20</td> <td>2011/08/14</td> <td>$163,000</td> <td>8899</td> <td>s.itou@datatables.net</td> </tr> <tr> <td>Michelle</td> <td>House</td> <td>Integration Specialist</td> <td>Sidney</td> <td>37</td> <td>2011/06/02</td> <td>$95,400</td> <td>2769</td> <td>m.house@datatables.net</td> </tr> <tr> <td>Suki</td> <td>Burks</td> <td>Developer</td> <td>London</td> <td>53</td> <td>2009/10/22</td> <td>$114,500</td> <td>6832</td> <td>s.burks@datatables.net</td> </tr> <tr> <td>Prescott</td> <td>Bartlett</td> <td>Technical Author</td> <td>London</td> <td>27</td> <td>2011/05/07</td> <td>$145,000</td> <td>3606</td> <td>p.bartlett@datatables.net</td> </tr> <tr> <td>Gavin</td> <td>Cortez</td> <td>Team Leader</td> <td>San Francisco</td> <td>22</td> <td>2008/10/26</td> <td>$235,500</td> <td>2860</td> <td>g.cortez@datatables.net</td> </tr> <tr> <td>Martena</td> <td>Mccray</td> <td>Post-Sales support</td> <td>Edinburgh</td> <td>46</td> <td>2011/03/09</td> <td>$324,050</td> <td>8240</td> <td>m.mccray@datatables.net</td> </tr> <tr> <td>Unity</td> <td>Butler</td> <td>Marketing Designer</td> <td>San Francisco</td> <td>47</td> <td>2009/12/09</td> <td>$85,675</td> <td>5384</td> <td>u.butler@datatables.net</td> </tr> <tr> <td>Howard</td> <td>Hatfield</td> <td>Office Manager</td> <td>San Francisco</td> <td>51</td> <td>2008/12/16</td> <td>$164,500</td> <td>7031</td> <td>h.hatfield@datatables.net</td> </tr> <tr> <td>Hope</td> <td>Fuentes</td> <td>Secretary</td> <td>San Francisco</td> <td>41</td> <td>2010/02/12</td> <td>$109,850</td> <td>6318</td> <td>h.fuentes@datatables.net</td> </tr> <tr> <td>Vivian</td> <td>Harrell</td> <td>Financial Controller</td> <td>San Francisco</td> <td>62</td> <td>2009/02/14</td> <td>$452,500</td> <td>9422</td> <td>v.harrell@datatables.net</td> </tr> <tr> <td>Timothy</td> <td>Mooney</td> <td>Office Manager</td> <td>London</td> <td>37</td> <td>2008/12/11</td> <td>$136,200</td> <td>7580</td> <td>t.mooney@datatables.net</td> </tr> <tr> <td>Jackson</td> <td>Bradshaw</td> <td>Director</td> <td>New York</td> <td>65</td> <td>2008/09/26</td> <td>$645,750</td> <td>1042</td> <td>j.bradshaw@datatables.net</td> </tr> <tr> <td>Olivia</td> <td>Liang</td> <td>Support Engineer</td> <td>Singapore</td> <td>64</td> <td>2011/02/03</td> <td>$234,500</td> <td>2120</td> <td>o.liang@datatables.net</td> </tr> <tr> <td>Bruno</td> <td>Nash</td> <td>Software Engineer</td> <td>London</td> <td>38</td> <td>2011/05/03</td> <td>$163,500</td> <td>6222</td> <td>b.nash@datatables.net</td> </tr> <tr> <td>Sakura</td> <td>Yamamoto</td> <td>Support Engineer</td> <td>Tokyo</td> <td>37</td> <td>2009/08/19</td> <td>$139,575</td> <td>9383</td> <td>s.yamamoto@datatables.net</td> </tr> <tr> <td>Thor</td> <td>Walton</td> <td>Developer</td> <td>New York</td> <td>61</td> <td>2013/08/11</td> <td>$98,540</td> <td>8327</td> <td>t.walton@datatables.net</td> </tr> <tr> <td>Finn</td> <td>Camacho</td> <td>Support Engineer</td> <td>San Francisco</td> <td>47</td> <td>2009/07/07</td> <td>$87,500</td> <td>2927</td> <td>f.camacho@datatables.net</td> </tr> <tr> <td>Serge</td> <td>Baldwin</td> <td>Data Coordinator</td> <td>Singapore</td> <td>64</td> <td>2012/04/09</td> <td>$138,575</td> <td>8352</td> <td>s.baldwin@datatables.net</td> </tr> <tr> <td>Zenaida</td> <td>Frank</td> <td>Software Engineer</td> <td>New York</td> <td>63</td> <td>2010/01/04</td> <td>$125,250</td> <td>7439</td> <td>z.frank@datatables.net</td> </tr> <tr> <td>Zorita</td> <td>Serrano</td> <td>Software Engineer</td> <td>San Francisco</td> <td>56</td> <td>2012/06/01</td> <td>$115,000</td> <td>4389</td> <td>z.serrano@datatables.net</td> </tr> <tr> <td>Jennifer</td> <td>Acosta</td> <td>Junior Javascript Developer</td> <td>Edinburgh</td> <td>43</td> <td>2013/02/01</td> <td>$75,650</td> <td>3431</td> <td>j.acosta@datatables.net</td> </tr> <tr> <td>Cara</td> <td>Stevens</td> <td>Sales Assistant</td> <td>New York</td> <td>46</td> <td>2011/12/06</td> <td>$145,600</td> <td>3990</td> <td>c.stevens@datatables.net</td> </tr> <tr> <td>Hermione</td> <td>Butler</td> <td>Regional Director</td> <td>London</td> <td>47</td> <td>2011/03/21</td> <td>$356,250</td> <td>1016</td> <td>h.butler@datatables.net</td> </tr> <tr> <td>Lael</td> <td>Greer</td> <td>Systems Administrator</td> <td>London</td> <td>21</td> <td>2009/02/27</td> <td>$103,500</td> <td>6733</td> <td>l.greer@datatables.net</td> </tr> <tr> <td>Jonas</td> <td>Alexander</td> <td>Developer</td> <td>San Francisco</td> <td>30</td> <td>2010/07/14</td> <td>$86,500</td> <td>8196</td> <td>j.alexander@datatables.net</td> </tr> <tr> <td>Shad</td> <td>Decker</td> <td>Regional Director</td> <td>Edinburgh</td> <td>51</td> <td>2008/11/13</td> <td>$183,000</td> <td>6373</td> <td>s.decker@datatables.net</td> </tr> <tr> <td>Michael</td> <td>Bruce</td> <td>Javascript Developer</td> <td>Singapore</td> <td>29</td> <td>2011/06/27</td> <td>$183,000</td> <td>5384</td> <td>m.bruce@datatables.net</td> </tr> <tr> <td>Donna</td> <td>Snider</td> <td>Customer Support</td> <td>New York</td> <td>27</td> <td>2011/01/25</td> <td>$112,000</td> <td>4226</td> <td>d.snider@datatables.net</td> </tr> </tbody> </table> <ul class="tabs"> <li class="active">Javascript</li> <li>HTML</li> <li>CSS</li> <li>Ajax</li> <li>Server-side script</li> </ul> <div class="tabs"> <div class="js"> <p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() { var table = $('#example').DataTable( { responsive: true } ); } );</code> <p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p> <ul> <li> <a href="//code.jquery.com/jquery-1.11.3.min.js">//code.jquery.com/jquery-1.11.3.min.js</a> </li> <li> <a href="../../../../media/js/jquery.dataTables.js">../../../../media/js/jquery.dataTables.js</a> </li> <li> <a href="../../js/dataTables.responsive.js">../../js/dataTables.responsive.js</a> </li> </ul> </div> <div class="table"> <p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p> </div> <div class="css"> <div> <p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown below:</p><code class="multiline language-css">div.container { max-width: 1200px }</code> </div> <p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p> <ul> <li> <a href="../../../../media/css/jquery.dataTables.css">../../../../media/css/jquery.dataTables.css</a> </li> <li> <a href="../../css/responsive.dataTables.css">../../css/responsive.dataTables.css</a> </li> </ul> </div> <div class="ajax"> <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is loaded.</p> </div> <div class="php"> <p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables documentation</a>.</p> </div> </div> </section> </div> <section> <div class="footer"> <div class="gradient"></div> <div class="liner"> <h2>Other examples</h2> <div class="toc"> <div class="toc-group"> <h3><a href="../initialisation/index.html">Basic initialisation</a></h3> <ul class="toc"> <li> <a href="../initialisation/className.html">Class name</a> </li> <li> <a href="../initialisation/option.html">Configuration option</a> </li> <li> <a href="../initialisation/new.html">`new` constructor</a> </li> <li> <a href="../initialisation/ajax.html">Ajax data</a> </li> <li> <a href="../initialisation/default.html">Default initialisation</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../display-types/index.html">Display-types</a></h3> <ul class="toc"> <li> <a href="../display-types/immediateShow.html">Immediately show hidden details</a> </li> <li> <a href="../display-types/modal.html">Modal details display</a> </li> <li> <a href="../display-types/bootstrap-modal.html">Bootstrap modal</a> </li> <li> <a href="../display-types/foundation-modal.html">Foundation modal</a> </li> <li> <a href="../display-types/jqueryui-modal.html">jQuery UI modal</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../column-control/index.html">Column-control</a></h3> <ul class="toc"> <li> <a href="../column-control/auto.html">Automatic column hiding</a> </li> <li> <a href="../column-control/columnPriority.html">Column priority</a> </li> <li> <a href="../column-control/classes.html">Class control</a> </li> <li> <a href="../column-control/init-classes.html">Assigned class control</a> </li> <li> <a href="../column-control/column-visibility.html">With Buttons - Column visibility</a> </li> <li> <a href="../column-control/fixedHeader.html">With FixedHeader</a> </li> <li> <a href="../column-control/colreorder.html">With ColReorder</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="../child-rows/index.html">Child rows</a></h3> <ul class="toc"> <li> <a href="../child-rows/disable-child-rows.html">Disable child rows</a> </li> <li> <a href="../child-rows/column-control.html">Column controlled child rows</a> </li> <li> <a href="../child-rows/right-column.html">Column control - right</a> </li> <li> <a href="../child-rows/whole-row-control.html">Whole row child row control</a> </li> <li> <a href="../child-rows/custom-renderer.html">Custom child row renderer</a> </li> </ul> </div> <div class="toc-group"> <h3><a href="./index.html">Styling</a></h3> <ul class="toc active"> <li> <a href="./bootstrap.html">Bootstrap styling</a> </li> <li> <a href="./foundation.html">Foundation styling</a> </li> <li> <a href="./jqueryui.html">jQuery UI styling</a> </li> <li class="active"> <a href="./compact.html">Compact styling</a> </li> <li> <a href="./scrolling.html">Vertical scrolling</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-2015<br> DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> </div> </div> </div> </section> </body> </html>
third_party/blink/web_tests/external/wpt/html/canvas/element/line-styles/2d.line.width.scaledefault.html
scheib/chromium
<!DOCTYPE html> <!-- DO NOT EDIT! This test has been generated by /html/canvas/tools/gentest.py. --> <title>Canvas test: 2d.line.width.scaledefault</title> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/html/canvas/resources/canvas-tests.js"></script> <link rel="stylesheet" href="/html/canvas/resources/canvas-tests.css"> <body class="show_output"> <h1>2d.line.width.scaledefault</h1> <p class="desc">Default lineWidth strokes are affected by scale transformations</p> <p class="output">Actual output:</p> <canvas id="c" class="output" width="100" height="50"><p class="fallback">FAIL (fallback content)</p></canvas> <p class="output expectedtext">Expected output:<p><img src="/images/green-100x50.png" class="output expected" id="expected" alt=""> <ul id="d"></ul> <script> var t = async_test("Default lineWidth strokes are affected by scale transformations"); _addTest(function(canvas, ctx) { ctx.fillStyle = '#f00'; ctx.fillRect(0, 0, 100, 50); ctx.scale(50, 50); ctx.strokeStyle = '#0f0'; ctx.moveTo(0, 0.5); ctx.lineTo(2, 0.5); ctx.stroke(); _assertPixel(canvas, 25,25, 0,255,0,255, "25,25", "0,255,0,255"); _assertPixel(canvas, 50,25, 0,255,0,255, "50,25", "0,255,0,255"); _assertPixel(canvas, 75,25, 0,255,0,255, "75,25", "0,255,0,255"); _assertPixel(canvas, 50,5, 0,255,0,255, "50,5", "0,255,0,255"); _assertPixel(canvas, 50,45, 0,255,0,255, "50,45", "0,255,0,255"); }); </script>
web/css/imports/header.css
jerome85/WatertecProject
/*----------------------------------------------------------------------------------- header.css -----------------------------------------------------------------------------------*/ /* ---------------------------------------------------------------- Header -----------------------------------------------------------------*/ #header { position: relative; background-color: #FFF; border-bottom: 1px solid #F5F5F5; } #header .container { position: relative; } #header.transparent-header { background: transparent; border-bottom: none; z-index: 199; } #header.semi-transparent { background-color: rgba(255,255,255,0.8); } #header.transparent-header.floating-header { margin-top: 60px; } #header.transparent-header.floating-header .container { width: 1220px; background-color: #FFF; padding: 0 40px; border-radius: 2px; } #header.transparent-header.floating-header.sticky-header .container { width: 1170px; padding: 0 15px; } #header.transparent-header + #slider, #header.transparent-header + #page-title.page-title-parallax, #header.transparent-header + #google-map, #slider + #header.transparent-header { top: -100px; margin-bottom: -100px; } #header.transparent-header.floating-header + #slider, #header.transparent-header.floating-header + #google-map { top: -160px; margin-bottom: -160px; } #header.transparent-header + #page-title.page-title-parallax .container { z-index: 5; padding-top: 100px; } #header.full-header { border-bottom-color: #EEE; } body.stretched #header.full-header .container { width: 100%; padding: 0 30px; } #header.transparent-header.full-header #header-wrap { border-bottom: 1px solid rgba(0,0,0,0.1); } #slider + #header.transparent-header.full-header #header-wrap { border-top: 1px solid rgba(0,0,0,0.1); border-bottom: none; } /* ---------------------------------------------------------------- Logo -----------------------------------------------------------------*/ #logo { position: relative; float: left; font-family: 'Raleway', sans-serif; font-size: 36px; line-height: 100%; margin-right: 40px; } #header.full-header #logo { padding-right: 30px; margin-right: 30px; border-right: 1px solid #EEE; } #header.transparent-header.full-header #logo { border-right-color: rgba(0,0,0,0.1); } #logo a { display: block; color: #000; } #logo img { display: block; max-width: 100%; } #logo a.standard-logo { display: block; } #logo a.retina-logo { display: none; } /* ---------------------------------------------------------------- Header Right Area -----------------------------------------------------------------*/ .header-extras { float: right; margin: 30px 0 0; } .header-extras li { float: left; margin-left: 20px; height: 40px; overflow: hidden; list-style: none; } .header-extras li i { margin-top: 3px !important; } .header-extras li:first-child { margin-left: 0; } .header-extras li .he-text { float: left; padding-left: 10px; font-weight: bold; font-size: 14px; line-height: 1.43; } .header-extras li .he-text span { display: block; font-weight: 400; color: #1ABC9C; } /* ---------------------------------------------------------------- Primary Menu -----------------------------------------------------------------*/ #primary-menu { float: right; } #primary-menu ul.mobile-primary-menu { display: none; } #header.full-header #primary-menu > ul { float: left; padding-right: 15px; margin-right: 15px; border-right: 1px solid #EEE; } #header.transparent-header.full-header #primary-menu > ul { border-right-color: rgba(0,0,0,0.1); } #primary-menu-trigger, #page-submenu-trigger { opacity: 0; pointer-events: none; cursor: pointer; font-size: 14px; position: absolute; top: 50%; margin-top: -25px; width: 50px; height: 50px; line-height: 50px; text-align: center; -webkit-transition: opacity .3s ease; -o-transition: opacity .3s ease; transition: opacity .3s ease; } #primary-menu ul { list-style: none; margin: 0; } #primary-menu > ul { float: left; } #primary-menu ul li { position: relative; } #primary-menu ul li.mega-menu { position: inherit; } #primary-menu ul > li { float: left; margin-left: 2px; } #primary-menu > ul > li:first-child { margin-left: 0; } #primary-menu ul li > a { display: block; line-height: 22px; padding: 39px 15px; color: #444; font-weight: bold; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; font-family: 'Raleway', sans-serif; -webkit-transition: margin .4s ease, padding .4s ease; -o-transition: margin .4s ease, padding .4s ease; transition: margin .4s ease, padding .4s ease; } #primary-menu ul li > a span { display: none; } #primary-menu ul li > a i { position: relative; top: -1px; font-size: 14px; width: 16px; text-align: center; margin-right: 6px; vertical-align: top; } #primary-menu ul li > a i.icon-angle-down:last-child { font-size: 12px; margin: 0 0 0 5px; } #primary-menu ul li:hover > a, #primary-menu ul li.current > a { color: #1ABC9C; } #primary-menu > ul > li.sub-menu > a > div { } body.no-superfish #primary-menu li:hover > ul:not(.mega-menu-column), body.no-superfish #primary-menu li:hover > .mega-menu-content { display: block; } #primary-menu ul ul:not(.mega-menu-column), #primary-menu ul li .mega-menu-content { display: none; position: absolute; width: 220px; background-color: #FFF; box-shadow: 0px 13px 42px 11px rgba(0, 0, 0, 0.05); border: 1px solid #EEE; border-top: 2px solid #1ABC9C; height: auto; z-index: 199; top: 100%; left: 0; margin: 0; } #primary-menu ul ul:not(.mega-menu-column) ul { top: -2px !important; left: 218px; } #primary-menu ul ul.menu-pos-invert:not(.mega-menu-column), #primary-menu ul li .mega-menu-content.menu-pos-invert { left: auto; right: 0; } #primary-menu ul ul:not(.mega-menu-column) ul.menu-pos-invert { right: 218px; } #primary-menu ul ul li { float: none; margin: 0; } #primary-menu ul ul li:first-child { border-top: 0; } #primary-menu ul ul li > a { font-size: 12px; font-weight: 600; color: #666; padding-top: 10px; padding-bottom: 10px; border: 0; letter-spacing: 0; font-family: 'Lato', sans-serif; -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } #primary-menu ul ul li > a i { vertical-align: middle; } #primary-menu ul ul li:hover > a { background-color: #F9F9F9; padding-left: 18px; color: #1ABC9C; } #primary-menu ul ul > li.sub-menu > a, #primary-menu ul ul > li.sub-menu:hover > a { background-image: url("images/icons/submenu.png"); background-position: right center; background-repeat: no-repeat; } /* ---------------------------------------------------------------- Mega Menu -----------------------------------------------------------------*/ #primary-menu ul li .mega-menu-content, #primary-menu ul li.mega-menu-small .mega-menu-content { width: 720px; max-width: 400px; } #primary-menu ul li.mega-menu .mega-menu-content, .floating-header.sticky-header #primary-menu ul li.mega-menu .mega-menu-content { margin: 0 15px; width: 1140px; max-width: none; } .floating-header #primary-menu ul li.mega-menu .mega-menu-content { margin: 0; width: 1220px; } body.stretched .container-fullwidth #primary-menu ul li.mega-menu .mega-menu-content { margin: 0 60px; } body.stretched #header.full-header #primary-menu ul li.mega-menu .mega-menu-content { margin: 0 30px; } #primary-menu ul li.mega-menu .mega-menu-content.style-2 { padding: 0 10px; } #primary-menu ul li .mega-menu-content ul { display: block; position: relative; top: 0; min-width: inherit; border: 0; box-shadow: none; background-color: transparent; } #primary-menu ul li .mega-menu-content ul:not(.megamenu-dropdown) { display: block !important; opacity: 1 !important; top: 0; left: 0; } #primary-menu ul li .mega-menu-content ul.mega-menu-column { float: left; margin: 0; } #primary-menu ul li .mega-menu-content ul.mega-menu-column.col-5 { width: 20%; } #primary-menu ul li .mega-menu-content ul:not(.mega-menu-column) { width: 100%; } #primary-menu ul li .mega-menu-content ul.mega-menu-column:not(:first-child) { border-left: 1px solid #F2F2F2; } #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column { padding: 30px 20px; } #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title { margin-top: 20px; } #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title:first-child { margin-top: 0; } #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title > a { font-size: 13px; font-weight: bold; font-family: 'Raleway', sans-serif; letter-spacing: 1px; text-transform: uppercase !important; margin-bottom: 15px; color: #444; padding: 0 !important; line-height: 1.3 !important; } #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title:hover > a { background-color: transparent; } #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title > a:hover { color: #1ABC9C; } #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title.sub-menu > a, #primary-menu ul li .mega-menu-content.style-2 ul.mega-menu-column > li.mega-menu-title.sub-menu:hover > a { background: none; } #primary-menu ul li .mega-menu-content.style-2 li { border: 0; } #primary-menu ul li .mega-menu-content.style-2 ul li > a { padding-left: 5px; padding-top: 7px; padding-bottom: 7px; } #primary-menu ul li .mega-menu-content.style-2 ul li > a:hover { padding-left: 12px; } .mega-menu-column .entry-meta { margin: 8px -10px 0 0 !important; border: none !important; padding: 0 !important; } .mega-menu-column .entry-meta li { float: left !important; border: none !important; margin: 0 10px 0 0 !important; } /* Primary Menu - Style 2 -----------------------------------------------------------------*/ #primary-menu.style-2 { float: none; max-width: none; border-top: 1px solid #F5F5F5; } #primary-menu.style-2 > div > ul { float: left; } #primary-menu.style-2 > div > ul > li > a { padding-top: 19px; padding-bottom: 19px; } #logo + #primary-menu.style-2 { border-top: 0; } #primary-menu.style-2 > div #top-search, #primary-menu.style-2 > div #top-cart, #primary-menu.style-2 > div #side-panel-trigger { margin-top: 20px; margin-bottom: 20px; } body:not(.device-sm):not(.device-xs):not(.device-xxs) #primary-menu.style-2.center > ul, body:not(.device-sm):not(.device-xs):not(.device-xxs) #primary-menu.style-2.center > div { float: none; display: inline-block !important; width: auto; text-align: left; } /* Primary Menu - Style 3 -----------------------------------------------------------------*/ #primary-menu.style-3 > ul > li > a { margin: 28px 0; padding-top: 11px; padding-bottom: 11px; border-radius: 2px; } #primary-menu.style-3 > ul > li:hover > a { color: #444; background-color: #F5F5F5; } #primary-menu.style-3 > ul > li.current > a { color: #FFF; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); background-color: #1ABC9C; } /* Primary Menu - Style 4 -----------------------------------------------------------------*/ #primary-menu.style-4 > ul > li > a { margin: 28px 0; padding-top: 10px; padding-bottom: 10px; border-radius: 2px; border: 1px solid transparent; } #primary-menu.style-4 > ul > li:hover > a, #primary-menu.style-4 > ul > li.current > a { border-color: #1ABC9C; } /* Primary Menu - Style 5 -----------------------------------------------------------------*/ #primary-menu.style-5 > ul { padding-right: 10px; margin-right: 5px; border-right: 1px solid #EEE; } #primary-menu.style-5 > ul > li:not(:first-child) { margin-left: 15px; } #primary-menu.style-5 > ul > li > a { padding-top: 25px; padding-bottom: 25px; line-height: 14px; } #primary-menu.style-5 > ul > li > a i { display: block; width: auto; margin: 0 0 8px; font-size: 28px; line-height: 1; } /* Primary Menu - Style 6 -----------------------------------------------------------------*/ #primary-menu.style-6 > ul > li > a { position: relative; } #primary-menu.style-6 > ul > li > a:after, #primary-menu.style-6 > ul > li.current > a:after, #primary-menu.style-6 > div > ul > li > a:after, #primary-menu.style-6 > div > ul > li.current > a:after { content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 0; border-top: 2px solid #1ABC9C; -webkit-transition: width .3s ease; -o-transition: width .3s ease; transition: width .3s ease; } #primary-menu.style-6 > ul > li.current > a:after, #primary-menu.style-6 > ul > li:hover > a:after, #primary-menu.style-6 > div > ul > li.current > a:after, #primary-menu.style-6 > div > ul > li:hover > a:after { width: 100%; } /* Primary Menu - Sub Title -----------------------------------------------------------------*/ #primary-menu.sub-title > ul > li, #primary-menu.sub-title.style-2 > div > ul > li { background: url("images/icons/menu-divider.png") no-repeat right center; margin-left: 1px; } #primary-menu.sub-title ul li:first-child { padding-left: 0; margin-left: 0; } #primary-menu.sub-title > ul > li > a, #primary-menu.sub-title > div > ul > li > a { line-height: 14px; padding: 27px 20px 32px; text-transform: uppercase; border-top: 5px solid transparent; } #primary-menu.sub-title > ul > li > a span, #primary-menu.sub-title > div > ul > li > a span { display: block; margin-top: 10px; line-height: 12px; font-size: 11px; font-weight: 400; color: #888; text-transform: capitalize; } #primary-menu.sub-title > ul > li:hover > a, #primary-menu.sub-title > ul > li.current > a, #primary-menu.sub-title > div > ul > li:hover > a, #primary-menu.sub-title > div > ul > li.current > a { background-color: #1ABC9C; color: #FFF; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); border-top-color: rgba(0,0,0,0.1); } #primary-menu.sub-title > ul > li:hover > a span, #primary-menu.sub-title > ul > li.current > a span, #primary-menu.sub-title.style-2 > div > ul > li:hover > a span, #primary-menu.sub-title.style-2 > div > ul > li.current > a span { color: #EEE; } #primary-menu.sub-title.style-2 ul ul span { display: none; } /* Primary Menu - Style 2 with Sub Title -----------------------------------------------------------------*/ #primary-menu.sub-title.style-2 > div > ul > li { background-position: left center; } #primary-menu.sub-title.style-2 > div #top-search, #primary-menu.sub-title.style-2 > div #top-cart, #primary-menu.sub-title.style-2 > div #side-panel-trigger { float: right; margin-top: 30px; margin-bottom: 30px; } #primary-menu.sub-title.style-2 div ul li:first-child, #primary-menu.sub-title.style-2 > div > ul > li:hover + li, #primary-menu.sub-title.style-2 > div > ul > li.current + li { background-image: none; } #primary-menu.sub-title.style-2 > div > ul > li > a { padding-top: 17px; padding-bottom: 22px; } /* Primary Menu - Split Menu -----------------------------------------------------------------*/ @media (min-width: 992px) { #header.split-menu #logo { position: absolute; width: 100%; text-align: center; margin: 0; float: none; height: 100px; } #header.split-menu #logo a.standard-logo { display: inline-block; } } #header.split-menu #primary-menu { float: none; margin: 0; } #header.split-menu #primary-menu > ul { z-index: 199; } #header.split-menu #primary-menu > ul:first-child { float: left; } #header.split-menu #primary-menu > ul:last-child { float: right; } /* Primary Menu - Overlay Menu -----------------------------------------------------------------*/ @media (min-width: 992px) { .overlay-menu:not(.top-search-open) #primary-menu-trigger { opacity: 1; pointer-events: auto; left: auto; right: 75px; width: 20px; height: 20px; line-height: 20px; margin-top: -10px; } .overlay-menu:not(.top-search-open) .full-header #primary-menu-trigger { right: 90px; } .overlay-menu #primary-menu > #overlay-menu-close { opacity: 0; pointer-events: none; position: fixed; top: 25px; left: auto; right: 25px; width: 48px; height: 48px; line-height: 48px; font-size: 24px; text-align: center; color: #444; z-index: 300; -webkit-transform: translateY(-80px); -ms-transform: translateY(-80px); -o-transform: translateY(-80px); transform: translateY(-80px); -webkit-transition: opacity .4s ease, transform .45s .15s ease; -o-transition: opacity .4s ease, transform .45s .15s ease; transition: opacity .4s ease, transform .45s .15s ease; } .overlay-menu #primary-menu > ul { opacity: 0 !important; pointer-events: none; position: fixed; left: 0; top: 0; width: 100%; height: 100% !important; z-index: 299; background: rgba(255,255,255,0.95); -webkit-transition: opacity .7s ease; -o-transition: opacity .7s ease; transition: opacity .7s ease; } .overlay-menu #primary-menu > ul.show { opacity: 1 !important; display: inherit !important; pointer-events: auto; } .overlay-menu #primary-menu > ul.show ~ #overlay-menu-close { opacity: 1; -webkit-transition: opacity .7s .4s ease, transform .45s .15s ease; -o-transition: opacity .7s .4s ease, transform .45s .15s ease; transition: opacity .7s .4s ease, transform .45s .15s ease; -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); pointer-events: auto; } .overlay-menu #primary-menu > ul > li { float: none; text-align: center; max-width: 400px; margin: 0 auto; } .overlay-menu #primary-menu > ul > li > a { font-size: 24px; padding-top: 19px; padding-bottom: 19px; letter-spacing: 2px; text-transform: none; opacity: 0; -webkit-transform: translateY(-80px); -ms-transform: translateY(-80px); -o-transform: translateY(-80px); transform: translateY(-80px); -webkit-transition: opacity .7s .15s ease, transform .45s .15s ease, color .2s linear; -o-transition: opacity .7s .15s ease, transform .45s .15s ease, color .2s linear; transition: opacity .7s .15s ease, transform .45s .15s ease, color .2s linear; } .overlay-menu #primary-menu > ul.show > li > a { opacity: 1; -webkit-transform: translateY(0); -ms-transform: translateY(0); -o-transform: translateY(0); transform: translateY(0); } } /* ---------------------------------------------------------------- Top Search -----------------------------------------------------------------*/ #top-search, #top-cart, #side-panel-trigger, #top-account { float: right; margin: 40px 0 40px 15px; } #top-cart { position: relative; } #top-search a, #top-cart a, #side-panel-trigger a, #top-account a { display: block; position: relative; width: 14px; height: 14px; font-size: 14px; line-height: 20px; text-align: center; color: #333; -webkit-transition: color .3s ease-in-out; -o-transition: color .3s ease-in-out; transition: color .3s ease-in-out; } #top-search a { z-index: 11; } #top-search a i { position: absolute; top: 0; left: 0; -webkit-transition: opacity .3s ease; -o-transition: opacity .3s ease; transition: opacity .3s ease; } body.top-search-open #top-search a i.icon-search3, #top-search a i.icon-line-cross { opacity: 0; } body.top-search-open #top-search a i.icon-line-cross { opacity: 1; z-index: 11; font-size: 16px; } #top-cart a:hover { color: #1ABC9C; } #top-search form { opacity: 0; z-index: -2; position: absolute; width: 100% !important; height: 100% !important; padding: 0 15px; margin: 0; top: 0; left: 0; -webkit-transition: opacity .3s ease-in-out; -o-transition: opacity .3s ease-in-out; transition: opacity .3s ease-in-out; } body.top-search-open #top-search form { opacity: 1; z-index: 10; } #top-search form input { box-shadow: none !important; pointer-events: none; border-radius: 0; border: 0; outline: 0 !important; font-size: 32px; padding: 10px 80px 10px 0; height: 100%; background-color: transparent; color: #333; font-weight: 700; margin-top: 0 !important; font-family: 'Raleway', sans-serif; letter-spacing: 2px; } body:not(.device-sm):not(.device-xs):not(.device-xxs) #header.full-header #top-search form input { padding-left: 40px; } body:not(.device-sm):not(.device-xs):not(.device-xxs) .container-fullwidth #top-search form input { padding-left: 60px; } body.top-search-open #top-search form input { pointer-events: auto; } body:not(.device-sm):not(.device-xs):not(.device-xxs) #header.transparent-header:not(.sticky-header):not(.full-header):not(.floating-header) #top-search form input { border-bottom: 2px solid rgba(0,0,0,0.1); } #top-search form input::-moz-placeholder { color: #555; opacity: 1; text-transform: uppercase; } #top-search form input:-ms-input-placeholder { color: #555; text-transform: uppercase; } #top-search form input::-webkit-input-placeholder { color: #555; text-transform: uppercase; } #primary-menu .container #top-search form input, .sticky-header #top-search form input { border: none !important; } /* ---------------------------------------------------------------- Top Cart -----------------------------------------------------------------*/ #top-cart { margin-right: 0; } #top-cart > a > span { display: block; position: absolute; top: -7px; left: auto; right: -14px; font-size: 10px; color: #FFF; text-shadow: 1px 1px 1px rgba(0,0,0,0.2); width: 16px; height: 16px; line-height: 16px; text-align: center; background-color: #1ABC9C; border-radius: 50%; } #top-cart .top-cart-content { opacity: 0; z-index: -2; position: absolute; width: 280px; background-color: #FFF; box-shadow: 0px 20px 50px 10px rgba(0, 0, 0, 0.05); border: 1px solid #EEE; border-top: 2px solid #1ABC9C; top: 60px; right: -15px; left: auto; margin: -10000px 0 0; -webkit-transition: opacity .5s ease, top .4s ease; -o-transition: opacity .5s ease, top .4s ease; transition: opacity .5s ease, top .4s ease; } .style-2 .container #top-cart .top-cart-content { top: 40px; } .style-2.sub-title .container #top-cart .top-cart-content { top: 50px; } #top-cart.top-cart-open .top-cart-content { opacity: 1; z-index: 11; margin-top: 0; } .top-cart-title { padding: 12px 15px; border-bottom: 1px solid #EEE; } .top-cart-title h4 { margin-bottom: 0; font-size: 15px; font-weight: bold; text-transform: uppercase; letter-spacing: 1px; } .top-cart-items { padding: 15px; } .top-cart-item { padding-top: 15px; margin-top: 15px; border-top: 1px solid #F5F5F5; } .top-cart-item:first-child { padding-top: 0; margin-top: 0; border-top: 0; } .top-cart-item-image { float: left; margin-right: 15px; width: 48px !important; height: 48px !important; border: 2px solid #EEE; -webkit-transition: border-color .2s linear; -o-transition: border-color .2s linear; transition: border-color .2s linear; } .top-cart-item-image a, .top-cart-item-image img { display: block; width: 44px !important; height: 44px !important; } .top-cart-item-image:hover { border-color: #1ABC9C; } .top-cart-item-desc { position: relative; overflow: hidden; } .top-cart-item-desc a { text-align: left !important; font-size: 13px !important; width: auto !important; height: auto !important; font-weight: 600; } .top-cart-item-desc a:hover { color: #1ABC9C !important; } .top-cart-item-desc span.top-cart-item-price { display: block; line-height: 20px; font-size: 12px !important; color: #999; } .top-cart-item-desc span.top-cart-item-quantity { display: block; position: absolute; font-size: 12px !important; right: 0; top: 2px; color: #444; } .top-cart-action { padding: 15px; border-top: 1px solid #EEE; } .top-cart-action span.top-checkout-price { font-size: 20px; color: #1ABC9C; } /* ---------------------------------------------------------------- Top Account -----------------------------------------------------------------*/ #top-account { margin: 32px 0 33px 20px; } #top-account a { width: auto; height: auto; } #top-account a span { margin-left: 5px; font-weight: 600; } #top-account a i.icon-angle-down { margin-left: 5px; font-size: 12px; } #top-account .dropdown-menu { padding: 10px 0; } #top-account .dropdown-menu li a { font-family: 'Lato', sans-serif; font-weight: 400; text-align: left; line-height: 22px; } #top-account .dropdown-menu li a .badge { display: block; float: right; margin: 2px 0 0 0; } #top-account .dropdown-menu li a i:last-child { position: relative; top: 1px; margin-left: 5px; } /* ---------------------------------------------------------------- Sticky Header -----------------------------------------------------------------*/ #header, #header-wrap, #logo img { height: 100px; -webkit-transition: height .4s ease, opacity .3s ease; -o-transition: height .4s ease, opacity .3s ease; transition: height .4s ease, opacity .3s ease; } #header.sticky-style-2 { height: 161px; } #header.sticky-style-3 { height: 181px; } #header.sticky-style-2 #header-wrap { height: 60px; } #header.sticky-style-3 #header-wrap { height: 80px; } #primary-menu > ul > li > ul, #primary-menu > ul > li > .mega-menu-content, #primary-menu > ul > li.mega-menu > .mega-menu-content { -webkit-transition: top .4s ease; -o-transition: top .4s ease; transition: top .4s ease; } #top-search, #top-cart { -webkit-transition: margin .4s ease, opacity .3s ease; -o-transition: margin .4s ease, opacity .3s ease; transition: margin .4s ease, opacity .3s ease; } body:not(.top-search-open) #header-wrap #logo, body:not(.top-search-open) #primary-menu > ul, body:not(.top-search-open) #primary-menu > .container > ul, body:not(.top-search-open) #top-cart, body:not(.top-search-open) #side-panel-trigger, body:not(.top-search-open) #top-account { opacity: 1; -webkit-transition: height .4s ease, margin .4s ease, opacity .2s .2s ease; -o-transition: height .4s ease, margin .4s ease, opacity .2s .2s ease; transition: height .4s ease, margin .4s ease, opacity .2s .2s ease; } body.top-search-open #header-wrap #logo, body.top-search-open #primary-menu > ul, body.top-search-open #primary-menu > .container > ul, body.top-search-open #top-cart, body.top-search-open #side-panel-trigger, body.top-search-open #top-account { opacity: 0; } #header.sticky-header.semi-transparent { background-color: transparent; } #header-wrap { position: relative; z-index: 199; -webkit-backface-visibility: hidden; } #header.sticky-header #header-wrap { position: fixed; top: 0; left: 0; width: 100%; background-color: #FFF; box-shadow: 0 0 10px rgba(0,0,0,0.1); } #header.semi-transparent.sticky-header #header-wrap { background-color: rgba(255,255,255,0.8) } #header.sticky-header:not(.static-sticky), #header.sticky-header:not(.static-sticky) #header-wrap, #header.sticky-header:not(.static-sticky):not(.sticky-style-2):not(.sticky-style-3) #logo img { height: 60px; } #header.sticky-header:not(.static-sticky) #primary-menu > ul > li > a { padding-top: 19px; padding-bottom: 19px; } #header.sticky-header:not(.static-sticky).sticky-style-2, #header.sticky-header:not(.static-sticky).sticky-style-3 { height: 161px; } #header.sticky-header:not(.static-sticky).sticky-style-2 #primary-menu, #header.sticky-header:not(.static-sticky).sticky-style-3 #primary-menu { border-top: 0; } #header.sticky-header:not(.static-sticky) #top-search, #header.sticky-header:not(.static-sticky) #top-cart, #header.sticky-header:not(.static-sticky) #side-panel-trigger { margin-top: 20px !important; margin-bottom: 20px !important; } #header.sticky-header:not(.static-sticky) #top-account { margin-top: 12px !important; margin-bottom: 13px !important; } #header.sticky-header:not(.static-sticky) #top-cart .top-cart-content { top: 40px; } #header.sticky-header.sticky-style-2 #primary-menu { border-top: 0; } /* Primary Menu - Style 3 -----------------------------------------------------------------*/ #header.sticky-header:not(.static-sticky) #primary-menu.style-3 > ul > li > a { margin: 0; border-radius: 0; } /* Primary Menu - Style 4 -----------------------------------------------------------------*/ #header.sticky-header:not(.static-sticky) #primary-menu.style-4 > ul > li > a { padding-top: 8px; padding-bottom: 8px; margin: 10px 0; } /* Primary Menu - Style 5 -----------------------------------------------------------------*/ #header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li { margin-left: 2px; } #header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li:first-child { margin-left: 0; } #header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li > a { line-height: 22px; padding-top: 19px; padding-bottom: 19px; } #header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li > a > div { padding: 0; } #header.sticky-header:not(.static-sticky) #primary-menu.style-5 > ul > li > a i { display: inline-block; width: 16px; top: -1px; margin: 0 6px 0 0; font-size: 14px; line-height: 22px; } /* Primary Menu - Sub Title -----------------------------------------------------------------*/ #header.sticky-header:not(.static-sticky) #primary-menu.sub-title > ul > li, #header.sticky-header:not(.static-sticky) #primary-menu.sub-title.style-2 > div > ul > li { background: none !important; margin-left: 2px; } #header.sticky-header:not(.static-sticky) #primary-menu.sub-title > ul > li:first-child, #header.sticky-header:not(.static-sticky) #primary-menu.sub-title.style-2 > div > ul > li:first-child { margin-left: 0; } #header.sticky-header:not(.static-sticky) #primary-menu.sub-title > ul > li > a, #header.sticky-header:not(.static-sticky) #primary-menu.sub-title > div > ul > li > a { line-height: 22px; padding: 19px 15px; text-transform: none; font-size: 14px; border-top: 0; } #header.sticky-header:not(.static-sticky) #primary-menu.sub-title ul li span { display: none; } /* ---------------------------------------------------------------- Page Menu -----------------------------------------------------------------*/ #page-menu, #page-menu-wrap { position: relative; height: 44px; line-height: 44px; text-shadow: 1px 1px 1px rgba(0,0,0,0.1); } #page-menu-wrap { z-index: 99; background-color: #1ABC9C; -webkit-transform: translate3d(0,0,0); -ms-transform: translate3d(0,0,0); -o-transform: translate3d(0,0,0); transform: translate3d(0,0,0); -webkit-backface-visibility: hidden; } #page-menu.sticky-page-menu #page-menu-wrap { position: fixed; z-index: 99; left: 0; width: 100%; box-shadow: 0 0 15px rgba(0,0,0,0.3); } #header.static-sticky ~ #page-menu.sticky-page-menu #page-menu-wrap, #header.static-sticky ~ #content #page-menu.sticky-page-menu #page-menu-wrap { top: 100px; } #header ~ #page-menu.sticky-page-menu #page-menu-wrap, #header.no-sticky ~ #page-menu.sticky-page-menu #page-menu-wrap, #header ~ #content #page-menu.sticky-page-menu #page-menu-wrap, #header.no-sticky ~ #content #page-menu.sticky-page-menu #page-menu-wrap { top: 0; } #header.sticky-header ~ #page-menu.sticky-page-menu #page-menu-wrap, #header.sticky-header ~ #content #page-menu.sticky-page-menu #page-menu-wrap { top: 60px; } #page-submenu-trigger { top: 0; margin-top: 0; left: auto; right: 15px; width: 40px; height: 44px; line-height: 44px; } #page-menu .menu-title { float: left; color: #FFF; font-size: 20px; font-weight: 300; } #page-menu .menu-title span { font-weight: 600; } #page-menu nav { position: relative; float: right; } #page-menu nav ul { margin-bottom: 0; height: 44px; } #page-menu nav li { position: relative; float: left; list-style: none; } #page-menu nav li a { display: block; height: 28px; line-height: 28px; margin: 8px 4px; padding: 0 14px; color: #FFF; font-size: 14px; border-radius: 14px; } #page-menu nav li a .icon-angle-down { margin-left: 5px; } body:not(.device-touch) #page-menu nav li a { -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } #page-menu nav li:hover a, #page-menu nav li.current a { background-color: rgba(0,0,0,0.15); } #page-menu li:hover ul { display: block; } #page-menu ul ul { display: none; position: absolute; width: 150px; top: 44px; left: 0; z-index: 149; height: auto; background-color: #1ABC9C; } #page-menu ul ul ul { display: none !important; } /* Disable Multi-Level Links */ #page-menu ul ul li { float: none; } #page-menu ul ul a { height: auto; line-height: 22px; margin: 0; padding: 8px 14px; border-radius: 0; background-color: rgba(0,0,0,0.15); } #page-menu ul ul li:hover a, #page-menu ul ul li.current a { background-color: rgba(0,0,0,0.3); } /* Page Menu - Dots Style -----------------------------------------------------------------*/ @media (min-width: 992px) { #page-menu.dots-menu, #page-menu.dots-menu #page-menu-wrap { position: fixed; z-index: 99; top: 50%; left: auto; right: 20px; width: 24px; height: auto; line-height: 1.5; background-color: transparent; text-shadow: none; } #page-menu.dots-menu #page-menu-wrap { position: relative; box-shadow: none; } #page-menu.dots-menu .menu-title { display: none; } #page-menu.dots-menu nav { float: none; width: 24px; } #page-menu.dots-menu nav ul { height: auto; } #page-menu.dots-menu nav ul li { float: none; width: 14px; height: 14px; margin: 10px 6px; } #page-menu.dots-menu nav li a { position: relative; width: 10px; height: 10px; line-height: 1.5; padding: 0; margin: 0 2px; background-color: rgba(0,0,0,0.4); border-radius: 50%; color: #777; } #page-menu.dots-menu nav li a:hover { background-color: rgba(0,0,0,0.7) } #page-menu.dots-menu nav li.current a { background-color: #1ABC9C; } #page-menu.dots-menu nav li div { position: absolute; width: auto; top: -11px; right: 25px; background-color: #1ABC9C; color: #FFF; padding: 5px 14px; white-space: nowrap; pointer-events: none; text-shadow: 1px 1px 1px rgba(0,0,0,0.15); border-radius: 2px; opacity: 0; } body:not(.device-touch) #page-menu.dots-menu nav li div { -webkit-transition: all .2s ease-in-out; -o-transition: all .2s ease-in-out; transition: all .2s ease-in-out; } #page-menu.dots-menu nav li div:after { position: absolute; content: ''; top: 50%; margin-top: -6px; left: auto; right: -5px; width: 0; height: 0; border-top: 7px solid transparent; border-bottom: 7px solid transparent; border-left: 6px solid #1ABC9C; } #page-menu.dots-menu nav li a:hover div { opacity: 1; right: 30px; } } /* ---------------------------------------------------------------- One Page -----------------------------------------------------------------*/ .one-page-arrow { position: absolute; z-index: 3; bottom: 20px; left: 50%; margin-left: -16px; width: 32px; height: 32px; font-size: 32px; text-align: center; color: #222; } /* ---------------------------------------------------------------- Side Header -----------------------------------------------------------------*/ @media (min-width: 992px) { .side-header #header { position: fixed; top: 0; left: 0; z-index: 10; width: 260px; height: 100%; height: calc(100vh); background-color: #FFF; border: none; border-right: 1px solid #EEE; overflow: hidden; box-shadow: 0 0 15px rgba(0, 0, 0, 0.065); } .side-header #header-wrap { width: 300px; height: 100%; overflow: auto; padding-right: 40px; } .side-header #header .container { width: 260px !important; padding: 0 30px !important; margin: 0 !important; } .side-header #logo { float: none; margin: 60px 0 40px; } .side-header #logo img { height: auto !important; } .side-header #logo:not(.nobottomborder):after, .side-header #primary-menu:not(.nobottomborder):after { display: block; content: ''; width: 20%; border-bottom: 1px solid #E5E5E5; } .side-header .center #logo:after { margin: 0 auto; } .side-header #primary-menu { margin-bottom: 30px; } .side-header #primary-menu:not(.nobottomborder):after { margin-top: 40px; } .side-header #primary-menu, .side-header #primary-menu ul { float: none; height: auto; } .side-header #primary-menu ul li { float: none; margin: 15px 0 0; } .side-header #primary-menu ul li:first-child { margin-top: 0; } .side-header #primary-menu ul li a { height: 25px; line-height: 25px; padding: 0; text-transform: uppercase; } .side-header #primary-menu ul li i { line-height: 24px; } .side-header #primary-menu ul ul { position: relative; width: 100%; background-color: transparent; box-shadow: none; border: none; height: auto; z-index: 1; top: 0; left: 0; margin: 5px 0; padding-left: 12px; } .side-header #primary-menu ul ul ul { top: 0 !important; left: 0; } .side-header #primary-menu ul ul.menu-pos-invert { left: 0; right: auto; } .side-header #primary-menu ul ul ul.menu-pos-invert { right: auto; } .side-header #primary-menu ul ul li { margin: 0; border: 0; } .side-header #primary-menu ul ul li:first-child { border-top: 0; } .side-header #primary-menu ul ul a { font-size: 12px; height: auto !important; line-height: 24px !important; padding: 2px 0 !important; } .side-header #primary-menu ul ul li:hover > a { background-color: transparent !important; color: #444 !important; } .side-header #primary-menu ul > li.sub-menu > a, .side-header #primary-menu ul > li.sub-menu:hover > a { background-image: none !important; } .side-header #primary-menu ul > li.sub-menu > a:after { position: absolute; content: '\e7a5'; top: 1px; right: 0; -webkit-transition: transform .2s linear; -o-transition: transform .2s linear; transition: transform .2s linear; } .side-header #primary-menu ul > li.sub-menu:hover > a:after { filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1); -webkit-transform: rotate(90deg); -moz-transform: rotate(90deg); -ms-transform: rotate(90deg); -o-transform: rotate(90deg); transform: rotate(90deg); } .side-header:not(.open-header) #wrapper { margin: 0 0 0 260px !important; width: auto !important; } .side-header:not(.open-header) #wrapper .container { width: auto; margin: 0 40px; } /* Side Header - Push Header -----------------------------------------------------------------*/ .side-header.open-header.push-wrapper { overflow-x: hidden; } .side-header.open-header #header { left: -260px; } .side-header.open-header.side-header-open #header { left: 0; } .side-header.open-header #wrapper { left: 0; } .side-header.open-header.push-wrapper.side-header-open #wrapper { left: 260px; } #header-trigger { display: none; } .side-header.open-header #header-trigger { display: block; position: fixed; cursor: pointer; top: 20px; left: 20px; z-index: 11; font-size: 16px; width: 32px; height: 32px; line-height: 32px; background-color: #FFF; text-align: center; border-radius: 2px; } .side-header.open-header.side-header-open #header-trigger { left: 280px; } .side-header.open-header #header-trigger i:nth-child(1), .side-header.open-header.side-header-open #header-trigger i:nth-child(2) { display: block; } .side-header.open-header.side-header-open #header-trigger i:nth-child(1), .side-header.open-header #header-trigger i:nth-child(2) { display: none; } .side-header.open-header #header, .side-header.open-header #header-trigger, .side-header.open-header.push-wrapper #wrapper { -webkit-transition: left .4s ease; -o-transition: left .4s ease; transition: left .4s ease; } /* Side Header - Right Aligned -----------------------------------------------------------------*/ .side-header.side-header-right #header { left: auto; right: 0; border: none; border-left: 1px solid #EEE; } .side-header.side-header-right:not(.open-header) #wrapper { margin: 0 260px 0 0 !important; } .side-header.side-header-right.open-header #header { left: auto; right: -260px; } .side-header.side-header-right.open-header.side-header-open #header { left: auto; right: 0; } .side-header.side-header-right.open-header.push-wrapper.side-header-open #wrapper { left: -260px; } .side-header.side-header-right.open-header #header-trigger { left: auto; right: 20px; } .side-header.side-header-right.open-header.side-header-open #header-trigger { left: auto; right: 280px; } .side-header.side-header-right.open-header #header, .side-header.side-header-right.open-header #header-trigger { -webkit-transition: right .4s ease; -o-transition: right .4s ease; transition: right .4s ease; } } /* ---------------------------------------------------------------- Side Push Panel -----------------------------------------------------------------*/ body.side-push-panel { overflow-x: hidden; } #side-panel { position: fixed; top: 0; right: -300px; z-index: 399; width: 300px; height: 100%; background-color: #F5F5F5; overflow: hidden; -webkit-backface-visibility: hidden; } body.side-panel-left #side-panel { left: -300px; right: auto; } body.side-push-panel.stretched #wrapper, body.side-push-panel.stretched #header.sticky-header .container { right: 0; } body.side-panel-left.side-push-panel.stretched #wrapper, body.side-panel-left.side-push-panel.stretched #header.sticky-header .container { left: 0; right: auto; } #side-panel .side-panel-wrap { position: absolute; top: 0; left: 0; bottom: 0; width: 330px; height: 100%; overflow: auto; padding: 50px 70px 50px 40px; } body.device-touch #side-panel .side-panel-wrap { overflow-y: scroll; } #side-panel .widget { margin-top: 40px; padding-top: 40px; width: 220px; border-top: 1px solid #E5E5E5; } #side-panel .widget:first-child { padding-top: 0; border-top: 0; margin: 0; } body.side-panel-open #side-panel { right: 0; } body.side-panel-left.side-panel-open #side-panel { left: 0; right: auto; } body.side-push-panel.side-panel-open.stretched #wrapper, body.side-push-panel.side-panel-open.stretched #header.sticky-header .container { right: 300px; } body.side-push-panel.side-panel-open.stretched .slider-parallax-inner { left: -300px; } body.side-panel-left.side-push-panel.side-panel-open.stretched #wrapper, body.side-panel-left.side-push-panel.side-panel-open.stretched #header.sticky-header .container, body.side-panel-left.side-push-panel.side-panel-open.stretched .slider-parallax-inner { left: 300px; right: auto; } #side-panel-trigger { display: block; cursor: pointer; z-index: 11; margin-right: 5px; } #side-panel-trigger-close a { display: none; } #side-panel, body.side-push-panel.stretched #wrapper, body.side-push-panel.stretched #header .container { -webkit-transition: right .4s ease; -o-transition: right .4s ease; transition: right .4s ease; } body.side-panel-left #side-panel, body.side-panel-left.side-push-panel.stretched #wrapper, body.side-panel-left.side-push-panel.stretched #header .container, body.side-push-panel.stretched .slider-parallax-inner { -webkit-transition: left .4s ease; -o-transition: left .4s ease; transition: left .4s ease; } .body-overlay { opacity: 0; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); z-index: -1; pointer-events: none; -webkit-backface-visibility: hidden; -webkit-transition: opacity .3s ease; -o-transition: opacity .3s ease; transition: opacity .3s ease; } body.side-panel-open .body-overlay { opacity: 1; z-index: 298; pointer-events: auto; } body.side-panel-open:not(.device-xxs):not(.device-xs):not(.device-sm) .body-overlay:hover { cursor: url('images/icons/close.png') 15 15, default; }
client/views/posts/modules/post_discuss.html
Baxter900/Ultimate-Spellbook
<template name="postDiscuss"> <a class="discuss-link go-to-comments action" href="/posts/{{_id}}" title="{{_ 'discuss'}}"> <i class="action-icon icon-comment"></i> <span class="action-count">{{commentCount}}</span> </a> </template>
web/core/modules/settings_tray/css/settings_tray.module.css
AfrikaBurn/Main
/** * @file * Styling for Settings Tray module. */ /* * Position the edit toolbar tab. * @todo Move changes into contextual module when Settings Tray is not * experimental: https://www.drupal.org/node/2784591. */ .toolbar .toolbar-bar .contextual-toolbar-tab.toolbar-tab { float: left; } [dir="rtl"] .toolbar .toolbar-bar .contextual-toolbar-tab.toolbar-tab { float: right; } .dialog-off-canvas__main-canvas.js-settings-tray-edit-mode a, .dialog-off-canvas__main-canvas.js-settings-tray-edit-mode input { pointer-events: none; } .dialog-off-canvas__main-canvas.js-settings-tray-edit-mode .contextual-links a { pointer-events: inherit; }
tmp/install_50cd9998811b5/components/com_jce/editor/tiny_mce/plugins/anchor/css/content.css
Chubaskin/buscarautos
a.mceItemAnchor {width:11px !important; height:11px !important; background:url(../img/anchor.gif) no-repeat 2px center; padding-left : 14px;border: 1px dashed #B4D4FF;} a.mceItemAnchor::selection { background-color: #b4d4ff; } /* Anchor selection */ span.mceItemAnchor { -webkit-user-select:all; -webkit-user-modify:read-only; -moz-user-select:all; -moz-user-modify:read-only; width:15px !important; height:15px !important; display : inline-block; vertical-align:middle; background:url(../img/anchor.gif) no-repeat center; border: 1px dashed #B4D4FF; cursor: pointer; font-size : 0; line-height : 0; letter-spacing: normal; word-spacing: normal; } span.mceItemAnchor:not(a) { text-indent : -9999px; } span.mceItemAnchor::selection { background-color: #b4d4ff; } span.mceItemAnchor.mceItemSelected { background-color: #b4d4ff; }
third_party/WebKit/LayoutTests/http/tests/fetch/workers/thorough/cors-base-https-other-https.html
js0701/chromium-crosswalk
<!doctype html> <head> <meta name="timeout" content="long"></meta> <script src = "/resources/testharness.js"></script> <script src = "/resources/testharnessreport.js"></script> <script src = "/resources/get-host-info.js?pipe=sub"></script> <script src = "/serviceworker/resources/test-helpers.js"></script> </head> <body> <script> var host_info = get_host_info(); function start(t) { fetch_tests_from_worker( new Worker('/fetch/script-tests/thorough/cors.js?-base-https-other-https')); t.done(); } function init(test) { return login(test, host_info['HTTP_ORIGIN'], host_info['HTTP_REMOTE_ORIGIN']) .then(function() { return login(test, host_info['HTTPS_ORIGIN'], host_info['HTTPS_REMOTE_ORIGIN']); }); } </script> <script src = "/fetch/resources/init.js"></script> </body>
thirdparty/ant-contrib/1.0b3/docs/api/help-doc.html
mhmdfy/autopsy
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <!--NewPage--> <HTML> <HEAD> <!-- Generated by javadoc (build 1.5.0_09) on Thu Nov 02 11:46:44 EST 2006 --> <TITLE> API Help (Ant Contrib) </TITLE> <LINK REL ="stylesheet" TYPE="text/css" HREF="stylesheet.css" TITLE="Style"> <SCRIPT type="text/javascript"> function windowTitle() { parent.document.title="API Help (Ant Contrib)"; } </SCRIPT> <NOSCRIPT> </NOSCRIPT> </HEAD> <BODY BGCOLOR="white" onload="windowTitle();"> <!-- ========= START OF TOP NAVBAR ======= --> <A NAME="navbar_top"><!-- --></A> <A HREF="#skip-navbar_top" title="Skip navigation links"></A> <TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY=""> <TR> <TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A NAME="navbar_top_firstrow"><!-- --></A> <TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY=""> <TR ALIGN="center" VALIGN="top"> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_top"></A> <!-- ========= END OF TOP NAVBAR ========= --> <HR> <CENTER> <H1> How This API Document Is Organized</H1> </CENTER> This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.<H3> Overview</H3> <BLOCKQUOTE> <P> The <A HREF="overview-summary.html">Overview</A> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</BLOCKQUOTE> <H3> Package</H3> <BLOCKQUOTE> <P> Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain four categories:<UL> <LI>Interfaces (italic)<LI>Classes<LI>Enums<LI>Exceptions<LI>Errors<LI>Annotation Types</UL> </BLOCKQUOTE> <H3> Class/Interface</H3> <BLOCKQUOTE> <P> Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:<UL> <LI>Class inheritance diagram<LI>Direct Subclasses<LI>All Known Subinterfaces<LI>All Known Implementing Classes<LI>Class/interface declaration<LI>Class/interface description <P> <LI>Nested Class Summary<LI>Field Summary<LI>Constructor Summary<LI>Method Summary <P> <LI>Field Detail<LI>Constructor Detail<LI>Method Detail</UL> Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</BLOCKQUOTE> </BLOCKQUOTE> <H3> Annotation Type</H3> <BLOCKQUOTE> <P> Each annotation type has its own separate page with the following sections:<UL> <LI>Annotation Type declaration<LI>Annotation Type description<LI>Required Element Summary<LI>Optional Element Summary<LI>Element Detail</UL> </BLOCKQUOTE> </BLOCKQUOTE> <H3> Enum</H3> <BLOCKQUOTE> <P> Each enum has its own separate page with the following sections:<UL> <LI>Enum declaration<LI>Enum description<LI>Enum Constant Summary<LI>Enum Constant Detail</UL> </BLOCKQUOTE> <H3> Tree (Class Hierarchy)</H3> <BLOCKQUOTE> There is a <A HREF="overview-tree.html">Class Hierarchy</A> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.<UL> <LI>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.<LI>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</UL> </BLOCKQUOTE> <H3> Deprecated API</H3> <BLOCKQUOTE> The <A HREF="deprecated-list.html">Deprecated API</A> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</BLOCKQUOTE> <H3> Index</H3> <BLOCKQUOTE> The <A HREF="index-all.html">Index</A> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</BLOCKQUOTE> <H3> Prev/Next</H3> These links take you to the next or previous class, interface, package, or related page.<H3> Frames/No Frames</H3> These links show and hide the HTML frames. All pages are available with or without frames. <P> <H3> Serialized Form</H3> Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description. <P> <H3> Constant Field Values</H3> The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values. <P> <FONT SIZE="-1"> <EM> This help file applies to API documentation generated using the standard doclet.</EM> </FONT> <BR> <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"> <FONT CLASS="NavBarFont1">Package</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT>&nbsp;</TD> <TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="overview-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="#FFFFFF" CLASS="NavBarCell1Rev"> &nbsp;<FONT CLASS="NavBarFont1Rev"><B>Help</B></FONT>&nbsp;</TD> </TR> </TABLE> </TD> <TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM> </EM> </TD> </TR> <TR> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> &nbsp;PREV&nbsp; &nbsp;NEXT</FONT></TD> <TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2"> <A HREF="index.html?help-doc.html" target="_top"><B>FRAMES</B></A> &nbsp; &nbsp;<A HREF="help-doc.html" target="_top"><B>NO FRAMES</B></A> &nbsp; &nbsp;<SCRIPT type="text/javascript"> <!-- if(window==top) { document.writeln('<A HREF="allclasses-noframe.html"><B>All Classes</B></A>'); } //--> </SCRIPT> <NOSCRIPT> <A HREF="allclasses-noframe.html"><B>All Classes</B></A> </NOSCRIPT> </FONT></TD> </TR> </TABLE> <A NAME="skip-navbar_bottom"></A> <!-- ======== END OF BOTTOM NAVBAR ======= --> <HR> </BODY> </HTML>
dep/RakNet/Help/Doxygen/html/structRakNet_1_1Clans__AcceptJoinRequest.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: RakNet::Clans_AcceptJoinRequest Struct Reference</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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="structRakNet_1_1Clans__AcceptJoinRequest.html">Clans_AcceptJoinRequest</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="summary"> <a href="#pub-methods">Public Member Functions</a> &#124; <a href="structRakNet_1_1Clans__AcceptJoinRequest-members.html">List of all members</a> </div> <div class="headertitle"> <div class="title">RakNet::Clans_AcceptJoinRequest Struct Reference<div class="ingroups"><a class="el" href="group__LOBBY__2__COMMANDS.html">Lobby2Commands</a></div></div> </div> </div><!--header--> <div class="contents"> <p>A clan leader or subleader accepts a join request from requestingUserHandle to this clan. requestingUserHandle joins the clan as a regular member. Use Emails_Send() to send an email from requestingUserHandle to all clan members with the specified subject and body. <a href="structRakNet_1_1Clans__AcceptJoinRequest.html#details">More...</a></p> <p><code>#include &lt;Lobby2Message.h&gt;</code></p> <div class="dynheader"> Inheritance diagram for RakNet::Clans_AcceptJoinRequest:</div> <div class="dyncontent"> <div class="center"> <img src="structRakNet_1_1Clans__AcceptJoinRequest.png" usemap="#RakNet::Clans_AcceptJoinRequest_map" alt=""/> <map id="RakNet::Clans_AcceptJoinRequest_map" name="RakNet::Clans_AcceptJoinRequest_map"> <area href="structRakNet_1_1Lobby2Message.html" title="A Lobby2Message encapsulates a networked function call from the client." alt="RakNet::Lobby2Message" shape="rect" coords="0,0,205,24"/> </map> </div></div> <table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="pub-methods"></a> Public Member Functions</h2></td></tr> <tr class="memitem:a40edeef3d8cb83581bfd5c50381683c9"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Clans__AcceptJoinRequest.html#a40edeef3d8cb83581bfd5c50381683c9">RequiresAdmin</a> (void) const </td></tr> <tr class="separator:a40edeef3d8cb83581bfd5c50381683c9"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aea500eefeb8bd1eb6e02502b3e9255b5"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Clans__AcceptJoinRequest.html#aea500eefeb8bd1eb6e02502b3e9255b5">RequiresRankingPermission</a> (void) const </td></tr> <tr class="separator:aea500eefeb8bd1eb6e02502b3e9255b5"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a773ecd5760fdc3ee1f1dbb8703ca88f5"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Clans__AcceptJoinRequest.html#a773ecd5760fdc3ee1f1dbb8703ca88f5">CancelOnDisconnect</a> (void) const </td></tr> <tr class="separator:a773ecd5760fdc3ee1f1dbb8703ca88f5"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a32abbcf9e81b5c82347e0b0d530d4b3d"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Clans__AcceptJoinRequest.html#a32abbcf9e81b5c82347e0b0d530d4b3d">RequiresLogin</a> (void) const </td></tr> <tr class="separator:a32abbcf9e81b5c82347e0b0d530d4b3d"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad2132f22818d7de139fc63664745a5d1"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad2132f22818d7de139fc63664745a5d1"></a> virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Clans__AcceptJoinRequest.html#ad2132f22818d7de139fc63664745a5d1">Serialize</a> (bool writeToBitstream, bool serializeOutput, <a class="el" href="classRakNet_1_1BitStream.html">RakNet::BitStream</a> *bitStream)</td></tr> <tr class="memdesc:ad2132f22818d7de139fc63664745a5d1"><td class="mdescLeft">&#160;</td><td class="mdescRight">Overridable serialization of the contents of this message. Defaults to SerializeBase() <br/></td></tr> <tr class="separator:ad2132f22818d7de139fc63664745a5d1"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a04332c5390c7ab54be3977649315a4c1"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Clans__AcceptJoinRequest.html#a04332c5390c7ab54be3977649315a4c1">PrevalidateInput</a> (void)</td></tr> <tr class="separator:a04332c5390c7ab54be3977649315a4c1"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="inherit_header pub_methods_structRakNet_1_1Lobby2Message"><td colspan="2" onclick="javascript:toggleInherit('pub_methods_structRakNet_1_1Lobby2Message')"><img src="closed.png" alt="-"/>&#160;Public Member Functions inherited from <a class="el" href="structRakNet_1_1Lobby2Message.html">RakNet::Lobby2Message</a></td></tr> <tr class="memitem:a92248c1609297987f41dbfcfd75806f9 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a92248c1609297987f41dbfcfd75806f9"></a> virtual <a class="el" href="group__LOBBY__2__COMMANDS.html#gaf20aff5b3604dbaad834c046a03d8299">Lobby2MessageID</a>&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a92248c1609297987f41dbfcfd75806f9">GetID</a> (void) const =0</td></tr> <tr class="memdesc:a92248c1609297987f41dbfcfd75806f9 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Every message has an ID identifying it across the network. <br/></td></tr> <tr class="separator:a92248c1609297987f41dbfcfd75806f9 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a73681a9a5bcfe6d7344cb7500c1bae72 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a73681a9a5bcfe6d7344cb7500c1bae72">ClientImpl</a> (<a class="el" href="classRakNet_1_1Lobby2Plugin.html">RakNet::Lobby2Plugin</a> *client)</td></tr> <tr class="separator:a73681a9a5bcfe6d7344cb7500c1bae72 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a7d2c66bbb0ffbcda05e83e936976c41a inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top">virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a7d2c66bbb0ffbcda05e83e936976c41a">CallCallback</a> (<a class="el" href="structRakNet_1_1Lobby2Callbacks.html">Lobby2Callbacks</a> *cb)=0</td></tr> <tr class="separator:a7d2c66bbb0ffbcda05e83e936976c41a inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5213270ccd16a7bc6afc8df001b623e7 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a5213270ccd16a7bc6afc8df001b623e7">ServerPreDBMemoryImpl</a> (<a class="el" href="classRakNet_1_1Lobby2Server.html">Lobby2Server</a> *server, <a class="el" href="classRakNet_1_1RakString.html">RakString</a> userHandle)</td></tr> <tr class="separator:a5213270ccd16a7bc6afc8df001b623e7 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a62cc92ba3fb0e6562cf77d929d231a35 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a62cc92ba3fb0e6562cf77d929d231a35"></a> virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a62cc92ba3fb0e6562cf77d929d231a35">ServerPostDBMemoryImpl</a> (<a class="el" href="classRakNet_1_1Lobby2Server.html">Lobby2Server</a> *server, <a class="el" href="classRakNet_1_1RakString.html">RakString</a> userHandle)</td></tr> <tr class="memdesc:a62cc92ba3fb0e6562cf77d929d231a35 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Do any <a class="el" href="classRakNet_1_1Lobby2Server.html" title="The base class for the lobby server, without database specific functionality.">Lobby2Server</a> functionality after the message has been processed by the database, in the server thread. <br/></td></tr> <tr class="separator:a62cc92ba3fb0e6562cf77d929d231a35 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a39a885f1a8d8b636e5c7bbeb13d4f822 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top">virtual bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a39a885f1a8d8b636e5c7bbeb13d4f822">ServerDBImpl</a> (<a class="el" href="structRakNet_1_1Lobby2ServerCommand.html">Lobby2ServerCommand</a> *command, void *databaseInterface)</td></tr> <tr class="separator:a39a885f1a8d8b636e5c7bbeb13d4f822 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6a85caa9e47c7d9fec7f156c5e7c723a inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top">bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a6a85caa9e47c7d9fec7f156c5e7c723a">ValidateHandle</a> (<a class="el" href="classRakNet_1_1RakString.html">RakNet::RakString</a> *handle)</td></tr> <tr class="separator:a6a85caa9e47c7d9fec7f156c5e7c723a inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:af510ed0df868969f12118ea32027334b inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="af510ed0df868969f12118ea32027334b"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#af510ed0df868969f12118ea32027334b">ValidateBinary</a> (RakNetSmartPtr&lt; BinaryDataBlock &gt;binaryDataBlock)</td></tr> <tr class="memdesc:af510ed0df868969f12118ea32027334b inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Binary data cannot be longer than L2_MAX_BINARY_DATA_LENGTH. <br/></td></tr> <tr class="separator:af510ed0df868969f12118ea32027334b inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ada4ddbe1b8d880b6beb3cec2d107c3cf inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ada4ddbe1b8d880b6beb3cec2d107c3cf"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#ada4ddbe1b8d880b6beb3cec2d107c3cf">ValidateRequiredText</a> (<a class="el" href="classRakNet_1_1RakString.html">RakNet::RakString</a> *text)</td></tr> <tr class="memdesc:ada4ddbe1b8d880b6beb3cec2d107c3cf inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Required text cannot be empty. <br/></td></tr> <tr class="separator:ada4ddbe1b8d880b6beb3cec2d107c3cf inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a4cf58429201d0c452d354b6add784712 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4cf58429201d0c452d354b6add784712"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a4cf58429201d0c452d354b6add784712">ValidatePassword</a> (<a class="el" href="classRakNet_1_1RakString.html">RakNet::RakString</a> *text)</td></tr> <tr class="memdesc:a4cf58429201d0c452d354b6add784712 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Passwords must contain at least 5 characters. <br/></td></tr> <tr class="separator:a4cf58429201d0c452d354b6add784712 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:aec0eeb9161acabd01464f4b875abed31 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aec0eeb9161acabd01464f4b875abed31"></a> bool&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#aec0eeb9161acabd01464f4b875abed31">ValidateEmailAddress</a> (<a class="el" href="classRakNet_1_1RakString.html">RakNet::RakString</a> *text)</td></tr> <tr class="memdesc:aec0eeb9161acabd01464f4b875abed31 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Check email address format. <br/></td></tr> <tr class="separator:aec0eeb9161acabd01464f4b875abed31 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ae417f773c4d48bc1cce69c656f2952fd inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ae417f773c4d48bc1cce69c656f2952fd"></a> virtual const char *&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#ae417f773c4d48bc1cce69c656f2952fd">GetName</a> (void) const =0</td></tr> <tr class="memdesc:ae417f773c4d48bc1cce69c656f2952fd inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Convert the enumeration representing this message to a string, and return it. Done automatically by macros. <br/></td></tr> <tr class="separator:ae417f773c4d48bc1cce69c656f2952fd inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:ad48d6053a9d086c29dc3108e7de557dc inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="ad48d6053a9d086c29dc3108e7de557dc"></a> virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#ad48d6053a9d086c29dc3108e7de557dc">DebugMsg</a> (<a class="el" href="classRakNet_1_1RakString.html">RakNet::RakString</a> &amp;out) const =0</td></tr> <tr class="memdesc:ad48d6053a9d086c29dc3108e7de557dc inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Write the result of this message to out(). Done automatically by macros. <br/></td></tr> <tr class="separator:ad48d6053a9d086c29dc3108e7de557dc inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:accf4946d351e9bb17ad197fc21b0b473 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="accf4946d351e9bb17ad197fc21b0b473"></a> virtual void&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#accf4946d351e9bb17ad197fc21b0b473">DebugPrintf</a> (void) const </td></tr> <tr class="memdesc:accf4946d351e9bb17ad197fc21b0b473 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Print the result of DebugMsg. <br/></td></tr> <tr class="separator:accf4946d351e9bb17ad197fc21b0b473 inherit pub_methods_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> </table><table class="memberdecls"> <tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="inherited"></a> Additional Inherited Members</h2></td></tr> <tr class="inherit_header pub_attribs_structRakNet_1_1Lobby2Message"><td colspan="2" onclick="javascript:toggleInherit('pub_attribs_structRakNet_1_1Lobby2Message')"><img src="closed.png" alt="-"/>&#160;Public Attributes inherited from <a class="el" href="structRakNet_1_1Lobby2Message.html">RakNet::Lobby2Message</a></td></tr> <tr class="memitem:a750b6a5d792d6f6c2532bfc7e3f74c99 inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a750b6a5d792d6f6c2532bfc7e3f74c99"></a> RakNet::Lobby2ResultCode&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a750b6a5d792d6f6c2532bfc7e3f74c99">resultCode</a></td></tr> <tr class="memdesc:a750b6a5d792d6f6c2532bfc7e3f74c99 inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Result of the operation. L2RC_SUCCESS means the result completed. Anything else means an error. <br/></td></tr> <tr class="separator:a750b6a5d792d6f6c2532bfc7e3f74c99 inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a6e29d665abe3559b60e9fadfb2fa1b40 inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top">uint32_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a6e29d665abe3559b60e9fadfb2fa1b40">callbackId</a></td></tr> <tr class="separator:a6e29d665abe3559b60e9fadfb2fa1b40 inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a5046c82fcca8bac36babe863c55ec9eb inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a5046c82fcca8bac36babe863c55ec9eb"></a> int&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a5046c82fcca8bac36babe863c55ec9eb">extendedResultCode</a></td></tr> <tr class="memdesc:a5046c82fcca8bac36babe863c55ec9eb inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="mdescLeft">&#160;</td><td class="mdescRight">Used for consoles. <br/></td></tr> <tr class="separator:a5046c82fcca8bac36babe863c55ec9eb inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> <tr class="memitem:a49c6460be7043aa3dd8f69955a4fb426 inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memItemLeft" align="right" valign="top">uint64_t&#160;</td><td class="memItemRight" valign="bottom"><a class="el" href="structRakNet_1_1Lobby2Message.html#a49c6460be7043aa3dd8f69955a4fb426">requestId</a></td></tr> <tr class="separator:a49c6460be7043aa3dd8f69955a4fb426 inherit pub_attribs_structRakNet_1_1Lobby2Message"><td class="memSeparator" colspan="2">&#160;</td></tr> </table> <a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2> <div class="textblock"><p>A clan leader or subleader accepts a join request from requestingUserHandle to this clan. requestingUserHandle joins the clan as a regular member. Use Emails_Send() to send an email from requestingUserHandle to all clan members with the specified subject and body. </p> </div><h2 class="groupheader">Member Function Documentation</h2> <a class="anchor" id="a773ecd5760fdc3ee1f1dbb8703ca88f5"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual bool RakNet::Clans_AcceptJoinRequest::CancelOnDisconnect </td> <td>(</td> <td class="paramtype">void&#160;</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Should this message not be processed on the server if the requesting user disconnects before it completes? This should be true for functions that only return data. False for functions that affect other users, or change the database </p> <p>Implements <a class="el" href="structRakNet_1_1Lobby2Message.html#aeab0f7b852042f9d664cb7ee0b8b0458">RakNet::Lobby2Message</a>.</p> </div> </div> <a class="anchor" id="a04332c5390c7ab54be3977649315a4c1"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual bool RakNet::Clans_AcceptJoinRequest::PrevalidateInput </td> <td>(</td> <td class="paramtype">void&#160;</td> <td class="paramname"></td><td>)</td> <td></td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>If data members can be validated for correctness in the server's main thread, override this function and do those checks here. </p> <dl class="section return"><dt>Returns</dt><dd>True for input OK. False if the input is bad and does not need to be further processed in the database threads. </dd></dl> <p>Reimplemented from <a class="el" href="structRakNet_1_1Lobby2Message.html#a419b02230facc25fe97e364ee914e996">RakNet::Lobby2Message</a>.</p> </div> </div> <a class="anchor" id="a40edeef3d8cb83581bfd5c50381683c9"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual bool RakNet::Clans_AcceptJoinRequest::RequiresAdmin </td> <td>(</td> <td class="paramtype">void&#160;</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Is this message something that should only be run by a system with admin privileges? Set admin privileges with <a class="el" href="classRakNet_1_1Lobby2Server.html#a499cbfd420d6a6caecd62a8143a641da" title="If Lobby2Message::RequiresAdmin() returns true, the message can only be processed from a remote syste...">Lobby2Server::AddAdminAddress()</a> </p> <p>Implements <a class="el" href="structRakNet_1_1Lobby2Message.html#a79cbb400e4521af2c353fbd640fed0f7">RakNet::Lobby2Message</a>.</p> </div> </div> <a class="anchor" id="a32abbcf9e81b5c82347e0b0d530d4b3d"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual bool RakNet::Clans_AcceptJoinRequest::RequiresLogin </td> <td>(</td> <td class="paramtype">void&#160;</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Does this function require logging into the server before it can be executed? If true, the user id and user handle will be automatically inferred by the last login by looking up the sender's system address. If false, the message should include the username so the database query can lookup which user is performing this operation. </p> <p>Implements <a class="el" href="structRakNet_1_1Lobby2Message.html#a575e23419cd160aca576b56ee7476227">RakNet::Lobby2Message</a>.</p> </div> </div> <a class="anchor" id="aea500eefeb8bd1eb6e02502b3e9255b5"></a> <div class="memitem"> <div class="memproto"> <table class="mlabels"> <tr> <td class="mlabels-left"> <table class="memname"> <tr> <td class="memname">virtual bool RakNet::Clans_AcceptJoinRequest::RequiresRankingPermission </td> <td>(</td> <td class="paramtype">void&#160;</td> <td class="paramname"></td><td>)</td> <td> const</td> </tr> </table> </td> <td class="mlabels-right"> <span class="mlabels"><span class="mlabel">inline</span><span class="mlabel">virtual</span></span> </td> </tr> </table> </div><div class="memdoc"> <p>Is this message something that should only be run by a system with ranking upload priviledges? Set ranking privileges with <a class="el" href="classRakNet_1_1Lobby2Server.html#a16a9ef14b0c08f5c01745908666064d5" title="If Lobby2Message::RequiresRankingPermission() returns true, then the system that sent the command mus...">Lobby2Server::AddRankingAddress()</a> </p> <p>Implements <a class="el" href="structRakNet_1_1Lobby2Message.html#a3eab67e30f491cd3410b9d850ffcecea">RakNet::Lobby2Message</a>.</p> </div> </div> <hr/>The documentation for this struct was generated from the following file:<ul> <li>D:/temp/RakNet_PC/DependentExtensions/Lobby2/Lobby2Message.h</li> </ul> </div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated on Mon Jun 2 2014 20:10:30 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>
wsgi/container/pkgs/sencha/static/ext-4.2.2.1144/docs/source/Radar.html
rch/flask-openshift
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>The source code</title> <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" /> <script type="text/javascript" src="../resources/prettify/prettify.js"></script> <style type="text/css"> .highlight { display: block; background-color: #ddd; } </style> <script type="text/javascript"> function highlight() { document.getElementById(location.hash.replace(/#/, "")).className = "highlight"; } </script> </head> <body onload="prettyPrint(); highlight();"> <pre class="prettyprint lang-js"><span id='Ext-chart-series-Radar'>/** </span> * @class Ext.chart.series.Radar * * Creates a Radar Chart. A Radar Chart is a useful visualization technique for comparing different quantitative values for * a constrained number of categories. * * As with all other series, the Radar series must be appended in the *series* Chart array configuration. See the Chart * documentation for more information. A typical configuration object for the radar series could be: * * @example * var store = Ext.create('Ext.data.JsonStore', { * fields: ['name', 'data1', 'data2', 'data3'], * data: [ * { 'name': 'metric one', 'data1': 14, 'data2': 12, 'data3': 13 }, * { 'name': 'metric two', 'data1': 16, 'data2': 8, 'data3': 3 }, * { 'name': 'metric three', 'data1': 14, 'data2': 2, 'data3': 7 }, * { 'name': 'metric four', 'data1': 6, 'data2': 14, 'data3': 23 }, * { 'name': 'metric five', 'data1': 36, 'data2': 38, 'data3': 33 } * ] * }); * * Ext.create('Ext.chart.Chart', { * renderTo: Ext.getBody(), * width: 500, * height: 300, * animate: true, * theme:'Category2', * store: store, * axes: [{ * type: 'Radial', * position: 'radial', * label: { * display: true * } * }], * series: [{ * type: 'radar', * xField: 'name', * yField: 'data1', * showInLegend: true, * showMarkers: true, * markerConfig: { * radius: 5, * size: 5 * }, * style: { * 'stroke-width': 2, * fill: 'none' * } * },{ * type: 'radar', * xField: 'name', * yField: 'data2', * showMarkers: true, * showInLegend: true, * markerConfig: { * radius: 5, * size: 5 * }, * style: { * 'stroke-width': 2, * fill: 'none' * } * },{ * type: 'radar', * xField: 'name', * yField: 'data3', * showMarkers: true, * showInLegend: true, * markerConfig: { * radius: 5, * size: 5 * }, * style: { * 'stroke-width': 2, * fill: 'none' * } * }] * }); * * In this configuration we add three series to the chart. Each of these series is bound to the same * categories field, `name` but bound to different properties for each category, `data1`, `data2` and * `data3` respectively. All series display markers by having `showMarkers` enabled. The configuration * for the markers of each series can be set by adding properties onto the markerConfig object. * Finally we override some theme styling properties by adding properties to the `style` object. */ Ext.define('Ext.chart.series.Radar', { /* Begin Definitions */ extend: 'Ext.chart.series.Series', requires: ['Ext.chart.Shape', 'Ext.fx.Anim'], <span id='Ext-chart-series-Radar-cfg-type'> /* End Definitions */ </span> type: &quot;radar&quot;, alias: 'series.radar', <span id='Ext-chart-series-Radar-property-rad'> rad: Math.PI / 180, </span> <span id='Ext-chart-series-Radar-cfg-showInLegend'> showInLegend: false, </span> <span id='Ext-chart-series-Radar-cfg-style'> /** </span> * @cfg {Object} style * An object containing styles for overriding series styles from Theming. */ style: {}, <span id='Ext-chart-series-Radar-cfg-xField'> /** </span> * @cfg {String} xField * The name of the data Model field corresponding to the x-axis (angle) value. */ <span id='Ext-chart-series-Radar-cfg-yField'> /** </span> * @cfg {String} yField * The name of the data Model field corresponding to the y-axis (radius) value. */ <span id='Ext-chart-series-Radar-cfg-showMarkers'> /** </span> * @cfg {Boolean} showMarkers * Whether markers should be displayed at the data points of the series. If true, * then the {@link #markerConfig} config item will determine the markers' styling. */ <span id='Ext-chart-series-Radar-cfg-markerConfig'> /** </span> * @cfg {Object} markerConfig * The display style for the markers. Only used if {@link #showMarkers} is true. * The markerConfig is a configuration object containing the same set of properties defined in * the Sprite class. For example, if we were to set red circles as markers to the series we could * pass the object: * * @example * markerConfig: { * type: 'circle', * radius: 4, * 'fill': '#f00' * } */ constructor: function(config) { this.callParent(arguments); var me = this, surface = me.chart.surface; me.group = surface.getGroup(me.seriesId); if (me.showMarkers) { me.markerGroup = surface.getGroup(me.seriesId + '-markers'); } }, <span id='Ext-chart-series-Radar-method-drawSeries'> /** </span> * Draws the series for the current chart. */ drawSeries: function() { var me = this, store = me.chart.getChartStore(), data = store.data.items, d, record, group = me.group, chart = me.chart, seriesItems = chart.series.items, s, sLen, series, field = me.field || me.yField, surface = chart.surface, chartBBox = chart.chartBBox, colorArrayStyle = me.colorArrayStyle, centerX, centerY, items, radius, maxValue = 0, fields = [], max = Math.max, cos = Math.cos, sin = Math.sin, pi2 = Math.PI * 2, l = store.getCount(), startPath, path, x, y, rho, i, nfields, seriesStyle = me.seriesStyle, axis = chart.axes &amp;&amp; chart.axes.get(0), aggregate = !(axis &amp;&amp; axis.maximum); me.setBBox(); maxValue = aggregate? 0 : (axis.maximum || 0); Ext.apply(seriesStyle, me.style || {}); //if the store is empty then there's nothing to draw if (!store || !store.getCount() || me.seriesIsHidden) { me.hide(); me.items = []; if (me.radar) { me.radar.hide(true); } me.radar = null; return; } if(!seriesStyle['stroke']){ seriesStyle['stroke'] = colorArrayStyle[me.themeIdx % colorArrayStyle.length]; } me.unHighlightItem(); me.cleanHighlights(); centerX = me.centerX = chartBBox.x + (chartBBox.width / 2); centerY = me.centerY = chartBBox.y + (chartBBox.height / 2); me.radius = radius = Math.min(chartBBox.width, chartBBox.height) /2; me.items = items = []; if (aggregate) { //get all renderer fields for (s = 0, sLen = seriesItems.length; s &lt; sLen; s++) { series = seriesItems[s]; fields.push(series.yField); } //get maxValue to interpolate for (d = 0; d &lt; l; d++) { record = data[d]; for (i = 0, nfields = fields.length; i &lt; nfields; i++) { maxValue = max(+record.get(fields[i]), maxValue); } } } //ensure non-zero value. maxValue = maxValue || 1; //create path and items startPath = []; path = []; for (i = 0; i &lt; l; i++) { record = data[i]; rho = radius * record.get(field) / maxValue; x = rho * cos(i / l * pi2); y = rho * sin(i / l * pi2); if (i == 0) { path.push('M', x + centerX, y + centerY); startPath.push('M', 0.01 * x + centerX, 0.01 * y + centerY); } else { path.push('L', x + centerX, y + centerY); startPath.push('L', 0.01 * x + centerX, 0.01 * y + centerY); } items.push({ sprite: false, //TODO(nico): add markers point: [centerX + x, centerY + y], storeItem: record, series: me }); } path.push('Z'); //create path sprite if (!me.radar) { me.radar = surface.add(Ext.apply({ type: 'path', group: group, path: startPath }, seriesStyle || {})); } //reset on resizing if (chart.resizing) { me.radar.setAttributes({ path: startPath }, true); } //render/animate if (chart.animate) { me.onAnimate(me.radar, { to: Ext.apply({ path: path }, seriesStyle || {}) }); } else { me.radar.setAttributes(Ext.apply({ path: path }, seriesStyle || {}), true); } //render markers, labels and callouts if (me.showMarkers) { me.drawMarkers(); } me.renderLabels(); me.renderCallouts(); }, <span id='Ext-chart-series-Radar-method-drawMarkers'> // @private draws the markers for the lines (if any). </span> drawMarkers: function() { var me = this, chart = me.chart, surface = chart.surface, store = chart.getChartStore(), markerStyle = Ext.apply({}, me.markerStyle || {}), endMarkerStyle = Ext.apply(markerStyle, me.markerConfig, { fill: me.colorArrayStyle[me.themeIdx % me.colorArrayStyle.length] }), items = me.items, type = endMarkerStyle.type, markerGroup = me.markerGroup, centerX = me.centerX, centerY = me.centerY, item, i, l, marker, rendererAttributes; delete endMarkerStyle.type; for (i = 0, l = items.length; i &lt; l; i++) { item = items[i]; marker = markerGroup.getAt(i); if (!marker) { marker = Ext.chart.Shape[type](surface, Ext.apply({ group: markerGroup, x: 0, y: 0, translate: { x: centerX, y: centerY } }, endMarkerStyle)); } else { marker.show(); } item.sprite = marker; if (chart.resizing) { marker.setAttributes({ x: 0, y: 0, translate: { x: centerX, y: centerY } }, true); } marker._to = { translate: { x: item.point[0], y: item.point[1] } }; //render/animate rendererAttributes = me.renderer(marker, store.getAt(i), marker._to, i, store); rendererAttributes = Ext.applyIf(rendererAttributes || {}, endMarkerStyle || {}); if (chart.animate) { me.onAnimate(marker, { to: rendererAttributes }); } else { marker.setAttributes(rendererAttributes, true); } } }, <span id='Ext-chart-series-Radar-method-isItemInPoint'> isItemInPoint: function(x, y, item) { </span> var point, tolerance = 10, abs = Math.abs; point = item.point; return (abs(point[0] - x) &lt;= tolerance &amp;&amp; abs(point[1] - y) &lt;= tolerance); }, <span id='Ext-chart-series-Radar-method-onCreateLabel'> // @private callback for when creating a label sprite. </span> onCreateLabel: function(storeItem, item, i, display) { var me = this, group = me.labelsGroup, config = me.label, centerX = me.centerX, centerY = me.centerY, endLabelStyle = Ext.apply({}, config, me.seriesLabelStyle || {}); return me.chart.surface.add(Ext.apply({ 'type': 'text', 'text-anchor': 'middle', 'group': group, 'x': centerX, 'y': centerY }, endLabelStyle || {})); }, <span id='Ext-chart-series-Radar-method-onPlaceLabel'> // @private callback for when placing a label sprite. </span> onPlaceLabel: function(label, storeItem, item, i, display, animate, index) { var me = this, chart = me.chart, resizing = chart.resizing, config = me.label, format = config.renderer, field = config.field, centerX = me.centerX, centerY = me.centerY, opt = { x: Number(item.point[0]), y: Number(item.point[1]) }, x = opt.x - centerX, y = opt.y - centerY, theta = Math.atan2(y, x || 1), deg = theta * 180 / Math.PI, labelBox, direction; function fixAngle(a) { if (a &lt; 0) { a += 360; } return a % 360; } label.setAttributes({ text: format(storeItem.get(field), label, storeItem, item, i, display, animate, index), hidden: true }, true); // Move the label by half its height or width depending on // the angle so the label doesn't overlap the graph. labelBox = label.getBBox(); deg = fixAngle(deg); if ((deg &gt; 45 &amp;&amp; deg &lt; 135) || (deg &gt; 225 &amp;&amp; deg &lt; 315)) { direction = (deg &gt; 45 &amp;&amp; deg &lt; 135 ? 1 : -1); opt.y += direction * labelBox.height/2; } else { direction = (deg &gt;= 135 &amp;&amp; deg &lt;= 225 ? -1 : 1); opt.x += direction * labelBox.width/2; } if (resizing) { label.setAttributes({ x: centerX, y: centerY }, true); } if (animate) { label.show(true); me.onAnimate(label, { to: opt }); } else { label.setAttributes(opt, true); label.show(true); } }, <span id='Ext-chart-series-Radar-method-toggleAll'> // @private for toggling (show/hide) series. </span> toggleAll: function(show) { var me = this, i, ln, shadow, shadows; if (!show) { Ext.chart.series.Radar.superclass.hideAll.call(me); } else { Ext.chart.series.Radar.superclass.showAll.call(me); } if (me.radar) { me.radar.setAttributes({ hidden: !show }, true); //hide shadows too if (me.radar.shadows) { for (i = 0, shadows = me.radar.shadows, ln = shadows.length; i &lt; ln; i++) { shadow = shadows[i]; shadow.setAttributes({ hidden: !show }, true); } } } }, <span id='Ext-chart-series-Radar-method-hideAll'> // @private hide all elements in the series. </span> hideAll: function() { this.toggleAll(false); this.hideMarkers(0); }, <span id='Ext-chart-series-Radar-method-showAll'> // @private show all elements in the series. </span> showAll: function() { this.toggleAll(true); }, <span id='Ext-chart-series-Radar-method-hideMarkers'> // @private hide all markers that belong to `markerGroup` </span> hideMarkers: function(index) { var me = this, count = me.markerGroup &amp;&amp; me.markerGroup.getCount() || 0, i = index || 0; for (; i &lt; count; i++) { me.markerGroup.getAt(i).hide(true); } }, <span id='Ext-chart-series-Radar-method-getAxesForXAndYFields'> // @private return the radial axis as yAxis (there is no xAxis). </span> // Required by the base class 'Ext.chart.axis.Axis'. getAxesForXAndYFields: function() { var me = this, chart = me.chart, axes = chart.axes, axis = [].concat(axes &amp;&amp; axes.get(0)); return { yAxis: axis }; } }); </pre> </body> </html>
wp-content/plugins/foliopress-wysiwyg/fckeditor/editor/plugins/kfm/plugins/codepress/codepress-0.9.6/index.html
seanhennig/chor
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>CodePress - Real Time Syntax Highlighting Editor written in JavaScript</title> <style> body {color:#000;background-color:white;font:15px georgia, "Lucida Grande", "Lucida Sans Unicode", Arial, Helvetica, sans-serif; letter-spacing:0.01em;margin:15px;} p {margin:0 0 15px 0;} a,a:visited {color:#7f0055;} select {background:#ffffe1;} button {margin-top:5px;} button.actions {width:171px;font-family:arial;} h1 {color:#7f0055;margin:0;padding:0;font-size:42px;font-weight:normal;} h1 a {text-decoration:none;} h2 {margin:0;} h2 a {text-decoration:none;font-weight:normal;font-size:22px;color:black !important;} h3 {font-size:20px;font-weight:normal;padding:0;margin:25px 0 5px 0;color:#7f0055;font-weight:bold;border-bottom:2px dotted #d8d8d8;} h4 {font-size:18px;font-weight:normal;z-index:0;} code {color:#0080c0;font-size:13px;font-weight:bold;} ol, ul {padding:5px 0 5px 25px;margin:0;} ol li, ul li {margin:8px 0 8px 0;} #logo {text-align:center;background-color:#d6d6d6;padding:10px;-moz-border-radius:5px;border:1px solid silver;} #container {width:700px;margin:20px auto;padding:25px;border:3px solid #d9d9d9;-moz-border-radius:10px;background:#f8f8f8;} #languages {margin:5px 0;} #menu {width:100%;background:#7f0055;-moz-border-radius:4px;} #menu a {font:bold 17px georgia;color:white;padding:4px;display:block;border-left:1px solid white;text-align:center;text-decoration:none;} #menu a:hover {background:#b9669e;} .hidden-code {display:none;} .copycode {border:1px dotted gray;padding:10px;background:white;font-family:monospace;color:gray} </style> </head> <body> <div id="container"> <div id="logo"> <h1><a href="http://codepress.org/">CodePress</a></h1> <h2><a href="http://codepress.org/">Online Real Time Syntax Highlighting Editor</a></h2> </div> <br /> <table cellpadding="0" cellspacing="0" id="menu"> <tr> <td> <a href="http://www.codepress.org/index.php">Home/Download</a> </td> <td> <a href="http://www.codepress.org/install.php">&nbsp;&nbsp;Install&nbsp;&nbsp;</a> </td> <td> <a href="http://www.codepress.org/to-do.php">&nbsp;&nbsp;To-do&nbsp;&nbsp;</a> </td> <td> <a href="http://www.codepress.org/about.php" id="about">&nbsp;&nbsp;About&nbsp;&nbsp;</a> </td> </tr> </table> <h4> CodePress is web-based source code editor with syntax highlighting written in JavaScript that colors text in real time while it's being typed in the browser. </h4> <p> Go to <strong><a href="http://codepress.org/">http://codepress.org/</a></strong> for updates. </p> <h3>Demo</h3> <div id="languages"> <em>choose example in:</em> <button onclick="cp1.edit('cp-php','php')">PHP</button> <button onclick="cp1.edit('cp-javascript','javascript')">JavaScript</button> <button onclick="cp1.edit('cp-java','java')">Java</button> <button onclick="cp1.edit('cp-perl','perl')">Perl</button> <button onclick="cp1.edit('cp-sql','sql')">SQL</button> <button onclick="cp1.edit('cp-html','html')">HTML</button> <button onclick="cp1.edit('cp-css','css')">CSS</button> </div> <textarea id="cp1" class="codepress php" style="width:700px;height:300px;" wrap="off"> <?php // Very simple implementation of server side script if(isset($_GET['file'])) { $file = basename($_GET['file']); $full_file = $path['server'].'/'.$path['webdocs'].'/'.$path['files']."/".$file; if(file_exists($full_file)) { $code = file_get_contents($full_file); $code = preg_replace("/>/","&amp;gt;",$code); $code = preg_replace("/</","&amp;lt;",$code); $language = getLanguage($file); } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>CodePress - Real Time Syntax Highlighting Editor written in JavaScript</title> <link type="text/css" href="languages/codepress-<?=$language?>.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="codepress.js"></script> <script type="text/javascript"> CodePress.language = '<?=$language?>'; </script> </head> <body id="ffedt"><pre id="ieedt"><?=$code?></pre></body> </html> </textarea> <br /><br /> <textarea id="codepress2" class="codepress javascript linenumbers-off" style="width:700px;height:200px;" wrap="off"> //set language this.setLanguage = function() { if(arguments[0]) { language = (typeof(Content.languages[arguments[0]])!='undefined') ? arguments[0] : this.setLanguage(); cpLanguage.innerHTML = Content.languages[language].name; if(cpBody.document.designMode=='on') cpBody.document.designMode = 'off'; CodePress.loadScript(cpBody.document, '../languages/'+language+'.js', function () { cpBody.CodePress.syntaxHighlight('init'); }) cpBody.document.getElementById('cp-lang-style').href = '../languages/'+language+'.css'; this.hideMenu(); } else { var extension = filename.replace(/.*\.([^\.]+)$/,'$1'); var aux = false; for(lang in Content.languages) { extensions = ','+Content.languages[lang].extensions+','; if(extensions.match(','+extension+',')) aux = lang; } language = (aux) ? aux : 'generic'; } } </textarea> <p> <button class="actions" onclick="alert(codepress2.getCode())">get code from editor</button> <button class="actions" onclick="codepress2.toggleEditor()">turn on/off CodePress</button> <button class="actions" onclick="codepress2.toggleLineNumbers()">show/hide line numbers</button> <button class="actions" onclick="codepress2.toggleAutoComplete()">turn on/off auto-complete</button> <button class="actions" onclick="codepress2.toggleReadOnly()">turn on/off read only</button> </p> <h3>Installation</h3> <ol> <li> <p> <a href="http://codepress.org/">Download</a> and uncompress CodePress under a directory inside your webserver.<br> Example:<strong> http://yourserver/codepress/</strong><br /> Since CodePress is pure JavaScript and HTML, you can also test it without a webserver. </p> </li> <li> <p> Insert CodePress script somewhere in your page inside the <code>&lt;head&gt;</code> or above the <code>&lt;/body&gt;</code> tag. </p> <p class="copycode"> &lt;script src="/codepress/codepress.js" type="text/javascript"&gt;&lt;/script&gt; </p> </li> <li> <p> Add the <code>&lt;textarea&gt;</code> tag to the place on your page you want CodePress to appear. CodePress will inherit the width and height of your textarea. When the page loads, it will automatically replace your textarea with a CodePress window. </p> <p class="copycode"> &lt;textarea id="myCpWindow" class="codepress javascript linenumbers-off"&gt;<br /> &nbsp;&nbsp;&nbsp;// your code here<br /> &lt;/textarea&gt; </p> <ul> <li> The <code>javascript</code> portion of the class="" means that the language being edited is JavaScript. </li> <li> The <code>codepress</code> portion of the class="" is mandatory and indicates a textarea to be replaced for a CodePress window. </li> <li> Other class options are <code>linenumbers-off</code>, <code>autocomplete-off</code> and <code>readonly-on</code>. </li> <li> Careful not to use the same id for two different CodePress windows (<code>&lt;textarea id="<strong>xx</strong>"...&gt;</code>) </li> </ul> </li> </ol> <h3>You also can...</h3> <ol> <li> Open/edit code from a different textarea.<br /> Example: <code>textarea_id.edit('other_textarea_id','language')</code><br> </li> <li> Get code from CodePress window.<br /> Example: <code>textarea_id.getCode()</code><br> </li> <li> Turn on/off CodePress editor and return to the regular textarea.<br /> Example: <code>textarea_id.toggleEditor()</code><br> </li> <li> Turn on/off line numbers.<br /> Example: <code>textarea_id.toggleLineNumbers()</code><br> </li> <li> Turn on/off read only.<br /> Example: <code>textarea_id.toggleReadOnly()</code><br> </li> <li> Turn on/off auto-complete.<br /> Example: <code>textarea_id.toggleAutoComplete()</code><br> </li> </ol> <!-- p> You may want to use [id].getCode() to get the content code from CodePress window and save it to your server since CodePress only edit files and do not save them. </p> <p> You may also want to open files from server. You'll have to write a server side script and replace the JavaScript call on codepress.js from codepress.html to codepress.php (if your server side language is PHP, of course). </p --> <h3>License</h3> <p> CodePress is distributed under the <a href="http://www.opensource.org/licenses/lgpl-license.php">LGPL</a>. If your software is <a href="http://www.gnu.org/philosophy/license-list.html#GPLCompatibleLicenses">compatible</a> with this licence or it is under <a href="http://creativecommons.org/">Creative Commons</a>, you can use it as you want. Just keep the credits somewhere around. </p> </div><!--/container--> <!-- hidden codes for loading --> <textarea id="cp-php" class="hidden-code"> <?php // Very simple implementation of server side script if(isset($_GET['file'])) { $file = basename($_GET['file']); $full_file = $path['server'].'/'.$path['webdocs'].'/'.$path['files']."/".$file; if(file_exists($full_file)) { $code = file_get_contents($full_file); $code = preg_replace("/>/","&amp;gt;",$code); $code = preg_replace("/</","&amp;lt;",$code); $language = getLanguage($file); } } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>CodePress - Real Time Syntax Highlighting Editor written in JavaScript</title> <link type="text/css" href="languages/codepress-<?=$language?>.css" rel="stylesheet" id="cp-lang-style" /> <script type="text/javascript" src="codepress.js"></script> <script type="text/javascript"> CodePress.language = '<?=$language?>'; </script> </head> <body id="ffedt"><pre id="ieedt"><?=$code?></pre></body> </html> </textarea> <textarea id="cp-javascript" class="hidden-code"> CodePress = function(obj) { var self = document.createElement('iframe'); self.textarea = obj; self.textarea.disabled = true; self.style.height = self.textarea.clientHeight +'px'; self.style.width = self.textarea.clientWidth +'px'; self.initialize = function() { self.editor = self.contentWindow.CodePress; self.editor.body = self.contentWindow.document.getElementsByTagName('body')[0]; self.editor.setCode(self.textarea.value); self.editor.syntaxHighlight('init'); } self.edit = function(id,language) { self.language = (language) ? language : self.textarea.className.replace(/ ?codepress ?/,''); self.src = cpPath+'modules/codepress.html?engine='+self.getEngine()+'&language='+self.language; if(self.attachEvent) self.attachEvent('onload',self.initialize); else self.addEventListener('load',self.initialize,false); } } </textarea> <textarea id="cp-autoit" class="hidden-code"> #include IsNumber(15) @Macro ;comment $var = "string" </textarea> <textarea id="cp-java" class="hidden-code"> import java.io.FileFilter; import java.io.IOException; import java.io.PrintWriter; /** * Project ECCO - File manager class * @author Fernando M.A.d.S. */ public class FileManager extends HttpServlet { private static final long serialVersionUID = 1L; private static String login = "feanndor"; // session var should come here private static String usersPath = System.getProperty("user.dir")+File.separator+"htdocs"+File.separator+"ecco"+File.separator+"users"+File.separator; private static File dir = new File(usersPath+login+File.separator); static boolean existDirectories = false; static int isDirectory = 0; public FileFilter filterFiles(File dir) { return (new FileFilter() { public boolean accept(File pathname) { return !(pathname.isDirectory()); } }); } } </textarea> <textarea id="cp-perl" class="hidden-code"> #!/usr/bin/perl # The first line of the script envokes Perl # Scalar variables $var1 = "Hello World"; $var2 = 14.6; # Array variables @arr1 = ("zero","one","two","three","four"); # Hash variable, or associative array %hash1 = ("one","Monday","two", "Tuesday","three", "Wednesday","four","Thursday"); # Some simple printing print $var1; # Subroutine sub test() { print "ok"; } </textarea> <textarea id="cp-sql" class="hidden-code"> -- -- simple select example -- SELECT * FROM books WHERE price > 100.00 and price < 150.00 ORDER BY title SELECT books.title, count(*) AS Authors FROM books JOIN book_authors ON books.book_number = book_authors.book_number GROUP BY books.title -- insert, update and delete examples INSERT INTO my_table (field1, field2, field3) VALUES ('test', 'N', NULL); BEGIN WORK; UPDATE inventory SET quantity = quantity - 3 WHERE item = 'pants'; COMMIT; </textarea> <textarea id="cp-html" class="hidden-code"> <html> <head> <title>CodePress - Online Real Time Syntax Highlighting Editor</title> <style type="text/css"> @import url(styles.css); </style> <script type="text/javascript"> function getCode() { alert(textWithoutHighlighting); } </script> </head> <body> <div id="logo"> <h1><a href="http://codepress.org/">CodePress</a></h1> <h2>Online Real Time Syntax Highlighting Editor</h2> <img src="testimage.gif" /> </div> <div id="languages"> <em>choose language:</em> <button onclick="edit('codepress.php',this)" id="default">PHP</button> <button onclick="edit('FileManager.java',this)">Java</button> </div> </body> </html> </textarea> <textarea id="cp-css" class="hidden-code"> /* CSS comment */ body { color:#000; background-color:white; font:15px Georgia, "Lucida Grande", Arial, sans-serif; letter-spacing:0.01em; margin:15px; } p { margin:0 0 15px 0; } a,a:visited { color:#7f0055; } select { background:#ffffe1; } h1 { color:#7f0055; margin:0; padding:0; font-size:42px; } </textarea> <script src="codepress.js" type="text/javascript"></script> </body> </html>
hue-3.8.1-bluemix/desktop/core/ext-py/lxml/doc/html/api/lxml.etree._XSLTProcessingInstruction-class.html
vmanoria/bluemix-hue-filebrowser
<?xml version="1.0" encoding="ascii"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>lxml.etree._XSLTProcessingInstruction</title> <link rel="stylesheet" href="epydoc.css" type="text/css" /> <script type="text/javascript" src="epydoc.js"></script> </head> <body bgcolor="white" text="black" link="blue" vlink="#204080" alink="#204080"> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="lxml-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a class="navbar" target="_top" href="http://codespeak.net/lxml/">lxml API</a></th> </tr></table></th> </tr> </table> <table width="100%" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="100%"> <span class="breadcrumbs"> <a href="lxml-module.html">Package&nbsp;lxml</a> :: <a href="lxml.etree-module.html">Module&nbsp;etree</a> :: Class&nbsp;_XSLTProcessingInstruction </span> </td> <td> <table cellpadding="0" cellspacing="0"> <!-- hide/show private --> <tr><td align="right"><span class="options">[<a href="javascript:void(0);" class="privatelink" onclick="toggle_private();">hide&nbsp;private</a>]</span></td></tr> <tr><td align="right"><span class="options" >[<a href="frames.html" target="_top">frames</a >]&nbsp;|&nbsp;<a href="lxml.etree._XSLTProcessingInstruction-class.html" target="_top">no&nbsp;frames</a>]</span></td></tr> </table> </td> </tr> </table> <!-- ==================== CLASS DESCRIPTION ==================== --> <h1 class="epydoc">Class _XSLTProcessingInstruction</h1><p class="nomargin-top"></p> <pre class="base-tree"> object --+ | <a href="lxml.etree._Element-class.html" onclick="show_private();">_Element</a> --+ | <a href="lxml.etree.__ContentOnlyElement-class.html" onclick="show_private();">__ContentOnlyElement</a> --+ | <a href="lxml.etree._ProcessingInstruction-class.html" onclick="show_private();">_ProcessingInstruction</a> --+ | <a href="lxml.etree.PIBase-class.html">PIBase</a> --+ | <strong class="uidshort">_XSLTProcessingInstruction</strong> </pre> <hr /> <!-- ==================== INSTANCE METHODS ==================== --> <a name="section-InstanceMethods"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Instance Methods</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-InstanceMethods" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">a new object with type S, a subtype of T</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="lxml.etree._XSLTProcessingInstruction-class.html#__new__" class="summary-sig-name">__new__</a>(<span class="summary-sig-arg">T</span>, <span class="summary-sig-arg">S</span>, <span class="summary-sig-arg">...</span>)</span></td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="lxml.etree._XSLTProcessingInstruction-class.html#get" class="summary-sig-name">get</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">key</span>, <span class="summary-sig-arg">default</span>=<span class="summary-sig-default">None</span>)</span><br /> Gets an element attribute.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="lxml.etree._XSLTProcessingInstruction-class.html#parseXSL" class="summary-sig-name">parseXSL</a>(<span class="summary-sig-arg">...</span>)</span><br /> Try to parse the stylesheet referenced by this PI and return an ElementTree for it.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td width="15%" align="right" valign="top" class="summary"> <span class="summary-type">&nbsp;</span> </td><td class="summary"> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr> <td><span class="summary-sig"><a href="lxml.etree._XSLTProcessingInstruction-class.html#set" class="summary-sig-name">set</a>(<span class="summary-sig-arg">self</span>, <span class="summary-sig-arg">key</span>, <span class="summary-sig-arg">value</span>)</span><br /> Sets an element attribute.</td> <td align="right" valign="top"> </td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="lxml.etree._ProcessingInstruction-class.html" onclick="show_private();">_ProcessingInstruction</a></code></b>: <code><a href="lxml.etree._ProcessingInstruction-class.html#__repr__">__repr__</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="lxml.etree.__ContentOnlyElement-class.html" onclick="show_private();">__ContentOnlyElement</a></code></b>: <code><a href="lxml.etree.__ContentOnlyElement-class.html#__delitem__">__delitem__</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#__getitem__">__getitem__</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#__len__">__len__</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#__setitem__">__setitem__</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#append">append</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#insert">insert</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#items">items</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#keys">keys</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#values">values</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="lxml.etree._Element-class.html" onclick="show_private();">_Element</a></code></b>: <code><a href="lxml.etree._Element-class.html#__contains__">__contains__</a></code>, <code><a href="lxml.etree._Element-class.html#__copy__">__copy__</a></code>, <code><a href="lxml.etree._Element-class.html#__deepcopy__">__deepcopy__</a></code>, <code><a href="lxml.etree._Element-class.html#__iter__">__iter__</a></code>, <code><a href="lxml.etree._Element-class.html#__nonzero__">__nonzero__</a></code>, <code><a href="lxml.etree._Element-class.html#__reversed__">__reversed__</a></code>, <code><a href="lxml.etree._Element-class.html#addnext">addnext</a></code>, <code><a href="lxml.etree._Element-class.html#addprevious">addprevious</a></code>, <code><a href="lxml.etree._Element-class.html#clear">clear</a></code>, <code><a href="lxml.etree._Element-class.html#extend">extend</a></code>, <code><a href="lxml.etree._Element-class.html#find">find</a></code>, <code><a href="lxml.etree._Element-class.html#findall">findall</a></code>, <code><a href="lxml.etree._Element-class.html#findtext">findtext</a></code>, <code><a href="lxml.etree._Element-class.html#getchildren">getchildren</a></code>, <code><a href="lxml.etree._Element-class.html#getiterator">getiterator</a></code>, <code><a href="lxml.etree._Element-class.html#getnext">getnext</a></code>, <code><a href="lxml.etree._Element-class.html#getparent">getparent</a></code>, <code><a href="lxml.etree._Element-class.html#getprevious">getprevious</a></code>, <code><a href="lxml.etree._Element-class.html#getroottree">getroottree</a></code>, <code><a href="lxml.etree._Element-class.html#index">index</a></code>, <code><a href="lxml.etree._Element-class.html#iter">iter</a></code>, <code><a href="lxml.etree._Element-class.html#iterancestors">iterancestors</a></code>, <code><a href="lxml.etree._Element-class.html#iterchildren">iterchildren</a></code>, <code><a href="lxml.etree._Element-class.html#iterdescendants">iterdescendants</a></code>, <code><a href="lxml.etree._Element-class.html#iterfind">iterfind</a></code>, <code><a href="lxml.etree._Element-class.html#itersiblings">itersiblings</a></code>, <code><a href="lxml.etree._Element-class.html#itertext">itertext</a></code>, <code><a href="lxml.etree._Element-class.html#makeelement">makeelement</a></code>, <code><a href="lxml.etree._Element-class.html#remove">remove</a></code>, <code><a href="lxml.etree._Element-class.html#replace">replace</a></code>, <code><a href="lxml.etree._Element-class.html#xpath">xpath</a></code> </p> <div class="private"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="lxml.etree._Element-class.html" onclick="show_private();">_Element</a></code></b> (private): <code><a href="lxml.etree._Element-class.html#_init" onclick="show_private();">_init</a></code> </p></div> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__delattr__</code>, <code>__getattribute__</code>, <code>__hash__</code>, <code>__init__</code>, <code>__reduce__</code>, <code>__reduce_ex__</code>, <code>__setattr__</code>, <code>__str__</code> </p> </td> </tr> </table> <!-- ==================== PROPERTIES ==================== --> <a name="section-Properties"></a> <table class="summary" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Properties</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-Properties" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> <tr> <td colspan="2" class="summary"> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="lxml.etree._ProcessingInstruction-class.html" onclick="show_private();">_ProcessingInstruction</a></code></b>: <code><a href="lxml.etree._ProcessingInstruction-class.html#tag">tag</a></code>, <code><a href="lxml.etree._ProcessingInstruction-class.html#target">target</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="lxml.etree.__ContentOnlyElement-class.html" onclick="show_private();">__ContentOnlyElement</a></code></b>: <code><a href="lxml.etree.__ContentOnlyElement-class.html#attrib">attrib</a></code>, <code><a href="lxml.etree.__ContentOnlyElement-class.html#text">text</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code><a href="lxml.etree._Element-class.html" onclick="show_private();">_Element</a></code></b>: <code><a href="lxml.etree._Element-class.html#base">base</a></code>, <code><a href="lxml.etree._Element-class.html#nsmap">nsmap</a></code>, <code><a href="lxml.etree._Element-class.html#prefix">prefix</a></code>, <code><a href="lxml.etree._Element-class.html#sourceline">sourceline</a></code>, <code><a href="lxml.etree._Element-class.html#tail">tail</a></code> </p> <p class="indent-wrapped-lines"><b>Inherited from <code>object</code></b>: <code>__class__</code> </p> </td> </tr> </table> <!-- ==================== METHOD DETAILS ==================== --> <a name="section-MethodDetails"></a> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr bgcolor="#70b0f0" class="table-header"> <td colspan="2" class="table-header"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr valign="top"> <td align="left"><span class="table-header">Method Details</span></td> <td align="right" valign="top" ><span class="options">[<a href="#section-MethodDetails" class="privatelink" onclick="toggle_private();" >hide private</a>]</span></td> </tr> </table> </td> </tr> </table> <a name="__new__"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">__new__</span>(<span class="sig-arg">T</span>, <span class="sig-arg">S</span>, <span class="sig-arg">...</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <dl class="fields"> <dt>Returns: a new object with type S, a subtype of T</dt> <dt>Overrides: object.__new__ </dt> </dl> </td></tr></table> </div> <a name="get"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">get</span>(<span class="sig-arg">self</span>, <span class="sig-arg">key</span>, <span class="sig-arg">default</span>=<span class="sig-default">None</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> Gets an element attribute. <dl class="fields"> <dt>Overrides: <a href="lxml.etree._Element-class.html#get">_Element.get</a> <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <a name="parseXSL"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">parseXSL</span>(<span class="sig-arg">...</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> <p>Try to parse the stylesheet referenced by this PI and return an ElementTree for it. If the stylesheet is embedded in the same document (referenced via xml:id), find and return an ElementTree for the stylesheet Element.</p> <p>The optional <tt class="rst-docutils literal"><span class="pre">parser</span></tt> keyword argument can be passed to specify the parser used to read from external stylesheet URLs.</p> <dl class="fields"> </dl> </td></tr></table> </div> <a name="set"></a> <div> <table class="details" border="1" cellpadding="3" cellspacing="0" width="100%" bgcolor="white"> <tr><td> <table width="100%" cellpadding="0" cellspacing="0" border="0"> <tr valign="top"><td> <h3 class="epydoc"><span class="sig"><span class="sig-name">set</span>(<span class="sig-arg">self</span>, <span class="sig-arg">key</span>, <span class="sig-arg">value</span>)</span> </h3> </td><td align="right" valign="top" >&nbsp; </td> </tr></table> Sets an element attribute. <dl class="fields"> <dt>Overrides: <a href="lxml.etree._Element-class.html#set">_Element.set</a> <dd><em class="note">(inherited documentation)</em></dd> </dt> </dl> </td></tr></table> </div> <br /> <!-- ==================== NAVIGATION BAR ==================== --> <table class="navbar" border="0" width="100%" cellpadding="0" bgcolor="#a0c0ff" cellspacing="0"> <tr valign="middle"> <!-- Home link --> <th>&nbsp;&nbsp;&nbsp;<a href="lxml-module.html">Home</a>&nbsp;&nbsp;&nbsp;</th> <!-- Tree link --> <th>&nbsp;&nbsp;&nbsp;<a href="module-tree.html">Trees</a>&nbsp;&nbsp;&nbsp;</th> <!-- Index link --> <th>&nbsp;&nbsp;&nbsp;<a href="identifier-index.html">Indices</a>&nbsp;&nbsp;&nbsp;</th> <!-- Help link --> <th>&nbsp;&nbsp;&nbsp;<a href="help.html">Help</a>&nbsp;&nbsp;&nbsp;</th> <!-- Project homepage --> <th class="navbar" align="right" width="100%"> <table border="0" cellpadding="0" cellspacing="0"> <tr><th class="navbar" align="center" ><a class="navbar" target="_top" href="http://codespeak.net/lxml/">lxml API</a></th> </tr></table></th> </tr> </table> <table border="0" cellpadding="0" cellspacing="0" width="100%%"> <tr> <td align="left" class="footer"> Generated by Epydoc 3.0 on Sun Jun 21 09:44:39 2009 </td> <td align="right" class="footer"> <a target="mainFrame" href="http://epydoc.sourceforge.net" >http://epydoc.sourceforge.net</a> </td> </tr> </table> <script type="text/javascript"> <!-- // Private objects are initially displayed (because if // javascript is turned off then we want them to be // visible); but by default, we want to hide them. So hide // them unless we have a cookie that says to show them. checkCookie(); // --> </script> </body> </html>
templates/form.html
grondin-florian/ptp_VIP360
<!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <!-- Meta, title, CSS, favicons, etc. --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Gentelella Alela! | </title> <!-- Bootstrap --> <link href="../vendors/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet"> <!-- Font Awesome --> <link href="../vendors/font-awesome/css/font-awesome.min.css" rel="stylesheet"> <!-- NProgress --> <link href="../vendors/nprogress/nprogress.css" rel="stylesheet"> <!-- iCheck --> <link href="../vendors/iCheck/skins/flat/green.css" rel="stylesheet"> <!-- bootstrap-wysiwyg --> <link href="../vendors/google-code-prettify/bin/prettify.min.css" rel="stylesheet"> <!-- Select2 --> <link href="../vendors/select2/dist/css/select2.min.css" rel="stylesheet"> <!-- Switchery --> <link href="../vendors/switchery/dist/switchery.min.css" rel="stylesheet"> <!-- starrr --> <link href="../vendors/starrr/dist/starrr.css" rel="stylesheet"> <!-- bootstrap-daterangepicker --> <link href="../vendors/bootstrap-daterangepicker/daterangepicker.css" rel="stylesheet"> <!-- Custom Theme Style --> <link href="../build/css/custom.min.css" rel="stylesheet"> </head> <body class="nav-md"> <div class="container body"> <div class="main_container"> <div class="col-md-3 left_col"> <div class="left_col scroll-view"> <div class="navbar nav_title" style="border: 0;"> <a href="index.html" class="site_title"><i class="fa fa-paw"></i> <span>Gentelella Alela!</span></a> </div> <div class="clearfix"></div> <!-- menu profile quick info --> <div class="profile clearfix"> <div class="profile_pic"> <img src="images/img.jpg" alt="..." class="img-circle profile_img"> </div> <div class="profile_info"> <span>Welcome,</span> <h2>John Doe</h2> </div> </div> <!-- /menu profile quick info --> <br /> <!-- sidebar menu --> <div id="sidebar-menu" class="main_menu_side hidden-print main_menu"> <div class="menu_section"> <h3>General</h3> <ul class="nav side-menu"> <li><a><i class="fa fa-home"></i> Home <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="index.html">Dashboard</a></li> <li><a href="index2.html">Dashboard2</a></li> <li><a href="index3.html">Dashboard3</a></li> </ul> </li> <li><a><i class="fa fa-edit"></i> Forms <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="form.html">General Form</a></li> <li><a href="form_advanced.html">Advanced Components</a></li> <li><a href="form_validation.html">Form Validation</a></li> <li><a href="form_wizards.html">Form Wizard</a></li> <li><a href="form_upload.html">Form Upload</a></li> <li><a href="form_buttons.html">Form Buttons</a></li> </ul> </li> <li><a><i class="fa fa-desktop"></i> UI Elements <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="general_elements.html">General Elements</a></li> <li><a href="media_gallery.html">Media Gallery</a></li> <li><a href="typography.html">Typography</a></li> <li><a href="icons.html">Icons</a></li> <li><a href="glyphicons.html">Glyphicons</a></li> <li><a href="widgets.html">Widgets</a></li> <li><a href="invoice.html">Invoice</a></li> <li><a href="inbox.html">Inbox</a></li> <li><a href="calendar.html">Calendar</a></li> </ul> </li> <li><a><i class="fa fa-table"></i> Tables <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="tables.html">Tables</a></li> <li><a href="tables_dynamic.html">Table Dynamic</a></li> </ul> </li> <li><a><i class="fa fa-bar-chart-o"></i> Data Presentation <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="chartjs.html">Chart JS</a></li> <li><a href="chartjs2.html">Chart JS2</a></li> <li><a href="morisjs.html">Moris JS</a></li> <li><a href="echarts.html">ECharts</a></li> <li><a href="other_charts.html">Other Charts</a></li> </ul> </li> <li><a><i class="fa fa-clone"></i>Layouts <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="fixed_sidebar.html">Fixed Sidebar</a></li> <li><a href="fixed_footer.html">Fixed Footer</a></li> </ul> </li> </ul> </div> <div class="menu_section"> <h3>Live On</h3> <ul class="nav side-menu"> <li><a><i class="fa fa-bug"></i> Additional Pages <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="e_commerce.html">E-commerce</a></li> <li><a href="projects.html">Projects</a></li> <li><a href="project_detail.html">Project Detail</a></li> <li><a href="contacts.html">Contacts</a></li> <li><a href="profile.html">Profile</a></li> </ul> </li> <li><a><i class="fa fa-windows"></i> Extras <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="page_403.html">403 Error</a></li> <li><a href="page_404.html">404 Error</a></li> <li><a href="page_500.html">500 Error</a></li> <li><a href="plain_page.html">Plain Page</a></li> <li><a href="login.html">Login Page</a></li> <li><a href="pricing_tables.html">Pricing Tables</a></li> </ul> </li> <li><a><i class="fa fa-sitemap"></i> Multilevel Menu <span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li><a href="#level1_1">Level One</a> <li><a>Level One<span class="fa fa-chevron-down"></span></a> <ul class="nav child_menu"> <li class="sub_menu"><a href="level2.html">Level Two</a> </li> <li><a href="#level2_1">Level Two</a> </li> <li><a href="#level2_2">Level Two</a> </li> </ul> </li> <li><a href="#level1_2">Level One</a> </li> </ul> </li> <li><a href="javascript:void(0)"><i class="fa fa-laptop"></i> Landing Page <span class="label label-success pull-right">Coming Soon</span></a></li> </ul> </div> </div> <!-- /sidebar menu --> <!-- /menu footer buttons --> <div class="sidebar-footer hidden-small"> <a data-toggle="tooltip" data-placement="top" title="Settings"> <span class="glyphicon glyphicon-cog" aria-hidden="true"></span> </a> <a data-toggle="tooltip" data-placement="top" title="FullScreen"> <span class="glyphicon glyphicon-fullscreen" aria-hidden="true"></span> </a> <a data-toggle="tooltip" data-placement="top" title="Lock"> <span class="glyphicon glyphicon-eye-close" aria-hidden="true"></span> </a> <a data-toggle="tooltip" data-placement="top" title="Logout" href="login.html"> <span class="glyphicon glyphicon-off" aria-hidden="true"></span> </a> </div> <!-- /menu footer buttons --> </div> </div> <!-- top navigation --> <div class="top_nav"> <div class="nav_menu"> <nav> <div class="nav toggle"> <a id="menu_toggle"><i class="fa fa-bars"></i></a> </div> <ul class="nav navbar-nav navbar-right"> <li class=""> <a href="javascript:;" class="user-profile dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> <img src="images/img.jpg" alt="">John Doe <span class=" fa fa-angle-down"></span> </a> <ul class="dropdown-menu dropdown-usermenu pull-right"> <li><a href="javascript:;"> Profile</a></li> <li> <a href="javascript:;"> <span class="badge bg-red pull-right">50%</span> <span>Settings</span> </a> </li> <li><a href="javascript:;">Help</a></li> <li><a href="login.html"><i class="fa fa-sign-out pull-right"></i> Log Out</a></li> </ul> </li> <li role="presentation" class="dropdown"> <a href="javascript:;" class="dropdown-toggle info-number" data-toggle="dropdown" aria-expanded="false"> <i class="fa fa-envelope-o"></i> <span class="badge bg-green">6</span> </a> <ul id="menu1" class="dropdown-menu list-unstyled msg_list" role="menu"> <li> <a> <span class="image"><img src="images/img.jpg" alt="Profile Image" /></span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <a> <span class="image"><img src="images/img.jpg" alt="Profile Image" /></span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <a> <span class="image"><img src="images/img.jpg" alt="Profile Image" /></span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <a> <span class="image"><img src="images/img.jpg" alt="Profile Image" /></span> <span> <span>John Smith</span> <span class="time">3 mins ago</span> </span> <span class="message"> Film festivals used to be do-or-die moments for movie makers. They were where... </span> </a> </li> <li> <div class="text-center"> <a> <strong>See All Alerts</strong> <i class="fa fa-angle-right"></i> </a> </div> </li> </ul> </li> </ul> </nav> </div> </div> <!-- /top navigation --> <!-- page content --> <div class="right_col" role="main"> <div class=""> <div class="page-title"> <div class="title_left"> <h3>Form Elements</h3> </div> <div class="title_right"> <div class="col-md-5 col-sm-5 col-xs-12 form-group pull-right top_search"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search for..."> <span class="input-group-btn"> <button class="btn btn-default" type="button">Go!</button> </span> </div> </div> </div> </div> <div class="clearfix"></div> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12"> <div class="x_panel"> <div class="x_title"> <h2>Form Design <small>different form elements</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <br /> <form id="demo-form2" data-parsley-validate class="form-horizontal form-label-left"> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="first-name">First Name <span class="required">*</span> </label> <div class="col-md-6 col-sm-6 col-xs-12"> <input type="text" id="first-name" required="required" class="form-control col-md-7 col-xs-12"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="last-name">Last Name <span class="required">*</span> </label> <div class="col-md-6 col-sm-6 col-xs-12"> <input type="text" id="last-name" name="last-name" required="required" class="form-control col-md-7 col-xs-12"> </div> </div> <div class="form-group"> <label for="middle-name" class="control-label col-md-3 col-sm-3 col-xs-12">Middle Name / Initial</label> <div class="col-md-6 col-sm-6 col-xs-12"> <input id="middle-name" class="form-control col-md-7 col-xs-12" type="text" name="middle-name"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Gender</label> <div class="col-md-6 col-sm-6 col-xs-12"> <div id="gender" class="btn-group" data-toggle="buttons"> <label class="btn btn-default" data-toggle-class="btn-primary" data-toggle-passive-class="btn-default"> <input type="radio" name="gender" value="male"> &nbsp; Male &nbsp; </label> <label class="btn btn-primary" data-toggle-class="btn-primary" data-toggle-passive-class="btn-default"> <input type="radio" name="gender" value="female"> Female </label> </div> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Date Of Birth <span class="required">*</span> </label> <div class="col-md-6 col-sm-6 col-xs-12"> <input id="birthday" class="date-picker form-control col-md-7 col-xs-12" required="required" type="text"> </div> </div> <div class="ln_solid"></div> <div class="form-group"> <div class="col-md-6 col-sm-6 col-xs-12 col-md-offset-3"> <button class="btn btn-primary" type="button">Cancel</button> <button class="btn btn-primary" type="reset">Reset</button> <button type="submit" class="btn btn-success">Submit</button> </div> </div> </form> </div> </div> </div> </div> <div class="row"> <div class="col-md-6 col-xs-12"> <div class="x_panel"> <div class="x_title"> <h2>Form Design <small>different form elements</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <br /> <form class="form-horizontal form-label-left input_mask"> <div class="col-md-6 col-sm-6 col-xs-12 form-group has-feedback"> <input type="text" class="form-control has-feedback-left" id="inputSuccess2" placeholder="First Name"> <span class="fa fa-user form-control-feedback left" aria-hidden="true"></span> </div> <div class="col-md-6 col-sm-6 col-xs-12 form-group has-feedback"> <input type="text" class="form-control" id="inputSuccess3" placeholder="Last Name"> <span class="fa fa-user form-control-feedback right" aria-hidden="true"></span> </div> <div class="col-md-6 col-sm-6 col-xs-12 form-group has-feedback"> <input type="text" class="form-control has-feedback-left" id="inputSuccess4" placeholder="Email"> <span class="fa fa-envelope form-control-feedback left" aria-hidden="true"></span> </div> <div class="col-md-6 col-sm-6 col-xs-12 form-group has-feedback"> <input type="text" class="form-control" id="inputSuccess5" placeholder="Phone"> <span class="fa fa-phone form-control-feedback right" aria-hidden="true"></span> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Default Input</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="text" class="form-control" placeholder="Default Input"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Disabled Input </label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="text" class="form-control" disabled="disabled" placeholder="Disabled Input"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Read-Only Input</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="text" class="form-control" readonly="readonly" placeholder="Read-Only Input"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Date Of Birth <span class="required">*</span> </label> <div class="col-md-9 col-sm-9 col-xs-12"> <input class="date-picker form-control col-md-7 col-xs-12" required="required" type="text"> </div> </div> <div class="ln_solid"></div> <div class="form-group"> <div class="col-md-9 col-sm-9 col-xs-12 col-md-offset-3"> <button type="button" class="btn btn-primary">Cancel</button> <button class="btn btn-primary" type="reset">Reset</button> <button type="submit" class="btn btn-success">Submit</button> </div> </div> </form> </div> </div> <div class="x_panel"> <div class="x_title"> <h2>Star Rating</h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <h4>Star Ratings<small> Hover and click on a star</small></h4> <div> <div class="starrr stars"></div> You gave a rating of <span class="stars-count">0</span> star(s) </div> <p>Also you can give a default rating by adding attribute data-rating</p> <div class="starrr stars-existing" data-rating='4'></div> You gave a rating of <span class="stars-count-existing">4</span> star(s) </div> </div> <div class="x_panel"> <div class="x_title"> <h2>Registration Form <small>Click to validate</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <!-- start form for validation --> <form id="demo-form" data-parsley-validate> <label for="fullname">Full Name * :</label> <input type="text" id="fullname" class="form-control" name="fullname" required /> <label for="email">Email * :</label> <input type="email" id="email" class="form-control" name="email" data-parsley-trigger="change" required /> <label>Gender *:</label> <p> M: <input type="radio" class="flat" name="gender" id="genderM" value="M" checked="" required /> F: <input type="radio" class="flat" name="gender" id="genderF" value="F" /> </p> <label>Hobbies (2 minimum):</label> <p style="padding: 5px;"> <input type="checkbox" name="hobbies[]" id="hobby1" value="ski" data-parsley-mincheck="2" required class="flat" /> Skiing <br /> <input type="checkbox" name="hobbies[]" id="hobby2" value="run" class="flat" /> Running <br /> <input type="checkbox" name="hobbies[]" id="hobby3" value="eat" class="flat" /> Eating <br /> <input type="checkbox" name="hobbies[]" id="hobby4" value="sleep" class="flat" /> Sleeping <br /> <p> <label for="heard">Heard us by *:</label> <select id="heard" class="form-control" required> <option value="">Choose..</option> <option value="press">Press</option> <option value="net">Internet</option> <option value="mouth">Word of mouth</option> </select> <label for="message">Message (20 chars min, 100 max) :</label> <textarea id="message" required="required" class="form-control" name="message" data-parsley-trigger="keyup" data-parsley-minlength="20" data-parsley-maxlength="100" data-parsley-minlength-message="Come on! You need to enter at least a 20 caracters long comment.." data-parsley-validation-threshold="10"></textarea> <br/> <span class="btn btn-primary">Validate form</span> </form> <!-- end form for validations --> </div> </div> </div> <div class="col-md-6 col-xs-12"> <div class="x_panel"> <div class="x_title"> <h2>Form Basic Elements <small>different form elements</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <br /> <form class="form-horizontal form-label-left"> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Default Input</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="text" class="form-control" placeholder="Default Input"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Disabled Input </label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="text" class="form-control" disabled="disabled" placeholder="Disabled Input"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Read-Only Input</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="text" class="form-control" readonly="readonly" placeholder="Read-Only Input"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Date Of Birth <span class="required">*</span> </label> <div class="col-md-9 col-sm-9 col-xs-12"> <textarea class="form-control" rows="3" placeholder='rows="3"'></textarea> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Password</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="password" class="form-control" value="passwordonetwo"> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">AutoComplete</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input type="text" name="country" id="autocomplete-custom-append" class="form-control col-md-10"/> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Select</label> <div class="col-md-9 col-sm-9 col-xs-12"> <select class="form-control"> <option>Choose option</option> <option>Option one</option> <option>Option two</option> <option>Option three</option> <option>Option four</option> </select> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Select Custom</label> <div class="col-md-9 col-sm-9 col-xs-12"> <select class="select2_single form-control" tabindex="-1"> <option></option> <option value="AK">Alaska</option> <option value="HI">Hawaii</option> <option value="CA">California</option> <option value="NV">Nevada</option> <option value="OR">Oregon</option> <option value="WA">Washington</option> <option value="AZ">Arizona</option> <option value="CO">Colorado</option> <option value="ID">Idaho</option> <option value="MT">Montana</option> <option value="NE">Nebraska</option> <option value="NM">New Mexico</option> <option value="ND">North Dakota</option> <option value="UT">Utah</option> <option value="WY">Wyoming</option> <option value="AR">Arkansas</option> <option value="IL">Illinois</option> <option value="IA">Iowa</option> <option value="KS">Kansas</option> <option value="KY">Kentucky</option> <option value="LA">Louisiana</option> <option value="MN">Minnesota</option> <option value="MS">Mississippi</option> <option value="MO">Missouri</option> <option value="OK">Oklahoma</option> <option value="SD">South Dakota</option> <option value="TX">Texas</option> </select> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Select Grouped</label> <div class="col-md-9 col-sm-9 col-xs-12"> <select class="select2_group form-control"> <optgroup label="Alaskan/Hawaiian Time Zone"> <option value="AK">Alaska</option> <option value="HI">Hawaii</option> </optgroup> <optgroup label="Pacific Time Zone"> <option value="CA">California</option> <option value="NV">Nevada</option> <option value="OR">Oregon</option> <option value="WA">Washington</option> </optgroup> <optgroup label="Mountain Time Zone"> <option value="AZ">Arizona</option> <option value="CO">Colorado</option> <option value="ID">Idaho</option> <option value="MT">Montana</option> <option value="NE">Nebraska</option> <option value="NM">New Mexico</option> <option value="ND">North Dakota</option> <option value="UT">Utah</option> <option value="WY">Wyoming</option> </optgroup> <optgroup label="Central Time Zone"> <option value="AL">Alabama</option> <option value="AR">Arkansas</option> <option value="IL">Illinois</option> <option value="IA">Iowa</option> <option value="KS">Kansas</option> <option value="KY">Kentucky</option> <option value="LA">Louisiana</option> <option value="MN">Minnesota</option> <option value="MS">Mississippi</option> <option value="MO">Missouri</option> <option value="OK">Oklahoma</option> <option value="SD">South Dakota</option> <option value="TX">Texas</option> <option value="TN">Tennessee</option> <option value="WI">Wisconsin</option> </optgroup> <optgroup label="Eastern Time Zone"> <option value="CT">Connecticut</option> <option value="DE">Delaware</option> <option value="FL">Florida</option> <option value="GA">Georgia</option> <option value="IN">Indiana</option> <option value="ME">Maine</option> <option value="MD">Maryland</option> <option value="MA">Massachusetts</option> <option value="MI">Michigan</option> <option value="NH">New Hampshire</option> <option value="NJ">New Jersey</option> <option value="NY">New York</option> <option value="NC">North Carolina</option> <option value="OH">Ohio</option> <option value="PA">Pennsylvania</option> <option value="RI">Rhode Island</option> <option value="SC">South Carolina</option> <option value="VT">Vermont</option> <option value="VA">Virginia</option> <option value="WV">West Virginia</option> </optgroup> </select> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Select Multiple</label> <div class="col-md-9 col-sm-9 col-xs-12"> <select class="select2_multiple form-control" multiple="multiple"> <option>Choose option</option> <option>Option one</option> <option>Option two</option> <option>Option three</option> <option>Option four</option> <option>Option five</option> <option>Option six</option> </select> </div> </div> <div class="control-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Input Tags</label> <div class="col-md-9 col-sm-9 col-xs-12"> <input id="tags_1" type="text" class="tags form-control" value="social, adverts, sales" /> <div id="suggestions-container" style="position: relative; float: left; width: 250px; margin: 10px;"></div> </div> </div> <div class="form-group"> <label class="col-md-3 col-sm-3 col-xs-12 control-label">Checkboxes and radios <br> <small class="text-navy">Normal Bootstrap elements</small> </label> <div class="col-md-9 col-sm-9 col-xs-12"> <div class="checkbox"> <label> <input type="checkbox" value=""> Option one. select more than one options </label> </div> <div class="checkbox"> <label> <input type="checkbox" value=""> Option two. select more than one options </label> </div> <div class="radio"> <label> <input type="radio" checked="" value="option1" id="optionsRadios1" name="optionsRadios"> Option one. only select one option </label> </div> <div class="radio"> <label> <input type="radio" value="option2" id="optionsRadios2" name="optionsRadios"> Option two. only select one option </label> </div> </div> </div> <div class="form-group"> <label class="col-md-3 col-sm-3 col-xs-12 control-label">Checkboxes and radios <br> <small class="text-navy">Normal Bootstrap elements</small> </label> <div class="col-md-9 col-sm-9 col-xs-12"> <div class="checkbox"> <label> <input type="checkbox" class="flat" checked="checked"> Checked </label> </div> <div class="checkbox"> <label> <input type="checkbox" class="flat"> Unchecked </label> </div> <div class="checkbox"> <label> <input type="checkbox" class="flat" disabled="disabled"> Disabled </label> </div> <div class="checkbox"> <label> <input type="checkbox" class="flat" disabled="disabled" checked="checked"> Disabled & checked </label> </div> <div class="radio"> <label> <input type="radio" class="flat" checked name="iCheck"> Checked </label> </div> <div class="radio"> <label> <input type="radio" class="flat" name="iCheck"> Unchecked </label> </div> <div class="radio"> <label> <input type="radio" class="flat" name="iCheck" disabled="disabled"> Disabled </label> </div> <div class="radio"> <label> <input type="radio" class="flat" name="iCheck3" disabled="disabled" checked> Disabled & Checked </label> </div> </div> </div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Switch</label> <div class="col-md-9 col-sm-9 col-xs-12"> <div class=""> <label> <input type="checkbox" class="js-switch" checked /> Checked </label> </div> <div class=""> <label> <input type="checkbox" class="js-switch" /> Unchecked </label> </div> <div class=""> <label> <input type="checkbox" class="js-switch" disabled="disabled" /> Disabled </label> </div> <div class=""> <label> <input type="checkbox" class="js-switch" disabled="disabled" checked="checked" /> Disabled Checked </label> </div> </div> </div> <div class="ln_solid"></div> <div class="form-group"> <div class="col-md-9 col-sm-9 col-xs-12 col-md-offset-3"> <button type="button" class="btn btn-primary">Cancel</button> <button type="reset" class="btn btn-primary">Reset</button> <button type="submit" class="btn btn-success">Submit</button> </div> </div> </form> </div> </div> </div> <div class="col-md-6 col-sm-12 col-xs-12"> <div class="x_panel"> <div class="x_title"> <h2>Form Buttons <small>Sessions</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <form class="form-horizontal form-label-left"> <div class="form-group"> <label class="col-sm-3 control-label">Button addons</label> <div class="col-sm-9"> <div class="input-group"> <span class="input-group-btn"> <button type="button" class="btn btn-primary">Go!</button> </span> <input type="text" class="form-control"> </div> <div class="input-group"> <input type="text" class="form-control"> <span class="input-group-btn"> <button type="button" class="btn btn-primary">Go!</button> </span> </div> </div> </div> <div class="divider-dashed"></div> <div class="form-group"> <label class="col-sm-3 control-label">Button addons</label> <div class="col-sm-9"> <div class="input-group"> <input type="text" class="form-control" aria-label="Text input with dropdown button"> <div class="input-group-btn"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" aria-expanded="false">Action <span class="caret"></span> </button> <ul class="dropdown-menu dropdown-menu-right" role="menu"> <li><a href="#">Action</a> </li> <li><a href="#">Another action</a> </li> <li><a href="#">Something else here</a> </li> <li class="divider"></li> <li><a href="#">Separated link</a> </li> </ul> </div> <!-- /btn-group --> </div> <div class="input-group"> <input type="text" class="form-control"> <span class="input-group-btn"> <button type="button" class="btn btn-primary">Go!</button> </span> </div> </div> </div> </form> </div> </div> </div> </div> <div class="col-md-12 col-sm-12 col-xs-12"> <div class="x_panel"> <div class="x_title"> <h2>Text areas<small>Sessions</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <div id="alerts"></div> <div class="btn-toolbar editor" data-role="editor-toolbar" data-target="#editor-one"> <div class="btn-group"> <a class="btn dropdown-toggle" data-toggle="dropdown" title="Font"><i class="fa fa-font"></i><b class="caret"></b></a> <ul class="dropdown-menu"> </ul> </div> <div class="btn-group"> <a class="btn dropdown-toggle" data-toggle="dropdown" title="Font Size"><i class="fa fa-text-height"></i>&nbsp;<b class="caret"></b></a> <ul class="dropdown-menu"> <li> <a data-edit="fontSize 5"> <p style="font-size:17px">Huge</p> </a> </li> <li> <a data-edit="fontSize 3"> <p style="font-size:14px">Normal</p> </a> </li> <li> <a data-edit="fontSize 1"> <p style="font-size:11px">Small</p> </a> </li> </ul> </div> <div class="btn-group"> <a class="btn" data-edit="bold" title="Bold (Ctrl/Cmd+B)"><i class="fa fa-bold"></i></a> <a class="btn" data-edit="italic" title="Italic (Ctrl/Cmd+I)"><i class="fa fa-italic"></i></a> <a class="btn" data-edit="strikethrough" title="Strikethrough"><i class="fa fa-strikethrough"></i></a> <a class="btn" data-edit="underline" title="Underline (Ctrl/Cmd+U)"><i class="fa fa-underline"></i></a> </div> <div class="btn-group"> <a class="btn" data-edit="insertunorderedlist" title="Bullet list"><i class="fa fa-list-ul"></i></a> <a class="btn" data-edit="insertorderedlist" title="Number list"><i class="fa fa-list-ol"></i></a> <a class="btn" data-edit="outdent" title="Reduce indent (Shift+Tab)"><i class="fa fa-dedent"></i></a> <a class="btn" data-edit="indent" title="Indent (Tab)"><i class="fa fa-indent"></i></a> </div> <div class="btn-group"> <a class="btn" data-edit="justifyleft" title="Align Left (Ctrl/Cmd+L)"><i class="fa fa-align-left"></i></a> <a class="btn" data-edit="justifycenter" title="Center (Ctrl/Cmd+E)"><i class="fa fa-align-center"></i></a> <a class="btn" data-edit="justifyright" title="Align Right (Ctrl/Cmd+R)"><i class="fa fa-align-right"></i></a> <a class="btn" data-edit="justifyfull" title="Justify (Ctrl/Cmd+J)"><i class="fa fa-align-justify"></i></a> </div> <div class="btn-group"> <a class="btn dropdown-toggle" data-toggle="dropdown" title="Hyperlink"><i class="fa fa-link"></i></a> <div class="dropdown-menu input-append"> <input class="span2" placeholder="URL" type="text" data-edit="createLink" /> <button class="btn" type="button">Add</button> </div> <a class="btn" data-edit="unlink" title="Remove Hyperlink"><i class="fa fa-cut"></i></a> </div> <div class="btn-group"> <a class="btn" title="Insert picture (or just drag & drop)" id="pictureBtn"><i class="fa fa-picture-o"></i></a> <input type="file" data-role="magic-overlay" data-target="#pictureBtn" data-edit="insertImage" /> </div> <div class="btn-group"> <a class="btn" data-edit="undo" title="Undo (Ctrl/Cmd+Z)"><i class="fa fa-undo"></i></a> <a class="btn" data-edit="redo" title="Redo (Ctrl/Cmd+Y)"><i class="fa fa-repeat"></i></a> </div> </div> <div id="editor-one" class="editor-wrapper"></div> <textarea name="descr" id="descr" style="display:none;"></textarea> <br /> <div class="ln_solid"></div> <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12">Resizable Text area</label> <div class="col-md-9 col-sm-9 col-xs-12"> <textarea class="resizable_textarea form-control" placeholder="This text area automatically resizes its height as you fill in more text courtesy of autosize-master it out..."></textarea> </div> </div> </div> </div> </div> <div class="x_panel"> <div class="x_title"> <h2>Form Input Grid <small>form input </small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-12" class="form-control"> </div> <div class="col-md-6 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-6" class="form-control"> </div> <div class="col-md-6 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-6" class="form-control"> </div> <div class="col-md-4 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-4" class="form-control"> </div> <div class="col-md-4 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-4" class="form-control"> </div> <div class="col-md-4 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-4" class="form-control"> </div> <div class="col-md-3 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-3" class="form-control"> </div> <div class="col-md-3 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-3" class="form-control"> </div> <div class="col-md-3 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-3" class="form-control"> </div> <div class="col-md-3 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-3" class="form-control"> </div> <div class="col-md-2 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-2" class="form-control"> </div> <div class="col-md-2 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-2" class="form-control"> </div> <div class="col-md-2 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-2" class="form-control"> </div> <div class="col-md-2 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-2" class="form-control"> </div> <div class="col-md-2 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-2" class="form-control"> </div> <div class="col-md-2 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-2" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> <div class="col-md-1 col-sm-12 col-xs-12 form-group"> <input type="text" placeholder=".col-md-1" class="form-control"> </div> </div> </div> </div> <div class="x_panel"> <div class="x_title"> <h2>Form Design <small>different form elements</small></h2> <ul class="nav navbar-right panel_toolbox"> <li><a class="collapse-link"><i class="fa fa-chevron-up"></i></a> </li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-expanded="false"><i class="fa fa-wrench"></i></a> <ul class="dropdown-menu" role="menu"> <li><a href="#">Settings 1</a> </li> <li><a href="#">Settings 2</a> </li> </ul> </li> <li><a class="close-link"><i class="fa fa-close"></i></a> </li> </ul> <div class="clearfix"></div> </div> <div class="x_content"> <br /> <h4>Horizontal labels</h4> <p class="font-gray-dark"> Using the grid system you can control the position of the labels. The form example below has the <b>col-md-10</b> which sets the width to 10/12 and <b>center-margin</b> which centers it. </p> <form class="form-horizontal form-label-left"> <div class="form-group"> <label class="control-label col-md-3" for="first-name">First Name <span class="required">*</span> </label> <div class="col-md-7"> <input type="text" id="first-name2" required="required" class="form-control col-md-7 col-xs-12"> </div> </div> <div class="form-group"> <label class="control-label col-md-3" for="last-name">Last Name <span class="required">*</span> </label> <div class="col-md-7"> <input type="text" id="last-name2" name="last-name" required="required" class="form-control col-md-7 col-xs-12"> </div> </div> </form> <h4>Vertical labels</h4> <p class="font-gray-dark"> For making labels vertical you have two options, either use the apropiate grid <b>.col-</b> class or wrap the form in the <b>form-vertical</b> class. </p> <div class="col-md-8 center-margin"> <form class="form-horizontal form-label-left"> <div class="form-group"> <label>Email address</label> <input type="email" class="form-control" placeholder="Enter email"> </div> <div class="form-group"> <label>Password</label> <input type="password" class="form-control" placeholder="Password"> </div> </form> </div> <h4>Inline Form </h4> <p class="font-gray-dark"> Add .form-inline to your form (which doesn't have to be a <form>) for left-aligned and inline-block controls. </p> <form class="form-inline"> <div class="form-group"> <label for="ex3">Email address</label> <input type="text" id="ex3" class="form-control" placeholder=" "> </div> <div class="form-group"> <label for="ex4">Email address</label> <input type="email" id="ex4" class="form-control" placeholder=" "> </div> <div class="checkbox"> <label> <input type="checkbox"> Remember me </label> </div> <button type="submit" class="btn btn-default">Send invitation</button> </form> </div> </div> </div> </div> <!-- /page content --> <!-- footer content --> <footer> <div class="pull-right"> Gentelella - Bootstrap Admin Template by <a href="https://colorlib.com">Colorlib</a> </div> <div class="clearfix"></div> </footer> <!-- /footer content --> </div> </div> <!-- jQuery --> <script src="../vendors/jquery/dist/jquery.min.js"></script> <!-- Bootstrap --> <script src="../vendors/bootstrap/dist/js/bootstrap.min.js"></script> <!-- FastClick --> <script src="../vendors/fastclick/lib/fastclick.js"></script> <!-- NProgress --> <script src="../vendors/nprogress/nprogress.js"></script> <!-- bootstrap-progressbar --> <script src="../vendors/bootstrap-progressbar/bootstrap-progressbar.min.js"></script> <!-- iCheck --> <script src="../vendors/iCheck/icheck.min.js"></script> <!-- bootstrap-daterangepicker --> <script src="../vendors/moment/min/moment.min.js"></script> <script src="../vendors/bootstrap-daterangepicker/daterangepicker.js"></script> <!-- bootstrap-wysiwyg --> <script src="../vendors/bootstrap-wysiwyg/js/bootstrap-wysiwyg.min.js"></script> <script src="../vendors/jquery.hotkeys/jquery.hotkeys.js"></script> <script src="../vendors/google-code-prettify/src/prettify.js"></script> <!-- jQuery Tags Input --> <script src="../vendors/jquery.tagsinput/src/jquery.tagsinput.js"></script> <!-- Switchery --> <script src="../vendors/switchery/dist/switchery.min.js"></script> <!-- Select2 --> <script src="../vendors/select2/dist/js/select2.full.min.js"></script> <!-- Parsley --> <script src="../vendors/parsleyjs/dist/parsley.min.js"></script> <!-- Autosize --> <script src="../vendors/autosize/dist/autosize.min.js"></script> <!-- jQuery autocomplete --> <script src="../vendors/devbridge-autocomplete/dist/jquery.autocomplete.min.js"></script> <!-- starrr --> <script src="../vendors/starrr/dist/starrr.js"></script> <!-- Custom Theme Scripts --> <script src="../build/js/custom.min.js"></script> </body> </html>
wts/tests/websocket/w3c/017.html
crosswalk-project/web-testing-service
<!doctype html> <title>WebSockets: too few slashes after ws: and wss:</title> <script src=../../resources/testharness.js></script> <script src=../../resources/testharnessreport.js></script> <script src=./constants.js?pipe=sub></script> <div id=log></div> <script> var tests = ['ws:', 'ws:/', 'wss:', 'wss:/']; //Pass condition is to not throw for (var i = 0; i < tests.length; ++i) { test(function(){new WebSocket(tests[i]+location.hostname+'/echo')}, tests[i]); } </script>
web/template_admin/plugins/datatables/extensions/ColReorder/examples/new_init.html
AndrewListat/paydoc
<!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"> <title>ColReorder example - Initialisation using `new`</title> <link rel="stylesheet" type="text/css" href="../../../media/css/jquery.dataTables.css"> <link rel="stylesheet" type="text/css" href="../css/dataTables.colReorder.css"> <link rel="stylesheet" type="text/css" href="../../../examples/resources/syntax/shCore.css"> <link rel="stylesheet" type="text/css" href="../../../examples/resources/demo.css"> <style type="text/css" class="init"> </style> <script type="text/javascript" language="javascript" src="../../../media/js/jquery.js"></script> <script type="text/javascript" language="javascript" src="../../../media/js/jquery.dataTables.js"></script> <script type="text/javascript" language="javascript" src="../js/dataTables.colReorder.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> <script type="text/javascript" language="javascript" class="init"> $(document).ready(function() { var table = $('#example').DataTable(); new $.fn.dataTable.ColReorder( table ); } ); </script> </head> <body class="dt-example"> <div class="container"> <section> <h1>ColReorder example <span>Initialisation using `new`</span></h1> <div class="info"> <p>As well as providing the option to be initialised through the <code>R</code> option of <a href="//datatables.net/reference/option/dom"><code class="option" title="DataTables initialisation option">dom<span>DT</span></code></a>, ColReorder can also be added to a DataTable using direct initialisation - <code>new $.fn.dataTable.ColReorder();</code> as shown in this example.</p> </div> <table id="example" class="display" cellspacing="0" width="100%"> <thead> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </thead> <tfoot> <tr> <th>Name</th> <th>Position</th> <th>Office</th> <th>Age</th> <th>Start date</th> <th>Salary</th> </tr> </tfoot> <tbody> <tr> <td>Tiger Nixon</td> <td>System Architect</td> <td>Edinburgh</td> <td>61</td> <td>2011/04/25</td> <td>$320,800</td> </tr> <tr> <td>Garrett Winters</td> <td>Accountant</td> <td>Tokyo</td> <td>63</td> <td>2011/07/25</td> <td>$170,750</td> </tr> <tr> <td>Ashton Cox</td> <td>Junior Technical Author</td> <td>San Francisco</td> <td>66</td> <td>2009/01/12</td> <td>$86,000</td> </tr> <tr> <td>Cedric Kelly</td> <td>Senior Javascript Developer</td> <td>Edinburgh</td> <td>22</td> <td>2012/03/29</td> <td>$433,060</td> </tr> <tr> <td>Airi Satou</td> <td>Accountant</td> <td>Tokyo</td> <td>33</td> <td>2008/11/28</td> <td>$162,700</td> </tr> <tr> <td>Brielle Williamson</td> <td>Integration Specialist</td> <td>New York</td> <td>61</td> <td>2012/12/02</td> <td>$372,000</td> </tr> <tr> <td>Herrod Chandler</td> <td>Sales Assistant</td> <td>San Francisco</td> <td>59</td> <td>2012/08/06</td> <td>$137,500</td> </tr> <tr> <td>Rhona Davidson</td> <td>Integration Specialist</td> <td>Tokyo</td> <td>55</td> <td>2010/10/14</td> <td>$327,900</td> </tr> <tr> <td>Colleen Hurst</td> <td>Javascript Developer</td> <td>San Francisco</td> <td>39</td> <td>2009/09/15</td> <td>$205,500</td> </tr> <tr> <td>Sonya Frost</td> <td>Software Engineer</td> <td>Edinburgh</td> <td>23</td> <td>2008/12/13</td> <td>$103,600</td> </tr> <tr> <td>Jena Gaines</td> <td>Office Manager</td> <td>London</td> <td>30</td> <td>2008/12/19</td> <td>$90,560</td> </tr> <tr> <td>Quinn Flynn</td> <td>Support Lead</td> <td>Edinburgh</td> <td>22</td> <td>2013/03/03</td> <td>$342,000</td> </tr> <tr> <td>Charde Marshall</td> <td>Regional Director</td> <td>San Francisco</td> <td>36</td> <td>2008/10/16</td> <td>$470,600</td> </tr> <tr> <td>Haley Kennedy</td> <td>Senior Marketing Designer</td> <td>London</td> <td>43</td> <td>2012/12/18</td> <td>$313,500</td> </tr> <tr> <td>Tatyana Fitzpatrick</td> <td>Regional Director</td> <td>London</td> <td>19</td> <td>2010/03/17</td> <td>$385,750</td> </tr> <tr> <td>Michael Silva</td> <td>Marketing Designer</td> <td>London</td> <td>66</td> <td>2012/11/27</td> <td>$198,500</td> </tr> <tr> <td>Paul Byrd</td> <td>Chief Financial Officer (CFO)</td> <td>New York</td> <td>64</td> <td>2010/06/09</td> <td>$725,000</td> </tr> <tr> <td>Gloria Little</td> <td>Systems Administrator</td> <td>New York</td> <td>59</td> <td>2009/04/10</td> <td>$237,500</td> </tr> <tr> <td>Bradley Greer</td> <td>Software Engineer</td> <td>London</td> <td>41</td> <td>2012/10/13</td> <td>$132,000</td> </tr> <tr> <td>Dai Rios</td> <td>Personnel Lead</td> <td>Edinburgh</td> <td>35</td> <td>2012/09/26</td> <td>$217,500</td> </tr> <tr> <td>Jenette Caldwell</td> <td>Development Lead</td> <td>New York</td> <td>30</td> <td>2011/09/03</td> <td>$345,000</td> </tr> <tr> <td>Yuri Berry</td> <td>Chief Marketing Officer (CMO)</td> <td>New York</td> <td>40</td> <td>2009/06/25</td> <td>$675,000</td> </tr> <tr> <td>Caesar Vance</td> <td>Pre-Sales Support</td> <td>New York</td> <td>21</td> <td>2011/12/12</td> <td>$106,450</td> </tr> <tr> <td>Doris Wilder</td> <td>Sales Assistant</td> <td>Sidney</td> <td>23</td> <td>2010/09/20</td> <td>$85,600</td> </tr> <tr> <td>Angelica Ramos</td> <td>Chief Executive Officer (CEO)</td> <td>London</td> <td>47</td> <td>2009/10/09</td> <td>$1,200,000</td> </tr> <tr> <td>Gavin Joyce</td> <td>Developer</td> <td>Edinburgh</td> <td>42</td> <td>2010/12/22</td> <td>$92,575</td> </tr> <tr> <td>Jennifer Chang</td> <td>Regional Director</td> <td>Singapore</td> <td>28</td> <td>2010/11/14</td> <td>$357,650</td> </tr> <tr> <td>Brenden Wagner</td> <td>Software Engineer</td> <td>San Francisco</td> <td>28</td> <td>2011/06/07</td> <td>$206,850</td> </tr> <tr> <td>Fiona Green</td> <td>Chief Operating Officer (COO)</td> <td>San Francisco</td> <td>48</td> <td>2010/03/11</td> <td>$850,000</td> </tr> <tr> <td>Shou Itou</td> <td>Regional Marketing</td> <td>Tokyo</td> <td>20</td> <td>2011/08/14</td> <td>$163,000</td> </tr> <tr> <td>Michelle House</td> <td>Integration Specialist</td> <td>Sidney</td> <td>37</td> <td>2011/06/02</td> <td>$95,400</td> </tr> <tr> <td>Suki Burks</td> <td>Developer</td> <td>London</td> <td>53</td> <td>2009/10/22</td> <td>$114,500</td> </tr> <tr> <td>Prescott Bartlett</td> <td>Technical Author</td> <td>London</td> <td>27</td> <td>2011/05/07</td> <td>$145,000</td> </tr> <tr> <td>Gavin Cortez</td> <td>Team Leader</td> <td>San Francisco</td> <td>22</td> <td>2008/10/26</td> <td>$235,500</td> </tr> <tr> <td>Martena Mccray</td> <td>Post-Sales support</td> <td>Edinburgh</td> <td>46</td> <td>2011/03/09</td> <td>$324,050</td> </tr> <tr> <td>Unity Butler</td> <td>Marketing Designer</td> <td>San Francisco</td> <td>47</td> <td>2009/12/09</td> <td>$85,675</td> </tr> <tr> <td>Howard Hatfield</td> <td>Office Manager</td> <td>San Francisco</td> <td>51</td> <td>2008/12/16</td> <td>$164,500</td> </tr> <tr> <td>Hope Fuentes</td> <td>Secretary</td> <td>San Francisco</td> <td>41</td> <td>2010/02/12</td> <td>$109,850</td> </tr> <tr> <td>Vivian Harrell</td> <td>Financial Controller</td> <td>San Francisco</td> <td>62</td> <td>2009/02/14</td> <td>$452,500</td> </tr> <tr> <td>Timothy Mooney</td> <td>Office Manager</td> <td>London</td> <td>37</td> <td>2008/12/11</td> <td>$136,200</td> </tr> <tr> <td>Jackson Bradshaw</td> <td>Director</td> <td>New York</td> <td>65</td> <td>2008/09/26</td> <td>$645,750</td> </tr> <tr> <td>Olivia Liang</td> <td>Support Engineer</td> <td>Singapore</td> <td>64</td> <td>2011/02/03</td> <td>$234,500</td> </tr> <tr> <td>Bruno Nash</td> <td>Software Engineer</td> <td>London</td> <td>38</td> <td>2011/05/03</td> <td>$163,500</td> </tr> <tr> <td>Sakura Yamamoto</td> <td>Support Engineer</td> <td>Tokyo</td> <td>37</td> <td>2009/08/19</td> <td>$139,575</td> </tr> <tr> <td>Thor Walton</td> <td>Developer</td> <td>New York</td> <td>61</td> <td>2013/08/11</td> <td>$98,540</td> </tr> <tr> <td>Finn Camacho</td> <td>Support Engineer</td> <td>San Francisco</td> <td>47</td> <td>2009/07/07</td> <td>$87,500</td> </tr> <tr> <td>Serge Baldwin</td> <td>Data Coordinator</td> <td>Singapore</td> <td>64</td> <td>2012/04/09</td> <td>$138,575</td> </tr> <tr> <td>Zenaida Frank</td> <td>Software Engineer</td> <td>New York</td> <td>63</td> <td>2010/01/04</td> <td>$125,250</td> </tr> <tr> <td>Zorita Serrano</td> <td>Software Engineer</td> <td>San Francisco</td> <td>56</td> <td>2012/06/01</td> <td>$115,000</td> </tr> <tr> <td>Jennifer Acosta</td> <td>Junior Javascript Developer</td> <td>Edinburgh</td> <td>43</td> <td>2013/02/01</td> <td>$75,650</td> </tr> <tr> <td>Cara Stevens</td> <td>Sales Assistant</td> <td>New York</td> <td>46</td> <td>2011/12/06</td> <td>$145,600</td> </tr> <tr> <td>Hermione Butler</td> <td>Regional Director</td> <td>London</td> <td>47</td> <td>2011/03/21</td> <td>$356,250</td> </tr> <tr> <td>Lael Greer</td> <td>Systems Administrator</td> <td>London</td> <td>21</td> <td>2009/02/27</td> <td>$103,500</td> </tr> <tr> <td>Jonas Alexander</td> <td>Developer</td> <td>San Francisco</td> <td>30</td> <td>2010/07/14</td> <td>$86,500</td> </tr> <tr> <td>Shad Decker</td> <td>Regional Director</td> <td>Edinburgh</td> <td>51</td> <td>2008/11/13</td> <td>$183,000</td> </tr> <tr> <td>Michael Bruce</td> <td>Javascript Developer</td> <td>Singapore</td> <td>29</td> <td>2011/06/27</td> <td>$183,000</td> </tr> <tr> <td>Donna Snider</td> <td>Customer Support</td> <td>New York</td> <td>27</td> <td>2011/01/25</td> <td>$112,000</td> </tr> </tbody> </table> <ul class="tabs"> <li class="active">Javascript</li> <li>HTML</li> <li>CSS</li> <li>Ajax</li> <li>Server-side script</li> </ul> <div class="tabs"> <div class="js"> <p>The Javascript shown below is used to initialise the table shown in this example:</p><code class="multiline language-js">$(document).ready(function() { var table = $('#example').DataTable(); new $.fn.dataTable.ColReorder( table ); } );</code> <p>In addition to the above code, the following Javascript library files are loaded for use in this example:</p> <ul> <li><a href="../../../media/js/jquery.js">../../../media/js/jquery.js</a></li> <li><a href="../../../media/js/jquery.dataTables.js">../../../media/js/jquery.dataTables.js</a></li> <li><a href="../js/dataTables.colReorder.js">../js/dataTables.colReorder.js</a></li> </ul> </div> <div class="table"> <p>The HTML shown below is the raw HTML table element, before it has been enhanced by DataTables:</p> </div> <div class="css"> <div> <p>This example uses a little bit of additional CSS beyond what is loaded from the library files (below), in order to correctly display the table. The additional CSS used is shown below:</p><code class="multiline language-css"></code> </div> <p>The following CSS library files are loaded for use in this example to provide the styling of the table:</p> <ul> <li><a href="../../../media/css/jquery.dataTables.css">../../../media/css/jquery.dataTables.css</a></li> <li><a href="../css/dataTables.colReorder.css">../css/dataTables.colReorder.css</a></li> </ul> </div> <div class="ajax"> <p>This table loads data by Ajax. The latest data that has been loaded is shown below. This data will update automatically as any additional data is loaded.</p> </div> <div class="php"> <p>The script used to perform the server-side processing for this table is shown below. Please note that this is just an example script using PHP. Server-side processing scripts can be written in any language, using <a href="//datatables.net/manual/server-side">the protocol described in the DataTables documentation</a>.</p> </div> </div> </section> </div> <section> <div class="footer"> <div class="gradient"></div> <div class="liner"> <h2>Other examples</h2> <div class="toc"> <div class="toc-group"> <h3><a href="./index.html">Examples</a></h3> <ul class="toc active"> <li><a href="./simple.html">Basic initialisation</a></li> <li class="active"><a href="./new_init.html">Initialisation using `new`</a></li> <li><a href="./alt_insert.html">Alternative insert styling</a></li> <li><a href="./realtime.html">Realtime updating</a></li> <li><a href="./state_save.html">State saving</a></li> <li><a href="./scrolling.html">Scrolling table</a></li> <li><a href="./predefined.html">Predefined column ordering</a></li> <li><a href="./reset.html">Reset ordering API</a></li> <li><a href="./colvis.html">ColVis integration</a></li> <li><a href="./fixedcolumns.html">FixedColumns integration</a></li> <li><a href="./fixedheader.html">FixedHeader integration</a></li> <li><a href="./jqueryui.html">jQuery UI styling</a></li> <li><a href="./col_filter.html">Individual column filtering</a></li> <li><a href="./server_side.html">Server-side processing</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-2015<br> DataTables is licensed under the <a href="http://www.datatables.net/mit">MIT license</a>.</p> </div> </div> </div> </section> </body> </html>
tmp/update-extraction-45cbf046/advanced_help/translations/help/nb/why-advanced-help.html
fredeiden/decathlon
Rammeverket <strong>Advanced help</strong> ble konstruert for å erstatte det opprinnelige hjelpesystemet for Drupal, som har flere mangler som gjør det vanskelig å lage ny hjelp, vanskelig å vedlikeholde eksisterende hjelp, og særlig vanskelig å bruke hjelp. The primary goal, then, is to increase the accessibility of help, meaning the ability of both the user and the help text author to access the needed tools to use, create, maintain and translate the help. This system is completely separate from Drupal's <code>hook_help()</code>. In Drupal 6 and 7, it actually co-exists with it; in the future, it is hoped that it will completely replace it allowing <code>hook_help()</code> to be deprecated and removed. Messages added to the top of a page are not really “help”. Often these messages are an introduction to a form or a short blurb telling a user what to do with a particular page. The problem is, these messages are always there, they are easily ignored, and they come before the actual page. In general, when users are learning, they want to see the page first, then ask questions. The reverse order is much less conducive to actually teaching a user how to use something. By allowing help to be available on request, the system conforms more naturally to how most people work. <h2>Advanced help er organisert etter emner</h2> With the <code>hook_help()</code> method, help text is organized by URL path. This is fine if you have help text describing how to use a particular page or what a particular page does, but ultimately is limiting because manuals and documentation are usually grouped by topic, and those topics are determined by the material itself. <strong>Advanced help</strong> allows the documentation author to organize topics as he or she sees fit; the only restriction, really, is that each individual chunk of text needs to stand on its own as a discrete topic. What's more, modules and themes can insert their topics into another's hierarchy. This would allow the Drupal core to create a task based help navigation system which allows modules and themes to insert topics into that navigation fluidly. This allows modules and themes to continue to keep their systems separate, yet integrate into the main system. <h2>Advanced help-emner er behandlet som HTML i egne filer</h2> This separation makes it easy to find and modify. Currently, everything is lumped together in <code>hook_help()</code> in PHP strings that are run through <code>t()</code>, and there is a fair amount of PHP code necessary in this system that actually gets in the way of writing good, explanatory text. In fact, requiring a documentation author to understand PHP at all is a detriment. The idea that documentation writers need to have PHP development as a skill seriously reduces the number of available contributors. HTML, on the other hand, is a much more common skill, is relatively easy to learn, and the amount of HTML needed to write documentation is only a little bit more than the HTML used in forum posts. Another benefit to not using PHP is that the files themselves are safe. They are filtered to escape malicious script code that could take over the server or do worse things. This means that these files can be used relatively easily on Drupal.org itself. It also means that descriptions of the project pulled from the project's help pages or README.txt or README.md can be made on the project's Drupal.org without the need to download the module or theme to look at the contents of these files. This also simplifies maintenance, as the files can be corrected easily by patches, which are updated by the maintainer and pushed to git. By moving all docymentation into help files, we could, if we wanted, package the Drupal.org handbooks, or a subset of them, directly into a Drupal distribution, or a Drupal add-on, so that Drupal administrators can have Drupal help without needing to visit Drupal.org. This can be valuable in locked down corporate environments and on planes. But more importantly, the handbooks can be made version aware much more easily than the current method on Drupal.org. The downside to this method is that these books can't easily be made dynamic. Though the use of alter hooks could allow a module or theme to make modifications to the help as needed, doing this could make the help files less useful when you take them out of context. <h2>Advanced help-filer oversettes som en fullstendig fil</h2> It is actually not easy to translate documents as strings, particularly when the language being used is very much unlike English. In fact, when translating a document, the organization of the sentences may change drastically. It is also a burden on the CPU to do this, as you are indexing on very long strings. Translators have a much better time translating a document as a unit, because of the presence of the entire context. <h2>Advanced help har sitt eget navigasjons-system</h2> By making use of a navigation system specified in a .ini file (which is not PHP code and therefore safe to use), the help can be structured like a book, which is typical of online manuals. This is familiar to users, can be organized (and re-organized) and allows a module or theme to include significantly richer text without burdening the PHP code with having its help loaded unnecessarily. This book can be navigated hierarchically as well, making it easy to keep related topics together. <h2>Advanced help indekseres av nettstedets søkemotor</h2> An important goal of this system was to add searchability to the help. By being able to enter keywords into the search box and find relevant topics, we come up with a system that resembles the kind of help that comes with many operating systems. This is very valuable when searching through manuals trying to find out how to do a particular thing. This search is specific to the help, meaning that the help will not be mixed in with the global node search. This can be considered both an advantage and a disadvantage. For the most part, this help system is meant to provide help to site administrators, and content searches should not find it. The disadvantage, of course, is when you want to use it for end user help, you will not be able to. <h2>Hjelp for en bestemt side kan hentes inn via sprettopp-vinduer</h2> In addition to the manual-like hierarchical navigation, <strong>Advanced help</strong> can also provide context-sensitive additional help through a popup. While popups are controversial, the argument for using them is that when getting help while on a form, <i>a popup will not throw away a user's data.</i> Browsers are not very friendly to input forms if they are not submitted, and navigating away from the form can be dangerous. There are various other solutions to this problem, but each one has a drawback. The drawbacks to popups are well known, but mostly it is the irritation of having new windows. When getting help, though, a popup is usually invited. Help should not interfere with what the operation the user is trying to complete. It differs greatly from the uninvited popup, which are usually ads or popups meant to prevent users from navigating away from a site. Popups can be added to a page with plain text links or themed icon links.
tests/wpt/web-platform-tests/wai-aria/aria-current_not_declared-manual.html
peterjoel/servo
<!doctype html> <html> <head> <title>aria-current not declared</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"/> <link rel="stylesheet" href="/wai-aria/scripts/manual.css"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="/wai-aria/scripts/ATTAcomm.js"></script> <script> setup({explicit_timeout: true, explicit_done: true }); var theTest = new ATTAcomm( { "steps" : [ { "element" : "test", "test" : { "ATK" : [ [ "property", "role", "is", "ROLE_LIST_ITEM" ], [ "property", "states", "doesNotContain", "STATE_ACTIVE" ], [ "property", "objectAttributes", "doesNotContain", "current:false" ] ], "AXAPI" : [ [ "property", "AXRole", "is", "AXGroup" ], [ "property", "AXARIACurrent", "is", "false" ] ], "IAccessible2" : [ [ "property", "role", "is", "ROLE_SYSTEM_LISTITEM" ], [ "property", "objectAttributes", "doesNotContain", "current:false" ] ], "MSAA" : [ [ "property", "role", "is", "ROLE_SYSTEM_LISTITEM" ], [ "property", "states", "contains", "STATE_SYSTEM_READONLY" ] ], "UIA" : [ [ "property", "ControlType", "is", "ListItem" ], [ "property", "current", "is", "" ] ] }, "title" : "step 1", "type" : "test" } ], "title" : "aria-current not declared" } ) ; </script> </head> <body> <p>This test examines the ARIA properties for aria-current not declared.</p> <ul role="list"> <li id="test" role="listitem">2</li> </ul> <div id="manualMode"></div> <div id="log"></div> <div id="ATTAmessages"></div> </body> </html>
third_party/WebKit/LayoutTests/fast/dom/shadow/shadow-contents-fallback-dynamic.html
joone/chromium-crosswalk
<!DOCTYPE html> <html> <head> <style> /* relative positioning ensures underlying Layer */ .container { position: relative; } .span { display: boxed-inline; margin: 2px; border: solid; } </style> <script> function log(message) { document.getElementById('console').innerHTML += (message + "\n"); } function removeAllChildren(elem) { while (elem.firstChild) elem.removeChild(elem.firstChild); } function cleanUp() { removeAllChildren(document.getElementById('actual-container')); removeAllChildren(document.getElementById('expect-container')); } function removeContainerLines(text) { var lines = text.split('\n'); lines.splice(0, 2); return lines.join('\n'); } function check() { var refContainerLayoutTree = internals.elementLayoutTreeAsText(document.getElementById('expect-container')); var refLayoutTree = removeContainerLines(refContainerLayoutTree); var targetContainerLayoutTree = internals.elementLayoutTreeAsText(document.getElementById('actual-container')); var targetLayoutTree = removeContainerLines(targetContainerLayoutTree); if (targetLayoutTree == refLayoutTree) log("PASS"); else { log("FAIL"); log("Expected: "); log(refLayoutTree); log("Actual: "); log(targetLayoutTree); } } function createSpanWithText(text) { var span = document.createElement('span'); span.appendChild(document.createTextNode(text)); return span; } function appendShadow(target, select) { var root = target.createShadowRoot(); var content = document.createElement('content'); content.setAttribute('select', select); content.appendChild(createSpanWithText("FALLBACK")); root.appendChild(document.createTextNode("{SHADOW: ")); root.appendChild(content); root.appendChild(document.createTextNode("}")); } function appendShadowDeep(target, select) { var root = target.createShadowRoot(); var child = document.createElement("span"); { var content = document.createElement('content'); content.setAttribute('select', select); content.appendChild(createSpanWithText("FALLBACK")); child.appendChild(document.createTextNode("{INNER: ")); child.appendChild(content); child.appendChild(document.createTextNode("}")); } root.appendChild(document.createTextNode("{SHADOW: ")); root.appendChild(child); root.appendChild(document.createTextNode("}")); } function testAppendFallback(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span>content</span>"; appendShadow(target, "#append"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.innerHTML = "<span id='append'>appended</span>"; document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>appended</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testAppendFallbackDeep(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span>content</span>"; appendShadowDeep(target, "#append-deep"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.innerHTML = "<span id='append-deep'>appended</span>"; document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>{INNER: <span>appended</span>}</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testRemoveFallback(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span id='remove'>content</span>"; appendShadow(target, "#remove"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.innerHTML = "<span>content</span>" document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>FALLBACK</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testRemoveFallbackDeep(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span id='remove-deep'>content</span>"; appendShadowDeep(target, "#remove-deep"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.innerHTML = "<span>content</span>" document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>{INNER: <span>FALLBACK</span>}</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testRemove1(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span id='remove1-1'>content 1</span><span id='remove1-2'>content 2</span>"; appendShadow(target, "span"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.removeChild(document.getElementById('remove1-1')); document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>content 2</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testRemove2(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span id='testremove2-1'>content 1</span><span id='testremove2-2'>content 2</span>"; appendShadow(target, "span"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.removeChild(document.getElementById('testremove2-2')); document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>content 1</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testRemove3(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span id='testremove3-1'>content 1</span><span id='testremove3-2'>content 2</span>"; appendShadow(target, "span"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.removeChild(document.getElementById('testremove3-1')); target.removeChild(document.getElementById('testremove3-2')); document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>FALLBACK</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testReplaceFallback(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span id='to-replace'>content</span>"; appendShadow(target, "#to-replace"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.innerHTML = "<span id='to-replace'>replaced</span>"; document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>replaced</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testFallbackContentChanged(callIfDone) { var target = document.createElement('div'); target.innerHTML = "<span>content</span>"; appendShadow(target, "#non-element"); document.getElementById('actual-container').appendChild(target); var f = (function(target, callIfDone) { return function() { target.appendChild(createSpanWithText('appended content')); document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>FALLBACK</span>}</div>"; callIfDone(); }; })(target, callIfDone); setTimeout(f, 0); } function testComplexAppend(callIfDone) { var target = document.createElement('div'); appendShadow(target, '#complex-1'); var selectContent = document.createElement('span'); selectContent.setAttribute('id', 'complex-1'); appendShadow(selectContent, 'span'); target.appendChild(document.createTextNode('[WONT SELECTED]')); target.appendChild(selectContent); target.appendChild(document.createTextNode('[WONT SELECTED]')); document.getElementById('actual-container').appendChild(target); var f = (function(target, selectContent, callIfDone) { return function() { selectContent.appendChild(createSpanWithText('SELECTED')); document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>{SHADOW: <span>SELECTED</span>}</span>}</div>"; callIfDone(); }; })(target, selectContent, callIfDone); setTimeout(f, 0); } function testComplexRemove(callIfDone) { var target = document.createElement('div'); appendShadow(target, '#complex-2'); var selectContent = document.createElement('span'); selectContent.setAttribute('id', 'complex-2'); { selectContent.appendChild(createSpanWithText('SELECTED')); } appendShadow(selectContent, 'span'); target.appendChild(document.createTextNode('[WONT SELECTED]')); target.appendChild(selectContent); target.appendChild(document.createTextNode('[WONT SELECTED]')); document.getElementById('actual-container').appendChild(target); var f = (function(target, selectContent, callIfDone) { return function() { removeAllChildren(selectContent); document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>{SHADOW: <span>FALLBACK</span>}</span>}</div>"; callIfDone(); }; })(target, selectContent, callIfDone); setTimeout(f, 0); } function testComplexReplace(callIfDone) { var target = document.createElement('div'); appendShadow(target, '#complex-3'); var selectContent = document.createElement('span'); selectContent.setAttribute('id', 'complex-3'); appendShadow(selectContent, 'span'); target.appendChild(document.createTextNode('[WONT SELECTED]')); target.appendChild(selectContent); target.appendChild(document.createTextNode('[WONT SELECTED]')); document.getElementById('actual-container').appendChild(target); var f = (function(target, selectContent, callIfDone) { return function() { removeAllChildren(selectContent); selectContent.appendChild(createSpanWithText('REPLACED')); document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <span>{SHADOW: <span>REPLACED</span>}</span>}</div>"; callIfDone(); }; })(target, selectContent, callIfDone); setTimeout(f, 0); } function testContentInContent(callIfDone) { document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <content><span>CONTENT 2 FALLBACK</span></content>}</div>"; var target = document.createElement('div'); target.appendChild(createSpanWithText('S1')); target.appendChild(createSpanWithText('S2')); var root = target.createShadowRoot(); var content1 = document.createElement('content'); content1.setAttribute('select', 'div'); root.appendChild(document.createTextNode("{SHADOW: ")); root.appendChild(content1); root.appendChild(document.createTextNode("}")); document.getElementById('actual-container').appendChild(target); var f = (function(target, content1, callIfDone) { return function() { var content2 = document.createElement('content'); content2.setAttribute('select', 'span'); content2.appendChild(createSpanWithText('CONTENT 2 FALLBACK')); content1.appendChild(content2); callIfDone(); }; })(target, content1, callIfDone); setTimeout(f, 0); } function testContentInContentFallback(callIfDone) { document.getElementById('expect-container').innerHTML = "<div>{SHADOW: <content><span>CONTENT 2 FALLBACK</span></content>}</div>"; var target = document.createElement('div'); target.appendChild(createSpanWithText('S1')); target.appendChild(createSpanWithText('S2')); var root = target.createShadowRoot(); var content1 = document.createElement('content'); content1.setAttribute('select', 'div'); root.appendChild(document.createTextNode("{SHADOW: ")); root.appendChild(content1); root.appendChild(document.createTextNode("}")); document.getElementById('actual-container').appendChild(target); var f = (function(target, content1, callIfDone) { return function() { var content2 = document.createElement('content'); content2.setAttribute('select', 'div'); content2.appendChild(createSpanWithText('CONTENT 2 FALLBACK')); content1.appendChild(content2); callIfDone(); }; })(target, content1, callIfDone); setTimeout(f, 0); } function testContentInContentFallbackDirect(callIfDone) { document.getElementById('expect-container').innerHTML = "<div><content><span>CONTENT 2 FALLBACK</span></content></div>"; var target = document.createElement('div'); target.appendChild(createSpanWithText('S1')); target.appendChild(createSpanWithText('S2')); var root = target.createShadowRoot(); var content1 = document.createElement('content'); content1.setAttribute('select', 'div'); root.appendChild(content1); document.getElementById('actual-container').appendChild(target); var f = (function(target, content1, callIfDone) { return function() { var content2 = document.createElement('content'); content2.setAttribute('select', 'div'); content2.appendChild(createSpanWithText('CONTENT 2 FALLBACK')); content1.appendChild(content2); callIfDone(); }; })(target, content1, callIfDone); setTimeout(f, 0); } var testFuncs = [ testAppendFallback, testAppendFallbackDeep, testRemoveFallback, testRemoveFallbackDeep, testRemove1, testRemove2, testRemove3, testReplaceFallback, testFallbackContentChanged, testComplexAppend, testComplexRemove, testComplexReplace, testContentInContent, testContentInContentFallback, testContentInContentFallbackDirect ]; function doTestIfLeft() { var test = testFuncs.shift(); if (test == null) return doneTest(); var callIfDone = function() { setTimeout(function() { check(); cleanUp(); doTestIfLeft(); }, 0); }; log(test.name); test(callIfDone); } function doneTest() { log("TEST COMPLETED"); testRunner.notifyDone(); } function doTest() { if (window.testRunner) { testRunner.waitUntilDone(); testRunner.dumpAsText(); } cleanUp(); doTestIfLeft(); } </script> </head> <body onload="doTest()"> <div id="actual-container" class="container"></div> <div id="expect-container" class="container"></div> <pre id="console"></pre> </body> </html>
tests/wpt/web-platform-tests/css/css-text/i18n/css3-text-line-break-baspglwj-131.html
Varentsov/servo
<!DOCTYPE html> <html lang="en" > <head> <meta charset="utf-8"/> <title>CSS3 Text, linebreaks: U+FEFF ZERO WIDTH NO-BREAK SPACE</title> <link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'> <link rel='help' href='https://drafts.csswg.org/css-text-3/#line-break-details'> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <meta name='flags' content='dom'> <meta name="assert" content="[Exploratory] The browser will NOT break a line of text containing any Unicode character with the WJ Word Joiner property."> <style type='text/css'> @font-face { font-family: 'csstest_ascii'; src: url('support/csstest-ascii-webfont.woff') format('woff'); font-weight: normal; font-style: normal; } #breakable { font-family: csstest_ascii; font-size: 25px; width: 800px; line-height: 30px; } </style> </head> <body> <div class="test"> <div id="breakable">aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa&#xFEFF;bbbbbbbbbbbbbbbbbbbbbbbbbbbbbb</div> </div> <!--Notes: Box height: <span id='debugresult'></span><script>document.getElementById('debugresult').innerHTML = document.getElementById('breakable').offsetHeight;</script> --> <script> test(function() { assert_true(document.getElementById('breakable').offsetHeight < 35); }, " "); </script> <div id='log'></div> </body> </html>
documentation/reference_manual/or-tools/src/base/classoperations__research_1_1Eraser-members.html
AlperSaltabas/OR_Tools_Google_API
<!-- Good morning, Mr. Phelps. --> <html> <head> <meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> <title>or-tools/src/base/: Member List - Doxy</title> <link rel="shortcut icon" href="../../../favicon.ico"> <!-- Both stylesheets are supplied by Doxygen, with maybe minor tweaks from Google. --> <link href="../../../doxygen.css" rel="stylesheet" type="text/css"> <link href="../../../tabs.css" rel="stylesheet" type="text/css"> </head> <body topmargin=0 leftmargin=20 bottommargin=0 rightmargin=20 marginwidth=20 marginheight=0> <!-- Second part of the secret behind Doxy logo always having the word "Doxy" with the color of the day. --> <style> a.doxy_logo:hover { background-color: #287003 } </style> <table width=100% cellpadding=0 cellspacing=0 border=0> <!-- Top horizontal line with the color of the day. --> <tr valign=top> <td colspan=3 bgcolor=#287003 height=3></td> </tr> <!-- Header row with the links at the right. --> <tr valign=top> <td colspan=3 align=right> <font size=-1> Generated on: <font color=#287003><b>Thu Mar 29 07:46:58 PDT 2012</b></font> for <b>custom file set</b> </font> </td> </tr> <!-- Header row with the logo and the search form. --> <tr valign=top> <!-- Logo. --> <td align=left width=150> <table width=150 height=54 cellpadding=0 cellspacing=0 border=0> <tr valign=top> <!-- First part of the secret behind Doxy logo always having the word "Doxy" with the color of the day. --> <td bgcolor=#287003> <a class="doxy_logo" href="../../../index.html"><img src="../../../doxy_logo.png" alt="Doxy" border=0></a> </td> </tr> </table> </td> </tr> <!-- Tiny vertical space below the form. --> <tr valign=top> <td colspan=3 height=3></td> </tr> </table> <!-- Header navigation row. --> <div class="memproto"> <table width=100% cellpadding=0 cellspacing=0 border=0> <tr> <td align=left style="padding-left: 20px"><font size=+1><b><tt><font color=#333333>// <a href="../../../index.html"><font color=#287003>doxy</font></a>/</font> <a href="../../../or-tools/index.html">or-tools</a>/ <a href="../../../or-tools/src/index.html">src</a>/ <a href="../../../or-tools/src/base/index.html">base</a>/ </tt></b></font> </td> </tr> </table> </div> <br /> <!-- No subdirs found. --> <!-- End of header. --> <!-- Generated by Doxygen 1.5.6 --> <div class="navigation" id="top"> <div class="tabs"> <ul> <li><a href="index.html"><span>Main&nbsp;Page</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="annotated.html"><span>Classes</span></a></li> <li><a href="files.html"><span>Files</span></a></li> </ul> </div> <div class="tabs"> <ul> <li><a href="annotated.html"><span>Class&nbsp;List</span></a></li> <li><a href="hierarchy.html"><span>Class&nbsp;Hierarchy</span></a></li> <li><a href="functions.html"><span>Class&nbsp;Members</span></a></li> </ul> </div> </div> <div class="contents"> <h1>operations_research::Eraser&lt; Container &gt; Member List</h1>This is the complete list of members for <a class="el" href="classoperations__research_1_1Eraser.html">operations_research::Eraser&lt; Container &gt;</a>, including all inherited members.<p><table> <tr class="memlist"><td><a class="el" href="classoperations__research_1_1Eraser.html#49ff5cce2fa02192ce7c5894b671daed">erase</a>(Container *container, iterator_type *iterator)</td><td><a class="el" href="classoperations__research_1_1Eraser.html">operations_research::Eraser&lt; Container &gt;</a></td><td><code> [inline, static]</code></td></tr> <tr class="memlist"><td><a class="el" href="classoperations__research_1_1Eraser.html#abdd19ac24e6e3649fc8782c61cfacff">iterator_type</a> typedef</td><td><a class="el" href="classoperations__research_1_1Eraser.html">operations_research::Eraser&lt; Container &gt;</a></td><td></td></tr> </table></div> <!-- Start of footer. --> <table width=100% cellpadding=0 cellspacing=0 border=0> <tr valign=top> <td colspan=2 height=10></td> </tr> <tr valign=top> <td colspan=2 bgcolor=#287003 height=3></td> </tr> </table> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> <br /><br /> </body> </html>
ajax/libs/oojs-ui/0.15.0/oojs-ui-mediawiki-icons-editing-advanced.vector.css
Piicksarn/cdnjs
/*! * OOjs UI v0.15.0 * https://www.mediawiki.org/wiki/OOjs_UI * * Copyright 2011–2016 OOjs UI Team and other contributors. * Released under the MIT license * http://oojs.mit-license.org * * Date: 2016-01-12T23:06:40Z */ .oo-ui-icon-alignCentre { background-image: /* @embed */ url(themes/mediawiki/images/icons/align-center.svg); } .oo-ui-icon-alignCentre-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/align-center-invert.svg); } .oo-ui-icon-alignLeft { background-image: /* @embed */ url(themes/mediawiki/images/icons/align-float-left.svg); } .oo-ui-icon-alignLeft-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/align-float-left-invert.svg); } .oo-ui-icon-alignRight { background-image: /* @embed */ url(themes/mediawiki/images/icons/align-float-right.svg); } .oo-ui-icon-alignRight-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/align-float-right-invert.svg); } .oo-ui-icon-calendar { background-image: /* @embed */ url(themes/mediawiki/images/icons/calendar-ltr.svg); } .oo-ui-icon-calendar-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/calendar-ltr-invert.svg); } .oo-ui-icon-find { background-image: /* @embed */ url(themes/mediawiki/images/icons/find-ltr.svg); } .oo-ui-icon-find-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/find-ltr-invert.svg); } .oo-ui-icon-language { background-image: /* @embed */ url(themes/mediawiki/images/icons/language-ltr.svg); } .oo-ui-icon-language-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/language-ltr-invert.svg); } .oo-ui-icon-layout { background-image: /* @embed */ url(themes/mediawiki/images/icons/layout-ltr.svg); } .oo-ui-icon-layout-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/layout-ltr-invert.svg); } .oo-ui-icon-newline { background-image: /* @embed */ url(themes/mediawiki/images/icons/newline-ltr.svg); } .oo-ui-icon-newline-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/newline-ltr-invert.svg); } .oo-ui-icon-noWikiText { background-image: /* @embed */ url(themes/mediawiki/images/icons/noWikiText-ltr.svg); } .oo-ui-icon-noWikiText-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/noWikiText-ltr-invert.svg); } .oo-ui-icon-outline { background-image: /* @embed */ url(themes/mediawiki/images/icons/outline-ltr.svg); } .oo-ui-icon-outline-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/outline-ltr-invert.svg); } .oo-ui-icon-puzzle { background-image: /* @embed */ url(themes/mediawiki/images/icons/puzzle-ltr.svg); } .oo-ui-icon-puzzle-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/puzzle-ltr-invert.svg); } .oo-ui-icon-quotes { background-image: /* @embed */ url(themes/mediawiki/images/icons/quotes-ltr.svg); } .oo-ui-icon-quotes-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/quotes-ltr-invert.svg); } .oo-ui-icon-quotesAdd { background-image: /* @embed */ url(themes/mediawiki/images/icons/quotesAdd-ltr.svg); } .oo-ui-icon-quotesAdd-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/quotesAdd-ltr-invert.svg); } .oo-ui-icon-redirect { background-image: /* @embed */ url(themes/mediawiki/images/icons/articleRedirect-ltr.svg); } .oo-ui-icon-redirect-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/articleRedirect-ltr-invert.svg); } .oo-ui-icon-searchCaseSensitive { background-image: /* @embed */ url(themes/mediawiki/images/icons/case-sensitive.svg); } .oo-ui-icon-searchCaseSensitive-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/case-sensitive-invert.svg); } .oo-ui-icon-searchRegularExpression { background-image: /* @embed */ url(themes/mediawiki/images/icons/regular-expression.svg); } .oo-ui-icon-searchRegularExpression-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/regular-expression-invert.svg); } .oo-ui-icon-specialCharacter { background-image: /* @embed */ url(themes/mediawiki/images/icons/specialCharacter.svg); } .oo-ui-icon-specialCharacter-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/specialCharacter-invert.svg); } .oo-ui-icon-table { background-image: /* @embed */ url(themes/mediawiki/images/icons/table.svg); } .oo-ui-icon-table-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-invert.svg); } .oo-ui-icon-tableAddColumnAfter { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-column-rtl.svg); } .oo-ui-icon-tableAddColumnAfter-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-column-rtl-invert.svg); } .oo-ui-icon-tableAddColumnBefore { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-column-ltr.svg); } .oo-ui-icon-tableAddColumnBefore-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-column-ltr-invert.svg); } .oo-ui-icon-tableAddRowAfter { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-row-after.svg); } .oo-ui-icon-tableAddRowAfter-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-row-after-invert.svg); } .oo-ui-icon-tableAddRowBefore { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-row-before.svg); } .oo-ui-icon-tableAddRowBefore-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-insert-row-before-invert.svg); } .oo-ui-icon-tableCaption { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-caption.svg); } .oo-ui-icon-tableCaption-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-caption-invert.svg); } .oo-ui-icon-tableMergeCells { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-merge-cells.svg); } .oo-ui-icon-tableMergeCells-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/table-merge-cells-invert.svg); } .oo-ui-icon-templateAdd { background-image: /* @embed */ url(themes/mediawiki/images/icons/templateAdd-ltr.svg); } .oo-ui-icon-templateAdd-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/templateAdd-ltr-invert.svg); } .oo-ui-icon-translation { background-image: /* @embed */ url(themes/mediawiki/images/icons/language-ltr.svg); } .oo-ui-icon-translation-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/language-ltr-invert.svg); } .oo-ui-icon-wikiText { background-image: /* @embed */ url(themes/mediawiki/images/icons/wikiText.svg); } .oo-ui-icon-wikiText-invert { background-image: /* @embed */ url(themes/mediawiki/images/icons/wikiText-invert.svg); }
src/main/webapp/resources/js/vendor/underscore-1.6.0/docs/underscore.html
r24mille/WeatherHistory
<!DOCTYPE html> <html> <head> <title>underscore.js</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, target-densitydpi=160dpi, initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> <link rel="stylesheet" media="all" href="docco.css" /> </head> <body> <div id="container"> <div id="background"></div> <ul class="sections"> <li id="title"> <div class="annotation"> <h1>underscore.js</h1> </div> </li> <li id="section-1"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-1">&#182;</a> </div> <pre><code>Underscore.js <span class="hljs-number">1.6</span><span class="hljs-number">.0</span> http:<span class="hljs-comment">//underscorejs.org</span> (c) <span class="hljs-number">2009</span>-<span class="hljs-number">2014</span> Jeremy Ashkenas, DocumentCloud and Investigative Reporters &amp; Editors Underscore may be freely distributed under the MIT license. </code></pre> </div> <div class="content"><div class='highlight'><pre> (<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span></pre></div></div> </li> <li id="section-2"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-2">&#182;</a> </div> <h2 id="baseline-setup">Baseline setup</h2> </div> </li> <li id="section-3"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-3">&#182;</a> </div> </div> </li> <li id="section-4"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-4">&#182;</a> </div> <p>Establish the root object, <code>window</code> in the browser, or <code>exports</code> on the server.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> root = <span class="hljs-keyword">this</span>;</pre></div></div> </li> <li id="section-5"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-5">&#182;</a> </div> <p>Save the previous value of the <code>_</code> variable.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> previousUnderscore = root._;</pre></div></div> </li> <li id="section-6"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-6">&#182;</a> </div> <p>Establish the object that gets returned to break out of a loop iteration.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> breaker = {};</pre></div></div> </li> <li id="section-7"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-7">&#182;</a> </div> <p>Save bytes in the minified (but not gzipped) version:</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> ArrayProto = <span class="hljs-built_in">Array</span>.prototype, ObjProto = <span class="hljs-built_in">Object</span>.prototype, FuncProto = <span class="hljs-built_in">Function</span>.prototype;</pre></div></div> </li> <li id="section-8"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-8">&#182;</a> </div> <p>Create quick reference variables for speed access to core prototypes.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> push = ArrayProto.push, slice = ArrayProto.slice, concat = ArrayProto.concat, toString = ObjProto.toString, hasOwnProperty = ObjProto.hasOwnProperty;</pre></div></div> </li> <li id="section-9"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-9">&#182;</a> </div> <p>All <strong>ECMAScript 5</strong> native function implementations that we hope to use are declared here.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> nativeForEach = ArrayProto.forEach, nativeMap = ArrayProto.map, nativeReduce = ArrayProto.reduce, nativeReduceRight = ArrayProto.reduceRight, nativeFilter = ArrayProto.filter, nativeEvery = ArrayProto.every, nativeSome = ArrayProto.some, nativeIndexOf = ArrayProto.indexOf, nativeLastIndexOf = ArrayProto.lastIndexOf, nativeIsArray = <span class="hljs-built_in">Array</span>.isArray, nativeKeys = <span class="hljs-built_in">Object</span>.keys, nativeBind = FuncProto.bind;</pre></div></div> </li> <li id="section-10"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-10">&#182;</a> </div> <p>Create a safe reference to the Underscore object for use below.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> _ = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">if</span> (obj <span class="hljs-keyword">instanceof</span> _) <span class="hljs-keyword">return</span> obj; <span class="hljs-keyword">if</span> (!(<span class="hljs-keyword">this</span> <span class="hljs-keyword">instanceof</span> _)) <span class="hljs-keyword">return</span> <span class="hljs-keyword">new</span> _(obj); <span class="hljs-keyword">this</span>._wrapped = obj; };</pre></div></div> </li> <li id="section-11"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-11">&#182;</a> </div> <p>Export the Underscore object for <strong>Node.js</strong>, with backwards-compatibility for the old <code>require()</code> API. If we’re in the browser, add <code>_</code> as a global object via a string identifier, for Closure Compiler “advanced” mode.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (<span class="hljs-keyword">typeof</span> exports !== <span class="hljs-string">'undefined'</span>) { <span class="hljs-keyword">if</span> (<span class="hljs-keyword">typeof</span> module !== <span class="hljs-string">'undefined'</span> &amp;&amp; module.exports) { exports = module.exports = _; } exports._ = _; } <span class="hljs-keyword">else</span> { root._ = _; }</pre></div></div> </li> <li id="section-12"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-12">&#182;</a> </div> <p>Current version.</p> </div> <div class="content"><div class='highlight'><pre> _.VERSION = <span class="hljs-string">'1.6.0'</span>;</pre></div></div> </li> <li id="section-13"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-13">&#182;</a> </div> <h2 id="collection-functions">Collection Functions</h2> </div> </li> <li id="section-14"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-14">&#182;</a> </div> </div> </li> <li id="section-15"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-15">&#182;</a> </div> <p>The cornerstone, an <code>each</code> implementation, aka <code>forEach</code>. Handles objects with the built-in <code>forEach</code>, arrays, and raw objects. Delegates to <strong>ECMAScript 5</strong>‘s native <code>forEach</code> if available.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> each = _.each = _.forEach = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, context)</span> {</span> <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> obj; <span class="hljs-keyword">if</span> (nativeForEach &amp;&amp; obj.forEach === nativeForEach) { obj.forEach(iterator, context); } <span class="hljs-keyword">else</span> <span class="hljs-keyword">if</span> (obj.length === +obj.length) { <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>, length = obj.length; i &lt; length; i++) { <span class="hljs-keyword">if</span> (iterator.call(context, obj[i], i, obj) === breaker) <span class="hljs-keyword">return</span>; } } <span class="hljs-keyword">else</span> { <span class="hljs-keyword">var</span> keys = _.keys(obj); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>, length = keys.length; i &lt; length; i++) { <span class="hljs-keyword">if</span> (iterator.call(context, obj[keys[i]], keys[i], obj) === breaker) <span class="hljs-keyword">return</span>; } } <span class="hljs-keyword">return</span> obj; };</pre></div></div> </li> <li id="section-16"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-16">&#182;</a> </div> <p>Return the results of applying the iterator to each element. Delegates to <strong>ECMAScript 5</strong>‘s native <code>map</code> if available.</p> </div> <div class="content"><div class='highlight'><pre> _.map = _.collect = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, context)</span> {</span> <span class="hljs-keyword">var</span> results = []; <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> results; <span class="hljs-keyword">if</span> (nativeMap &amp;&amp; obj.map === nativeMap) <span class="hljs-keyword">return</span> obj.map(iterator, context); each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> results.push(iterator.call(context, value, index, list)); }); <span class="hljs-keyword">return</span> results; }; <span class="hljs-keyword">var</span> reduceError = <span class="hljs-string">'Reduce of empty array with no initial value'</span>;</pre></div></div> </li> <li id="section-17"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-17">&#182;</a> </div> <p><strong>Reduce</strong> builds up a single result from a list of values, aka <code>inject</code>, or <code>foldl</code>. Delegates to <strong>ECMAScript 5</strong>‘s native <code>reduce</code> if available.</p> </div> <div class="content"><div class='highlight'><pre> _.reduce = _.foldl = _.inject = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, memo, context)</span> {</span> <span class="hljs-keyword">var</span> initial = <span class="hljs-built_in">arguments</span>.length &gt; <span class="hljs-number">2</span>; <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) obj = []; <span class="hljs-keyword">if</span> (nativeReduce &amp;&amp; obj.reduce === nativeReduce) { <span class="hljs-keyword">if</span> (context) iterator = _.bind(iterator, context); <span class="hljs-keyword">return</span> initial ? obj.reduce(iterator, memo) : obj.reduce(iterator); } each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">if</span> (!initial) { memo = value; initial = <span class="hljs-literal">true</span>; } <span class="hljs-keyword">else</span> { memo = iterator.call(context, memo, value, index, list); } }); <span class="hljs-keyword">if</span> (!initial) <span class="hljs-keyword">throw</span> <span class="hljs-keyword">new</span> <span class="hljs-built_in">TypeError</span>(reduceError); <span class="hljs-keyword">return</span> memo; };</pre></div></div> </li> <li id="section-18"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-18">&#182;</a> </div> <p>The right-associative version of reduce, also known as <code>foldr</code>. Delegates to <strong>ECMAScript 5</strong>‘s native <code>reduceRight</code> if available.</p> </div> <div class="content"><div class='highlight'><pre> _.reduceRight = _.foldr = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, memo, context)</span> {</span> <span class="hljs-keyword">var</span> initial = <span class="hljs-built_in">arguments</span>.length &gt; <span class="hljs-number">2</span>; <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) obj = []; <span class="hljs-keyword">if</span> (nativeReduceRight &amp;&amp; obj.reduceRight === nativeReduceRight) { <span class="hljs-keyword">if</span> (context) iterator = _.bind(iterator, context); <span class="hljs-keyword">return</span> initial ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator); } <span class="hljs-keyword">var</span> length = obj.length; <span class="hljs-keyword">if</span> (length !== +length) { <span class="hljs-keyword">var</span> keys = _.keys(obj); length = keys.length; } each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> index = keys ? keys[--length] : --length; <span class="hljs-keyword">if</span> (!initial) { memo = obj[index]; initial = <span class="hljs-literal">true</span>; } <span class="hljs-keyword">else</span> { memo = iterator.call(context, memo, obj[index], index, list); } }); <span class="hljs-keyword">if</span> (!initial) <span class="hljs-keyword">throw</span> <span class="hljs-keyword">new</span> <span class="hljs-built_in">TypeError</span>(reduceError); <span class="hljs-keyword">return</span> memo; };</pre></div></div> </li> <li id="section-19"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-19">&#182;</a> </div> <p>Return the first value which passes a truth test. Aliased as <code>detect</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.find = _.detect = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, predicate, context)</span> {</span> <span class="hljs-keyword">var</span> result; any(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">if</span> (predicate.call(context, value, index, list)) { result = value; <span class="hljs-keyword">return</span> <span class="hljs-literal">true</span>; } }); <span class="hljs-keyword">return</span> result; };</pre></div></div> </li> <li id="section-20"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-20">&#182;</a> </div> <p>Return all the elements that pass a truth test. Delegates to <strong>ECMAScript 5</strong>‘s native <code>filter</code> if available. Aliased as <code>select</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.filter = _.select = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, predicate, context)</span> {</span> <span class="hljs-keyword">var</span> results = []; <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> results; <span class="hljs-keyword">if</span> (nativeFilter &amp;&amp; obj.filter === nativeFilter) <span class="hljs-keyword">return</span> obj.filter(predicate, context); each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">if</span> (predicate.call(context, value, index, list)) results.push(value); }); <span class="hljs-keyword">return</span> results; };</pre></div></div> </li> <li id="section-21"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-21">&#182;</a> </div> <p>Return all the elements for which a truth test fails.</p> </div> <div class="content"><div class='highlight'><pre> _.reject = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, predicate, context)</span> {</span> <span class="hljs-keyword">return</span> _.filter(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">return</span> !predicate.call(context, value, index, list); }, context); };</pre></div></div> </li> <li id="section-22"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-22">&#182;</a> </div> <p>Determine whether all of the elements match a truth test. Delegates to <strong>ECMAScript 5</strong>‘s native <code>every</code> if available. Aliased as <code>all</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.every = _.all = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, predicate, context)</span> {</span> predicate || (predicate = _.identity); <span class="hljs-keyword">var</span> result = <span class="hljs-literal">true</span>; <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> result; <span class="hljs-keyword">if</span> (nativeEvery &amp;&amp; obj.every === nativeEvery) <span class="hljs-keyword">return</span> obj.every(predicate, context); each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">if</span> (!(result = result &amp;&amp; predicate.call(context, value, index, list))) <span class="hljs-keyword">return</span> breaker; }); <span class="hljs-keyword">return</span> !!result; };</pre></div></div> </li> <li id="section-23"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-23">&#182;</a> </div> <p>Determine if at least one element in the object matches a truth test. Delegates to <strong>ECMAScript 5</strong>‘s native <code>some</code> if available. Aliased as <code>any</code>.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> any = _.some = _.any = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, predicate, context)</span> {</span> predicate || (predicate = _.identity); <span class="hljs-keyword">var</span> result = <span class="hljs-literal">false</span>; <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> result; <span class="hljs-keyword">if</span> (nativeSome &amp;&amp; obj.some === nativeSome) <span class="hljs-keyword">return</span> obj.some(predicate, context); each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">if</span> (result || (result = predicate.call(context, value, index, list))) <span class="hljs-keyword">return</span> breaker; }); <span class="hljs-keyword">return</span> !!result; };</pre></div></div> </li> <li id="section-24"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-24">&#182;</a> </div> <p>Determine if the array or object contains a given value (using <code>===</code>). Aliased as <code>include</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.contains = _.include = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, target)</span> {</span> <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> <span class="hljs-literal">false</span>; <span class="hljs-keyword">if</span> (nativeIndexOf &amp;&amp; obj.indexOf === nativeIndexOf) <span class="hljs-keyword">return</span> obj.indexOf(target) != -<span class="hljs-number">1</span>; <span class="hljs-keyword">return</span> any(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span> {</span> <span class="hljs-keyword">return</span> value === target; }); };</pre></div></div> </li> <li id="section-25"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-25">&#182;</a> </div> <p>Invoke a method (with arguments) on every item in a collection.</p> </div> <div class="content"><div class='highlight'><pre> _.invoke = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, method)</span> {</span> <span class="hljs-keyword">var</span> args = slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">2</span>); <span class="hljs-keyword">var</span> isFunc = _.isFunction(method); <span class="hljs-keyword">return</span> _.map(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span> {</span> <span class="hljs-keyword">return</span> (isFunc ? method : value[method]).apply(value, args); }); };</pre></div></div> </li> <li id="section-26"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-26">&#182;</a> </div> <p>Convenience version of a common use case of <code>map</code>: fetching a property.</p> </div> <div class="content"><div class='highlight'><pre> _.pluck = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, key)</span> {</span> <span class="hljs-keyword">return</span> _.map(obj, _.property(key)); };</pre></div></div> </li> <li id="section-27"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-27">&#182;</a> </div> <p>Convenience version of a common use case of <code>filter</code>: selecting only objects containing specific <code>key:value</code> pairs.</p> </div> <div class="content"><div class='highlight'><pre> _.where = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, attrs)</span> {</span> <span class="hljs-keyword">return</span> _.filter(obj, _.matches(attrs)); };</pre></div></div> </li> <li id="section-28"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-28">&#182;</a> </div> <p>Convenience version of a common use case of <code>find</code>: getting the first object containing specific <code>key:value</code> pairs.</p> </div> <div class="content"><div class='highlight'><pre> _.findWhere = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, attrs)</span> {</span> <span class="hljs-keyword">return</span> _.find(obj, _.matches(attrs)); };</pre></div></div> </li> <li id="section-29"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-29">&#182;</a> </div> <p>Return the maximum element or (element-based computation). Can’t optimize arrays of integers longer than 65,535 elements. See <a href="https://bugs.webkit.org/show_bug.cgi?id=80797">WebKit Bug 80797</a></p> </div> <div class="content"><div class='highlight'><pre> _.max = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, context)</span> {</span> <span class="hljs-keyword">if</span> (!iterator &amp;&amp; _.isArray(obj) &amp;&amp; obj[<span class="hljs-number">0</span>] === +obj[<span class="hljs-number">0</span>] &amp;&amp; obj.length &lt; <span class="hljs-number">65535</span>) { <span class="hljs-keyword">return</span> <span class="hljs-built_in">Math</span>.max.apply(<span class="hljs-built_in">Math</span>, obj); } <span class="hljs-keyword">var</span> result = -<span class="hljs-literal">Infinity</span>, lastComputed = -<span class="hljs-literal">Infinity</span>; each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">var</span> computed = iterator ? iterator.call(context, value, index, list) : value; <span class="hljs-keyword">if</span> (computed &gt; lastComputed) { result = value; lastComputed = computed; } }); <span class="hljs-keyword">return</span> result; };</pre></div></div> </li> <li id="section-30"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-30">&#182;</a> </div> <p>Return the minimum element (or element-based computation).</p> </div> <div class="content"><div class='highlight'><pre> _.min = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, context)</span> {</span> <span class="hljs-keyword">if</span> (!iterator &amp;&amp; _.isArray(obj) &amp;&amp; obj[<span class="hljs-number">0</span>] === +obj[<span class="hljs-number">0</span>] &amp;&amp; obj.length &lt; <span class="hljs-number">65535</span>) { <span class="hljs-keyword">return</span> <span class="hljs-built_in">Math</span>.min.apply(<span class="hljs-built_in">Math</span>, obj); } <span class="hljs-keyword">var</span> result = <span class="hljs-literal">Infinity</span>, lastComputed = <span class="hljs-literal">Infinity</span>; each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">var</span> computed = iterator ? iterator.call(context, value, index, list) : value; <span class="hljs-keyword">if</span> (computed &lt; lastComputed) { result = value; lastComputed = computed; } }); <span class="hljs-keyword">return</span> result; };</pre></div></div> </li> <li id="section-31"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-31">&#182;</a> </div> <p>Shuffle an array, using the modern version of the <a href="http://en.wikipedia.org/wiki/Fisher–Yates_shuffle">Fisher-Yates shuffle</a>.</p> </div> <div class="content"><div class='highlight'><pre> _.shuffle = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> rand; <span class="hljs-keyword">var</span> index = <span class="hljs-number">0</span>; <span class="hljs-keyword">var</span> shuffled = []; each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span> {</span> rand = _.random(index++); shuffled[index - <span class="hljs-number">1</span>] = shuffled[rand]; shuffled[rand] = value; }); <span class="hljs-keyword">return</span> shuffled; };</pre></div></div> </li> <li id="section-32"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-32">&#182;</a> </div> <p>Sample <strong>n</strong> random values from a collection. If <strong>n</strong> is not specified, returns a single random element. The internal <code>guard</code> argument allows it to work with <code>map</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.sample = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, n, guard)</span> {</span> <span class="hljs-keyword">if</span> (n == <span class="hljs-literal">null</span> || guard) { <span class="hljs-keyword">if</span> (obj.length !== +obj.length) obj = _.values(obj); <span class="hljs-keyword">return</span> obj[_.random(obj.length - <span class="hljs-number">1</span>)]; } <span class="hljs-keyword">return</span> _.shuffle(obj).slice(<span class="hljs-number">0</span>, <span class="hljs-built_in">Math</span>.max(<span class="hljs-number">0</span>, n)); };</pre></div></div> </li> <li id="section-33"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-33">&#182;</a> </div> <p>An internal function to generate lookup iterators.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> lookupIterator = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span> {</span> <span class="hljs-keyword">if</span> (value == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> _.identity; <span class="hljs-keyword">if</span> (_.isFunction(value)) <span class="hljs-keyword">return</span> value; <span class="hljs-keyword">return</span> _.property(value); };</pre></div></div> </li> <li id="section-34"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-34">&#182;</a> </div> <p>Sort the object’s values by a criterion produced by an iterator.</p> </div> <div class="content"><div class='highlight'><pre> _.sortBy = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, context)</span> {</span> iterator = lookupIterator(iterator); <span class="hljs-keyword">return</span> _.pluck(_.map(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index, list)</span> {</span> <span class="hljs-keyword">return</span> { value: value, index: index, criteria: iterator.call(context, value, index, list) }; }).sort(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(left, right)</span> {</span> <span class="hljs-keyword">var</span> a = left.criteria; <span class="hljs-keyword">var</span> b = right.criteria; <span class="hljs-keyword">if</span> (a !== b) { <span class="hljs-keyword">if</span> (a &gt; b || a === <span class="hljs-keyword">void</span> <span class="hljs-number">0</span>) <span class="hljs-keyword">return</span> <span class="hljs-number">1</span>; <span class="hljs-keyword">if</span> (a &lt; b || b === <span class="hljs-keyword">void</span> <span class="hljs-number">0</span>) <span class="hljs-keyword">return</span> -<span class="hljs-number">1</span>; } <span class="hljs-keyword">return</span> left.index - right.index; }), <span class="hljs-string">'value'</span>); };</pre></div></div> </li> <li id="section-35"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-35">&#182;</a> </div> <p>An internal function used for aggregate “group by” operations.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> group = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(behavior)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, iterator, context)</span> {</span> <span class="hljs-keyword">var</span> result = {}; iterator = lookupIterator(iterator); each(obj, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index)</span> {</span> <span class="hljs-keyword">var</span> key = iterator.call(context, value, index, obj); behavior(result, key, value); }); <span class="hljs-keyword">return</span> result; }; };</pre></div></div> </li> <li id="section-36"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-36">&#182;</a> </div> <p>Groups the object’s values by a criterion. Pass either a string attribute to group by, or a function that returns the criterion.</p> </div> <div class="content"><div class='highlight'><pre> _.groupBy = group(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(result, key, value)</span> {</span> _.has(result, key) ? result[key].push(value) : result[key] = [value]; });</pre></div></div> </li> <li id="section-37"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-37">&#182;</a> </div> <p>Indexes the object’s values by a criterion, similar to <code>groupBy</code>, but for when you know that your index values will be unique.</p> </div> <div class="content"><div class='highlight'><pre> _.indexBy = group(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(result, key, value)</span> {</span> result[key] = value; });</pre></div></div> </li> <li id="section-38"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-38">&#182;</a> </div> <p>Counts instances of an object that group by a certain criterion. Pass either a string attribute to count by, or a function that returns the criterion.</p> </div> <div class="content"><div class='highlight'><pre> _.countBy = group(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(result, key)</span> {</span> _.has(result, key) ? result[key]++ : result[key] = <span class="hljs-number">1</span>; });</pre></div></div> </li> <li id="section-39"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-39">&#182;</a> </div> <p>Use a comparator function to figure out the smallest index at which an object should be inserted so as to maintain order. Uses binary search.</p> </div> <div class="content"><div class='highlight'><pre> _.sortedIndex = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, obj, iterator, context)</span> {</span> iterator = lookupIterator(iterator); <span class="hljs-keyword">var</span> value = iterator.call(context, obj); <span class="hljs-keyword">var</span> low = <span class="hljs-number">0</span>, high = array.length; <span class="hljs-keyword">while</span> (low &lt; high) { <span class="hljs-keyword">var</span> mid = (low + high) &gt;&gt;&gt; <span class="hljs-number">1</span>; iterator.call(context, array[mid]) &lt; value ? low = mid + <span class="hljs-number">1</span> : high = mid; } <span class="hljs-keyword">return</span> low; };</pre></div></div> </li> <li id="section-40"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-40">&#182;</a> </div> <p>Safely create a real, live array from anything iterable.</p> </div> <div class="content"><div class='highlight'><pre> _.toArray = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">if</span> (!obj) <span class="hljs-keyword">return</span> []; <span class="hljs-keyword">if</span> (_.isArray(obj)) <span class="hljs-keyword">return</span> slice.call(obj); <span class="hljs-keyword">if</span> (obj.length === +obj.length) <span class="hljs-keyword">return</span> _.map(obj, _.identity); <span class="hljs-keyword">return</span> _.values(obj); };</pre></div></div> </li> <li id="section-41"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-41">&#182;</a> </div> <p>Return the number of elements in an object.</p> </div> <div class="content"><div class='highlight'><pre> _.size = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> <span class="hljs-number">0</span>; <span class="hljs-keyword">return</span> (obj.length === +obj.length) ? obj.length : _.keys(obj).length; };</pre></div></div> </li> <li id="section-42"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-42">&#182;</a> </div> <h2 id="array-functions">Array Functions</h2> </div> </li> <li id="section-43"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-43">&#182;</a> </div> </div> </li> <li id="section-44"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-44">&#182;</a> </div> <p>Get the first element of an array. Passing <strong>n</strong> will return the first N values in the array. Aliased as <code>head</code> and <code>take</code>. The <strong>guard</strong> check allows it to work with <code>_.map</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.first = _.head = _.take = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, n, guard)</span> {</span> <span class="hljs-keyword">if</span> (array == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> <span class="hljs-keyword">void</span> <span class="hljs-number">0</span>; <span class="hljs-keyword">if</span> ((n == <span class="hljs-literal">null</span>) || guard) <span class="hljs-keyword">return</span> array[<span class="hljs-number">0</span>]; <span class="hljs-keyword">if</span> (n &lt; <span class="hljs-number">0</span>) <span class="hljs-keyword">return</span> []; <span class="hljs-keyword">return</span> slice.call(array, <span class="hljs-number">0</span>, n); };</pre></div></div> </li> <li id="section-45"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-45">&#182;</a> </div> <p>Returns everything but the last entry of the array. Especially useful on the arguments object. Passing <strong>n</strong> will return all the values in the array, excluding the last N. The <strong>guard</strong> check allows it to work with <code>_.map</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.initial = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, n, guard)</span> {</span> <span class="hljs-keyword">return</span> slice.call(array, <span class="hljs-number">0</span>, array.length - ((n == <span class="hljs-literal">null</span>) || guard ? <span class="hljs-number">1</span> : n)); };</pre></div></div> </li> <li id="section-46"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-46">&#182;</a> </div> <p>Get the last element of an array. Passing <strong>n</strong> will return the last N values in the array. The <strong>guard</strong> check allows it to work with <code>_.map</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.last = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, n, guard)</span> {</span> <span class="hljs-keyword">if</span> (array == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> <span class="hljs-keyword">void</span> <span class="hljs-number">0</span>; <span class="hljs-keyword">if</span> ((n == <span class="hljs-literal">null</span>) || guard) <span class="hljs-keyword">return</span> array[array.length - <span class="hljs-number">1</span>]; <span class="hljs-keyword">return</span> slice.call(array, <span class="hljs-built_in">Math</span>.max(array.length - n, <span class="hljs-number">0</span>)); };</pre></div></div> </li> <li id="section-47"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-47">&#182;</a> </div> <p>Returns everything but the first entry of the array. Aliased as <code>tail</code> and <code>drop</code>. Especially useful on the arguments object. Passing an <strong>n</strong> will return the rest N values in the array. The <strong>guard</strong> check allows it to work with <code>_.map</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.rest = _.tail = _.drop = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, n, guard)</span> {</span> <span class="hljs-keyword">return</span> slice.call(array, (n == <span class="hljs-literal">null</span>) || guard ? <span class="hljs-number">1</span> : n); };</pre></div></div> </li> <li id="section-48"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-48">&#182;</a> </div> <p>Trim out all falsy values from an array.</p> </div> <div class="content"><div class='highlight'><pre> _.compact = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array)</span> {</span> <span class="hljs-keyword">return</span> _.filter(array, _.identity); };</pre></div></div> </li> <li id="section-49"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-49">&#182;</a> </div> <p>Internal implementation of a recursive <code>flatten</code> function.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> flatten = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(input, shallow, output)</span> {</span> <span class="hljs-keyword">if</span> (shallow &amp;&amp; _.every(input, _.isArray)) { <span class="hljs-keyword">return</span> concat.apply(output, input); } each(input, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span> {</span> <span class="hljs-keyword">if</span> (_.isArray(value) || _.isArguments(value)) { shallow ? push.apply(output, value) : flatten(value, shallow, output); } <span class="hljs-keyword">else</span> { output.push(value); } }); <span class="hljs-keyword">return</span> output; };</pre></div></div> </li> <li id="section-50"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-50">&#182;</a> </div> <p>Flatten out an array, either recursively (by default), or just one level.</p> </div> <div class="content"><div class='highlight'><pre> _.flatten = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, shallow)</span> {</span> <span class="hljs-keyword">return</span> flatten(array, shallow, []); };</pre></div></div> </li> <li id="section-51"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-51">&#182;</a> </div> <p>Return a version of the array that does not contain the specified value(s).</p> </div> <div class="content"><div class='highlight'><pre> _.without = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array)</span> {</span> <span class="hljs-keyword">return</span> _.difference(array, slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>)); };</pre></div></div> </li> <li id="section-52"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-52">&#182;</a> </div> <p>Split an array into two arrays: one whose elements all satisfy the given predicate, and one whose elements all do not satisfy the predicate.</p> </div> <div class="content"><div class='highlight'><pre> _.partition = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, predicate)</span> {</span> <span class="hljs-keyword">var</span> pass = [], fail = []; each(array, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(elem)</span> {</span> (predicate(elem) ? pass : fail).push(elem); }); <span class="hljs-keyword">return</span> [pass, fail]; };</pre></div></div> </li> <li id="section-53"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-53">&#182;</a> </div> <p>Produce a duplicate-free version of the array. If the array has already been sorted, you have the option of using a faster algorithm. Aliased as <code>unique</code>.</p> </div> <div class="content"><div class='highlight'><pre> _.uniq = _.unique = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, isSorted, iterator, context)</span> {</span> <span class="hljs-keyword">if</span> (_.isFunction(isSorted)) { context = iterator; iterator = isSorted; isSorted = <span class="hljs-literal">false</span>; } <span class="hljs-keyword">var</span> initial = iterator ? _.map(array, iterator, context) : array; <span class="hljs-keyword">var</span> results = []; <span class="hljs-keyword">var</span> seen = []; each(initial, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value, index)</span> {</span> <span class="hljs-keyword">if</span> (isSorted ? (!index || seen[seen.length - <span class="hljs-number">1</span>] !== value) : !_.contains(seen, value)) { seen.push(value); results.push(array[index]); } }); <span class="hljs-keyword">return</span> results; };</pre></div></div> </li> <li id="section-54"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-54">&#182;</a> </div> <p>Produce an array that contains the union: each distinct element from all of the passed-in arrays.</p> </div> <div class="content"><div class='highlight'><pre> _.union = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">return</span> _.uniq(_.flatten(<span class="hljs-built_in">arguments</span>, <span class="hljs-literal">true</span>)); };</pre></div></div> </li> <li id="section-55"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-55">&#182;</a> </div> <p>Produce an array that contains every item shared between all the passed-in arrays.</p> </div> <div class="content"><div class='highlight'><pre> _.intersection = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array)</span> {</span> <span class="hljs-keyword">var</span> rest = slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>); <span class="hljs-keyword">return</span> _.filter(_.uniq(array), <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(item)</span> {</span> <span class="hljs-keyword">return</span> _.every(rest, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(other)</span> {</span> <span class="hljs-keyword">return</span> _.contains(other, item); }); }); };</pre></div></div> </li> <li id="section-56"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-56">&#182;</a> </div> <p>Take the difference between one array and a number of other arrays. Only the elements present in just the first array will remain.</p> </div> <div class="content"><div class='highlight'><pre> _.difference = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array)</span> {</span> <span class="hljs-keyword">var</span> rest = concat.apply(ArrayProto, slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>)); <span class="hljs-keyword">return</span> _.filter(array, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span>{</span> <span class="hljs-keyword">return</span> !_.contains(rest, value); }); };</pre></div></div> </li> <li id="section-57"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-57">&#182;</a> </div> <p>Zip together multiple lists into a single array — elements that share an index go together.</p> </div> <div class="content"><div class='highlight'><pre> _.zip = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> length = _.max(_.pluck(<span class="hljs-built_in">arguments</span>, <span class="hljs-string">'length'</span>).concat(<span class="hljs-number">0</span>)); <span class="hljs-keyword">var</span> results = <span class="hljs-keyword">new</span> <span class="hljs-built_in">Array</span>(length); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>; i &lt; length; i++) { results[i] = _.pluck(<span class="hljs-built_in">arguments</span>, <span class="hljs-string">''</span> + i); } <span class="hljs-keyword">return</span> results; };</pre></div></div> </li> <li id="section-58"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-58">&#182;</a> </div> <p>Converts lists into objects. Pass either a single array of <code>[key, value]</code> pairs, or two parallel arrays of the same length — one of keys, and one of the corresponding values.</p> </div> <div class="content"><div class='highlight'><pre> _.object = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(list, values)</span> {</span> <span class="hljs-keyword">if</span> (list == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> {}; <span class="hljs-keyword">var</span> result = {}; <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>, length = list.length; i &lt; length; i++) { <span class="hljs-keyword">if</span> (values) { result[list[i]] = values[i]; } <span class="hljs-keyword">else</span> { result[list[i][<span class="hljs-number">0</span>]] = list[i][<span class="hljs-number">1</span>]; } } <span class="hljs-keyword">return</span> result; };</pre></div></div> </li> <li id="section-59"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-59">&#182;</a> </div> <p>If the browser doesn’t supply us with indexOf (I’m looking at you, <strong>MSIE</strong>), we need this function. Return the position of the first occurrence of an item in an array, or -1 if the item is not included in the array. Delegates to <strong>ECMAScript 5</strong>‘s native <code>indexOf</code> if available. If the array is large and already in sort order, pass <code>true</code> for <strong>isSorted</strong> to use binary search.</p> </div> <div class="content"><div class='highlight'><pre> _.indexOf = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, item, isSorted)</span> {</span> <span class="hljs-keyword">if</span> (array == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> -<span class="hljs-number">1</span>; <span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>, length = array.length; <span class="hljs-keyword">if</span> (isSorted) { <span class="hljs-keyword">if</span> (<span class="hljs-keyword">typeof</span> isSorted == <span class="hljs-string">'number'</span>) { i = (isSorted &lt; <span class="hljs-number">0</span> ? <span class="hljs-built_in">Math</span>.max(<span class="hljs-number">0</span>, length + isSorted) : isSorted); } <span class="hljs-keyword">else</span> { i = _.sortedIndex(array, item); <span class="hljs-keyword">return</span> array[i] === item ? i : -<span class="hljs-number">1</span>; } } <span class="hljs-keyword">if</span> (nativeIndexOf &amp;&amp; array.indexOf === nativeIndexOf) <span class="hljs-keyword">return</span> array.indexOf(item, isSorted); <span class="hljs-keyword">for</span> (; i &lt; length; i++) <span class="hljs-keyword">if</span> (array[i] === item) <span class="hljs-keyword">return</span> i; <span class="hljs-keyword">return</span> -<span class="hljs-number">1</span>; };</pre></div></div> </li> <li id="section-60"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-60">&#182;</a> </div> <p>Delegates to <strong>ECMAScript 5</strong>‘s native <code>lastIndexOf</code> if available.</p> </div> <div class="content"><div class='highlight'><pre> _.lastIndexOf = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(array, item, from)</span> {</span> <span class="hljs-keyword">if</span> (array == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> -<span class="hljs-number">1</span>; <span class="hljs-keyword">var</span> hasIndex = from != <span class="hljs-literal">null</span>; <span class="hljs-keyword">if</span> (nativeLastIndexOf &amp;&amp; array.lastIndexOf === nativeLastIndexOf) { <span class="hljs-keyword">return</span> hasIndex ? array.lastIndexOf(item, from) : array.lastIndexOf(item); } <span class="hljs-keyword">var</span> i = (hasIndex ? from : array.length); <span class="hljs-keyword">while</span> (i--) <span class="hljs-keyword">if</span> (array[i] === item) <span class="hljs-keyword">return</span> i; <span class="hljs-keyword">return</span> -<span class="hljs-number">1</span>; };</pre></div></div> </li> <li id="section-61"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-61">&#182;</a> </div> <p>Generate an integer Array containing an arithmetic progression. A port of the native Python <code>range()</code> function. See <a href="http://docs.python.org/library/functions.html#range">the Python documentation</a>.</p> </div> <div class="content"><div class='highlight'><pre> _.range = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(start, stop, step)</span> {</span> <span class="hljs-keyword">if</span> (<span class="hljs-built_in">arguments</span>.length &lt;= <span class="hljs-number">1</span>) { stop = start || <span class="hljs-number">0</span>; start = <span class="hljs-number">0</span>; } step = <span class="hljs-built_in">arguments</span>[<span class="hljs-number">2</span>] || <span class="hljs-number">1</span>; <span class="hljs-keyword">var</span> length = <span class="hljs-built_in">Math</span>.max(<span class="hljs-built_in">Math</span>.ceil((stop - start) / step), <span class="hljs-number">0</span>); <span class="hljs-keyword">var</span> idx = <span class="hljs-number">0</span>; <span class="hljs-keyword">var</span> range = <span class="hljs-keyword">new</span> <span class="hljs-built_in">Array</span>(length); <span class="hljs-keyword">while</span>(idx &lt; length) { range[idx++] = start; start += step; } <span class="hljs-keyword">return</span> range; };</pre></div></div> </li> <li id="section-62"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-62">&#182;</a> </div> <h2 id="function-ahem-functions">Function (ahem) Functions</h2> </div> </li> <li id="section-63"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-63">&#182;</a> </div> </div> </li> <li id="section-64"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-64">&#182;</a> </div> <p>Reusable constructor function for prototype setting.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> ctor = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span>{</span>};</pre></div></div> </li> <li id="section-65"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-65">&#182;</a> </div> <p>Create a function bound to a given object (assigning <code>this</code>, and arguments, optionally). Delegates to <strong>ECMAScript 5</strong>‘s native <code>Function.bind</code> if available.</p> </div> <div class="content"><div class='highlight'><pre> _.bind = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func, context)</span> {</span> <span class="hljs-keyword">var</span> args, bound; <span class="hljs-keyword">if</span> (nativeBind &amp;&amp; func.bind === nativeBind) <span class="hljs-keyword">return</span> nativeBind.apply(func, slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>)); <span class="hljs-keyword">if</span> (!_.isFunction(func)) <span class="hljs-keyword">throw</span> <span class="hljs-keyword">new</span> <span class="hljs-built_in">TypeError</span>; args = slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">2</span>); <span class="hljs-keyword">return</span> bound = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">if</span> (!(<span class="hljs-keyword">this</span> <span class="hljs-keyword">instanceof</span> bound)) <span class="hljs-keyword">return</span> func.apply(context, args.concat(slice.call(<span class="hljs-built_in">arguments</span>))); ctor.prototype = func.prototype; <span class="hljs-keyword">var</span> self = <span class="hljs-keyword">new</span> ctor; ctor.prototype = <span class="hljs-literal">null</span>; <span class="hljs-keyword">var</span> result = func.apply(self, args.concat(slice.call(<span class="hljs-built_in">arguments</span>))); <span class="hljs-keyword">if</span> (<span class="hljs-built_in">Object</span>(result) === result) <span class="hljs-keyword">return</span> result; <span class="hljs-keyword">return</span> self; }; };</pre></div></div> </li> <li id="section-66"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-66">&#182;</a> </div> <p>Partially apply a function by creating a version that has had some of its arguments pre-filled, without changing its dynamic <code>this</code> context. _ acts as a placeholder, allowing any combination of arguments to be pre-filled.</p> </div> <div class="content"><div class='highlight'><pre> _.partial = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func)</span> {</span> <span class="hljs-keyword">var</span> boundArgs = slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>); <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> position = <span class="hljs-number">0</span>; <span class="hljs-keyword">var</span> args = boundArgs.slice(); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>, length = args.length; i &lt; length; i++) { <span class="hljs-keyword">if</span> (args[i] === _) args[i] = <span class="hljs-built_in">arguments</span>[position++]; } <span class="hljs-keyword">while</span> (position &lt; <span class="hljs-built_in">arguments</span>.length) args.push(<span class="hljs-built_in">arguments</span>[position++]); <span class="hljs-keyword">return</span> func.apply(<span class="hljs-keyword">this</span>, args); }; };</pre></div></div> </li> <li id="section-67"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-67">&#182;</a> </div> <p>Bind a number of an object’s methods to that object. Remaining arguments are the method names to be bound. Useful for ensuring that all callbacks defined on an object belong to it.</p> </div> <div class="content"><div class='highlight'><pre> _.bindAll = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> funcs = slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>); <span class="hljs-keyword">if</span> (funcs.length === <span class="hljs-number">0</span>) <span class="hljs-keyword">throw</span> <span class="hljs-keyword">new</span> <span class="hljs-built_in">Error</span>(<span class="hljs-string">'bindAll must be passed function names'</span>); each(funcs, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(f)</span> {</span> obj[f] = _.bind(obj[f], obj); }); <span class="hljs-keyword">return</span> obj; };</pre></div></div> </li> <li id="section-68"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-68">&#182;</a> </div> <p>Memoize an expensive function by storing its results.</p> </div> <div class="content"><div class='highlight'><pre> _.memoize = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func, hasher)</span> {</span> <span class="hljs-keyword">var</span> memo = {}; hasher || (hasher = _.identity); <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> key = hasher.apply(<span class="hljs-keyword">this</span>, <span class="hljs-built_in">arguments</span>); <span class="hljs-keyword">return</span> _.has(memo, key) ? memo[key] : (memo[key] = func.apply(<span class="hljs-keyword">this</span>, <span class="hljs-built_in">arguments</span>)); }; };</pre></div></div> </li> <li id="section-69"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-69">&#182;</a> </div> <p>Delays a function for the given number of milliseconds, and then calls it with the arguments supplied.</p> </div> <div class="content"><div class='highlight'><pre> _.delay = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func, wait)</span> {</span> <span class="hljs-keyword">var</span> args = slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">2</span>); <span class="hljs-keyword">return</span> setTimeout(<span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span>{</span> <span class="hljs-keyword">return</span> func.apply(<span class="hljs-literal">null</span>, args); }, wait); };</pre></div></div> </li> <li id="section-70"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-70">&#182;</a> </div> <p>Defers a function, scheduling it to run after the current call stack has cleared.</p> </div> <div class="content"><div class='highlight'><pre> _.defer = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func)</span> {</span> <span class="hljs-keyword">return</span> _.delay.apply(_, [func, <span class="hljs-number">1</span>].concat(slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>))); };</pre></div></div> </li> <li id="section-71"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-71">&#182;</a> </div> <p>Returns a function, that, when invoked, will only be triggered at most once during a given window of time. Normally, the throttled function will run as much as it can, without ever going more than once per <code>wait</code> duration; but if you’d like to disable the execution on the leading edge, pass <code>{leading: false}</code>. To disable execution on the trailing edge, ditto.</p> </div> <div class="content"><div class='highlight'><pre> _.throttle = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func, wait, options)</span> {</span> <span class="hljs-keyword">var</span> context, args, result; <span class="hljs-keyword">var</span> timeout = <span class="hljs-literal">null</span>; <span class="hljs-keyword">var</span> previous = <span class="hljs-number">0</span>; options || (options = {}); <span class="hljs-keyword">var</span> later = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> previous = options.leading === <span class="hljs-literal">false</span> ? <span class="hljs-number">0</span> : _.now(); timeout = <span class="hljs-literal">null</span>; result = func.apply(context, args); context = args = <span class="hljs-literal">null</span>; }; <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> now = _.now(); <span class="hljs-keyword">if</span> (!previous &amp;&amp; options.leading === <span class="hljs-literal">false</span>) previous = now; <span class="hljs-keyword">var</span> remaining = wait - (now - previous); context = <span class="hljs-keyword">this</span>; args = <span class="hljs-built_in">arguments</span>; <span class="hljs-keyword">if</span> (remaining &lt;= <span class="hljs-number">0</span>) { clearTimeout(timeout); timeout = <span class="hljs-literal">null</span>; previous = now; result = func.apply(context, args); context = args = <span class="hljs-literal">null</span>; } <span class="hljs-keyword">else</span> <span class="hljs-keyword">if</span> (!timeout &amp;&amp; options.trailing !== <span class="hljs-literal">false</span>) { timeout = setTimeout(later, remaining); } <span class="hljs-keyword">return</span> result; }; };</pre></div></div> </li> <li id="section-72"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-72">&#182;</a> </div> <p>Returns a function, that, as long as it continues to be invoked, will not be triggered. The function will be called after it stops being called for N milliseconds. If <code>immediate</code> is passed, trigger the function on the leading edge, instead of the trailing.</p> </div> <div class="content"><div class='highlight'><pre> _.debounce = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func, wait, immediate)</span> {</span> <span class="hljs-keyword">var</span> timeout, args, context, timestamp, result; <span class="hljs-keyword">var</span> later = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> last = _.now() - timestamp; <span class="hljs-keyword">if</span> (last &lt; wait) { timeout = setTimeout(later, wait - last); } <span class="hljs-keyword">else</span> { timeout = <span class="hljs-literal">null</span>; <span class="hljs-keyword">if</span> (!immediate) { result = func.apply(context, args); context = args = <span class="hljs-literal">null</span>; } } }; <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> context = <span class="hljs-keyword">this</span>; args = <span class="hljs-built_in">arguments</span>; timestamp = _.now(); <span class="hljs-keyword">var</span> callNow = immediate &amp;&amp; !timeout; <span class="hljs-keyword">if</span> (!timeout) { timeout = setTimeout(later, wait); } <span class="hljs-keyword">if</span> (callNow) { result = func.apply(context, args); context = args = <span class="hljs-literal">null</span>; } <span class="hljs-keyword">return</span> result; }; };</pre></div></div> </li> <li id="section-73"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-73">&#182;</a> </div> <p>Returns a function that will be executed at most one time, no matter how often you call it. Useful for lazy initialization.</p> </div> <div class="content"><div class='highlight'><pre> _.once = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func)</span> {</span> <span class="hljs-keyword">var</span> ran = <span class="hljs-literal">false</span>, memo; <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">if</span> (ran) <span class="hljs-keyword">return</span> memo; ran = <span class="hljs-literal">true</span>; memo = func.apply(<span class="hljs-keyword">this</span>, <span class="hljs-built_in">arguments</span>); func = <span class="hljs-literal">null</span>; <span class="hljs-keyword">return</span> memo; }; };</pre></div></div> </li> <li id="section-74"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-74">&#182;</a> </div> <p>Returns the first function passed as an argument to the second, allowing you to adjust arguments, run code before and after, and conditionally execute the original function.</p> </div> <div class="content"><div class='highlight'><pre> _.wrap = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(func, wrapper)</span> {</span> <span class="hljs-keyword">return</span> _.partial(wrapper, func); };</pre></div></div> </li> <li id="section-75"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-75">&#182;</a> </div> <p>Returns a function that is the composition of a list of functions, each consuming the return value of the function that follows.</p> </div> <div class="content"><div class='highlight'><pre> _.compose = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> funcs = <span class="hljs-built_in">arguments</span>; <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> args = <span class="hljs-built_in">arguments</span>; <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = funcs.length - <span class="hljs-number">1</span>; i &gt;= <span class="hljs-number">0</span>; i--) { args = [funcs[i].apply(<span class="hljs-keyword">this</span>, args)]; } <span class="hljs-keyword">return</span> args[<span class="hljs-number">0</span>]; }; };</pre></div></div> </li> <li id="section-76"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-76">&#182;</a> </div> <p>Returns a function that will only be executed after being called N times.</p> </div> <div class="content"><div class='highlight'><pre> _.after = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(times, func)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">if</span> (--times &lt; <span class="hljs-number">1</span>) { <span class="hljs-keyword">return</span> func.apply(<span class="hljs-keyword">this</span>, <span class="hljs-built_in">arguments</span>); } }; };</pre></div></div> </li> <li id="section-77"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-77">&#182;</a> </div> <h2 id="object-functions">Object Functions</h2> </div> </li> <li id="section-78"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-78">&#182;</a> </div> </div> </li> <li id="section-79"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-79">&#182;</a> </div> <p>Retrieve the names of an object’s properties. Delegates to <strong>ECMAScript 5</strong>‘s native <code>Object.keys</code></p> </div> <div class="content"><div class='highlight'><pre> _.keys = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">if</span> (!_.isObject(obj)) <span class="hljs-keyword">return</span> []; <span class="hljs-keyword">if</span> (nativeKeys) <span class="hljs-keyword">return</span> nativeKeys(obj); <span class="hljs-keyword">var</span> keys = []; <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> key <span class="hljs-keyword">in</span> obj) <span class="hljs-keyword">if</span> (_.has(obj, key)) keys.push(key); <span class="hljs-keyword">return</span> keys; };</pre></div></div> </li> <li id="section-80"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-80">&#182;</a> </div> <p>Retrieve the values of an object’s properties.</p> </div> <div class="content"><div class='highlight'><pre> _.values = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> keys = _.keys(obj); <span class="hljs-keyword">var</span> length = keys.length; <span class="hljs-keyword">var</span> values = <span class="hljs-keyword">new</span> <span class="hljs-built_in">Array</span>(length); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>; i &lt; length; i++) { values[i] = obj[keys[i]]; } <span class="hljs-keyword">return</span> values; };</pre></div></div> </li> <li id="section-81"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-81">&#182;</a> </div> <p>Convert an object into a list of <code>[key, value]</code> pairs.</p> </div> <div class="content"><div class='highlight'><pre> _.pairs = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> keys = _.keys(obj); <span class="hljs-keyword">var</span> length = keys.length; <span class="hljs-keyword">var</span> pairs = <span class="hljs-keyword">new</span> <span class="hljs-built_in">Array</span>(length); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>; i &lt; length; i++) { pairs[i] = [keys[i], obj[keys[i]]]; } <span class="hljs-keyword">return</span> pairs; };</pre></div></div> </li> <li id="section-82"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-82">&#182;</a> </div> <p>Invert the keys and values of an object. The values must be serializable.</p> </div> <div class="content"><div class='highlight'><pre> _.invert = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> result = {}; <span class="hljs-keyword">var</span> keys = _.keys(obj); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>, length = keys.length; i &lt; length; i++) { result[obj[keys[i]]] = keys[i]; } <span class="hljs-keyword">return</span> result; };</pre></div></div> </li> <li id="section-83"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-83">&#182;</a> </div> <p>Return a sorted list of the function names available on the object. Aliased as <code>methods</code></p> </div> <div class="content"><div class='highlight'><pre> _.functions = _.methods = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> names = []; <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> key <span class="hljs-keyword">in</span> obj) { <span class="hljs-keyword">if</span> (_.isFunction(obj[key])) names.push(key); } <span class="hljs-keyword">return</span> names.sort(); };</pre></div></div> </li> <li id="section-84"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-84">&#182;</a> </div> <p>Extend a given object with all the properties in passed-in object(s).</p> </div> <div class="content"><div class='highlight'><pre> _.extend = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> each(slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>), <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(source)</span> {</span> <span class="hljs-keyword">if</span> (source) { <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> prop <span class="hljs-keyword">in</span> source) { obj[prop] = source[prop]; } } }); <span class="hljs-keyword">return</span> obj; };</pre></div></div> </li> <li id="section-85"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-85">&#182;</a> </div> <p>Return a copy of the object only containing the whitelisted properties.</p> </div> <div class="content"><div class='highlight'><pre> _.pick = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> copy = {}; <span class="hljs-keyword">var</span> keys = concat.apply(ArrayProto, slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>)); each(keys, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(key)</span> {</span> <span class="hljs-keyword">if</span> (key <span class="hljs-keyword">in</span> obj) copy[key] = obj[key]; }); <span class="hljs-keyword">return</span> copy; };</pre></div></div> </li> <li id="section-86"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-86">&#182;</a> </div> <p>Return a copy of the object without the blacklisted properties.</p> </div> <div class="content"><div class='highlight'><pre> _.omit = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">var</span> copy = {}; <span class="hljs-keyword">var</span> keys = concat.apply(ArrayProto, slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>)); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> key <span class="hljs-keyword">in</span> obj) { <span class="hljs-keyword">if</span> (!_.contains(keys, key)) copy[key] = obj[key]; } <span class="hljs-keyword">return</span> copy; };</pre></div></div> </li> <li id="section-87"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-87">&#182;</a> </div> <p>Fill in a given object with default properties.</p> </div> <div class="content"><div class='highlight'><pre> _.defaults = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> each(slice.call(<span class="hljs-built_in">arguments</span>, <span class="hljs-number">1</span>), <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(source)</span> {</span> <span class="hljs-keyword">if</span> (source) { <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> prop <span class="hljs-keyword">in</span> source) { <span class="hljs-keyword">if</span> (obj[prop] === <span class="hljs-keyword">void</span> <span class="hljs-number">0</span>) obj[prop] = source[prop]; } } }); <span class="hljs-keyword">return</span> obj; };</pre></div></div> </li> <li id="section-88"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-88">&#182;</a> </div> <p>Create a (shallow-cloned) duplicate of an object.</p> </div> <div class="content"><div class='highlight'><pre> _.clone = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">if</span> (!_.isObject(obj)) <span class="hljs-keyword">return</span> obj; <span class="hljs-keyword">return</span> _.isArray(obj) ? obj.slice() : _.extend({}, obj); };</pre></div></div> </li> <li id="section-89"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-89">&#182;</a> </div> <p>Invokes interceptor with the obj, and then returns obj. The primary purpose of this method is to “tap into” a method chain, in order to perform operations on intermediate results within the chain.</p> </div> <div class="content"><div class='highlight'><pre> _.tap = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, interceptor)</span> {</span> interceptor(obj); <span class="hljs-keyword">return</span> obj; };</pre></div></div> </li> <li id="section-90"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-90">&#182;</a> </div> <p>Internal recursive comparison function for <code>isEqual</code>.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> eq = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(a, b, aStack, bStack)</span> {</span></pre></div></div> </li> <li id="section-91"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-91">&#182;</a> </div> <p>Identical objects are equal. <code>0 === -0</code>, but they aren’t identical. See the <a href="http://wiki.ecmascript.org/doku.php?id=harmony:egal">Harmony <code>egal</code> proposal</a>.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (a === b) <span class="hljs-keyword">return</span> a !== <span class="hljs-number">0</span> || <span class="hljs-number">1</span> / a == <span class="hljs-number">1</span> / b;</pre></div></div> </li> <li id="section-92"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-92">&#182;</a> </div> <p>A strict comparison is necessary because <code>null == undefined</code>.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (a == <span class="hljs-literal">null</span> || b == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> a === b;</pre></div></div> </li> <li id="section-93"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-93">&#182;</a> </div> <p>Unwrap any wrapped objects.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (a <span class="hljs-keyword">instanceof</span> _) a = a._wrapped; <span class="hljs-keyword">if</span> (b <span class="hljs-keyword">instanceof</span> _) b = b._wrapped;</pre></div></div> </li> <li id="section-94"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-94">&#182;</a> </div> <p>Compare <code>[[Class]]</code> names.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> className = toString.call(a); <span class="hljs-keyword">if</span> (className != toString.call(b)) <span class="hljs-keyword">return</span> <span class="hljs-literal">false</span>; <span class="hljs-keyword">switch</span> (className) {</pre></div></div> </li> <li id="section-95"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-95">&#182;</a> </div> <p>Strings, numbers, dates, and booleans are compared by value.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">case</span> <span class="hljs-string">'[object String]'</span>:</pre></div></div> </li> <li id="section-96"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-96">&#182;</a> </div> <p>Primitives and their corresponding object wrappers are equivalent; thus, <code>&quot;5&quot;</code> is equivalent to <code>new String(&quot;5&quot;)</code>.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">return</span> a == <span class="hljs-built_in">String</span>(b); <span class="hljs-keyword">case</span> <span class="hljs-string">'[object Number]'</span>:</pre></div></div> </li> <li id="section-97"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-97">&#182;</a> </div> <p><code>NaN</code>s are equivalent, but non-reflexive. An <code>egal</code> comparison is performed for other numeric values.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">return</span> a != +a ? b != +b : (a == <span class="hljs-number">0</span> ? <span class="hljs-number">1</span> / a == <span class="hljs-number">1</span> / b : a == +b); <span class="hljs-keyword">case</span> <span class="hljs-string">'[object Date]'</span>: <span class="hljs-keyword">case</span> <span class="hljs-string">'[object Boolean]'</span>:</pre></div></div> </li> <li id="section-98"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-98">&#182;</a> </div> <p>Coerce dates and booleans to numeric primitive values. Dates are compared by their millisecond representations. Note that invalid dates with millisecond representations of <code>NaN</code> are not equivalent.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">return</span> +a == +b;</pre></div></div> </li> <li id="section-99"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-99">&#182;</a> </div> <p>RegExps are compared by their source patterns and flags.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">case</span> <span class="hljs-string">'[object RegExp]'</span>: <span class="hljs-keyword">return</span> a.source == b.source &amp;&amp; a.global == b.global &amp;&amp; a.multiline == b.multiline &amp;&amp; a.ignoreCase == b.ignoreCase; } <span class="hljs-keyword">if</span> (<span class="hljs-keyword">typeof</span> a != <span class="hljs-string">'object'</span> || <span class="hljs-keyword">typeof</span> b != <span class="hljs-string">'object'</span>) <span class="hljs-keyword">return</span> <span class="hljs-literal">false</span>;</pre></div></div> </li> <li id="section-100"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-100">&#182;</a> </div> <p>Assume equality for cyclic structures. The algorithm for detecting cyclic structures is adapted from ES 5.1 section 15.12.3, abstract operation <code>JO</code>.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> length = aStack.length; <span class="hljs-keyword">while</span> (length--) {</pre></div></div> </li> <li id="section-101"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-101">&#182;</a> </div> <p>Linear search. Performance is inversely proportional to the number of unique nested structures.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (aStack[length] == a) <span class="hljs-keyword">return</span> bStack[length] == b; }</pre></div></div> </li> <li id="section-102"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-102">&#182;</a> </div> <p>Objects with different constructors are not equivalent, but <code>Object</code>s from different frames are.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> aCtor = a.constructor, bCtor = b.constructor; <span class="hljs-keyword">if</span> (aCtor !== bCtor &amp;&amp; !(_.isFunction(aCtor) &amp;&amp; (aCtor <span class="hljs-keyword">instanceof</span> aCtor) &amp;&amp; _.isFunction(bCtor) &amp;&amp; (bCtor <span class="hljs-keyword">instanceof</span> bCtor)) &amp;&amp; (<span class="hljs-string">'constructor'</span> <span class="hljs-keyword">in</span> a &amp;&amp; <span class="hljs-string">'constructor'</span> <span class="hljs-keyword">in</span> b)) { <span class="hljs-keyword">return</span> <span class="hljs-literal">false</span>; }</pre></div></div> </li> <li id="section-103"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-103">&#182;</a> </div> <p>Add the first object to the stack of traversed objects.</p> </div> <div class="content"><div class='highlight'><pre> aStack.push(a); bStack.push(b); <span class="hljs-keyword">var</span> size = <span class="hljs-number">0</span>, result = <span class="hljs-literal">true</span>;</pre></div></div> </li> <li id="section-104"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-104">&#182;</a> </div> <p>Recursively compare objects and arrays.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (className == <span class="hljs-string">'[object Array]'</span>) {</pre></div></div> </li> <li id="section-105"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-105">&#182;</a> </div> <p>Compare array lengths to determine if a deep comparison is necessary.</p> </div> <div class="content"><div class='highlight'><pre> size = a.length; result = size == b.length; <span class="hljs-keyword">if</span> (result) {</pre></div></div> </li> <li id="section-106"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-106">&#182;</a> </div> <p>Deep compare the contents, ignoring non-numeric properties.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">while</span> (size--) { <span class="hljs-keyword">if</span> (!(result = eq(a[size], b[size], aStack, bStack))) <span class="hljs-keyword">break</span>; } } } <span class="hljs-keyword">else</span> {</pre></div></div> </li> <li id="section-107"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-107">&#182;</a> </div> <p>Deep compare objects.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> key <span class="hljs-keyword">in</span> a) { <span class="hljs-keyword">if</span> (_.has(a, key)) {</pre></div></div> </li> <li id="section-108"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-108">&#182;</a> </div> <p>Count the expected number of properties.</p> </div> <div class="content"><div class='highlight'><pre> size++;</pre></div></div> </li> <li id="section-109"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-109">&#182;</a> </div> <p>Deep compare each member.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (!(result = _.has(b, key) &amp;&amp; eq(a[key], b[key], aStack, bStack))) <span class="hljs-keyword">break</span>; } }</pre></div></div> </li> <li id="section-110"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-110">&#182;</a> </div> <p>Ensure that both objects contain the same number of properties.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (result) { <span class="hljs-keyword">for</span> (key <span class="hljs-keyword">in</span> b) { <span class="hljs-keyword">if</span> (_.has(b, key) &amp;&amp; !(size--)) <span class="hljs-keyword">break</span>; } result = !size; } }</pre></div></div> </li> <li id="section-111"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-111">&#182;</a> </div> <p>Remove the first object from the stack of traversed objects.</p> </div> <div class="content"><div class='highlight'><pre> aStack.pop(); bStack.pop(); <span class="hljs-keyword">return</span> result; };</pre></div></div> </li> <li id="section-112"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-112">&#182;</a> </div> <p>Perform a deep comparison to check if two objects are equal.</p> </div> <div class="content"><div class='highlight'><pre> _.isEqual = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(a, b)</span> {</span> <span class="hljs-keyword">return</span> eq(a, b, [], []); };</pre></div></div> </li> <li id="section-113"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-113">&#182;</a> </div> <p>Is a given array, string, or object empty? An “empty” object has no enumerable own-properties.</p> </div> <div class="content"><div class='highlight'><pre> _.isEmpty = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">if</span> (obj == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> <span class="hljs-literal">true</span>; <span class="hljs-keyword">if</span> (_.isArray(obj) || _.isString(obj)) <span class="hljs-keyword">return</span> obj.length === <span class="hljs-number">0</span>; <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> key <span class="hljs-keyword">in</span> obj) <span class="hljs-keyword">if</span> (_.has(obj, key)) <span class="hljs-keyword">return</span> <span class="hljs-literal">false</span>; <span class="hljs-keyword">return</span> <span class="hljs-literal">true</span>; };</pre></div></div> </li> <li id="section-114"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-114">&#182;</a> </div> <p>Is a given value a DOM element?</p> </div> <div class="content"><div class='highlight'><pre> _.isElement = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> !!(obj &amp;&amp; obj.nodeType === <span class="hljs-number">1</span>); };</pre></div></div> </li> <li id="section-115"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-115">&#182;</a> </div> <p>Is a given value an array? Delegates to ECMA5’s native Array.isArray</p> </div> <div class="content"><div class='highlight'><pre> _.isArray = nativeIsArray || <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> toString.call(obj) == <span class="hljs-string">'[object Array]'</span>; };</pre></div></div> </li> <li id="section-116"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-116">&#182;</a> </div> <p>Is a given variable an object?</p> </div> <div class="content"><div class='highlight'><pre> _.isObject = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> obj === <span class="hljs-built_in">Object</span>(obj); };</pre></div></div> </li> <li id="section-117"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-117">&#182;</a> </div> <p>Add some isType methods: isArguments, isFunction, isString, isNumber, isDate, isRegExp.</p> </div> <div class="content"><div class='highlight'><pre> each([<span class="hljs-string">'Arguments'</span>, <span class="hljs-string">'Function'</span>, <span class="hljs-string">'String'</span>, <span class="hljs-string">'Number'</span>, <span class="hljs-string">'Date'</span>, <span class="hljs-string">'RegExp'</span>], <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(name)</span> {</span> _[<span class="hljs-string">'is'</span> + name] = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> toString.call(obj) == <span class="hljs-string">'[object '</span> + name + <span class="hljs-string">']'</span>; }; });</pre></div></div> </li> <li id="section-118"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-118">&#182;</a> </div> <p>Define a fallback version of the method in browsers (ahem, IE), where there isn’t any inspectable “Arguments” type.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (!_.isArguments(<span class="hljs-built_in">arguments</span>)) { _.isArguments = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> !!(obj &amp;&amp; _.has(obj, <span class="hljs-string">'callee'</span>)); }; }</pre></div></div> </li> <li id="section-119"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-119">&#182;</a> </div> <p>Optimize <code>isFunction</code> if appropriate.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (<span class="hljs-keyword">typeof</span> (<span class="hljs-regexp">/./</span>) !== <span class="hljs-string">'function'</span>) { _.isFunction = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-keyword">typeof</span> obj === <span class="hljs-string">'function'</span>; }; }</pre></div></div> </li> <li id="section-120"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-120">&#182;</a> </div> <p>Is a given object a finite number?</p> </div> <div class="content"><div class='highlight'><pre> _.isFinite = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-built_in">isFinite</span>(obj) &amp;&amp; !<span class="hljs-built_in">isNaN</span>(<span class="hljs-built_in">parseFloat</span>(obj)); };</pre></div></div> </li> <li id="section-121"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-121">&#182;</a> </div> <p>Is the given value <code>NaN</code>? (NaN is the only number which does not equal itself).</p> </div> <div class="content"><div class='highlight'><pre> _.isNaN = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> _.isNumber(obj) &amp;&amp; obj != +obj; };</pre></div></div> </li> <li id="section-122"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-122">&#182;</a> </div> <p>Is a given value a boolean?</p> </div> <div class="content"><div class='highlight'><pre> _.isBoolean = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> obj === <span class="hljs-literal">true</span> || obj === <span class="hljs-literal">false</span> || toString.call(obj) == <span class="hljs-string">'[object Boolean]'</span>; };</pre></div></div> </li> <li id="section-123"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-123">&#182;</a> </div> <p>Is a given value equal to null?</p> </div> <div class="content"><div class='highlight'><pre> _.isNull = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> obj === <span class="hljs-literal">null</span>; };</pre></div></div> </li> <li id="section-124"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-124">&#182;</a> </div> <p>Is a given variable undefined?</p> </div> <div class="content"><div class='highlight'><pre> _.isUndefined = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> obj === <span class="hljs-keyword">void</span> <span class="hljs-number">0</span>; };</pre></div></div> </li> <li id="section-125"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-125">&#182;</a> </div> <p>Shortcut function for checking if an object has a given property directly on itself (in other words, not on a prototype).</p> </div> <div class="content"><div class='highlight'><pre> _.has = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj, key)</span> {</span> <span class="hljs-keyword">return</span> hasOwnProperty.call(obj, key); };</pre></div></div> </li> <li id="section-126"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-126">&#182;</a> </div> <h2 id="utility-functions">Utility Functions</h2> </div> </li> <li id="section-127"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-127">&#182;</a> </div> </div> </li> <li id="section-128"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-128">&#182;</a> </div> <p>Run Underscore.js in <em>noConflict</em> mode, returning the <code>_</code> variable to its previous owner. Returns a reference to the Underscore object.</p> </div> <div class="content"><div class='highlight'><pre> _.noConflict = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> root._ = previousUnderscore; <span class="hljs-keyword">return</span> <span class="hljs-keyword">this</span>; };</pre></div></div> </li> <li id="section-129"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-129">&#182;</a> </div> <p>Keep the identity function around for default iterators.</p> </div> <div class="content"><div class='highlight'><pre> _.identity = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span> {</span> <span class="hljs-keyword">return</span> value; }; _.constant = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(value)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span> <span class="hljs-params">()</span> {</span> <span class="hljs-keyword">return</span> value; }; }; _.property = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(key)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> obj[key]; }; };</pre></div></div> </li> <li id="section-130"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-130">&#182;</a> </div> <p>Returns a predicate for checking whether an object has a given set of <code>key:value</code> pairs.</p> </div> <div class="content"><div class='highlight'><pre> _.matches = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(attrs)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">if</span> (obj === attrs) <span class="hljs-keyword">return</span> <span class="hljs-literal">true</span>; <span class="hljs-comment">//avoid comparing an object to itself.</span> <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> key <span class="hljs-keyword">in</span> attrs) { <span class="hljs-keyword">if</span> (attrs[key] !== obj[key]) <span class="hljs-keyword">return</span> <span class="hljs-literal">false</span>; } <span class="hljs-keyword">return</span> <span class="hljs-literal">true</span>; } };</pre></div></div> </li> <li id="section-131"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-131">&#182;</a> </div> <p>Run a function <strong>n</strong> times.</p> </div> <div class="content"><div class='highlight'><pre> _.times = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(n, iterator, context)</span> {</span> <span class="hljs-keyword">var</span> accum = <span class="hljs-built_in">Array</span>(<span class="hljs-built_in">Math</span>.max(<span class="hljs-number">0</span>, n)); <span class="hljs-keyword">for</span> (<span class="hljs-keyword">var</span> i = <span class="hljs-number">0</span>; i &lt; n; i++) accum[i] = iterator.call(context, i); <span class="hljs-keyword">return</span> accum; };</pre></div></div> </li> <li id="section-132"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-132">&#182;</a> </div> <p>Return a random integer between min and max (inclusive).</p> </div> <div class="content"><div class='highlight'><pre> _.random = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(min, max)</span> {</span> <span class="hljs-keyword">if</span> (max == <span class="hljs-literal">null</span>) { max = min; min = <span class="hljs-number">0</span>; } <span class="hljs-keyword">return</span> min + <span class="hljs-built_in">Math</span>.floor(<span class="hljs-built_in">Math</span>.random() * (max - min + <span class="hljs-number">1</span>)); };</pre></div></div> </li> <li id="section-133"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-133">&#182;</a> </div> <p>A (possibly faster) way to get the current timestamp as an integer.</p> </div> <div class="content"><div class='highlight'><pre> _.now = <span class="hljs-built_in">Date</span>.now || <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-keyword">new</span> <span class="hljs-built_in">Date</span>().getTime(); };</pre></div></div> </li> <li id="section-134"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-134">&#182;</a> </div> <p>List of HTML entities for escaping.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> entityMap = { <span class="hljs-built_in">escape</span>: { <span class="hljs-string">'&amp;'</span>: <span class="hljs-string">'&amp;amp;'</span>, <span class="hljs-string">'&lt;'</span>: <span class="hljs-string">'&amp;lt;'</span>, <span class="hljs-string">'&gt;'</span>: <span class="hljs-string">'&amp;gt;'</span>, <span class="hljs-string">'"'</span>: <span class="hljs-string">'&amp;quot;'</span>, <span class="hljs-string">"'"</span>: <span class="hljs-string">'&amp;#x27;'</span> } }; entityMap.unescape = _.invert(entityMap.escape);</pre></div></div> </li> <li id="section-135"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-135">&#182;</a> </div> <p>Regexes containing the keys and values listed immediately above.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> entityRegexes = { <span class="hljs-built_in">escape</span>: <span class="hljs-keyword">new</span> <span class="hljs-built_in">RegExp</span>(<span class="hljs-string">'['</span> + _.keys(entityMap.escape).join(<span class="hljs-string">''</span>) + <span class="hljs-string">']'</span>, <span class="hljs-string">'g'</span>), <span class="hljs-built_in">unescape</span>: <span class="hljs-keyword">new</span> <span class="hljs-built_in">RegExp</span>(<span class="hljs-string">'('</span> + _.keys(entityMap.unescape).join(<span class="hljs-string">'|'</span>) + <span class="hljs-string">')'</span>, <span class="hljs-string">'g'</span>) };</pre></div></div> </li> <li id="section-136"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-136">&#182;</a> </div> <p>Functions for escaping and unescaping strings to/from HTML interpolation.</p> </div> <div class="content"><div class='highlight'><pre> _.each([<span class="hljs-string">'escape'</span>, <span class="hljs-string">'unescape'</span>], <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(method)</span> {</span> _[method] = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(string)</span> {</span> <span class="hljs-keyword">if</span> (string == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> <span class="hljs-string">''</span>; <span class="hljs-keyword">return</span> (<span class="hljs-string">''</span> + string).replace(entityRegexes[method], <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(match)</span> {</span> <span class="hljs-keyword">return</span> entityMap[method][match]; }); }; });</pre></div></div> </li> <li id="section-137"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-137">&#182;</a> </div> <p>If the value of the named <code>property</code> is a function then invoke it with the <code>object</code> as context; otherwise, return it.</p> </div> <div class="content"><div class='highlight'><pre> _.result = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(object, property)</span> {</span> <span class="hljs-keyword">if</span> (object == <span class="hljs-literal">null</span>) <span class="hljs-keyword">return</span> <span class="hljs-keyword">void</span> <span class="hljs-number">0</span>; <span class="hljs-keyword">var</span> value = object[property]; <span class="hljs-keyword">return</span> _.isFunction(value) ? value.call(object) : value; };</pre></div></div> </li> <li id="section-138"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-138">&#182;</a> </div> <p>Add your own custom functions to the Underscore object.</p> </div> <div class="content"><div class='highlight'><pre> _.mixin = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> each(_.functions(obj), <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(name)</span> {</span> <span class="hljs-keyword">var</span> func = _[name] = obj[name]; _.prototype[name] = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> args = [<span class="hljs-keyword">this</span>._wrapped]; push.apply(args, <span class="hljs-built_in">arguments</span>); <span class="hljs-keyword">return</span> result.call(<span class="hljs-keyword">this</span>, func.apply(_, args)); }; }); };</pre></div></div> </li> <li id="section-139"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-139">&#182;</a> </div> <p>Generate a unique integer id (unique within the entire client session). Useful for temporary DOM ids.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> idCounter = <span class="hljs-number">0</span>; _.uniqueId = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(prefix)</span> {</span> <span class="hljs-keyword">var</span> id = ++idCounter + <span class="hljs-string">''</span>; <span class="hljs-keyword">return</span> prefix ? prefix + id : id; };</pre></div></div> </li> <li id="section-140"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-140">&#182;</a> </div> <p>By default, Underscore uses ERB-style template delimiters, change the following template settings to use alternative delimiters.</p> </div> <div class="content"><div class='highlight'><pre> _.templateSettings = { evaluate : <span class="hljs-regexp">/&lt;%([\s\S]+?)%&gt;/g</span>, interpolate : <span class="hljs-regexp">/&lt;%=([\s\S]+?)%&gt;/g</span>, <span class="hljs-built_in">escape</span> : <span class="hljs-regexp">/&lt;%-([\s\S]+?)%&gt;/g</span> };</pre></div></div> </li> <li id="section-141"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-141">&#182;</a> </div> <p>When customizing <code>templateSettings</code>, if you don’t want to define an interpolation, evaluation or escaping regex, we need one that is guaranteed not to match.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> noMatch = <span class="hljs-regexp">/(.)^/</span>;</pre></div></div> </li> <li id="section-142"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-142">&#182;</a> </div> <p>Certain characters need to be escaped so that they can be put into a string literal.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> escapes = { <span class="hljs-string">"'"</span>: <span class="hljs-string">"'"</span>, <span class="hljs-string">'\\'</span>: <span class="hljs-string">'\\'</span>, <span class="hljs-string">'\r'</span>: <span class="hljs-string">'r'</span>, <span class="hljs-string">'\n'</span>: <span class="hljs-string">'n'</span>, <span class="hljs-string">'\t'</span>: <span class="hljs-string">'t'</span>, <span class="hljs-string">'\u2028'</span>: <span class="hljs-string">'u2028'</span>, <span class="hljs-string">'\u2029'</span>: <span class="hljs-string">'u2029'</span> }; <span class="hljs-keyword">var</span> escaper = <span class="hljs-regexp">/\\|'|\r|\n|\t|\u2028|\u2029/g</span>;</pre></div></div> </li> <li id="section-143"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-143">&#182;</a> </div> <p>JavaScript micro-templating, similar to John Resig’s implementation. Underscore templating handles arbitrary delimiters, preserves whitespace, and correctly escapes quotes within interpolated code.</p> </div> <div class="content"><div class='highlight'><pre> _.template = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(text, data, settings)</span> {</span> <span class="hljs-keyword">var</span> render; settings = _.defaults({}, settings, _.templateSettings);</pre></div></div> </li> <li id="section-144"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-144">&#182;</a> </div> <p>Combine delimiters into one regular expression via alternation.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> matcher = <span class="hljs-keyword">new</span> <span class="hljs-built_in">RegExp</span>([ (settings.escape || noMatch).source, (settings.interpolate || noMatch).source, (settings.evaluate || noMatch).source ].join(<span class="hljs-string">'|'</span>) + <span class="hljs-string">'|$'</span>, <span class="hljs-string">'g'</span>);</pre></div></div> </li> <li id="section-145"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-145">&#182;</a> </div> <p>Compile the template source, escaping string literals appropriately.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> index = <span class="hljs-number">0</span>; <span class="hljs-keyword">var</span> source = <span class="hljs-string">"__p+='"</span>; text.replace(matcher, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(match, escape, interpolate, evaluate, offset)</span> {</span> source += text.slice(index, offset) .replace(escaper, <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(match)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-string">'\\'</span> + escapes[match]; }); <span class="hljs-keyword">if</span> (<span class="hljs-built_in">escape</span>) { source += <span class="hljs-string">"'+\n((__t=("</span> + <span class="hljs-built_in">escape</span> + <span class="hljs-string">"))==null?'':_.escape(__t))+\n'"</span>; } <span class="hljs-keyword">if</span> (interpolate) { source += <span class="hljs-string">"'+\n((__t=("</span> + interpolate + <span class="hljs-string">"))==null?'':__t)+\n'"</span>; } <span class="hljs-keyword">if</span> (evaluate) { source += <span class="hljs-string">"';\n"</span> + evaluate + <span class="hljs-string">"\n__p+='"</span>; } index = offset + match.length; <span class="hljs-keyword">return</span> match; }); source += <span class="hljs-string">"';\n"</span>;</pre></div></div> </li> <li id="section-146"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-146">&#182;</a> </div> <p>If a variable is not specified, place data values in local scope.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (!settings.variable) source = <span class="hljs-string">'with(obj||{}){\n'</span> + source + <span class="hljs-string">'}\n'</span>; source = <span class="hljs-string">"var __t,__p='',__j=Array.prototype.join,"</span> + <span class="hljs-string">"print=function(){__p+=__j.call(arguments,'');};\n"</span> + source + <span class="hljs-string">"return __p;\n"</span>; <span class="hljs-keyword">try</span> { render = <span class="hljs-keyword">new</span> <span class="hljs-built_in">Function</span>(settings.variable || <span class="hljs-string">'obj'</span>, <span class="hljs-string">'_'</span>, source); } <span class="hljs-keyword">catch</span> (e) { e.source = source; <span class="hljs-keyword">throw</span> e; } <span class="hljs-keyword">if</span> (data) <span class="hljs-keyword">return</span> render(data, _); <span class="hljs-keyword">var</span> template = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(data)</span> {</span> <span class="hljs-keyword">return</span> render.call(<span class="hljs-keyword">this</span>, data, _); };</pre></div></div> </li> <li id="section-147"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-147">&#182;</a> </div> <p>Provide the compiled function source as a convenience for precompilation.</p> </div> <div class="content"><div class='highlight'><pre> template.source = <span class="hljs-string">'function('</span> + (settings.variable || <span class="hljs-string">'obj'</span>) + <span class="hljs-string">'){\n'</span> + source + <span class="hljs-string">'}'</span>; <span class="hljs-keyword">return</span> template; };</pre></div></div> </li> <li id="section-148"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-148">&#182;</a> </div> <p>Add a “chain” function, which will delegate to the wrapper.</p> </div> <div class="content"><div class='highlight'><pre> _.chain = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> _(obj).chain(); };</pre></div></div> </li> <li id="section-149"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-149">&#182;</a> </div> <h2 id="oop">OOP</h2> </div> </li> <li id="section-150"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-150">&#182;</a> </div> <p>If Underscore is called as a function, it returns a wrapped object that can be used OO-style. This wrapper holds altered versions of all the underscore functions. Wrapped objects may be chained.</p> </div> </li> <li id="section-151"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-151">&#182;</a> </div> <p>Helper function to continue chaining intermediate results.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">var</span> result = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(obj)</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-keyword">this</span>._chain ? _(obj).chain() : obj; };</pre></div></div> </li> <li id="section-152"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-152">&#182;</a> </div> <p>Add all of the Underscore functions to the wrapper object.</p> </div> <div class="content"><div class='highlight'><pre> _.mixin(_);</pre></div></div> </li> <li id="section-153"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-153">&#182;</a> </div> <p>Add all mutator Array functions to the wrapper.</p> </div> <div class="content"><div class='highlight'><pre> each([<span class="hljs-string">'pop'</span>, <span class="hljs-string">'push'</span>, <span class="hljs-string">'reverse'</span>, <span class="hljs-string">'shift'</span>, <span class="hljs-string">'sort'</span>, <span class="hljs-string">'splice'</span>, <span class="hljs-string">'unshift'</span>], <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(name)</span> {</span> <span class="hljs-keyword">var</span> method = ArrayProto[name]; _.prototype[name] = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">var</span> obj = <span class="hljs-keyword">this</span>._wrapped; method.apply(obj, <span class="hljs-built_in">arguments</span>); <span class="hljs-keyword">if</span> ((name == <span class="hljs-string">'shift'</span> || name == <span class="hljs-string">'splice'</span>) &amp;&amp; obj.length === <span class="hljs-number">0</span>) <span class="hljs-keyword">delete</span> obj[<span class="hljs-number">0</span>]; <span class="hljs-keyword">return</span> result.call(<span class="hljs-keyword">this</span>, obj); }; });</pre></div></div> </li> <li id="section-154"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-154">&#182;</a> </div> <p>Add all accessor Array functions to the wrapper.</p> </div> <div class="content"><div class='highlight'><pre> each([<span class="hljs-string">'concat'</span>, <span class="hljs-string">'join'</span>, <span class="hljs-string">'slice'</span>], <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">(name)</span> {</span> <span class="hljs-keyword">var</span> method = ArrayProto[name]; _.prototype[name] = <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">return</span> result.call(<span class="hljs-keyword">this</span>, method.apply(<span class="hljs-keyword">this</span>._wrapped, <span class="hljs-built_in">arguments</span>)); }; }); _.extend(_.prototype, {</pre></div></div> </li> <li id="section-155"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-155">&#182;</a> </div> <p>Start chaining a wrapped Underscore object.</p> </div> <div class="content"><div class='highlight'><pre> chain: <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">this</span>._chain = <span class="hljs-literal">true</span>; <span class="hljs-keyword">return</span> <span class="hljs-keyword">this</span>; },</pre></div></div> </li> <li id="section-156"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-156">&#182;</a> </div> <p>Extracts the result from a wrapped and chained object.</p> </div> <div class="content"><div class='highlight'><pre> value: <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">return</span> <span class="hljs-keyword">this</span>._wrapped; } });</pre></div></div> </li> <li id="section-157"> <div class="annotation"> <div class="pilwrap "> <a class="pilcrow" href="#section-157">&#182;</a> </div> <p>AMD registration happens at the end for compatibility with AMD loaders that may not enforce next-turn semantics on modules. Even though general practice for AMD registration is to be anonymous, underscore registers as a named module because, like jQuery, it is a base library that is popular enough to be bundled in a third party lib, but not be part of an AMD load request. Those cases could generate an error when an anonymous define() is called outside of a loader request.</p> </div> <div class="content"><div class='highlight'><pre> <span class="hljs-keyword">if</span> (<span class="hljs-keyword">typeof</span> define === <span class="hljs-string">'function'</span> &amp;&amp; define.amd) { define(<span class="hljs-string">'underscore'</span>, [], <span class="hljs-function"><span class="hljs-keyword">function</span><span class="hljs-params">()</span> {</span> <span class="hljs-keyword">return</span> _; }); } }).call(<span class="hljs-keyword">this</span>);</pre></div></div> </li> </ul> </div> </body> </html>
views/partials/infocard.html
mingzeke/jsbin
{{#feature request "infocard"}} <div hidden> <div class="card" id="infocard"> <div class="body"> {{#feature request "metadata"}} <form class="settings"> <label for="title">Title</label> <input type="text" id="title" value="{{{bin.settings.title}}}"> <label for="description">Description</label> <textarea rows="2" id="description">{{{bin.settings.description}}}</textarea> <details> <summary>Headers</summary> <label for="status">Status code</label> <select id="status" data-status="{{{bin.settings.statusCode}}}"> <option value=200>200 OK</option> </select> <div id="headers"> <label for="header-property">Custom headers</label> {{#eachkey bin.settings.headers}} <span class="row"><input type="text" placeholder="field" name="header-property" value="{{{this.key}}}">: <input type="text" placeholder="value" name="header-value" value="{{{this.value}}}"></span> {{/eachkey}} <span class="row"><input type="text" placeholder="field" name="header-property">: <input type="text" placeholder="value" name="header-value"></span> <button>+</button> </div> </details> </form> {{/feature}} <ul class="controls"> <li><a class="transfer" href="#transfer">Transfer</a> </li> <li><a href="/clone">Clone</a> </li> <li><a class="startingpoint" href="/save-as-template">Save as template</a> </li> <li><a class="export-as-gist" href="#export-gist">Export gist</a> </li> <li class="owner"><a href="/download">Download</a> </li> {{#feature request "delete"}} <li class="owner"><a class="deletebin" href="/delete">Delete</a></li> {{/feature}} </ul> </div> <header><img> <div class="visibility"></div> <div class="meta"> <div class="author">Bin info</div> <div class="name"><b></b><span class="pro">pro</span></div><span class="when"><canvas></canvas><time></time></span> </div> <div class="viewers"><b>0</b><span>viewers</span></div> </header> </div> </div> {{/feature}}
labs/architecture-examples/puremvc/index.html
ericelliott/todomvc
<!doctype html> <html lang="en" data-framework="puremvc"> <head> <meta charset="utf-8"> <title>PureMVC • TodoMVC</title> <link rel="stylesheet" href="bower_components/todomvc-common/base.css"> </head> <body> <section id="todoapp"> <header id="header"> <h1>todos</h1> <input id="new-todo" placeholder="What needs to be done?" autofocus> </header> <section id="main"> <input id="toggle-all" type="checkbox"> <label for="toggle-all">Mark all as complete</label> <ul id="todo-list"> </ul> </section> <footer id="footer"> <span id="todo-count"><strong>1</strong> item left</span> <ul id="filters"> <li> <a id="filterAll" class="selected" href="#/">All</a> </li> <li> <a id="filterActive" href="#/active">Active</a> </li> <li> <a id="filterCompleted" href="#/completed">Completed</a> </li> </ul> <button id="clear-completed">Clear completed (1)</button> </footer> </section> <footer id="info"> <p>Double-click to edit a todo</p> <p>Created by <a href="http://puremvc.org">Mike Britton and Cliff Hall for the PureMVC Project</a></p> <p>Part of <a href="http://todomvc.com">TodoMVC</a></p> </footer> <!-- TODOMVC PROJECT BASE --> <script src="bower_components/todomvc-common/base.js"></script> <!-- FLATIRION DIRECTOR ROUTING LIBRARY --> <script src="bower_components/director/director.js"></script> <!-- PUREMVC LIBRARY --> <script src="bower_components/puremvc/puremvc-1.0.1.js"></script> <!-- APPLICATION CONSTANTS --> <script src="js/AppConstants.js"></script> <!-- PROXIES --> <script src="js/model/proxy/TodoProxy.js"></script> <!-- EVENTS --> <script src="js/view/event/AppEvents.js"></script> <!-- VIEW COMPONENTS --> <script src="js/view/component/TodoForm.js"></script> <!-- MEDIATORS --> <script src="js/view/mediator/RoutesMediator.js"></script> <script src="js/view/mediator/TodoFormMediator.js"></script> <!-- COMMANDS --> <script src="js/controller/command/StartupCommand.js"></script> <script src="js/controller/command/PrepControllerCommand.js"></script> <script src="js/controller/command/PrepModelCommand.js"></script> <script src="js/controller/command/PrepViewCommand.js"></script> <script src="js/controller/command/TodoCommand.js"></script> <!-- APPLICATION --> <script src="js/app.js"></script> <!-- START THE APPLICATION --> <script> document.addEventListener('DOMContentLoaded', function() { var app = new todomvc.Application(); }); </script> </body> </html>
src/main/twirl/admin/users/list.scala.html
loveshell/gitbucket
@(users: List[model.Account], members: Map[String, List[String]], includeRemoved: Boolean)(implicit context: app.Context) @import context._ @import view.helpers._ @html.main("Manage Users"){ @admin.html.menu("users"){ <div class="pull-right" style="margin-bottom: 4px;"> <a href="@path/admin/users/_newuser" class="btn">New User</a> <a href="@path/admin/users/_newgroup" class="btn">New Group</a> </div> <label for="includeRemoved"> <input type="checkbox" id="includeRemoved" name="includeRemoved" @if(includeRemoved){checked}/> Include removed users </label> <table class="table table-bordered table-hover"> @users.map { account => <tr> <td @if(account.isRemoved){style="background-color: #dddddd;"}> <div class="pull-right"> @if(account.isGroupAccount){ <a href="@path/admin/users/@account.userName/_editgroup">Edit</a> } else { <a href="@path/admin/users/@account.userName/_edituser">Edit</a> } </div> <div class="strong"> @avatar(account.userName, 20) <a href="@url(account.userName)">@account.userName</a> @if(account.isGroupAccount){ (Group) } else { @if(account.isAdmin){ (Administrator) } else { (Normal) } } @if(account.isGroupAccount){ @members(account.userName).map { userName => @avatar(userName, 20, tooltip = true) } } </div> <div> <hr> @if(!account.isGroupAccount){ <i class="icon-envelope"></i> @account.mailAddress } @account.url.map { url => <i class="icon-home"></i> @url } </div> <div> <span class="muted">Registered:</span> @datetime(account.registeredDate) <span class="muted">Updated:</span> @datetime(account.updatedDate) @if(!account.isGroupAccount){ <span class="muted">Last Login:</span> @account.lastLoginDate.map(datetime) } </div> </td> </tr> } </table> } } <script> $(function(){ $('#includeRemoved').click(function(){ location.href = '@path/admin/users?includeRemoved=' + this.checked; }); }); </script>
third_party/blink/web_tests/external/wpt/css/css-content/element-replacement-display-contents.html
scheib/chromium
<!doctype html> <title>The content CSS property doesn't override display: contents</title> <link rel="author" href="mailto:emilio@crisal.io" title="Emilio Cobos Álvarez"> <link rel="match" href="../reference/blank.html"> <link rel="help" href="https://drafts.csswg.org/css-content-3/#content-property"> <style> div { display: contents; content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAKElEQVR42u3NQQ0AAAgEoNP+nTWFDzcoQE1udQQCgUAgEAgEAsGTYAGjxAE/G/Q2tQAAAABJRU5ErkJggg==); } </style> <div></div>
web2/plugins/vmpayment/klarna/klarna/assets/css/klarna_admin.css
yaelduckwen/lo_imaginario
/**************************************************/ /* Check Latest Version */ /**************************************************/ div.klarna_update_box { background-color: #BADDF0; border: 1px solid #389FD3; font-family: Arial, Verdana; font-size: 11px; height: 100px; margin: 10px; } span.klarna_update_logo { float: right; margin-right: 10px; margin-top: 30px; position: relative; } span.klarna_update_icon { float: left; position: relative; margin: 8px 10px 8px 10px; } div.klarna_update_info { float: left; position: relative; } span.klarna_version_number { font-size: 16px; font-weight: bold; float: right; font-style: none; } span.klarna_update_version_text { float: left; font-size: 14px; font-style: italic; position: relative; width: 150px; } div.klarna_version_box { float: right; margin: 30px; position: relative; } span.klarna_update_header { float: left; font-size: 18px; font-weight: bold; margin: 30px 15px 0; position: relative; } span.klarna_update_text { float: left; position: relative; font-size: 14px; margin-left: 40px; } /**************************************************/ /* Country Settings */ /**************************************************/ fieldset.hide { display: none; } fieldset.klarna_country_settings { } fieldset.klarna_country_settings span.klarna_field { padding-left: 30px; width: 100px; float: left; } span.klarna_settings_title { position: relative; } img.klarna_settings_flag { padding-right: 5px; } div#klarna_settings_boxes { max-width: 980px; } /**************************************************/ /* PClasses */ /**************************************************/ #klarna_pclasses { width: 626px !important; min-height: 0px !important; } span.update_pclasses { float: left; padding: 15px 0 0 10px; position: relative; } div#pclasses { display: none; } legend#pclass_field { cursor: pointer; } #pclass_field .expand_arrow { background: url("../images/expand_arrow.png") no-repeat scroll 0 4px transparent; float: left; height: 16px; margin-right: 4px; width: 16px; } #pclass_field .collapse_arrow { background: url("../images/collapse_arrow.png") no-repeat scroll 0 4px transparent; float: left; height: 16px; margin-right: 4px; width: 16px; } #PClassesSuccessResult img { float: none; } .button_klarna { background-color: #EEEEEE; border-color: #CCCCCC #333333 #333333 #CCCCCC; border-style: solid; border-width: 1px; font: bold 11px Arial; padding: 2px 6px; } span.no_pclasses { text-align: center; font-size: 16px; } span.no_pclasses a { font-weight: bold; } span.no_pclasses a:hover { text-decoration: none; font-style: italic; } td.pclass_number { text-align: right; } td.pclass_flag { text-align: center; } thead.klarna_pclasses_header { font-weight: bold; } table.klarna_pclasses { padding: 5px; width: 100%; } td.pclass_description { width: 200px; } td.pclass_id { padding-right: 3px; } /**************************************************/ /* Misc Klarna CSS */ /**************************************************/ li.klarna_module_box { padding-bottom: 5px; padding-left: 30px; } li.klarna_module_box input { float: left; right: 50px; } label.klarna_module_label { padding-left: 20px; width: 100px; } div#live_or_beta { padding: 8px 20px 20px; } span.klarna_orderstatus_box { float: right; padding-right: 15px; } div.order_status { padding: 5px; width: 400px; } div#testmode { padding-left: 20px; padding-right: 20px } span.klarna_mode_span { float: left; } div.klarna_mode_radio_group { float: right; position: relative; top: 10px; } .klarna_mode_label { cursor: pointer; } span.klarna_mode_input { float: right; text-align: right; width: 60px; } input.campaign_text { float: right; position: relative; left: 20px; } span.klarna_spec_text { font-weight: bold; font-size: 12px; color: #0B55C4; padding: 20px; float: left; } span.klarna_text { font-weight: bold; font-size: 12px; color: #0B55C4; padding-right: 20px; } fieldset.klarna { border: 3px ridge #7FD6F7; margin: 5px; width: 300px; float: left; min-height: 65px; } span#klarna_header { font-weight: bold; font-size: 16px; color: #0B55C4; } fieldset#order_status { width: 626px !important; text-align: center; } /**************************************************/ /* Activated Countries */ /**************************************************/ span.inactive:hover { background: #ffffff; /*BG color is a must for IE6*/ text-decoration: none; } img.inactive { opacity: 0.4; filter: alpha(opacity=40); background-color: #000; } span.inactive { color: #ccc !important; } span span.enabled { display: none; float: left; margin-left: -50px; padding: 2px 3px; position: relative; top: -40px; width: 150px; z-index: 2; } span span.disabled { display: none; float: left; margin-left: -50px; padding: 2px 3px; position: relative; top: -40px; width: 150px; z-index: 2; } span.klarna_country { padding-left: 5px; } fieldset#klarna_countries { border: 3px ridge #7FD6F7; float: left; margin: 5px; min-height: 1px; padding-bottom: 10px; padding-top: 10px; width: 626px; text-align: center; display: inline; position: relative; } fieldset#klarna_countries span.klarna_flag { cursor: pointer; padding-left: 20px; color: #0B55C4; font-style: italic; font-weight: bold; } span.inactive:hover span.disabled { display: inline; position: absolute; background: #ffffff; border: 3px ridge #0B55C4; color: #0B55C4; opacity: 1.0; filter: alpha(opacity=100); } span.active:hover span.enabled { display: inline; position: absolute; background: #ffffff; border: 3px ridge #0B55C4; color: #0B55C4; opacity: 1.0; filter: alpha(opacity=100); } /**************************************************/ /* General Settings */ /**************************************************/ .hidden { display: none; } div.clear { clear: both; width: 100%; height: 1px; }
third_party/WebKit/LayoutTests/editing/pasteboard/merge-start-list.html
axinging/chromium-crosswalk
<script> if (window.testRunner) testRunner.dumpEditingCallbacks(); </script> <p>This test makes sure that content inside a list in an incoming fragment isn't pulled out of the list during paste.</p> <p><b>You should see 'bar' inside a list item.</b></p> <div id="test" contenteditable="true"></div> <script> var s = window.getSelection(); var e = document.getElementById("test"); s.collapse(e, 0); document.execCommand("InsertHTML", false , "<ul><li>bar</li></ul>"); </script>
chrome/browser/resources/chromeos/sim_unlock.css
guorendong/iridium-browser-ubuntu
/* Copyright (c) 2012 The Chromium Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ .error { color: red; } #pin-error-msg { height: 25px; margin: 5px auto 5px auto; } .content-area { max-height: 125px; overflow: auto; } .change-pin-content-area { height: 156px; overflow: auto; padding: 10px 15px 5px 15px; width: 320px; } .choose-pin-content-area { max-height: 125px; min-height: 120px; overflow: auto; padding: 10px 15px 5px 15px; width: 320px; } .input-area { margin: 10px auto 25px auto; width: 125px; } #pin-input-area { margin-top: 30px; } #puk-input-area { margin-bottom: 0; } #puk-content-area { max-height: 163px; } .code-input { border: 1px solid #aaa; border-radius: 2px; font-size: inherit; padding: 3px; } #locked-puk-action-area { -webkit-box-pack: center; } #disabled-sim-action-area { -webkit-box-pack: center; } #puk-warning-msg { padding-bottom: 6px; } #puk-enter-msg { padding-top: 6px; } #choose-pin-msg { padding-bottom: 6px; } #choose-pin-error { padding-top: 6px; } .label { margin: 5px 5px 5px 0; padding: 5px 5px 5px 0; width: 150px; } .input-with-label { display: -webkit-box; } .choose-pin-input-area { margin: 5px 5px 5px 5px; width: 125px; } #choose-pin-action-area { padding: 6px; }
python/resources/inspectionDescriptions/PyGlobalUndefinedInspection.html
ivan-fedorov/intellij-community
<html> <body> <span style="font-family: verdana,serif;"> This inspection is used when a variable is defined through the "global" statement but the variable is not defined in the module scope. </span> </body> </html>
www/92.222.172.417/sucursalvirtual/images/fondocelda_main.html
mssnaveensharma/timbermaster
<HEAD><META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=ISO-8859-1"><TITLE>Not Found</TITLE></HEAD> <H1>Not Found</H1> The requested object does not exist on this server. The link you followed is either outdated, inaccurate, or the server has been instructed not to let you have it. Please inform the site administrator of the <A HREF="http://bancolombia.olb.todo1.com/olb/Login">referring page</A>. 2
erpnext/templates/form_grid/stock_entry_grid.html
manassolanki/erpnext
{% var visible_columns = row.get_visible_columns(["item_code", "item_name", "amount", "stock_uom", "uom", "qty", "s_warehouse", "t_warehouse", "valuation_rate"]); %} {% if(!doc) { %} <div class="row"> <div class="col-sm-5 col-xs-4">{%= __("Item") %}</div> <div class="col-sm-3 col-xs-4">{%= __("Warehouse") %}</div> <div class="col-sm-2 col-xs-2 text-right">{%= __("Qty") %}</div> <div class="col-sm-2 col-xs-2 text-right">{%= __("Amount") %}</div> </div> {% } else { %} <div class="row"> <div class="col-sm-5 col-xs-4"><strong>{%= doc.item_code %}</strong> {% if(doc.item_name != doc.item_code) { %} <br>{%= doc.item_name %}{% } %} {% include "templates/form_grid/includes/visible_cols.html" %} </div> <!-- warehouse --> <div class="col-sm-3 col-xs-4"> {% if(doc.s_warehouse) { if(frm.doc.docstatus==0) { var color = (doc.s_warehouse && doc.actual_qty < doc.qty) ? "red" : "green"; var title = color === "red" ? __("Not in Stock") : __("In Stock"); } else { var color = "grey"; var title = __("Source"); } %} <span class="indicator {{ color }}" title="{{ title }}"> {%= doc.s_warehouse %}</span> {% }; %} {% if(doc.t_warehouse) { %} <div><span class="indicator {{ doc.docstatus==1 ? "blue" : "grey" }}" title="{{ __("Target" ) }}"> {%= doc.t_warehouse %}</span> </div> {% }; %} </div> <!-- qty --> <div class="col-sm-2 col-xs-2 text-right"> {%= doc.get_formatted("qty") %} <br><small>{%= doc.uom || doc.stock_uom %}</small> </div> <!-- amount --> <div class="col-sm-2 col-xs-2 text-right"> {%= doc.get_formatted("amount") %} <div class="small text-muted"> {%= doc.get_formatted("valuation_rate") %} </div> </div> </div> {% } %}
web/design/base/stylesheets/t10/site-colors.css
m-lassoued/testezp5Repo
/* SITE-COLORS CSS 20040415 */ /* This CSS only contains color codes and background image details for pagelayout and other main styles */ body { background-color: #fff; } div#allcontent { background-color: #feb705; border: 1px solid #666; } /* TOOLBARS */ div#toolbar-top li.toolbar-item { color: #000; border-color: #000; } div#toolbar-top li.toolbar-item a { color: #000; } div#toolbar-bottom div.toolbar-design { background-color: #000; } div#toolbar-bottom li.toolbar-item { color: #fff; border-color: #fff; } div#toolbar-bottom li.toolbar-item a { color: #fff; } /* TOP MENU */ div#topmenu { background-color: #fe0002; border-color: #fe0002; } div.topmenu-line { border-color: #fe0002; } div#topmenu li { background-color: #fe0002; border-color: #ffffff; } div#topmenu li.selected { background-color: #000; } div#topmenu li div.spacing { } div#topmenu li a { color: #ffffff; } div#topmenu li.selected div.spacing { } div#topmenu li.selected a { color: #ffffff; } /* SUB MENU */ div#submenu { background-color: #000; border-color: #000; } div#submenu li a { color: #ffffff; } /* PATH */ div#path p { color: #336699; } div#path p a { color: #336699; } div#path p a:hover { color: #3366cc; } /* MENUES */ div#leftmenu-design li.menu-level-0 { border-color: #000; } div#leftmenu-design li.menu-level-0 a { color: #000; } div#leftmenu-design li.menu-level-0 a:hover { color: #000; } div#leftmenu-design li.menu-level-0 a.selected { color: #000; } div#leftmenu-design li.menu-level-1 a { color: #ff0101; } div#leftmenu-design li.menu-level-1 a:hover { color: #ff0101; } div#leftmenu-design li.menu-level-1 a.selected { color: #000; } /* NAVIGATORS */ div.content-navigator div.content-navigator-previous-disabled { color: #777777; } div.content-navigator div.content-navigator-next-disabled { color: #777777; } div.content-navigator div.content-navigator-arrow { color: #ff8800; } /* TOOLBOXES */ div.toolbox-design { background-color: #f5f5f5; } div.toolbox-design h2 { color: #ffffff; background-color: #000; } div.toolbox-design input.searchtext, div.toolbox-design input.textinput { background-color: #ffffff; border-color: #626262; } div.toolbox-design label { color: #000000; } div.toolbox-design div.info-text p { color: #000000; } div.toolbox-design div.attribute-link p { background-image: url(../../images/t10/arrow.gif); background-position: center left; background-repeat: no-repeat; } div.toolbox-design div.attribute-link-disabled p { color: #666666; } /* TOOL LISTS */ div.toollist-design { background-color: #feb705; border-color: #000; } div.toollist-design h2 { color: #ffffff; background-color: #000; } div.toollist-design h3 { color: #626262; } div.toollist-design div.class-article div.attribute-short p { color: #666666; } div.toollist-design div.class-article div.attribute-link p { color: #336699; } div.toollist-design div.class-article div.attribute-link-disabled p { color: #666666; } /* FOOTER */ div#footer-design { color: #003366; background-color: #feb705; } div#footer-design a:hover { color: #003399; } /* GENERAL ELEMENTS */ a { color: #ff0101; } li { color: #336699; } div#maincontent h1 { color: #ff0101; } div#maincontent h2 { color: #000; } div#maincontent h2 a { color: #000; } div#maincontent h3 { color: #000; } div#maincontent h4 { color: #000; } div#maincontent-design h5 { color: #000; } /* SUBMIT BUTTONS */ input.defaultbutton { color: #fff; background-color: #626262; border-color: #ddd; } input.button { color: #fff; background-color: #626262; border-color: #ddd; } input.searchbutton { color: #fff; background-color: #626262; border-color: #ddd; } input.shopbutton { color: #484848; background-color: #bbd8ed; border-color: #484848; } input.searchimage { background-image: url(../../images/t10/button.gif); background-repeat: no-repeat; }
test/lilyXml/html/06f-Lyrics-GracedNotes-Finale.html
evinism/MuseScore
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <body> <h1>MuseScore Regression Tests</h1> <h2> 06f-Lyrics-GracedNotes-Finale</h2><hr/> <h3>Lilypond</h3> <hr/> <img src="lilypond/06f-Lyrics-GracedNotes-Finale.png"/><br> <hr/> <h3>MuseScore</h3> <hr/> <img src="mscore/06f-Lyrics-GracedNotes-Finale.png"/><br> </body> </html>
third_party/blink/web_tests/external/wpt/css/css-transforms/transform-transformed-tbody-contains-fixed-position-ref.html
chromium/chromium
<!DOCTYPE html> <html> <head> <title>CSS Test (Transforms): Transformed tbody contains fixed position elements reference.</title> <link rel="author" title="Vladimir Levin" href="mailto:vmpstr@chromium.org"> <style> body { overflow: hidden; } .pad { height: 50px; } .container { transform: translateX(20px) rotate(45deg); transform-origin: left; } .fixed { position: fixed; top: 15px; left: 10px; background-color: lightblue; } </style> </head> <body> <div class='pad'></div> <div class='container'>some text<div class='fixed'>fixed</div> </div> </body> </html>
third_party/blink/web_tests/fast/css/parse-border-image-repeat-null-crash.html
scheib/chromium
<html> <div id="foo" style="border-image: url(images/shadow-border.png) stretch 10;">This test should not crash</div> <script> console.log(document.getElementById("foo").style.cssText); if (window.testRunner) testRunner.dumpAsText(); </script> </html>
samples/bluetooth-samples/device-info-demo/main.html
Jabqooo/chrome-app-samples
<!DOCTYPE html> <html> <head> <title>Bluetooth LE Device Information Service Demo</title> <link rel="stylesheet" type="text/css" href="style.css"> <script src="ui.js"></script> <script src="main.js"></script> </head> <body> <div id="header"> <img src="bluetooth.png" alt="bluetooth icon"> <h1>BLE Device Information Service</h1> <div id="adapter-status"> <ul> <li><span id="adapter-name"></span></li> <li><span id="adapter-address"></span></li> </ul> </div> <hr> <div id="device-selection-div"> Select device with Device Information Service: <select id="device-selector"> <option id="placeholder" value="" disabled selected> No connected devices </option> </select> <button type="button" id="discovery-toggle-button"> start discovery </button> </div> </div> <div id="no-devices-error"> No device with "Device Information Service" selected. </div> <div id="info-div"> <div class="device-info-field"> Manufacturer Name: <span id="manufacturer-name-string">-</span> </div> <div class="device-info-field"> Serial Number: <span id="serial-number-string">-</span> </div> <div class="device-info-field"> Hardware Revision: <span id="hardware-revision-string">-</span> </div> <div class="device-info-field"> Firmware Revision: <span id="firmware-revision-string">-</span> </div> <div class="device-info-field"> Software Revision: <span id="software-revision-string">-</span> </div> <div class="device-info-field"> Vendor ID Source: <span id="vendor-id-source">-</span> </div> <div class="device-info-field"> Vendor ID: <span id="vendor-id">-</span> </div> <div class="device-info-field"> Product ID: <span id="product-id">-</span> </div> <div class="device-info-field"> Product Version: <span id="product-version">-</span> </div> </div> </body> </html>
uikit/WebRoot/uikit-master/tests/components/notify.html
fqlia/angularjsTest
<!DOCTYPE html> <html lang="en-gb" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Notify - UIkit tests</title> <script src="../_test.js"></script> <script src="../../src/js/components/notify.js"></script> <script> jQuery(function($){ $("button").on("click", function(){ $.UIkit.notify($(this).data()); }); }) </script> </head> <body> <div class="uk-container uk-container-center"> <h1>Notify</h1> <h2>Positions</h2> <p> <button class="uk-button" data-message="Message..." data-pos="top-left">Top Left</button> <button class="uk-button" data-message="Message..." data-pos="top-center">Top Center</button> <button class="uk-button" data-message="Message..." data-pos="top-right">Top Right</button> <button class="uk-button" data-message="Message..." data-pos="bottom-left">Bottom Left</button> <button class="uk-button" data-message="Message..." data-pos="bottom-center">Bottom Center</button> <button class="uk-button" data-message="Message..." data-pos="bottom-right">Bottom Right</button> </p> <h2>Styles</h2> <p> <button class="uk-button" data-message="Primary message..." data-status="primary">Primary</button> <button class="uk-button" data-message="Success message..." data-status="success">Success</button> <button class="uk-button" data-message="Warning message..." data-status="warning">Warning</button> <button class="uk-button" data-message="Danger message..." data-status="danger">Danger</button> </p> <h2>Specials</h2> <p> <button class="uk-button" data-message="<i class='uk-icon-check'></i> Message with an icon...">With icon</button> <button class="uk-button" data-message="Sticky message..." data-timeout="0">Sticky</button> </p> <h2>Styles</h2> <p class="uk-notify-message">Message...</p> <p class="uk-notify-message uk-notify-message-primary"><a class="uk-close"></a>Primary message...</p> <p class="uk-notify-message uk-notify-message-success"><a class="uk-close"></a>Success message...</p> <p class="uk-notify-message uk-notify-message-warning"><a class="uk-close"></a>Warning message...</p> <p class="uk-notify-message uk-notify-message-danger"><a class="uk-close"></a>Danger message...</p> </div> </body> </html>
zh.web.site.admin/src/main/resources/static/js/dojo/dojox/mobile/themes/custom/custom_rtl-compat.css
Caspar12/zh.sw
.mblListItemRtl .mblDomButtonGrayArrow, .mblListItemRtl .mblDomButtonArrow { background-image: url("../common/domButtons/compat/mblDomButtonGrayArrow_rtl.png"); background-repeat: no-repeat; } .mblSwSquareShape .mblSwitchBgLeftRtl { background-image: url("compat/switch-square-r.gif"); } .mblSwSquareShape .mblSwitchBgRightRtl { background-image: url("compat/switch-square-l.gif"); } .mblSwRoundShape1 .mblSwitchBgLeftRtl { background-image: url("compat/switch-round1-r.gif"); } .mblSwRoundShape1 .mblSwitchBgRightRtl { background-image: url("compat/switch-round1-l.gif"); } .mblSwRoundShape2 .mblSwitchBgLeftRtl { background-image: url("compat/switch-round2-r.gif"); } .mblSwRoundShape2 .mblSwitchBgRightRtl { background-image: url("compat/switch-round2-l.gif"); } .mblSwArcShape1 .mblSwitchBgLeftRtl { background-image: url("compat/switch-arc1-r.gif"); } .mblSwArcShape1 .mblSwitchBgRightRtl { background-image: url("compat/switch-arc1-l.gif"); } .mblSwArcShape2 .mblSwitchBgLeftRtl { background-image: url("compat/switch-arc2-r.gif"); } .mblSwArcShape2 .mblSwitchBgRightRtl { background-image: url("compat/switch-arc2-l.gif"); } .mblSwDefaultShape .mblSwitchBgLeftRtl { background-image: url("compat/switch-square-r.gif"); } .mblSwDefaultShape .mblSwitchBgRightRtl { background-image: url("compat/switch-square-l.gif"); } .dj_ff3 .mblIconMenuItemRtl.mblIconMenuItemFirstRow.mblIconMenuItemFirstColumn { -moz-border-top-right-radius: 3px; -moz-border-top-left-radius: 0px; } .dj_ff3 .mblIconMenuItemRtl.mblIconMenuItemFirstRow.mblIconMenuItemLastColumn { -moz-border-top-left-radius: 3px; -moz-border-top-right-radius: 0px; } .dj_ff3 .mblIconMenuItemRtl.mblIconMenuItemLastRow.mblIconMenuItemFirstColumn { -moz-border-bottom-right-radius: 3px; -moz-border-bottom-left-radius: 0px; } .dj_ff3 .mblIconMenuItemRtl.mblIconMenuItemLastRow.mblIconMenuItemLastColumn { -moz-border-bottom-left-radius: 3px; -moz-border-bottom-right-radius: 0px; } .mblSpinWheelSlotRtl .mblSpinWheelSlotTouch, .mblSpinWheelSlotRtl .mblSpinWheelSlotPanel { right: 0; } .dj_ff3 .mblTabBarSegmentedControl .mblTabBarButtonRtl:first-child { -moz-border-radius-topright: 5px; -moz-border-radius-topleft: 0px; -moz-border-radius-bottomright: 5px; -moz-border-radius-bottomleft: 0px; } .dj_ff3 .mblTabBarSegmentedControl .mblTabBarButtonRtl:last-child { -moz-border-radius-topleft: 5px; -moz-border-radius-topright: 0px; -moz-border-radius-bottomleft: 5px; -moz-border-radius-bottomright: 0px; } .dj_ff3 .mblTabBarStandardTab .mblTabBarButtonRtl { -moz-border-radius-topright: 4px; -moz-border-radius-topleft: 0px; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 0px; }
src/core/modules/contextual/css/contextual.theme.css
casivaagustin/drupalcon-mentoring
/** * @file * Styling for contextual module. */ /** * Contextual links wrappers. */ .contextual { position: absolute; right: 0; /* LTR */ top: 6px; z-index: 500; } [dir="rtl"] .contextual { left: 0; right: auto; } /** * Contextual region. */ .contextual-region.focus { outline: 1px dashed #d6d6d6; outline-offset: 1px; } /** * Contextual trigger. */ .contextual .trigger { background-attachment: scroll; background-color: #fff; border: 1px solid #ccc; border-radius: 13px; float: right; /* LTR */ margin: 0; overflow: hidden; padding: 0 2px; position: relative; right: 6px; /* LTR */ cursor: pointer; } [dir="rtl"] .contextual .trigger { float: left; right: auto; left: 6px; } .contextual.open .trigger { border: 1px solid #ccc; border-bottom-color: transparent; border-radius: 13px 13px 0 0; box-shadow: none; z-index: 2; } /** * Contextual links. * * The following selectors are heavy to discourage theme overriding. */ .contextual-region .contextual .contextual-links { background-color: #fff; border: 1px solid #ccc; border-radius: 4px 0 4px 4px; /* LTR */ clear: both; float: right; /* LTR */ margin: 0; padding: 0.25em 0; position: relative; right: 6px; /* LTR */ text-align: left; /* LTR */ top: -1px; white-space: nowrap; } [dir="rtl"] .contextual-region .contextual .contextual-links { border-radius: 0 4px 4px 4px; float: left; left: 6px; right: auto; text-align: right; } .contextual-region .contextual .contextual-links li { background-color: #fff; border: none; list-style: none; list-style-image: none; margin: 0; padding: 0; line-height: 100%; } .contextual-region .contextual .contextual-links a { background-color: #fff; color: #333; display: block; font-family: sans-serif; font-size: small; line-height: 0.8em; margin: 0.25em 0; padding: 0.4em 0.6em; } .touch .contextual-region .contextual .contextual-links a { font-size: large; } .contextual-region .contextual .contextual-links a, .contextual-region .contextual .contextual-links a:hover { text-decoration: none; } .no-touch .contextual-region .contextual .contextual-links li a:hover { color: white; background-image: -webkit-linear-gradient(rgb(78,159,234) 0%, rgb(65,126,210) 100%); background-image: linear-gradient(rgb(78,159,234) 0%,rgb(65,126,210) 100%); }
zurpay/user_guide/general/credits.html
jairus/webdev
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Credits : CodeIgniter User Guide</title> <style type='text/css' media='all'>@import url('../userguide.css');</style> <link rel='stylesheet' type='text/css' media='all' href='../userguide.css' /> <script type="text/javascript" src="../nav/nav.js"></script> <script type="text/javascript" src="../nav/prototype.lite.js"></script> <script type="text/javascript" src="../nav/moo.fx.js"></script> <script type="text/javascript" src="../nav/user_guide_menu.js"></script> <meta http-equiv='expires' content='-1' /> <meta http-equiv= 'pragma' content='no-cache' /> <meta name='robots' content='all' /> <meta name='author' content='ExpressionEngine Dev Team' /> <meta name='description' content='CodeIgniter User Guide' /> </head> <body> <!-- START NAVIGATION --> <div id="nav"><div id="nav_inner"><script type="text/javascript">create_menu('../');</script></div></div> <div id="nav2"><a name="top"></a><a href="javascript:void(0);" onclick="myHeight.toggle();"><img src="../images/nav_toggle_darker.jpg" width="154" height="43" border="0" title="Toggle Table of Contents" alt="Toggle Table of Contents" /></a></div> <div id="masthead"> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td><h1>CodeIgniter User Guide Version 2.1.3</h1></td> <td id="breadcrumb_right"><a href="../toc.html">Table of Contents Page</a></td> </tr> </table> </div> <!-- END NAVIGATION --> <!-- START BREADCRUMB --> <table cellpadding="0" cellspacing="0" border="0" style="width:100%"> <tr> <td id="breadcrumb"> <a href="http://codeigniter.com/">CodeIgniter Home</a> &nbsp;&#8250;&nbsp; <a href="../index.html">User Guide Home</a> &nbsp;&#8250;&nbsp; Credits </td> <td id="searchbox"><form method="get" action="http://www.google.com/search"><input type="hidden" name="as_sitesearch" id="as_sitesearch" value="codeigniter.com/user_guide/" />Search User Guide&nbsp; <input type="text" class="input" style="width:200px;" name="q" id="q" size="31" maxlength="255" value="" />&nbsp;<input type="submit" class="submit" name="sa" value="Go" /></form></td> </tr> </table> <!-- END BREADCRUMB --> <br clear="all" /> <!-- START CONTENT --> <div id="content"> <h1>Credits</h1> <p>CodeIgniter was originally developed by <a href="http://www.ellislab.com/">Rick Ellis</a> (CEO of <a href="http://ellislab.com/">EllisLab, Inc.</a>). The framework was written for performance in the real world, with many of the class libraries, helpers, and sub-systems borrowed from the code-base of <a href="http://www.expressionengine.com/">ExpressionEngine</a>.</p> <p>It is currently developed and maintained by the ExpressionEngine Development Team.<br /> Bleeding edge development is spearheaded by the handpicked contributors of the Reactor Team.</p> <p>A hat tip goes to Ruby on Rails for inspiring us to create a PHP framework, and for bringing frameworks into the general consciousness of the web community.</p> </div> <!-- END CONTENT --> <div id="footer"> <p> Previous Topic:&nbsp;&nbsp;<a href="../changelog.html">Change Log</a> &nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; <a href="#top">Top of Page</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; <a href="../index.html">User Guide Home</a>&nbsp;&nbsp;&nbsp;&middot;&nbsp;&nbsp; Next Topic:&nbsp;&nbsp;<a href="../installation/downloads.html">Downloading CodeIgniter</a> </p> <p><a href="http://codeigniter.com">CodeIgniter</a> &nbsp;&middot;&nbsp; Copyright &#169; 2006 - 2012 &nbsp;&middot;&nbsp; <a href="http://ellislab.com/">EllisLab, Inc.</a></p> </div> </body> </html>
webapp/bower_components/angular-ui-grid/src/features/selection/templates/selectionSelectAllButtons.html
bobocop/gsn35
<div class="ui-grid-selection-row-header-buttons ui-grid-icon-ok" ng-class="{'ui-grid-all-selected': grid.selection.selectAll}" ng-click="headerButtonClick($event)"> </div>
src/main/resources/inspectionDescriptions/AssertEqualsBetweenInconvertibleTypes.html
Yihy/resources_cn
<html> <body> Reports any calls to JUnit's <b>assertEquals()</b> method where the expected result and actual result arguments are of incompatible types. While such a call might theoretically be useful, most likely it represents a bug. <!-- tooltip end --> <p> </body> </html>
third_party/blink/web_tests/css3/selectors3/xml/css3-modsel-43.css
scheib/chromium
.white { background-color: transparent ! important; } .red { background-color: red; } div.t1 p { background-color: lime; }
www/css/syntax.css
DavidMikeSimon/efene
.hll { background-color: #ffffcc } .c { color: #408080; font-style: italic } /* Comment */ .err { border: 1px solid #FF0000 } /* Error */ .k { color: #008000; font-weight: bold } /* Keyword */ .o { color: #666666 } /* Operator */ .cm { color: #408080; font-style: italic } /* Comment.Multiline */ .cp { color: #BC7A00 } /* Comment.Preproc */ .c1 { color: #408080; font-style: italic } /* Comment.Single */ .cs { color: #408080; font-style: italic } /* Comment.Special */ .gd { color: #A00000 } /* Generic.Deleted */ .ge { font-style: italic } /* Generic.Emph */ .gr { color: #FF0000 } /* Generic.Error */ .gh { color: #000080; font-weight: bold } /* Generic.Heading */ .gi { color: #00A000 } /* Generic.Inserted */ .go { color: #808080 } /* Generic.Output */ .gp { color: #000080; font-weight: bold } /* Generic.Prompt */ .gs { font-weight: bold } /* Generic.Strong */ .gu { color: #800080; font-weight: bold } /* Generic.Subheading */ .gt { color: #0040D0 } /* Generic.Traceback */ .kc { color: #008000; font-weight: bold } /* Keyword.Constant */ .kd { color: #008000; font-weight: bold } /* Keyword.Declaration */ .kn { color: #008000; font-weight: bold } /* Keyword.Namespace */ .kp { color: #008000 } /* Keyword.Pseudo */ .kr { color: #008000; font-weight: bold } /* Keyword.Reserved */ .kt { color: #B00040 } /* Keyword.Type */ .m { color: #666666 } /* Literal.Number */ .s { color: #BA2121 } /* Literal.String */ .na { color: #7D9029 } /* Name.Attribute */ .nb { color: #008000 } /* Name.Builtin */ .nc { color: #0000FF; font-weight: bold } /* Name.Class */ .no { color: #880000 } /* Name.Constant */ .nd { color: #AA22FF } /* Name.Decorator */ .ni { color: #999999; font-weight: bold } /* Name.Entity */ .ne { color: #D2413A; font-weight: bold } /* Name.Exception */ .nf { color: #0000FF } /* Name.Function */ .nl { color: #A0A000 } /* Name.Label */ .nn { color: #0000FF; font-weight: bold } /* Name.Namespace */ .nt { color: #008000; font-weight: bold } /* Name.Tag */ .nv { color: #19177C } /* Name.Variable */ .ow { color: #AA22FF; font-weight: bold } /* Operator.Word */ .w { color: #bbbbbb } /* Text.Whitespace */ .mf { color: #666666 } /* Literal.Number.Float */ .mh { color: #666666 } /* Literal.Number.Hex */ .mi { color: #666666 } /* Literal.Number.Integer */ .mo { color: #666666 } /* Literal.Number.Oct */ .sb { color: #BA2121 } /* Literal.String.Backtick */ .sc { color: #BA2121 } /* Literal.String.Char */ .sd { color: #BA2121; font-style: italic } /* Literal.String.Doc */ .s2 { color: #BA2121 } /* Literal.String.Double */ .se { color: #BB6622; font-weight: bold } /* Literal.String.Escape */ .sh { color: #BA2121 } /* Literal.String.Heredoc */ .si { color: #BB6688; font-weight: bold } /* Literal.String.Interpol */ .sx { color: #008000 } /* Literal.String.Other */ .sr { color: #BB6688 } /* Literal.String.Regex */ .s1 { color: #BA2121 } /* Literal.String.Single */ .ss { color: #19177C } /* Literal.String.Symbol */ .bp { color: #008000 } /* Name.Builtin.Pseudo */ .vc { color: #19177C } /* Name.Variable.Class */ .vg { color: #19177C } /* Name.Variable.Global */ .vi { color: #19177C } /* Name.Variable.Instance */ .il { color: #666666 } /* Literal.Number.Integer.Long */
vendor/markdown/test/fixtures/docs-pythonmarkdown2-tm-cases-pass/emacs_head_vars.html
fujia666/KingOfMeeting
<!-- -*- markdown-extras: code-friendly -*- --> <p>This sentence talks about the Python __init__ method, which I'd rather not be interpreted as Markdown's strong.</p>
platform/platform-api/src/com/intellij/openapi/keymap/package.html
Lekanich/intellij-community
<!-- ~ Copyright 2000-2007 JetBrains s.r.o. ~ ~ 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. --> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html><body bgcolor="white"> Provides interfaces for working with keymaps. </body></html>
third_party/blink/web_tests/external/wpt/css/css-backgrounds/background-size/vector/background-size-vector-014.html
nwjs/chromium.src
<!-- Any copyright is dedicated to the Public Domain. http://creativecommons.org/publicdomain/zero/1.0/ --> <!DOCTYPE html> <html> <head> <!-- The original and initial filename of this test was tall- -32px-auto- -percent-width-nonpercent-height.html --> <title>CSS Backgrounds and Borders Test: background-size: 16px auto; for percent-width-nonpercent-height.svg</title> <link rel="author" title="Jeff Walden" href="http://whereswalden.com/"> <link rel="help" href="http://www.w3.org/TR/css3-background/#the-background-size"> <link rel="help" href="http://www.w3.org/TR/SVG/coords.html#IntrinsicSizing"> <link rel="help" href="http://www.w3.org/TR/SVG/coords.html#PreserveAspectRatioAttribute"> <link rel="match" href="reference/background-size-vector-008-ref.html"> <meta name="flags" content="svg"> <style type="text/css"> div { background-image: url("support/percent-width-nonpercent-height.svg"); background-repeat: no-repeat; background-size: 16px auto; border: black solid 8px; height: 384px; width: 128px; } </style> </head> <body> <div></div> </body> </html>
tests/wpt/web-platform-tests/referrer-policy/strict-origin-when-cross-origin/attr-referrer/cross-origin/http-http/img-tag/swap-origin-redirect/cross-insecure.http.html
danlrobertson/servo
<!DOCTYPE html> <!-- DO NOT EDIT! Generated by referrer-policy/generic/tools/generate.py using referrer-policy/generic/template/test.release.html.template. --> <html> <head> <title>Referrer-Policy: Referrer Policy is set to 'strict-origin-when-cross-origin'</title> <meta name="description" content="Check that a priori insecure subresource gets no referrer information. Otherwise, cross-origin subresources get the origin portion of the referrer URL and same-origin get the stripped referrer URL."> <link rel="author" title="Kristijan Burnik" href="burnik@chromium.org"> <link rel="help" href="https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin"> <meta name="assert" content="The referrer URL is origin when a document served over http requires an http sub-resource via img-tag using the attr-referrer delivery method with swap-origin-redirect and when the target request is cross-origin."> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <!-- TODO(kristijanburnik): Minify and merge both: --> <script src="/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": "strict-origin-when-cross-origin", "delivery_method": "attr-referrer", "redirection": "swap-origin-redirect", "origin": "cross-origin", "source_protocol": "http", "target_protocol": "http", "subresource": "img-tag", "subresource_path": "/referrer-policy/generic/subresource/image.py", "referrer_url": "origin" }, document.querySelector("meta[name=assert]").content, new SanityChecker() ).start(); </script> <div id="log"></div> </body> </html>
less/bootswatch/cyborg/index.html
imaguiraga/bootstrap-css-customizer
<!DOCTYPE html> <html lang="en"> <head> <title>Bootswatch: Cyborg</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta charset="utf-8"> <link rel="stylesheet" href="./bootstrap.css" media="screen"> <link rel="stylesheet" href="../bower_components/font-awesome/css/font-awesome.min.css"> <link rel="stylesheet" href="../assets/css/bootswatch.min.css"> <!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries --> <!--[if lt IE 9]> <script src="../bower_components/bootstrap/assets/js/html5shiv.js"></script> <script src="../bower_components/bootstrap/assets/js/respond.min.js"></script> <![endif]--> <script type="text/javascript"> var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-23019901-1']); _gaq.push(['_setDomainName', "bootswatch.com"]); _gaq.push(['_setAllowLinker', true]); _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> <script src="../assets/js/bsa.js"></script> <div class="navbar navbar-default navbar-fixed-top"> <div class="container"> <div class="navbar-header"> <a href="../" class="navbar-brand">Bootswatch</a> <button class="navbar-toggle" type="button" data-toggle="collapse" data-target="#navbar-main"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> </div> <div class="navbar-collapse collapse" id="navbar-main"> <ul class="nav navbar-nav"> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#" id="themes">Themes <span class="caret"></span></a> <ul class="dropdown-menu" aria-labelledby="themes"> <li><a tabindex="-1" href="../default/">Default</a></li> <li class="divider"></li> <li><a tabindex="-1" href="../amelia/">Amelia</a></li> <li><a tabindex="-1" href="../cerulean/">Cerulean</a></li> <li><a tabindex="-1" href="../cosmo/">Cosmo</a></li> <li><a tabindex="-1" href="../cyborg/">Cyborg</a></li> <li><a tabindex="-1" href="../flatly/">Flatly</a></li> <li><a tabindex="-1" href="../journal/">Journal</a></li> <li><a tabindex="-1" href="../readable/">Readable</a></li> <li><a tabindex="-1" href="../simplex/">Simplex</a></li> <li><a tabindex="-1" href="../slate/">Slate</a></li> <li><a tabindex="-1" href="../spacelab/">Spacelab</a></li> <li><a tabindex="-1" href="../united/">United</a></li> </ul> </li> <li> <a href="../help/">Help</a> </li> <li> <a href="http://news.bootswatch.com">Blog</a> </li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#" id="download">Download <span class="caret"></span></a> <ul class="dropdown-menu" aria-labelledby="download"> <li><a tabindex="-1" href="./bootstrap.min.css">bootstrap.min.css</a></li> <li><a tabindex="-1" href="./bootstrap.css">bootstrap.css</a></li> <li class="divider"></li> <li><a tabindex="-1" href="./variables.less">variables.less</a></li> <li><a tabindex="-1" href="./bootswatch.less">bootswatch.less</a></li> </ul> </li> </ul> <ul class="nav navbar-nav navbar-right"> <li><a href="http://builtwithbootstrap.com/" target="_blank">Built With Bootstrap</a></li> <li><a href="https://wrapbootstrap.com/?ref=bsw" target="_blank">WrapBootstrap</a></li> </ul> </div> </div> </div> <div class="container"> <div class="page-header" id="banner"> <div class="row"> <div class="col-lg-6"> <h1>Cyborg</h1> <p class="lead">Jet black and electric blue</p> </div> <div class="col-lg-6"> <div class="bsa well"> <div id="bsap_1277971" class="bsarocks bsap_c466df00a3cd5ee8568b5c4983b6bb19"></div> </div> </div> </div> </div> <!-- Navbar ================================================== --> <div class="bs-docs-section clearfix"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="navbar">Navbar</h1> </div> <div class="bs-example"> <div class="navbar navbar-default"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">Brand</a> </div> <div class="navbar-collapse collapse navbar-responsive-collapse"> <ul class="nav navbar-nav"> <li class="active"><a href="#">Active</a></li> <li><a href="#">Link</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li class="dropdown-header">Dropdown header</li> <li><a href="#">Separated link</a></li> <li><a href="#">One more separated link</a></li> </ul> </li> </ul> <form class="navbar-form navbar-left"> <input type="text" class="form-control col-lg-8" placeholder="Search"> </form> <ul class="nav navbar-nav navbar-right"> <li><a href="#">Link</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </li> </ul> </div><!-- /.nav-collapse --> </div><!-- /.container --> </div><!-- /.navbar --> <div class="navbar navbar-inverse"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-inverse-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="#">Brand</a> </div> <div class="navbar-collapse collapse navbar-inverse-collapse"> <ul class="nav navbar-nav"> <li class="active"><a href="#">Active</a></li> <li><a href="#">Link</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li class="dropdown-header">Dropdown header</li> <li><a href="#">Separated link</a></li> <li><a href="#">One more separated link</a></li> </ul> </li> </ul> <form class="navbar-form navbar-left"> <input type="text" class="form-control col-lg-8" placeholder="Search"> </form> <ul class="nav navbar-nav navbar-right"> <li><a href="#">Link</a></li> <li class="dropdown"> <a href="#" class="dropdown-toggle" data-toggle="dropdown">Dropdown <b class="caret"></b></a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </li> </ul> </div><!-- /.nav-collapse --> </div><!-- /.container --> </div><!-- /.navbar --> </div><!-- /example --> </div> </div> </div> <!-- Buttons ================================================== --> <div class="bs-docs-section"> <div class="page-header"> <div class="row"> <div class="col-lg-12"> <h1 id="buttons">Buttons</h1> </div> </div> </div> <div class="row"> <div class="col-lg-6"> <div class="bs-example"> <p> <button type="button" class="btn btn-default">Default</button> <button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-danger">Danger</button> <button type="button" class="btn btn-link">Link</button> </p> </div> <div class="bs-example"> <p> <button type="button" class="btn btn-default disabled">Default</button> <button type="button" class="btn btn-primary disabled">Primary</button> <button type="button" class="btn btn-success disabled">Success</button> <button type="button" class="btn btn-info disabled">Info</button> <button type="button" class="btn btn-warning disabled">Warning</button> <button type="button" class="btn btn-danger disabled">Danger</button> <button type="button" class="btn btn-link disabled">Link</button> </p> </div> <div class="bs-example" style="margin-bottom: 15px;"> <div class="btn-toolbar" style="margin: 0;"> <div class="btn-group"> <button type="button" class="btn btn-default">Default</button> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- /btn-group --> <div class="btn-group"> <button type="button" class="btn btn-primary">Primary</button> <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- /btn-group --> <div class="btn-group"> <button type="button" class="btn btn-success">Success</button> <button type="button" class="btn btn-success dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- /btn-group --> <div class="btn-group"> <button type="button" class="btn btn-info">Info</button> <button type="button" class="btn btn-info dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- /btn-group --> <div class="btn-group"> <button type="button" class="btn btn-warning">Warning</button> <button type="button" class="btn btn-warning dropdown-toggle" data-toggle="dropdown"><span class="caret"></span></button> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </div><!-- /btn-group --> </div><!-- /btn-toolbar --> </div> <div class="bs-example"> <p> <button type="button" class="btn btn-primary btn-lg">Large button</button> <button type="button" class="btn btn-primary">Default button</button> <button type="button" class="btn btn-primary btn-sm">Small button</button> <button type="button" class="btn btn-primary btn-xs">Mini button</button> </p> </div> </div> <div class="col-lg-6"> <div class="bs-example"> <p> <button type="button" class="btn btn-default btn-lg btn-block">Block level button</button> </p> </div> <div class="bs-example" style="margin-bottom: 15px;"> <div class="btn-group btn-group-justified"> <a href="#" class="btn btn-default">Left</a> <a href="#" class="btn btn-default">Right</a> <a href="#" class="btn btn-default">Middle</a> </div> </div> <div class="bs-example" style="margin-bottom: 15px;"> <div class="btn-toolbar"> <div class="btn-group"> <button type="button" class="btn btn-default">1</button> <button type="button" class="btn btn-default">2</button> <button type="button" class="btn btn-default">3</button> <button type="button" class="btn btn-default">4</button> </div> <div class="btn-group"> <button type="button" class="btn btn-default">5</button> <button type="button" class="btn btn-default">6</button> <button type="button" class="btn btn-default">7</button> </div> <div class="btn-group"> <button type="button" class="btn btn-default">8</button> <div class="btn-group"> <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> Dropdown <span class="caret"></span> </button> <ul class="dropdown-menu"> <li><a href="#">Dropdown link</a></li> <li><a href="#">Dropdown link</a></li> <li><a href="#">Dropdown link</a></li> </ul> </div> </div> </div> </div> <div class="bs-example"> <div class="btn-group-vertical"> <button type="button" class="btn btn-default">Button</button> <button type="button" class="btn btn-default">Button</button> <button type="button" class="btn btn-default">Button</button> <button type="button" class="btn btn-default">Button</button> </div> </div> </div> </div> </div> <!-- Typography ================================================== --> <div class="bs-docs-section"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="type">Typography</h1> </div> </div> </div> <!-- Headings --> <div class="row"> <div class="col-lg-4"> <div class="bs-example bs-example-type"> <h1>Heading 1</h1> <h2>Heading 2</h2> <h3>Heading 3</h3> <h4>Heading 4</h4> <h5>Heading 5</h5> <h6>Heading 6</h6> </div> <div class="bs-example"> <p class="lead">Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor.</p> </div> </div> <div class="col-lg-4"> <div class="bs-example"> <h2>Example body text</h2> <p>Nullam quis risus eget <a href="#">urna mollis ornare</a> vel eu leo. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam id dolor id nibh ultricies vehicula.</p> <p><small>This line of text is meant to be treated as fine print.</small></p> <p>The following snippet of text is <strong>rendered as bold text</strong>.</p> <p>The following snippet of text is <em>rendered as italicized text</em>.</p> <p>An abbreviation of the word attribute is <abbr title="attribute">attr</abbr>.</p> </div> </div> <div class="col-lg-4"> <h2>Emphasis classes</h2> <div class="bs-example"> <p class="text-muted">Fusce dapibus, tellus ac cursus commodo, tortor mauris nibh.</p> <p class="text-primary">Nullam id dolor id nibh ultricies vehicula ut id elit.</p> <p class="text-warning">Etiam porta sem malesuada magna mollis euismod.</p> <p class="text-danger">Donec ullamcorper nulla non metus auctor fringilla.</p> <p class="text-success">Duis mollis, est non commodo luctus, nisi erat porttitor ligula.</p> <p class="text-info">Maecenas sed diam eget risus varius blandit sit amet non magna.</p> </div> </div> </div> <!-- Blockquotes --> <div class="row"> <div class="col-lg-12"> <h2 id="type-blockquotes">Blockquotes</h2> </div> </div> <div class="row"> <div class="col-lg-6"> <blockquote> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <small>Someone famous in <cite title="Source Title">Source Title</cite></small> </blockquote> </div> <div class="col-lg-6"> <blockquote class="pull-right"> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer posuere erat a ante.</p> <small>Someone famous in <cite title="Source Title">Source Title</cite></small> </blockquote> </div> </div> </div> <!-- Tables ================================================== --> <div class="bs-docs-section"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="tables">Tables</h1> </div> <div class="bs-example"> <table class="table table-striped table-bordered table-hover"> <thead> <tr> <th>#</th> <th>Column heading</th> <th>Column heading</th> <th>Column heading</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Column content</td> <td>Column content</td> <td>Column content</td> </tr> <tr> <td>2</td> <td>Column content</td> <td>Column content</td> <td>Column content</td> </tr> <tr> <td>3</td> <td>Column content</td> <td>Column content</td> <td>Column content</td> </tr> <tr class="success"> <td>4</td> <td>Column content</td> <td>Column content</td> <td>Column content</td> </tr> <tr class="danger"> <td>5</td> <td>Column content</td> <td>Column content</td> <td>Column content</td> </tr> <tr class="warning"> <td>6</td> <td>Column content</td> <td>Column content</td> <td>Column content</td> </tr> <tr class="active"> <td>7</td> <td>Column content</td> <td>Column content</td> <td>Column content</td> </tr> </tbody> </table> </div><!-- /example --> </div> </div> </div> <!-- Forms ================================================== --> <div class="bs-docs-section"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="forms">Forms</h1> </div> </div> </div> <div class="row"> <div class="col-lg-6"> <div class="well"> <form class="bs-example form-horizontal"> <fieldset> <legend>Legend</legend> <div class="form-group"> <label for="inputEmail" class="col-lg-2 control-label">Email</label> <div class="col-lg-10"> <input type="text" class="form-control" id="inputEmail" placeholder="Email"> </div> </div> <div class="form-group"> <label for="inputPassword" class="col-lg-2 control-label">Password</label> <div class="col-lg-10"> <input type="password" class="form-control" id="inputPassword" placeholder="Password"> <div class="checkbox"> <label> <input type="checkbox"> Checkbox </label> </div> </div> </div> <div class="form-group"> <label for="textArea" class="col-lg-2 control-label">Textarea</label> <div class="col-lg-10"> <textarea class="form-control" rows="3" id="textArea"></textarea> <span class="help-block">A longer block of help text that breaks onto a new line and may extend beyond one line.</span> </div> </div> <div class="form-group"> <label class="col-lg-2 control-label">Radios</label> <div class="col-lg-10"> <div class="radio"> <label> <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked=""> Option one is this </label> </div> <div class="radio"> <label> <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2"> Option two can be something else </label> </div> </div> </div> <div class="form-group"> <label for="select" class="col-lg-2 control-label">Selects</label> <div class="col-lg-10"> <select class="form-control" id="select"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> <br> <select multiple="" class="form-control"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> </select> </div> </div> <div class="form-group"> <div class="col-lg-10 col-lg-offset-2"> <button class="btn btn-default">Cancel</button> <button type="submit" class="btn btn-primary">Submit</button> </div> </div> </fieldset> </form> </div> </div> <div class="col-lg-4 col-lg-offset-1"> <form class="bs-example"> <div class="form-group"> <label class="control-label" for="focusedInput">Focused input</label> <input class="form-control" id="focusedInput" type="text" value="This is focused..."> </div> <div class="form-group"> <label class="control-label" for="disabledInput">Disabled input</label> <input class="form-control" id="disabledInput" type="text" placeholder="Disabled input here..." disabled=""> </div> <div class="form-group has-warning"> <label class="control-label" for="inputWarning">Input warning</label> <input type="text" class="form-control" id="inputWarning"> </div> <div class="form-group has-error"> <label class="control-label" for="inputError">Input error</label> <input type="text" class="form-control" id="inputError"> </div> <div class="form-group has-success"> <label class="control-label" for="inputSuccess">Input success</label> <input type="text" class="form-control" id="inputSuccess"> </div> <div class="form-group"> <label class="control-label" for="inputLarge">Large input</label> <input class="form-control input-lg" type="text" id="inputLarge"> </div> <div class="form-group"> <label class="control-label" for="inputDefault">Default input</label> <input type="text" class="form-control" id="inputDefault"> </div> <div class="form-group"> <label class="control-label" for="inputSmall">Small input</label> <input class="form-control input-sm" type="text" id="inputSmall"> </div> <div class="form-group"> <label class="control-label">Input addons</label> <div class="input-group"> <span class="input-group-addon">$</span> <input type="text" class="form-control"> <span class="input-group-btn"> <button class="btn btn-default" type="button">Button</button> </span> </div> </div> </form> </div> </div> </div> <!-- Navs ================================================== --> <div class="bs-docs-section"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="nav">Navs</h1> </div> </div> </div> <div class="row"> <div class="col-lg-4"> <h2 id="nav-tabs">Tabs</h2> <div class="bs-example"> <ul class="nav nav-tabs" style="margin-bottom: 15px;"> <li class="active"><a href="#home" data-toggle="tab">Home</a></li> <li><a href="#profile" data-toggle="tab">Profile</a></li> <li class="disabled"><a>Disabled</a></li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> Dropdown <span class="caret"></span> </a> <ul class="dropdown-menu"> <li><a href="#dropdown1" data-toggle="tab">Action</a></li> <li class="divider"></li> <li><a href="#dropdown2" data-toggle="tab">Another action</a></li> </ul> </li> </ul> <div id="myTabContent" class="tab-content"> <div class="tab-pane fade active in" id="home"> <p>Raw denim you probably haven't heard of them jean shorts Austin. Nesciunt tofu stumptown aliqua, retro synth master cleanse. Mustache cliche tempor, williamsburg carles vegan helvetica. Reprehenderit butcher retro keffiyeh dreamcatcher synth. Cosby sweater eu banh mi, qui irure terry richardson ex squid. Aliquip placeat salvia cillum iphone. Seitan aliquip quis cardigan american apparel, butcher voluptate nisi qui.</p> </div> <div class="tab-pane fade" id="profile"> <p>Food truck fixie locavore, accusamus mcsweeney's marfa nulla single-origin coffee squid. Exercitation +1 labore velit, blog sartorial PBR leggings next level wes anderson artisan four loko farm-to-table craft beer twee. Qui photo booth letterpress, commodo enim craft beer mlkshk aliquip jean shorts ullamco ad vinyl cillum PBR. Homo nostrud organic, assumenda labore aesthetic magna delectus mollit.</p> </div> <div class="tab-pane fade" id="dropdown1"> <p>Etsy mixtape wayfarers, ethical wes anderson tofu before they sold out mcsweeney's organic lomo retro fanny pack lo-fi farm-to-table readymade. Messenger bag gentrify pitchfork tattooed craft beer, iphone skateboard locavore carles etsy salvia banksy hoodie helvetica. DIY synth PBR banksy irony. Leggings gentrify squid 8-bit cred pitchfork.</p> </div> <div class="tab-pane fade" id="dropdown2"> <p>Trust fund seitan letterpress, keytar raw denim keffiyeh etsy art party before they sold out master cleanse gluten-free squid scenester freegan cosby sweater. Fanny pack portland seitan DIY, art party locavore wolf cliche high life echo park Austin. Cred vinyl keffiyeh DIY salvia PBR, banh mi before they sold out farm-to-table VHS viral locavore cosby sweater.</p> </div> </div> </div> </div> <div class="col-lg-4"> <h2 id="nav-pills">Pills</h2> <div class="bs-example"> <ul class="nav nav-pills"> <li class="active"><a href="#">Home</a></li> <li><a href="#">Profile</a></li> <li class="disabled"><a href="#">Disabled</a></li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> Dropdown <span class="caret"></span> </a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </li> </ul> </div> <br> <div class="bs-example"> <ul class="nav nav-pills nav-stacked" style="max-width: 300px;"> <li class="active"><a href="#">Home</a></li> <li><a href="#">Profile</a></li> <li class="disabled"><a href="#">Disabled</a></li> <li class="dropdown"> <a class="dropdown-toggle" data-toggle="dropdown" href="#"> Dropdown <span class="caret"></span> </a> <ul class="dropdown-menu"> <li><a href="#">Action</a></li> <li><a href="#">Another action</a></li> <li><a href="#">Something else here</a></li> <li class="divider"></li> <li><a href="#">Separated link</a></li> </ul> </li> </ul> </div> </div> <div class="col-lg-4"> <h2 id="nav-breadcrumbs">Breadcrumbs</h2> <div class="bs-example"> <ul class="breadcrumb"> <li class="active">Home</li> </ul> <ul class="breadcrumb"> <li><a href="#">Home</a></li> <li class="active">Library</li> </ul> <ul class="breadcrumb" style="margin-bottom: 5px;"> <li><a href="#">Home</a></li> <li><a href="#">Library</a></li> <li class="active">Data</li> </ul> </div> </div> </div> <div class="row"> <div class="col-lg-4"> <h2 id="pagination">Pagination</h2> <div class="bs-example"> <ul class="pagination"> <li class="disabled"><a href="#">&laquo;</a></li> <li class="active"><a href="#">1</a></li> <li><a href="#">2</a></li> <li><a href="#">3</a></li> <li><a href="#">4</a></li> <li><a href="#">5</a></li> <li><a href="#">&raquo;</a></li> </ul> <ul class="pagination pagination-lg"> <li class="disabled"><a href="#">&laquo;</a></li> <li class="active"><a href="#">1</a></li> <li><a href="#">2</a></li> <li><a href="#">3</a></li> <li><a href="#">&raquo;</a></li> </ul> <ul class="pagination pagination-sm"> <li class="disabled"><a href="#">&laquo;</a></li> <li class="active"><a href="#">1</a></li> <li><a href="#">2</a></li> <li><a href="#">3</a></li> <li><a href="#">4</a></li> <li><a href="#">5</a></li> <li><a href="#">&raquo;</a></li> </ul> </div> </div> <div class="col-lg-4"> <h2 id="pager">Pager</h2> <div class="bs-example"> <ul class="pager"> <li><a href="#">Previous</a></li> <li><a href="#">Next</a></li> </ul> </div> <div class="bs-example"> <ul class="pager"> <li class="previous disabled"><a href="#">&larr; Older</a></li> <li class="next"><a href="#">Newer &rarr;</a></li> </ul> </div> </div> <div class="col-lg-4"> </div> </div> </div> <!-- Indicators ================================================== --> <div class="bs-docs-section"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="indicators">Indicators</h1> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <h2>Alerts</h2> <div class="bs-example"> <div class="alert alert-dismissable alert-warning"> <button type="button" class="close" data-dismiss="alert">&times;</button> <h4>Warning!</h4> <p>Best check yo self, you're not looking too good. Nulla vitae elit libero, a pharetra augue. Praesent commodo cursus magna, <a href="#" class="alert-link">vel scelerisque nisl consectetur et</a>.</p> </div> </div> </div> </div> <div class="row"> <div class="col-lg-4"> <div class="alert alert-dismissable alert-danger"> <button type="button" class="close" data-dismiss="alert">&times;</button> <strong>Oh snap!</strong> <a href="#" class="alert-link">Change a few things up</a> and try submitting again. </div> </div> <div class="col-lg-4"> <div class="alert alert-dismissable alert-success"> <button type="button" class="close" data-dismiss="alert">&times;</button> <strong>Well done!</strong> You successfully read <a href="#" class="alert-link">this important alert message</a>. </div> </div> <div class="col-lg-4"> <div class="alert alert-dismissable alert-info"> <button type="button" class="close" data-dismiss="alert">&times;</button> <strong>Heads up!</strong> This <a href="#" class="alert-link">alert needs your attention</a>, but it's not super important. </div> </div> </div> <div class="row"> <div class="col-lg-4"> <h2>Labels</h2> <div class="bs-example" style="margin-bottom: 40px;"> <span class="label label-default">Default</span> <span class="label label-primary">Primary</span> <span class="label label-success">Success</span> <span class="label label-warning">Warning</span> <span class="label label-danger">Danger</span> <span class="label label-info">Info</span> </div> </div> <div class="col-lg-4"> <h2>Badges</h2> <div class="bs-example"> <ul class="nav nav-pills"> <li class="active"><a href="#">Home <span class="badge">42</span></a></li> <li><a href="#">Profile <span class="badge"></span></a></li> <li><a href="#">Messages <span class="badge">3</span></a></li> </ul> </div> </div> </div> </div> <!-- Progress bars ================================================== --> <div class="bs-docs-section"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="progress">Progress bars</h1> </div> <h3 id="progress-basic">Basic</h3> <div class="bs-example"> <div class="progress"> <div class="progress-bar" style="width: 60%;"></div> </div> </div> <h3 id="progress-alternatives">Contextual alternatives</h3> <div class="bs-example"> <div class="progress" style="margin-bottom: 9px;"> <div class="progress-bar progress-bar-info" style="width: 20%"></div> </div> <div class="progress" style="margin-bottom: 9px;"> <div class="progress-bar progress-bar-success" style="width: 40%"></div> </div> <div class="progress" style="margin-bottom: 9px;"> <div class="progress-bar progress-bar-warning" style="width: 60%"></div> </div> <div class="progress"> <div class="progress-bar progress-bar-danger" style="width: 80%"></div> </div> </div> <h3 id="progress-striped">Striped</h3> <div class="bs-example"> <div class="progress progress-striped" style="margin-bottom: 9px;"> <div class="progress-bar progress-bar-info" style="width: 20%"></div> </div> <div class="progress progress-striped" style="margin-bottom: 9px;"> <div class="progress-bar progress-bar-success" style="width: 40%"></div> </div> <div class="progress progress-striped" style="margin-bottom: 9px;"> <div class="progress-bar progress-bar-warning" style="width: 60%"></div> </div> <div class="progress progress-striped"> <div class="progress-bar progress-bar-danger" style="width: 80%"></div> </div> </div> <h3 id="progress-animated">Animated</h3> <div class="bs-example"> <div class="progress progress-striped active"> <div class="progress-bar" style="width: 45%"></div> </div> </div> <h3 id="progress-stacked">Stacked</h3> <div class="bs-example"> <div class="progress"> <div class="progress-bar progress-bar-success" style="width: 35%"></div> <div class="progress-bar progress-bar-warning" style="width: 20%"></div> <div class="progress-bar progress-bar-danger" style="width: 10%"></div> </div> </div> </div> </div> </div> <!-- Containers ================================================== --> <div class="bs-docs-section"> <div class="row"> <div class="col-lg-12"> <div class="page-header"> <h1 id="container">Containers</h1> </div> <div class="bs-example"> <div class="jumbotron"> <h1>Jumbotron</h1> <p>This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p> <p><a class="btn btn-primary btn-lg">Learn more</a></p> </div> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <h2>List groups</h2> </div> </div> <div class="row"> <div class="col-lg-4"> <div class="bs-example"> <ul class="list-group"> <li class="list-group-item"> <span class="badge">14</span> Cras justo odio </li> <li class="list-group-item"> <span class="badge">2</span> Dapibus ac facilisis in </li> <li class="list-group-item"> <span class="badge">1</span> Morbi leo risus </li> </ul> </div> </div> <div class="col-lg-4"> <div class="bs-example"> <div class="list-group"> <a href="#" class="list-group-item active"> Cras justo odio </a> <a href="#" class="list-group-item">Dapibus ac facilisis in </a> <a href="#" class="list-group-item">Morbi leo risus </a> </div> </div> </div> <div class="col-lg-4"> <div class="bs-example"> <div class="list-group"> <a href="#" class="list-group-item"> <h4 class="list-group-item-heading">List group item heading</h4> <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p> </a> <a href="#" class="list-group-item"> <h4 class="list-group-item-heading">List group item heading</h4> <p class="list-group-item-text">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus varius blandit.</p> </a> </div> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <h2>Panels</h2> </div> </div> <div class="row"> <div class="col-lg-4"> <div class="panel panel-default"> <div class="panel-body"> Basic panel </div> </div> <div class="panel panel-default"> <div class="panel-heading">Panel heading</div> <div class="panel-body"> Panel content </div> </div> <div class="panel panel-default"> <div class="panel-body"> Panel content </div> <div class="panel-footer">Panel footer</div> </div> </div> <div class="col-lg-4"> <div class="panel panel-primary"> <div class="panel-heading"> <h3 class="panel-title">Panel primary</h3> </div> <div class="panel-body"> Panel content </div> </div> <div class="panel panel-success"> <div class="panel-heading"> <h3 class="panel-title">Panel success</h3> </div> <div class="panel-body"> Panel content </div> </div> <div class="panel panel-warning"> <div class="panel-heading"> <h3 class="panel-title">Panel warning</h3> </div> <div class="panel-body"> Panel content </div> </div> </div> <div class="col-lg-4"> <div class="panel panel-danger"> <div class="panel-heading"> <h3 class="panel-title">Panel danger</h3> </div> <div class="panel-body"> Panel content </div> </div> <div class="panel panel-info"> <div class="panel-heading"> <h3 class="panel-title">Panel info</h3> </div> <div class="panel-body"> Panel content </div> </div> </div> </div> <div class="row"> <div class="col-lg-12"> <h2>Wells</h2> </div> </div> <div class="row"> <div class="col-lg-4"> <div class="well"> Look, I'm in a well! </div> </div> <div class="col-lg-4"> <div class="well well-sm"> Look, I'm in a small well! </div> </div> <div class="col-lg-4"> <div class="well well-lg"> Look, I'm in a large well! </div> </div> </div> </div> <footer> <div class="row"> <div class="col-lg-12"> <ul class="list-unstyled"> <li class="pull-right"><a href="#top">Back to top</a></li> <li><a href="http://news.bootswatch.com" onclick="pageTracker._link(this.href); return false;">Blog</a></li> <li><a href="http://feeds.feedburner.com/bootswatch">RSS</a></li> <li><a href="https://twitter.com/thomashpark">Twitter</a></li> <li><a href="https://github.com/thomaspark/bootswatch/">GitHub</a></li> <li><a href="../help/#api">API</a></li> <li><a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=F22JEM3Q78JC2">Donate</a></li> </ul> <p>Made by <a href="http://thomaspark.me">Thomas Park</a>. Contact him at <a href="mailto:hello@thomaspark.me">hello@thomaspark.me</a>.</p> <p>Code licensed under the <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License v2.0</a>.</p> <p>Based on <a href="http://getbootstrap.com">Bootstrap</a>. Icons from <a href="http://fortawesome.github.io/Font-Awesome/">Font Awesome</a>. Web fonts from <a href="http://www.google.com/webfonts">Google</a>. Favicon by <a href="https://twitter.com/geraldhiller">Gerald Hiller</a>.</p> </div> </div> </footer> </div> <script src="../bower_components/jquery/jquery.min.js"></script> <script src="../bower_components/bootstrap/dist/js/bootstrap.min.js"></script> <script src="../assets/js/bootswatch.js"></script> </body> </html>
wts/tests/2dtransforms/csswg/transform-origin-007-ref.html
haoxli/web-testing-service
<!DOCTYPE html> <meta charset="utf-8"> <title>CSS Transforms Test Reference File</title> <link rel="author" title="Intel" href="http://www.intel.com"> <style> #test { background-color: green; height: 50px; margin: 50px; width: 50px; } #container { background-color: gray; height: 150px; position: absolute; width: 150px; } </style> <body> <p>Test passes if there is a filled green square in the <strong>center</strong> of the gray square and no red.</p> <div id="container"><div id="test"></div></div> </body>
workspace/myproject/myproject/templates/example/assets/global/plugins/amcharts/amstockcharts/plugins/responsive/examples/serial2.html
liangazhou/django-rdp
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> <title>amCharts Responsive Example</title> <script src="http://www.amcharts.com/lib/3/amcharts.js"></script> <script src="http://www.amcharts.com/lib/3/serial.js"></script> <script src="http://www.amcharts.com/lib/3/themes/dark.js"></script> <script src="../responsive.min.js"></script> <style> body, html { height: 100%; padding: 0; margin: 0; } </style> <script> AmCharts.makeChart("chartdiv", { "type": "serial", "theme": "dark", "dataProvider": [ { "year": 2005, "income": 23.5, "expenses": 18.1 }, { "year": 2006, "income": 26.2, "expenses": 22.8 }, { "year": 2007, "income": 30.1, "expenses": 23.9 }, { "year": 2008, "income": 29.5, "expenses": 25.1 }, { "year": 2009, "income": 24.6, "expenses": 25 }], "categoryField": "year", "startDuration": 1, "rotate": true, "categoryAxis": { "gridPosition": "start" }, "valueAxes": [ { "position": "top", "title": "Million USD", "minorGridEnabled": true }], "graphs": [ { "type": "column", "title": "Income", "valueField": "income", "fillAlphas": 1, "balloonText": "<span style='font-size:13px;'>[[title]] in [[category]]:<b>[[value]]</b></span>" }, { "type": "line", "title": "Expenses", "valueField": "expenses", "lineThickness": 2, "bullet": "round", "balloonText": "<span style='font-size:13px;'>[[title]] in [[category]]:<b>[[value]]</b></span>" }], "legend": { "useGraphSettings": true }, "creditsPosition": "top-right", "responsive": { "enabled": true } }); </script> </head> <body style="background-color:#282828;"> <div id="chartdiv" style="width: 100%; height: 100%;"></div> </body> </html>
www/bower_components/core-input/core-input.css
Vocap/vocap_app
:host { display: inline-block; text-align: inherit; color: #ccc; position: relative; width: 20em; } :host:hover { cursor: text; } input, textarea { font: inherit; width: 100%; margin: 0; padding: 0; background-color: transparent; border: none; outline: none; width: 100%; } textarea { resize: none; } textarea[fit] { position: absolute; top: 0; left: 0; right: 0; bottom: 0; }
ajax/libs/react-data-grid/0.14.29/react-data-grid.css
brix/cdnjs
.react-grid-Container { clear: both; margin-top: 0; padding: 0; } .react-grid-Toolbar { background-color: #ffffff; border-color: #e7eaec; border-image: none; border-style: solid solid none; border-width: 4px 1px 1px 1px; color: inherit; margin-bottom: 0; padding: 14px 15px 7px; height: 48px; } .react-grid-Toolbar .btn{ display: inline-block; padding: 6px 12px; margin-bottom: 0; font-size: 14px; font-weight: 400; line-height: 1.42857143; text-align: center; white-space: nowrap; vertical-align: middle; -ms-touch-action: manipulation; touch-action: manipulation; cursor: pointer; -webkit-user-select: none; color: inherit; background: white; border: 1px solid #e7eaec; } .react-grid-Toolbar .btn:hover { color: inherit; border: 1px solid #d2d2d2; } .react-grid-Toolbar .tools { display: inline-block; float: right; margin-top: 0; position: relative; padding: 0; margin-top: -6px; } .react-grid-Main { background-color: #ffffff; color: inherit; padding: 0px; outline: 1px solid #e7eaec; clear : both; } .react-grid-Grid { background-color: #ffffff; border: 1px solid #dddddd; } .react-grid-Canvas { background-color: #ffffff; } .react-grid-Cell { background-color: #ffffff; padding-left: 8px; padding-right: 8px; border-right: 1px solid #eee; border-bottom: 1px solid #dddddd; } .react-grid-Cell:not(.editing) .react-grid-Cell__value { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; position: relative; top: 50%; transform: translateY(-50%); } .react-grid-Canvas.opaque .react-grid-Cell:not(.editing) { opacity: 0.4; transition: opacity .25s ease-in-out; -moz-transition: opacity .25s ease-in-out; -webkit-transition: opacity .25s ease-in-out; } .react-grid-Cell__value ul { margin-top: 0; margin-bottom: 0; display: inline-block; } .react-grid-Cell__value .btn-sm { padding: 0; } .react-grid-Cell.copied { background: rgba(0, 0, 255, 0.2) !important; -webkit-transition: 0.5s background; } .react-grid-Row:hover .react-grid-Cell { background-color: #f2f2f2; } .react-grid-Cell.editing { padding: 0; overflow: visible !important; } .react-grid-Cell.editing .has-error input { border: 2px red solid !important; border-radius: 2px !important; } .react-grid-Cell input.editor-main, select.editor-main { display: block; width: 100%; height: 34px; padding: 6px 12px; font-size: 14px; line-height: 1.42857143; color: #555555; background-color: #ffffff; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .react-grid-Cell input.editor-main:focus, select.editor-main:focus { border-color: #66afe9; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6); } .react-grid-Cell input.editor-main::-moz-placeholder, select.editor-main::-moz-placeholder { color: #999999; opacity: 1; } .react-grid-Cell input.editor-main:-ms-input-placeholder, select.editor-main:-ms-input-placeholder { color: #999999; } .react-grid-Cell input.editor-main::-webkit-input-placeholder, select.editor-main::-webkit-input-placeholder { color: #999999; } .react-grid-Cell input.editor-main[disabled], select.editor-main[disabled], .react-grid-Cell input.editor-main[readonly], select.editor-main[readonly], fieldset[disabled] .react-grid-Cell input.editor-main, fieldset[disabled] select.editor-main { cursor: not-allowed; background-color: #eeeeee; opacity: 1; } textarea.react-grid-Cell input.editor-main, textareaselect.editor-main { height: auto; } .react-grid-checkbox-container { cursor: pointer; } .react-grid-checkbox, .radio-custom { opacity: 0; position: absolute; } .react-grid-checkbox, .react-grid-checkbox-label, .radio-custom, .radio-custom-label { display: inline-block; vertical-align: middle; margin: 10px; cursor: pointer; } .react-grid-checkbox-label, .radio-custom-label { position: relative; } .react-grid-checkbox + .react-grid-checkbox-label:before, .radio-custom + .radio-custom-label:before { content: ''; background: #fff; border: 2px solid #ddd; display: inline-block; vertical-align: middle; width: 20px; height: 20px; text-align: center; } .react-grid-checkbox:checked + .react-grid-checkbox-label:before { background: rebeccapurple; box-shadow: inset 0px 0px 0px 4px #fff; } .radio-custom + .radio-custom-label:before { border-radius: 50%; } .radio-custom:checked + .radio-custom-label:before { background: #ccc; box-shadow: inset 0px 0px 0px 4px #fff; } .react-grid-checkbox:focus + .react-grid-checkbox-label, .radio-custom:focus + .radio-custom-label { outline: 1px solid #ddd; /* focus style */ } .react-grid-HeaderCell input[type='checkbox'] { z-index: 99999; } .react-grid-HeaderCell > .react-grid-checkbox-container { padding: 0px 10px; } .react-grid-HeaderCell > .react-grid-checkbox-container > .react-grid-checkbox-label { margin : 0; } .react-grid-Header { box-shadow: 0px 0px 4px 0px #dddddd; background: #f9f9f9; } .react-grid-Header--resizing { cursor: ew-resize; } .react-grid-HeaderRow { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .react-grid-HeaderCell { -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; background: #f9f9f9; padding: 8px; font-weight: bold; border-right: 1px solid #dddddd; border-bottom: 1px solid #dddddd; } .react-grid-HeaderCell__value { white-space: nowrap; text-overflow: ellipsis; overflow: hidden; position: relative; top: 50%; transform: translateY(-50%); } .react-grid-HeaderCell__resizeHandle:hover { cursor: ew-resize; background: #dddddd; } .react-grid-HeaderCell--locked:last-of-type { box-shadow: none; } .react-grid-HeaderCell--resizing .react-grid-HeaderCell__resizeHandle { background: #dddddd; } .react-grid-HeaderCell__draggable { cursor: col-resize } .react-grid-ScrollShim { z-index: 10002; } .react-grid-Cell.selected-draggable { border: 1px solid #66afe9; background: #eee; } .react-grid-cell .form-control-feedback { color: #a94442; position: absolute; top: 0px; right: 10px; z-index: 1000000; display: block; width: 34px; height: 34px; } .react-grid-Cell.was-dragged-over { border-right: 1px dashed black; border-left: 1px dashed black; } .react-grid-Cell.active-drag-cell { overflow: visible !important; } .react-grid-Cell.active-drag-cell .drag-handle { position: absolute; bottom: -5px; right: -4px; background: #66afe9; width: 8px; height: 8px; border: 1px solid #fff; border-right: 0px; border-bottom: 0px; z-index: 8; cursor: crosshair; cursor: -webkit-grab; } .react-grid-Cell.active-drag-cell:hover .drag-handle { position: absolute; bottom: -8px; right: -7px; background: white; width: 16px; height: 16px; border: 1px solid #66afe9; /* border-right: 0px; */ /* border-bottom: 0px; */ z-index: 8; cursor: crosshair; cursor: -webkit-grab; } .react-grid-Cell.active-drag-cell:hover .drag-handle .glyphicon-arrow-down { display: 'block' } .react-grid-Cell.is-dragged-over-down { border-right: 1px dashed black; border-left: 1px dashed black; border-bottom: 1px dashed black; } .react-grid-Cell.is-dragged-over-up { border-right: 1px dashed black; border-left: 1px dashed black; border-top: 1px dashed black; } .react-grid-Cell.is-dragged-over-up .drag-handle { top: -5px; } .react-grid-Cell:hover { background: #eee; } .react-grid-Cell.selected { border: 2px solid #66afe9; background: #eee; border-radius: 4px; } .react-grid-Cell:focus { outline: none; } .react-grid-Row.row-selected .react-grid-Cell{ background-color: #DBECFA; } .react-grid-Cell--locked:last-of-type { border-right: 1px solid #dddddd; box-shadow: none; } .react-grid-image { background: #efefef; background-size: 100%; display: inline-block; height: 40px; width: 40px; } .react-autocomplete-Autocomplete__search { display: block; width: 100%; height: 36px; padding: 6px 12px; font-size: 14px; line-height: 1.6; color: #555555; background-color: white; background-image: none; border: 1px solid #cccccc; border-radius: 4px; -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s; } .react-autocomplete-Autocomplete__search:focus { border-color: #a21618; outline: 0; -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(162, 22, 24, 0.6); box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(162, 22, 24, 0.6); } .react-autocomplete-Autocomplete__search::-moz-placeholder { color: #777777; opacity: 1; } .react-autocomplete-Autocomplete__search:-ms-input-placeholder { color: #777777; } .react-autocomplete-Autocomplete__search::-webkit-input-placeholder { color: #777777; } .react-autocomplete-Autocomplete__search[disabled], .react-autocomplete-Autocomplete__search[readonly], fieldset[disabled] .react-autocomplete-Autocomplete__search { cursor: not-allowed; background-color: #eeeeee; opacity: 1; } textarea.react-autocomplete-Autocomplete__search { height: auto; } .react-autocomplete-Autocomplete__results { position: absolute; top: 100%; left: 0; z-index: 1000; display: none; float: left; min-width: 160px; padding: 5px 0; margin: 2px 0 0; list-style: none; font-size: 14px; text-align: left; background-color: white; border: 1px solid #cccccc; border: 1px solid rgba(0, 0, 0, 0.15); border-radius: 4px; -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); background-clip: padding-box; min-width: 250px; width: 100%; max-height: 200px; overflow: auto; } .react-autocomplete-Autocomplete__results.pull-right { right: 0; left: auto; } .react-autocomplete-Autocomplete__results .divider { height: 1px; margin: 10px 0; overflow: hidden; background-color: #e5e5e5; } .react-autocomplete-Autocomplete__results > li > a { display: block; padding: 3px 20px; clear: both; font-weight: normal; line-height: 1.6; color: #333333; white-space: nowrap; } .react-autocomplete-Autocomplete__results div.action-button { display: block !important; padding: 4px; } .react-autocomplete-Result { cursor: pointer; } .react-autocomplete-Result > a { text-decoration: none; } .react-autocomplete-Result--active { color: #262626; background-color: whitesmoke; } .react-grid-Cell.readonly { background-color : black; }
www/lib/paper-scroll-header-panel/demo/demo4.html
zacharyfmarion/Graviton
<!doctype html> <!-- @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 --> <html> <head> <title>paper-scroll-header-panel: demo4</title> <meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes"> <meta name="mobile-web-app-capable" content="yes"> <meta name="apple-mobile-web-app-capable" content="yes"> <script src="../../webcomponentsjs/webcomponents-lite.js"></script> <link rel="import" href="../paper-scroll-header-panel.html"> <link rel="import" href="../../paper-toolbar/paper-toolbar.html"> <link rel="import" href="../../iron-icons/iron-icons.html"> <link rel="import" href="../../paper-icon-button/paper-icon-button.html"> <link rel="import" href="sample-content.html"> <link rel="stylesheet" href="../../paper-styles/demo.css"> <style is="custom-style"> paper-scroll-header-panel { position: absolute; top: 0; right: 0; bottom: 0; left: 0; background-color: var(--paper-grey-200, #eee); /* background for toolbar when it is at its full size */ --paper-scroll-header-panel-full-header: { background-image: url(images/bg6.jpg); }; /* background for toolbar when it is condensed */ --paper-scroll-header-panel-condensed-header: { background-color: var(--paper-deep-orange-500, #ff5722); }; } paper-toolbar.tall { background-color: transparent; } paper-toolbar.tall .title { font-size: 40px; margin-left: 60px; -webkit-transform-origin: left center; transform-origin: left center; } .content { padding: 8px; } </style> </head> <body unresolved> <paper-scroll-header-panel condenses> <paper-toolbar class="tall"> <paper-icon-button icon="arrow-back"></paper-icon-button> <div class="flex"></div> <paper-icon-button icon="search"></paper-icon-button> <paper-icon-button icon="more-vert"></paper-icon-button> <div class="bottom title">Title</div> </paper-toolbar> <div class="content"> <sample-content size="100"></sample-content> </div> </paper-scroll-header-panel> <script> // custom transformation: scale header's title var title = document.querySelector('.title'); addEventListener('paper-header-transform', function(e) { var d = e.detail; var m = d.height - d.condensedHeight; var scale = Math.max(0.75, (m - d.y) / (m / 0.25) + 0.75); Polymer.Base.transform('scale(' + scale + ') translateZ(0)', title); }); </script> </body> </html>
ajax/libs/darktooltip/0.1.5/css/darktooltip.css
Piicksarn/cdnjs
.dark-tooltip{ display:none; position:absolute; z-index:99; text-decoration:none; font-weight:normal; height:auto; top:0; left:0;} .dark-tooltip.small{ padding:4px; font-size:12px; max-width:150px; -webkit-border-radius: 2px; -moz-border-radius: 2px; border-radius: 2px; } .dark-tooltip.medium{ padding:10px; font-size:14px; max-width:200px; -webkit-border-radius: 4px; -moz-border-radius: 4px; border-radius: 4px;} .dark-tooltip.large{ padding:16px; font-size:16px; max-width:250px; -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; } /* Tips */ .dark-tooltip .tip{ content: ""; position: absolute; width:0; height:0; border-style: solid; line-height: 0px; } .dark-tooltip.south .tip{ left:50%; top:100%;} .dark-tooltip.west .tip{ left:0; top:50%;} .dark-tooltip.north .tip{ left:50%; top:0; } .dark-tooltip.east .tip{ left:100%; top:50%;} .dark-tooltip.south.small .tip{ border-width: 7px 5px 0 5px; margin-left:-5px;} .dark-tooltip.south.medium .tip{ border-width: 8px 6px 0 6px; margin-left:-6px;} .dark-tooltip.south.large .tip{ border-width: 14px 12px 0 12px; margin-left:-12px;} .dark-tooltip.west.small .tip{ border-width: 5px 7px 5px 0; margin-left:-7px; margin-top:-5px;} .dark-tooltip.west.medium .tip{ border-width: 6px 8px 6px 0; margin-left:-8px; margin-top:-6px;} .dark-tooltip.west.large .tip{ border-width: 12px 14px 12px 0; margin-left:-14px; margin-top:-12px;} .dark-tooltip.north.small .tip{ border-width: 0 5px 7px 5px; margin-left:-5px; margin-top:-7px;} .dark-tooltip.north.medium .tip{ border-width: 0 6px 8px 6px; margin-left:-6px; margin-top:-8px;} .dark-tooltip.north.large .tip{ border-width: 0 12px 14px 12px; margin-left:-12px; margin-top:-14px;} .dark-tooltip.east.small .tip{ border-width: 5px 0 5px 7px; margin-top:-5px;} .dark-tooltip.east.medium .tip{ border-width: 6px 0 6px 8px; margin-top:-6px;} .dark-tooltip.east.large .tip{ border-width: 12px 0 12px 14px; margin-top:-12px;} /* confirm */ .dark-tooltip ul.confirm{ list-style-type:none;margin-top:5px;display:inline-block;margin:0 auto; } .dark-tooltip ul.confirm li{ padding:10px;float:left;margin:5px;min-width:25px;-webkit-border-radius:3px;-moz-border-radius:3px;-o-border-radius:3px;border-radius:3px;} /* themes */ .dark-tooltip.dark{ background-color:#1B1E24; color:#fff; } .dark-tooltip.light{ background-color:#ebedf3; color:#1B1E24; } .dark-tooltip.dark.south .tip{ border-color: #1B1E24 transparent transparent transparent; _border-color: #1B1E24 #000000 #000000 #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.dark.west .tip{ border-color: transparent #1B1E24 transparent transparent; _border-color: #000000 #1B1E24 #000000 #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.dark.north .tip{ border-color: transparent transparent #1B1E24 transparent; _border-color: #000000 #000000 #1B1E24 #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.dark.east .tip{ border-color: transparent transparent transparent #1B1E24; _border-color: #000000 #000000 #000000 #1B1E24; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.light.south .tip{ border-color: #ebedf3 transparent transparent transparent; _border-color: #ebedf3 #000000 #000000 #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.light.west .tip{ border-color: transparent #ebedf3 transparent transparent; _border-color: #000000 #ebedf3 #000000 #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.light.north .tip{ border-color: transparent transparent #ebedf3 transparent; _border-color: #000000 #000000 #ebedf3 #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.light.east .tip{ border-color: transparent transparent transparent #ebedf3; _border-color:#000000 #000000 #000000 #ebedf3 ; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); } .dark-tooltip.dark ul.confirm li{ background-color:#416E85;} .dark-tooltip.dark ul.confirm li:hover{ background-color:#417E85;} .dark-tooltip.light ul.confirm li{ background-color:#C1DBDB;} .dark-tooltip.light ul.confirm li:hover{ background-color:#DCE8E8;} /* Animations */ .animated{ -webkit-animation-fill-mode:both;-moz-animation-fill-mode:both;-ms-animation-fill-mode:both;-o-animation-fill-mode:both;animation-fill-mode:both; -webkit-animation-duration:.5s;-moz-animation-duration:.5s;-ms-animation-duration:.5s;-o-animation-duration:.5s;animation-duration:.5s; } @-webkit-keyframes flipInUp { 0% { -webkit-transform: perspective(400px) rotateX(-90deg); opacity: 0;} 40% { -webkit-transform: perspective(400px) rotateX(5deg);} 70% { -webkit-transform: perspective(400px) rotateX(-5deg);} 100% { -webkit-transform: perspective(400px) rotateX(0deg); opacity: 1;} } @-moz-keyframes flipInUp { 0% {-moz-transform: perspective(400px) rotateX(-90deg);opacity: 0;} 40% {-moz-transform: perspective(400px) rotateX(5deg);} 70% {-moz-transform: perspective(400px) rotateX(-5deg);} 100% {-moz-transform: perspective(400px) rotateX(0deg);opacity: 1;} } @-o-keyframes flipInUp { 0% {-o-transform: perspective(400px) rotateX(-90deg);opacity: 0;} 40% {-o-transform: perspective(400px) rotateX(5deg);} 70% {-o-transform: perspective(400px) rotateX(-5deg);} 100% {-o-transform: perspective(400px) rotateX(0deg);opacity: 1;} } @keyframes flipInUp { 0% {transform: perspective(400px) rotateX(-90deg);opacity: 0;} 40% {transform: perspective(400px) rotateX(5deg);} 70% {transform: perspective(400px) rotateX(-5deg);} 100% {transform: perspective(400px) rotateX(0deg);opacity: 1;} } @-webkit-keyframes flipInRight { 0% { -webkit-transform: perspective(400px) rotateY(-90deg); opacity: 0;} 40% { -webkit-transform: perspective(400px) rotateY(5deg);} 70% { -webkit-transform: perspective(400px) rotateY(-5deg);} 100% { -webkit-transform: perspective(400px) rotateY(0deg); opacity: 1;} } @-moz-keyframes flipInRight { 0% {-moz-transform: perspective(400px) rotateY(-90deg);opacity: 0;} 40% {-moz-transform: perspective(400px) rotateY(5deg);} 70% {-moz-transform: perspective(400px) rotateY(-5deg);} 100% {-moz-transform: perspective(400px) rotateY(0deg);opacity: 1;} } @-o-keyframes flipInRight { 0% {-o-transform: perspective(400px) rotateY(-90deg);opacity: 0;} 40% {-o-transform: perspective(400px) rotateY(5deg);} 70% {-o-transform: perspective(400px) rotateY(-5deg);} 100% {-o-transform: perspective(400px) rotateY(0deg);opacity: 1;} } @keyframes flipInRight { 0% {transform: perspective(400px) rotateY(-90deg);opacity: 0;} 40% {transform: perspective(400px) rotateY(5deg);} 70% {transform: perspective(400px) rotateY(-5deg);} 100% {transform: perspective(400px) rotateY(0deg);opacity: 1;} } .flipIn { -webkit-backface-visibility: visible !important; -moz-backface-visibility: visible !important; -o-backface-visibility: visible !important; backface-visibility: visible !important} .flipIn.south, .flipIn.north { -webkit-animation-name: flipInUp; -moz-animation-name: flipInUp; -o-animation-name: flipInUp; animation-name: flipInUp; } .flipIn.west, .flipIn.east { -webkit-animation-name: flipInRight; -moz-animation-name: flipInRight; -o-animation-name: flipInRight; animation-name: flipInRight; } @-webkit-keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;}} @-moz-keyframes fadeIn { 0% {opacity: 0;} 100% {opacity: 1;}} @-o-keyframes fadeIn {0% {opacity: 0;}100% {opacity: 1;}} @keyframes fadeIn {0% {opacity: 0;}100% {opacity: 1;}} .fadeIn{-webkit-animation-name: fadeIn; -moz-animation-name: fadeIn; -o-animation-name: fadeIn; animation-name: fadeIn;}
tests/localdev01/apps/www/d6site/modules/dblog/dblog-rtl.css
dhalima/vagrant_tests
#edit-type-wrapper, #edit-severity-wrapper { float: right; padding-right: 0; padding-left: .8em; }
wiki/docs/2.4/html/search/enumvalues_0.html
cdmdotnet/CQRS
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.13"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="enumvalues_0.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
third_party/glm/doc/api/a00138_source.html
googlearchive/tango-examples-c
<!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>GLM: type_vec4.hpp Source File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <link href="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">GLM &#160;<span id="projectnumber">0.9.5</span> </div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <!-- Generated by Doxygen 1.8.5 --> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Related&#160;Pages</span></a></li> <li><a href="modules.html"><span>Modules</span></a></li> <li><a href="namespaces.html"><span>Namespaces</span></a></li> <li class="current"><a href="files.html"><span>Files</span></a></li> </ul> </div> <div id="navrow2" class="tabs2"> <ul class="tablist"> <li><a href="files.html"><span>File&#160;List</span></a></li> </ul> </div> <div id="nav-path" class="navpath"> <ul> <li class="navelem"><a class="el" href="dir_8ceffd4ee35c3518d4e8bdc7e638efe8.html">Users</a></li><li class="navelem"><a class="el" href="dir_968fb7988749a6351e7b3d0c1783dec4.html">Groove</a></li><li class="navelem"><a class="el" href="dir_6e418c18ca640a0404613de005739e2e.html">Documents</a></li><li class="navelem"><a class="el" href="dir_e3ecd7863bd215c92a17f47e2ae3be43.html">GitHub</a></li><li class="navelem"><a class="el" href="dir_edf753475b928be648c1cf1c6443cf63.html">glm</a></li><li class="navelem"><a class="el" href="dir_e50778361fd4ab4de52181ed9eb2b726.html">glm</a></li><li class="navelem"><a class="el" href="dir_4d1ca7e3aefdd5b86b5dba8da1c3d503.html">detail</a></li> </ul> </div> </div><!-- top --> <div class="header"> <div class="headertitle"> <div class="title">type_vec4.hpp</div> </div> </div><!--header--> <div class="contents"> <div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span>&#160;</div> <div class="line"><a name="l00029"></a><span class="lineno"> 29</span>&#160;<span class="preprocessor">#ifndef glm_core_type_gentype4</span></div> <div class="line"><a name="l00030"></a><span class="lineno"> 30</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#define glm_core_type_gentype4</span></div> <div class="line"><a name="l00031"></a><span class="lineno"> 31</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00032"></a><span class="lineno"> 32</span>&#160;<span class="comment">//#include &quot;../fwd.hpp&quot;</span></div> <div class="line"><a name="l00033"></a><span class="lineno"> 33</span>&#160;<span class="preprocessor">#include &quot;setup.hpp&quot;</span></div> <div class="line"><a name="l00034"></a><span class="lineno"> 34</span>&#160;<span class="preprocessor">#include &quot;type_vec.hpp&quot;</span></div> <div class="line"><a name="l00035"></a><span class="lineno"> 35</span>&#160;<span class="preprocessor">#ifdef GLM_SWIZZLE</span></div> <div class="line"><a name="l00036"></a><span class="lineno"> 36</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># if GLM_HAS_ANONYMOUS_UNION</span></div> <div class="line"><a name="l00037"></a><span class="lineno"> 37</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># include &quot;_swizzle.hpp&quot;</span></div> <div class="line"><a name="l00038"></a><span class="lineno"> 38</span>&#160;<span class="preprocessor"># else</span></div> <div class="line"><a name="l00039"></a><span class="lineno"> 39</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># include &quot;_swizzle_func.hpp&quot;</span></div> <div class="line"><a name="l00040"></a><span class="lineno"> 40</span>&#160;<span class="preprocessor"># endif</span></div> <div class="line"><a name="l00041"></a><span class="lineno"> 41</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#endif //GLM_SWIZZLE</span></div> <div class="line"><a name="l00042"></a><span class="lineno"> 42</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#if(GLM_HAS_INITIALIZER_LISTS)</span></div> <div class="line"><a name="l00043"></a><span class="lineno"> 43</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># include &lt;initializer_list&gt;</span></div> <div class="line"><a name="l00044"></a><span class="lineno"> 44</span>&#160;<span class="preprocessor">#endif //GLM_HAS_INITIALIZER_LISTS</span></div> <div class="line"><a name="l00045"></a><span class="lineno"> 45</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#include &lt;cstddef&gt;</span></div> <div class="line"><a name="l00046"></a><span class="lineno"> 46</span>&#160;</div> <div class="line"><a name="l00047"></a><span class="lineno"> 47</span>&#160;<span class="keyword">namespace </span>glm{</div> <div class="line"><a name="l00048"></a><span class="lineno"> 48</span>&#160;<span class="keyword">namespace </span>detail</div> <div class="line"><a name="l00049"></a><span class="lineno"> 49</span>&#160;{</div> <div class="line"><a name="l00050"></a><span class="lineno"> 50</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00051"></a><span class="lineno"> 51</span>&#160; <span class="keyword">struct </span>tvec4</div> <div class="line"><a name="l00052"></a><span class="lineno"> 52</span>&#160; {</div> <div class="line"><a name="l00054"></a><span class="lineno"> 54</span>&#160; <span class="comment">// Implementation detail</span></div> <div class="line"><a name="l00055"></a><span class="lineno"> 55</span>&#160;</div> <div class="line"><a name="l00056"></a><span class="lineno"> 56</span>&#160; <span class="keyword">enum</span> ctor{_null};</div> <div class="line"><a name="l00057"></a><span class="lineno"> 57</span>&#160;</div> <div class="line"><a name="l00058"></a><span class="lineno"> 58</span>&#160; <span class="keyword">typedef</span> tvec4&lt;T, P&gt; type;</div> <div class="line"><a name="l00059"></a><span class="lineno"> 59</span>&#160; <span class="keyword">typedef</span> tvec4&lt;bool, P&gt; bool_type;</div> <div class="line"><a name="l00060"></a><span class="lineno"> 60</span>&#160; <span class="keyword">typedef</span> T value_type;</div> <div class="line"><a name="l00061"></a><span class="lineno"> 61</span>&#160; <span class="keyword">typedef</span> <span class="keywordtype">int</span> size_type;</div> <div class="line"><a name="l00062"></a><span class="lineno"> 62</span>&#160;</div> <div class="line"><a name="l00064"></a><span class="lineno"> 64</span>&#160; <span class="comment">// Helper</span></div> <div class="line"><a name="l00065"></a><span class="lineno"> 65</span>&#160;</div> <div class="line"><a name="l00066"></a><span class="lineno"> 66</span>&#160; GLM_FUNC_DECL GLM_CONSTEXPR length_t <a class="code" href="a00157.html#ga03b2831439defb8922832b540b91b8a7">length</a>() <span class="keyword">const</span>;</div> <div class="line"><a name="l00067"></a><span class="lineno"> 67</span>&#160;</div> <div class="line"><a name="l00069"></a><span class="lineno"> 69</span>&#160; <span class="comment">// Data</span></div> <div class="line"><a name="l00070"></a><span class="lineno"> 70</span>&#160;</div> <div class="line"><a name="l00071"></a><span class="lineno"> 71</span>&#160;<span class="preprocessor"># if(GLM_HAS_ANONYMOUS_UNION &amp;&amp; defined(GLM_SWIZZLE))</span></div> <div class="line"><a name="l00072"></a><span class="lineno"> 72</span>&#160;<span class="preprocessor"></span> <span class="keyword">union</span></div> <div class="line"><a name="l00073"></a><span class="lineno"> 73</span>&#160; {</div> <div class="line"><a name="l00074"></a><span class="lineno"> 74</span>&#160; <span class="keyword">struct </span>{ T r, g, b, a; };</div> <div class="line"><a name="l00075"></a><span class="lineno"> 75</span>&#160; <span class="keyword">struct </span>{ T s, t, p, q; };</div> <div class="line"><a name="l00076"></a><span class="lineno"> 76</span>&#160; <span class="keyword">struct </span>{ T x, y, z, w;};</div> <div class="line"><a name="l00077"></a><span class="lineno"> 77</span>&#160;</div> <div class="line"><a name="l00078"></a><span class="lineno"> 78</span>&#160; _GLM_SWIZZLE4_2_MEMBERS(T, P, tvec2, x, y, z, w)</div> <div class="line"><a name="l00079"></a><span class="lineno"> 79</span>&#160; _GLM_SWIZZLE4_2_MEMBERS(T, P, tvec2, r, g, b, a)</div> <div class="line"><a name="l00080"></a><span class="lineno"> 80</span>&#160; _GLM_SWIZZLE4_2_MEMBERS(T, P, tvec2, s, t, p, q)</div> <div class="line"><a name="l00081"></a><span class="lineno"> 81</span>&#160; _GLM_SWIZZLE4_3_MEMBERS(T, P, tvec3, x, y, z, w)</div> <div class="line"><a name="l00082"></a><span class="lineno"> 82</span>&#160; _GLM_SWIZZLE4_3_MEMBERS(T, P, tvec3, r, g, b, a)</div> <div class="line"><a name="l00083"></a><span class="lineno"> 83</span>&#160; _GLM_SWIZZLE4_3_MEMBERS(T, P, tvec3, s, t, p, q)</div> <div class="line"><a name="l00084"></a><span class="lineno"> 84</span>&#160; _GLM_SWIZZLE4_4_MEMBERS(T, P, tvec4, x, y, z, w)</div> <div class="line"><a name="l00085"></a><span class="lineno"> 85</span>&#160; _GLM_SWIZZLE4_4_MEMBERS(T, P, tvec4, r, g, b, a)</div> <div class="line"><a name="l00086"></a><span class="lineno"> 86</span>&#160; _GLM_SWIZZLE4_4_MEMBERS(T, P, tvec4, s, t, p, q)</div> <div class="line"><a name="l00087"></a><span class="lineno"> 87</span>&#160; };</div> <div class="line"><a name="l00088"></a><span class="lineno"> 88</span>&#160;<span class="preprocessor"># else</span></div> <div class="line"><a name="l00089"></a><span class="lineno"> 89</span>&#160;<span class="preprocessor"></span> <span class="keyword">union </span>{ T x, r, s; };</div> <div class="line"><a name="l00090"></a><span class="lineno"> 90</span>&#160; <span class="keyword">union </span>{ T y, g, t; };</div> <div class="line"><a name="l00091"></a><span class="lineno"> 91</span>&#160; <span class="keyword">union </span>{ T z, b, p; };</div> <div class="line"><a name="l00092"></a><span class="lineno"> 92</span>&#160; <span class="keyword">union </span>{ T w, a, q; };</div> <div class="line"><a name="l00093"></a><span class="lineno"> 93</span>&#160;</div> <div class="line"><a name="l00094"></a><span class="lineno"> 94</span>&#160;<span class="preprocessor"># ifdef GLM_SWIZZLE</span></div> <div class="line"><a name="l00095"></a><span class="lineno"> 95</span>&#160;<span class="preprocessor"></span> GLM_SWIZZLE_GEN_VEC_FROM_VEC4(T, P, detail::tvec4, detail::tvec2, detail::tvec3, detail::tvec4)</div> <div class="line"><a name="l00096"></a><span class="lineno"> 96</span>&#160;<span class="preprocessor"># endif</span></div> <div class="line"><a name="l00097"></a><span class="lineno"> 97</span>&#160;<span class="preprocessor"></span><span class="preprocessor"># endif//GLM_LANG</span></div> <div class="line"><a name="l00098"></a><span class="lineno"> 98</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00100"></a><span class="lineno"> 100</span>&#160; <span class="comment">// Accesses</span></div> <div class="line"><a name="l00101"></a><span class="lineno"> 101</span>&#160;</div> <div class="line"><a name="l00102"></a><span class="lineno"> 102</span>&#160; GLM_FUNC_DECL T &amp; operator[](length_t i);</div> <div class="line"><a name="l00103"></a><span class="lineno"> 103</span>&#160; GLM_FUNC_DECL T <span class="keyword">const</span> &amp; operator[](length_t i) <span class="keyword">const</span>;</div> <div class="line"><a name="l00104"></a><span class="lineno"> 104</span>&#160;</div> <div class="line"><a name="l00106"></a><span class="lineno"> 106</span>&#160; <span class="comment">// Implicit basic constructors</span></div> <div class="line"><a name="l00107"></a><span class="lineno"> 107</span>&#160;</div> <div class="line"><a name="l00108"></a><span class="lineno"> 108</span>&#160; GLM_FUNC_DECL tvec4();</div> <div class="line"><a name="l00109"></a><span class="lineno"> 109</span>&#160; GLM_FUNC_DECL tvec4(type <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00110"></a><span class="lineno"> 110</span>&#160; <span class="keyword">template</span> &lt;precision Q&gt;</div> <div class="line"><a name="l00111"></a><span class="lineno"> 111</span>&#160; GLM_FUNC_DECL tvec4(tvec4&lt;T, Q&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00112"></a><span class="lineno"> 112</span>&#160;</div> <div class="line"><a name="l00113"></a><span class="lineno"> 113</span>&#160;<span class="preprocessor">#if(GLM_HAS_INITIALIZER_LISTS)</span></div> <div class="line"><a name="l00114"></a><span class="lineno"> 114</span>&#160;<span class="preprocessor"></span> <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00115"></a><span class="lineno"> 115</span>&#160; GLM_FUNC_DECL tvec4(std::initializer_list&lt;U&gt; l);</div> <div class="line"><a name="l00116"></a><span class="lineno"> 116</span>&#160;<span class="preprocessor">#endif//GLM_HAS_INITIALIZER_LISTS</span></div> <div class="line"><a name="l00117"></a><span class="lineno"> 117</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00119"></a><span class="lineno"> 119</span>&#160; <span class="comment">// Explicit basic constructors</span></div> <div class="line"><a name="l00120"></a><span class="lineno"> 120</span>&#160;</div> <div class="line"><a name="l00121"></a><span class="lineno"> 121</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(</div> <div class="line"><a name="l00122"></a><span class="lineno"> 122</span>&#160; ctor);</div> <div class="line"><a name="l00123"></a><span class="lineno"> 123</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(</div> <div class="line"><a name="l00124"></a><span class="lineno"> 124</span>&#160; T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00125"></a><span class="lineno"> 125</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(</div> <div class="line"><a name="l00126"></a><span class="lineno"> 126</span>&#160; T <span class="keyword">const</span> &amp; s0,</div> <div class="line"><a name="l00127"></a><span class="lineno"> 127</span>&#160; T <span class="keyword">const</span> &amp; s1,</div> <div class="line"><a name="l00128"></a><span class="lineno"> 128</span>&#160; T <span class="keyword">const</span> &amp; s2,</div> <div class="line"><a name="l00129"></a><span class="lineno"> 129</span>&#160; T <span class="keyword">const</span> &amp; s3);</div> <div class="line"><a name="l00130"></a><span class="lineno"> 130</span>&#160;</div> <div class="line"><a name="l00132"></a><span class="lineno"> 132</span>&#160; <span class="comment">// Conversion scalar constructors</span></div> <div class="line"><a name="l00133"></a><span class="lineno"> 133</span>&#160;</div> <div class="line"><a name="l00135"></a><span class="lineno"> 135</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> A, <span class="keyword">typename</span> B, <span class="keyword">typename</span> C, <span class="keyword">typename</span> D&gt;</div> <div class="line"><a name="l00136"></a><span class="lineno"> 136</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(</div> <div class="line"><a name="l00137"></a><span class="lineno"> 137</span>&#160; A <span class="keyword">const</span> &amp; x,</div> <div class="line"><a name="l00138"></a><span class="lineno"> 138</span>&#160; B <span class="keyword">const</span> &amp; y,</div> <div class="line"><a name="l00139"></a><span class="lineno"> 139</span>&#160; C <span class="keyword">const</span> &amp; z,</div> <div class="line"><a name="l00140"></a><span class="lineno"> 140</span>&#160; D <span class="keyword">const</span> &amp; w);</div> <div class="line"><a name="l00141"></a><span class="lineno"> 141</span>&#160;</div> <div class="line"><a name="l00143"></a><span class="lineno"> 143</span>&#160; <span class="comment">// Conversion vector constructors</span></div> <div class="line"><a name="l00144"></a><span class="lineno"> 144</span>&#160;</div> <div class="line"><a name="l00146"></a><span class="lineno"> 146</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> A, <span class="keyword">typename</span> B, <span class="keyword">typename</span> C, precision Q&gt;</div> <div class="line"><a name="l00147"></a><span class="lineno"> 147</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(tvec2&lt;A, Q&gt; <span class="keyword">const</span> &amp; v, B <span class="keyword">const</span> &amp; s1, C <span class="keyword">const</span> &amp; s2);</div> <div class="line"><a name="l00149"></a><span class="lineno"> 149</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> A, <span class="keyword">typename</span> B, <span class="keyword">typename</span> C, precision Q&gt;</div> <div class="line"><a name="l00150"></a><span class="lineno"> 150</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(A <span class="keyword">const</span> &amp; s1, tvec2&lt;B, Q&gt; <span class="keyword">const</span> &amp; v, C <span class="keyword">const</span> &amp; s2);</div> <div class="line"><a name="l00152"></a><span class="lineno"> 152</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> A, <span class="keyword">typename</span> B, <span class="keyword">typename</span> C, precision Q&gt;</div> <div class="line"><a name="l00153"></a><span class="lineno"> 153</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(A <span class="keyword">const</span> &amp; s1, B <span class="keyword">const</span> &amp; s2, tvec2&lt;C, Q&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00155"></a><span class="lineno"> 155</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> A, <span class="keyword">typename</span> B, precision Q&gt;</div> <div class="line"><a name="l00156"></a><span class="lineno"> 156</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(tvec3&lt;A, Q&gt; <span class="keyword">const</span> &amp; v, B <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00158"></a><span class="lineno"> 158</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> A, <span class="keyword">typename</span> B, precision Q&gt;</div> <div class="line"><a name="l00159"></a><span class="lineno"> 159</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(A <span class="keyword">const</span> &amp; s, tvec3&lt;B, Q&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00161"></a><span class="lineno"> 161</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> A, <span class="keyword">typename</span> B, precision Q&gt;</div> <div class="line"><a name="l00162"></a><span class="lineno"> 162</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(tvec2&lt;A, Q&gt; <span class="keyword">const</span> &amp; v1, tvec2&lt;B, Q&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00164"></a><span class="lineno"> 164</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U, precision Q&gt;</div> <div class="line"><a name="l00165"></a><span class="lineno"> 165</span>&#160; GLM_FUNC_DECL <span class="keyword">explicit</span> tvec4(tvec4&lt;U, Q&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00166"></a><span class="lineno"> 166</span>&#160;</div> <div class="line"><a name="l00168"></a><span class="lineno"> 168</span>&#160; <span class="comment">// Swizzle constructors</span></div> <div class="line"><a name="l00169"></a><span class="lineno"> 169</span>&#160;</div> <div class="line"><a name="l00170"></a><span class="lineno"> 170</span>&#160;<span class="preprocessor"># if(GLM_HAS_ANONYMOUS_UNION &amp;&amp; defined(GLM_SWIZZLE))</span></div> <div class="line"><a name="l00171"></a><span class="lineno"> 171</span>&#160;<span class="preprocessor"></span> <span class="keyword">template</span> &lt;<span class="keywordtype">int</span> E0, <span class="keywordtype">int</span> E1, <span class="keywordtype">int</span> E2, <span class="keywordtype">int</span> E3&gt;</div> <div class="line"><a name="l00172"></a><span class="lineno"> 172</span>&#160; GLM_FUNC_DECL tvec4(_swizzle&lt;4, T, P, tvec4&lt;T, P&gt;, E0, E1, E2, E3&gt; <span class="keyword">const</span> &amp; that)</div> <div class="line"><a name="l00173"></a><span class="lineno"> 173</span>&#160; {</div> <div class="line"><a name="l00174"></a><span class="lineno"> 174</span>&#160; *<span class="keyword">this</span> = that();</div> <div class="line"><a name="l00175"></a><span class="lineno"> 175</span>&#160; }</div> <div class="line"><a name="l00176"></a><span class="lineno"> 176</span>&#160;</div> <div class="line"><a name="l00177"></a><span class="lineno"> 177</span>&#160; <span class="keyword">template</span> &lt;<span class="keywordtype">int</span> E0, <span class="keywordtype">int</span> E1, <span class="keywordtype">int</span> F0, <span class="keywordtype">int</span> F1&gt;</div> <div class="line"><a name="l00178"></a><span class="lineno"> 178</span>&#160; GLM_FUNC_DECL tvec4(_swizzle&lt;2, T, P, tvec2&lt;T, P&gt;, E0, E1, -1, -2&gt; <span class="keyword">const</span> &amp; v, _swizzle&lt;2, T, P, tvec2&lt;T, P&gt;, F0, F1, -1, -2&gt; <span class="keyword">const</span> &amp; u)</div> <div class="line"><a name="l00179"></a><span class="lineno"> 179</span>&#160; {</div> <div class="line"><a name="l00180"></a><span class="lineno"> 180</span>&#160; *<span class="keyword">this</span> = tvec4&lt;T, P&gt;(v(), u());</div> <div class="line"><a name="l00181"></a><span class="lineno"> 181</span>&#160; }</div> <div class="line"><a name="l00182"></a><span class="lineno"> 182</span>&#160;</div> <div class="line"><a name="l00183"></a><span class="lineno"> 183</span>&#160; <span class="keyword">template</span> &lt;<span class="keywordtype">int</span> E0, <span class="keywordtype">int</span> E1&gt;</div> <div class="line"><a name="l00184"></a><span class="lineno"> 184</span>&#160; GLM_FUNC_DECL tvec4(T <span class="keyword">const</span> &amp; x, T <span class="keyword">const</span> &amp; y, _swizzle&lt;2, T, P, tvec2&lt;T, P&gt;, E0, E1, -1, -2&gt; <span class="keyword">const</span> &amp; v)</div> <div class="line"><a name="l00185"></a><span class="lineno"> 185</span>&#160; {</div> <div class="line"><a name="l00186"></a><span class="lineno"> 186</span>&#160; *<span class="keyword">this</span> = tvec4&lt;T, P&gt;(x, y, v());</div> <div class="line"><a name="l00187"></a><span class="lineno"> 187</span>&#160; }</div> <div class="line"><a name="l00188"></a><span class="lineno"> 188</span>&#160;</div> <div class="line"><a name="l00189"></a><span class="lineno"> 189</span>&#160; <span class="keyword">template</span> &lt;<span class="keywordtype">int</span> E0, <span class="keywordtype">int</span> E1&gt;</div> <div class="line"><a name="l00190"></a><span class="lineno"> 190</span>&#160; GLM_FUNC_DECL tvec4(T <span class="keyword">const</span> &amp; x, _swizzle&lt;2, T, P, tvec2&lt;T, P&gt;, E0, E1, -1, -2&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; w)</div> <div class="line"><a name="l00191"></a><span class="lineno"> 191</span>&#160; {</div> <div class="line"><a name="l00192"></a><span class="lineno"> 192</span>&#160; *<span class="keyword">this</span> = tvec4&lt;T, P&gt;(x, v(), w);</div> <div class="line"><a name="l00193"></a><span class="lineno"> 193</span>&#160; }</div> <div class="line"><a name="l00194"></a><span class="lineno"> 194</span>&#160;</div> <div class="line"><a name="l00195"></a><span class="lineno"> 195</span>&#160; <span class="keyword">template</span> &lt;<span class="keywordtype">int</span> E0, <span class="keywordtype">int</span> E1&gt;</div> <div class="line"><a name="l00196"></a><span class="lineno"> 196</span>&#160; GLM_FUNC_DECL tvec4(_swizzle&lt;2, T, P, tvec2&lt;T, P&gt;, E0, E1, -1, -2&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; z, T <span class="keyword">const</span> &amp; w)</div> <div class="line"><a name="l00197"></a><span class="lineno"> 197</span>&#160; {</div> <div class="line"><a name="l00198"></a><span class="lineno"> 198</span>&#160; *<span class="keyword">this</span> = tvec4&lt;T, P&gt;(v(), z, w);</div> <div class="line"><a name="l00199"></a><span class="lineno"> 199</span>&#160; }</div> <div class="line"><a name="l00200"></a><span class="lineno"> 200</span>&#160;</div> <div class="line"><a name="l00201"></a><span class="lineno"> 201</span>&#160; <span class="keyword">template</span> &lt;<span class="keywordtype">int</span> E0, <span class="keywordtype">int</span> E1, <span class="keywordtype">int</span> E2&gt;</div> <div class="line"><a name="l00202"></a><span class="lineno"> 202</span>&#160; GLM_FUNC_DECL tvec4(_swizzle&lt;3, T, P, tvec3&lt;T, P&gt;, E0, E1, E2, -1&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; w)</div> <div class="line"><a name="l00203"></a><span class="lineno"> 203</span>&#160; {</div> <div class="line"><a name="l00204"></a><span class="lineno"> 204</span>&#160; *<span class="keyword">this</span> = tvec4&lt;T, P&gt;(v(), w);</div> <div class="line"><a name="l00205"></a><span class="lineno"> 205</span>&#160; }</div> <div class="line"><a name="l00206"></a><span class="lineno"> 206</span>&#160;</div> <div class="line"><a name="l00207"></a><span class="lineno"> 207</span>&#160; <span class="keyword">template</span> &lt;<span class="keywordtype">int</span> E0, <span class="keywordtype">int</span> E1, <span class="keywordtype">int</span> E2&gt;</div> <div class="line"><a name="l00208"></a><span class="lineno"> 208</span>&#160; GLM_FUNC_DECL tvec4(T <span class="keyword">const</span> &amp; x, _swizzle&lt;3, T, P, tvec3&lt;T, P&gt;, E0, E1, E2, -1&gt; <span class="keyword">const</span> &amp; v)</div> <div class="line"><a name="l00209"></a><span class="lineno"> 209</span>&#160; {</div> <div class="line"><a name="l00210"></a><span class="lineno"> 210</span>&#160; *<span class="keyword">this</span> = tvec4&lt;T, P&gt;(x, v());</div> <div class="line"><a name="l00211"></a><span class="lineno"> 211</span>&#160; }</div> <div class="line"><a name="l00212"></a><span class="lineno"> 212</span>&#160;<span class="preprocessor"># endif//(GLM_HAS_ANONYMOUS_UNION &amp;&amp; defined(GLM_SWIZZLE))</span></div> <div class="line"><a name="l00213"></a><span class="lineno"> 213</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00215"></a><span class="lineno"> 215</span>&#160; <span class="comment">// Unary arithmetic operators</span></div> <div class="line"><a name="l00216"></a><span class="lineno"> 216</span>&#160;</div> <div class="line"><a name="l00217"></a><span class="lineno"> 217</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator= (tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00218"></a><span class="lineno"> 218</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U, precision Q&gt;</div> <div class="line"><a name="l00219"></a><span class="lineno"> 219</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator= (tvec4&lt;U, Q&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00220"></a><span class="lineno"> 220</span>&#160;</div> <div class="line"><a name="l00221"></a><span class="lineno"> 221</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00222"></a><span class="lineno"> 222</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator+=(U s);</div> <div class="line"><a name="l00223"></a><span class="lineno"> 223</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00224"></a><span class="lineno"> 224</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator+=(tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00225"></a><span class="lineno"> 225</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00226"></a><span class="lineno"> 226</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator-=(U s);</div> <div class="line"><a name="l00227"></a><span class="lineno"> 227</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00228"></a><span class="lineno"> 228</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator-=(tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00229"></a><span class="lineno"> 229</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00230"></a><span class="lineno"> 230</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator*=(U s);</div> <div class="line"><a name="l00231"></a><span class="lineno"> 231</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00232"></a><span class="lineno"> 232</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator*=(tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00233"></a><span class="lineno"> 233</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00234"></a><span class="lineno"> 234</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator/=(U s);</div> <div class="line"><a name="l00235"></a><span class="lineno"> 235</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00236"></a><span class="lineno"> 236</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator/=(tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00237"></a><span class="lineno"> 237</span>&#160;</div> <div class="line"><a name="l00239"></a><span class="lineno"> 239</span>&#160; <span class="comment">// Increment and decrement operators</span></div> <div class="line"><a name="l00240"></a><span class="lineno"> 240</span>&#160;</div> <div class="line"><a name="l00241"></a><span class="lineno"> 241</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator++();</div> <div class="line"><a name="l00242"></a><span class="lineno"> 242</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator--();</div> <div class="line"><a name="l00243"></a><span class="lineno"> 243</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator++(<span class="keywordtype">int</span>);</div> <div class="line"><a name="l00244"></a><span class="lineno"> 244</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator--(<span class="keywordtype">int</span>);</div> <div class="line"><a name="l00245"></a><span class="lineno"> 245</span>&#160;</div> <div class="line"><a name="l00247"></a><span class="lineno"> 247</span>&#160; <span class="comment">// Unary bit operators</span></div> <div class="line"><a name="l00248"></a><span class="lineno"> 248</span>&#160;</div> <div class="line"><a name="l00249"></a><span class="lineno"> 249</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00250"></a><span class="lineno"> 250</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator%= (U s);</div> <div class="line"><a name="l00251"></a><span class="lineno"> 251</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00252"></a><span class="lineno"> 252</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator%= (tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00253"></a><span class="lineno"> 253</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00254"></a><span class="lineno"> 254</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator&amp;= (U s);</div> <div class="line"><a name="l00255"></a><span class="lineno"> 255</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00256"></a><span class="lineno"> 256</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator&amp;= (tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00257"></a><span class="lineno"> 257</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00258"></a><span class="lineno"> 258</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator|= (U s);</div> <div class="line"><a name="l00259"></a><span class="lineno"> 259</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00260"></a><span class="lineno"> 260</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator|= (tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00261"></a><span class="lineno"> 261</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00262"></a><span class="lineno"> 262</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator^= (U s);</div> <div class="line"><a name="l00263"></a><span class="lineno"> 263</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00264"></a><span class="lineno"> 264</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator^= (tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00265"></a><span class="lineno"> 265</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00266"></a><span class="lineno"> 266</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator&lt;&lt;=(U s);</div> <div class="line"><a name="l00267"></a><span class="lineno"> 267</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00268"></a><span class="lineno"> 268</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator&lt;&lt;=(tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00269"></a><span class="lineno"> 269</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00270"></a><span class="lineno"> 270</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator&gt;&gt;=(U s);</div> <div class="line"><a name="l00271"></a><span class="lineno"> 271</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> U&gt;</div> <div class="line"><a name="l00272"></a><span class="lineno"> 272</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; &amp; operator&gt;&gt;=(tvec4&lt;U, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00273"></a><span class="lineno"> 273</span>&#160; };</div> <div class="line"><a name="l00274"></a><span class="lineno"> 274</span>&#160;</div> <div class="line"><a name="l00275"></a><span class="lineno"> 275</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00276"></a><span class="lineno"> 276</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator+(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00277"></a><span class="lineno"> 277</span>&#160;</div> <div class="line"><a name="l00278"></a><span class="lineno"> 278</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00279"></a><span class="lineno"> 279</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator+(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00280"></a><span class="lineno"> 280</span>&#160;</div> <div class="line"><a name="l00281"></a><span class="lineno"> 281</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00282"></a><span class="lineno"> 282</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator+(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00283"></a><span class="lineno"> 283</span>&#160;</div> <div class="line"><a name="l00284"></a><span class="lineno"> 284</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00285"></a><span class="lineno"> 285</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator-(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00286"></a><span class="lineno"> 286</span>&#160;</div> <div class="line"><a name="l00287"></a><span class="lineno"> 287</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00288"></a><span class="lineno"> 288</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator-(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00289"></a><span class="lineno"> 289</span>&#160;</div> <div class="line"><a name="l00290"></a><span class="lineno"> 290</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00291"></a><span class="lineno"> 291</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator- (tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00292"></a><span class="lineno"> 292</span>&#160;</div> <div class="line"><a name="l00293"></a><span class="lineno"> 293</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00294"></a><span class="lineno"> 294</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator*(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00295"></a><span class="lineno"> 295</span>&#160;</div> <div class="line"><a name="l00296"></a><span class="lineno"> 296</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00297"></a><span class="lineno"> 297</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator*(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00298"></a><span class="lineno"> 298</span>&#160;</div> <div class="line"><a name="l00299"></a><span class="lineno"> 299</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00300"></a><span class="lineno"> 300</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator*(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00301"></a><span class="lineno"> 301</span>&#160;</div> <div class="line"><a name="l00302"></a><span class="lineno"> 302</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00303"></a><span class="lineno"> 303</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator/(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00304"></a><span class="lineno"> 304</span>&#160;</div> <div class="line"><a name="l00305"></a><span class="lineno"> 305</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00306"></a><span class="lineno"> 306</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator/(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00307"></a><span class="lineno"> 307</span>&#160;</div> <div class="line"><a name="l00308"></a><span class="lineno"> 308</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00309"></a><span class="lineno"> 309</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator/(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00310"></a><span class="lineno"> 310</span>&#160;</div> <div class="line"><a name="l00311"></a><span class="lineno"> 311</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00312"></a><span class="lineno"> 312</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator-(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00313"></a><span class="lineno"> 313</span>&#160;</div> <div class="line"><a name="l00314"></a><span class="lineno"> 314</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00315"></a><span class="lineno"> 315</span>&#160; GLM_FUNC_DECL <span class="keywordtype">bool</span> operator==(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00316"></a><span class="lineno"> 316</span>&#160;</div> <div class="line"><a name="l00317"></a><span class="lineno"> 317</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00318"></a><span class="lineno"> 318</span>&#160; GLM_FUNC_DECL <span class="keywordtype">bool</span> operator!=(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00319"></a><span class="lineno"> 319</span>&#160;</div> <div class="line"><a name="l00320"></a><span class="lineno"> 320</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00321"></a><span class="lineno"> 321</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator%(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00322"></a><span class="lineno"> 322</span>&#160;</div> <div class="line"><a name="l00323"></a><span class="lineno"> 323</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00324"></a><span class="lineno"> 324</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator%(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00325"></a><span class="lineno"> 325</span>&#160;</div> <div class="line"><a name="l00326"></a><span class="lineno"> 326</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00327"></a><span class="lineno"> 327</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator%(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00328"></a><span class="lineno"> 328</span>&#160;</div> <div class="line"><a name="l00329"></a><span class="lineno"> 329</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00330"></a><span class="lineno"> 330</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&amp;(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00331"></a><span class="lineno"> 331</span>&#160;</div> <div class="line"><a name="l00332"></a><span class="lineno"> 332</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00333"></a><span class="lineno"> 333</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&amp;(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00334"></a><span class="lineno"> 334</span>&#160;</div> <div class="line"><a name="l00335"></a><span class="lineno"> 335</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00336"></a><span class="lineno"> 336</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&amp;(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00337"></a><span class="lineno"> 337</span>&#160;</div> <div class="line"><a name="l00338"></a><span class="lineno"> 338</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00339"></a><span class="lineno"> 339</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator|(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00340"></a><span class="lineno"> 340</span>&#160;</div> <div class="line"><a name="l00341"></a><span class="lineno"> 341</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00342"></a><span class="lineno"> 342</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator|(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00343"></a><span class="lineno"> 343</span>&#160;</div> <div class="line"><a name="l00344"></a><span class="lineno"> 344</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00345"></a><span class="lineno"> 345</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator|(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00346"></a><span class="lineno"> 346</span>&#160;</div> <div class="line"><a name="l00347"></a><span class="lineno"> 347</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00348"></a><span class="lineno"> 348</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator^(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00349"></a><span class="lineno"> 349</span>&#160;</div> <div class="line"><a name="l00350"></a><span class="lineno"> 350</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00351"></a><span class="lineno"> 351</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator^(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00352"></a><span class="lineno"> 352</span>&#160;</div> <div class="line"><a name="l00353"></a><span class="lineno"> 353</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00354"></a><span class="lineno"> 354</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator^(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00355"></a><span class="lineno"> 355</span>&#160;</div> <div class="line"><a name="l00356"></a><span class="lineno"> 356</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00357"></a><span class="lineno"> 357</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&lt;&lt;(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00358"></a><span class="lineno"> 358</span>&#160;</div> <div class="line"><a name="l00359"></a><span class="lineno"> 359</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00360"></a><span class="lineno"> 360</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&lt;&lt;(T const &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00361"></a><span class="lineno"> 361</span>&#160;</div> <div class="line"><a name="l00362"></a><span class="lineno"> 362</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00363"></a><span class="lineno"> 363</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&lt;&lt;(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00364"></a><span class="lineno"> 364</span>&#160;</div> <div class="line"><a name="l00365"></a><span class="lineno"> 365</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00366"></a><span class="lineno"> 366</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&gt;&gt;(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v, T <span class="keyword">const</span> &amp; s);</div> <div class="line"><a name="l00367"></a><span class="lineno"> 367</span>&#160;</div> <div class="line"><a name="l00368"></a><span class="lineno"> 368</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00369"></a><span class="lineno"> 369</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&gt;&gt;(T <span class="keyword">const</span> &amp; s, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00370"></a><span class="lineno"> 370</span>&#160;</div> <div class="line"><a name="l00371"></a><span class="lineno"> 371</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt;</div> <div class="line"><a name="l00372"></a><span class="lineno"> 372</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator&gt;&gt;(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v1, tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v2);</div> <div class="line"><a name="l00373"></a><span class="lineno"> 373</span>&#160;</div> <div class="line"><a name="l00374"></a><span class="lineno"> 374</span>&#160; <span class="keyword">template</span> &lt;<span class="keyword">typename</span> T, precision P&gt; </div> <div class="line"><a name="l00375"></a><span class="lineno"> 375</span>&#160; GLM_FUNC_DECL tvec4&lt;T, P&gt; operator~(tvec4&lt;T, P&gt; <span class="keyword">const</span> &amp; v);</div> <div class="line"><a name="l00376"></a><span class="lineno"> 376</span>&#160;</div> <div class="line"><a name="l00377"></a><span class="lineno"> 377</span>&#160;}<span class="comment">//namespace detail</span></div> <div class="line"><a name="l00378"></a><span class="lineno"> 378</span>&#160;}<span class="comment">//namespace glm</span></div> <div class="line"><a name="l00379"></a><span class="lineno"> 379</span>&#160;</div> <div class="line"><a name="l00380"></a><span class="lineno"> 380</span>&#160;<span class="preprocessor">#ifndef GLM_EXTERNAL_TEMPLATE</span></div> <div class="line"><a name="l00381"></a><span class="lineno"> 381</span>&#160;<span class="preprocessor"></span><span class="preprocessor">#include &quot;type_vec4.inl&quot;</span></div> <div class="line"><a name="l00382"></a><span class="lineno"> 382</span>&#160;<span class="preprocessor">#endif//GLM_EXTERNAL_TEMPLATE</span></div> <div class="line"><a name="l00383"></a><span class="lineno"> 383</span>&#160;<span class="preprocessor"></span></div> <div class="line"><a name="l00384"></a><span class="lineno"> 384</span>&#160;<span class="preprocessor">#endif//glm_core_type_gentype4</span></div> <div class="ttc" id="a00157_html_ga03b2831439defb8922832b540b91b8a7"><div class="ttname"><a href="a00157.html#ga03b2831439defb8922832b540b91b8a7">glm::length</a></div><div class="ttdeci">GLM_FUNC_DECL genType::value_type length(genType const &amp;x)</div><div class="ttdoc">Returns the length of x, i.e., sqrt(x * x). </div></div> </div><!-- fragment --></div><!-- contents --> <!-- start footer part --> <hr class="footer"/><address class="footer"><small> Generated by &#160;<a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/> </a> 1.8.5 </small></address> </body> </html>