path stringlengths 5 312 | repo_name stringlengths 5 116 | content stringlengths 2 1.04M |
|---|---|---|
tags/xts/index.html | hadley/rcpp-gallery | ---
layout: tag
title: xts
---
{% include tag_page.html %}
|
backup_23sep/administrator/components/com_aicontactsafe/views/about/tmpl/about.css | seobrand/twit2pay_dev | /**
* @version $Id$ 2.0.0 0
* @package Joomla
* @copyright Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license GNU/GPL, see LICENSE.php
*/
|
toolchain/arm_cm0_deprecated/share/doc/gcc-arm-none-eabi/html/gccint/Plugins-GC.html | jocelynmass/nrf51 | <html lang="en">
<head>
<title>Plugins GC - GNU Compiler Collection (GCC) Internals</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="GNU Compiler Collection (GCC) Internals">
<meta name="generator" content="makeinfo 4.8">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="Plugins.html#Plugins" title="Plugins">
<link rel="prev" href="Plugins-pass.html#Plugins-pass" title="Plugins pass">
<link rel="next" href="Plugins-description.html#Plugins-description" title="Plugins description">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988-2015 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Funding Free Software'', the Front-Cover
Texts being (a) (see below), and with the Back-Cover Texts being (b)
(see below). A copy of the license is included in the section entitled
``GNU Free Documentation License''.
(a) The FSF's Front-Cover Text is:
A GNU Manual
(b) The FSF's Back-Cover Text is:
You have freedom to copy and modify this GNU Manual, like GNU
software. Copies published by the Free Software Foundation raise
funds for GNU development.-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<p>
<a name="Plugins-GC"></a>
Next: <a rel="next" accesskey="n" href="Plugins-description.html#Plugins-description">Plugins description</a>,
Previous: <a rel="previous" accesskey="p" href="Plugins-pass.html#Plugins-pass">Plugins pass</a>,
Up: <a rel="up" accesskey="u" href="Plugins.html#Plugins">Plugins</a>
<hr>
</div>
<h3 class="section">23.4 Interacting with the GCC Garbage Collector</h3>
<p>Some plugins may want to be informed when GGC (the GCC Garbage
Collector) is running. They can register callbacks for the
<code>PLUGIN_GGC_START</code> and <code>PLUGIN_GGC_END</code> events (for which
the callback is called with a null <code>gcc_data</code>) to be notified of
the start or end of the GCC garbage collection.
<p>Some plugins may need to have GGC mark additional data. This can be
done by registering a callback (called with a null <code>gcc_data</code>)
for the <code>PLUGIN_GGC_MARKING</code> event. Such callbacks can call the
<code>ggc_set_mark</code> routine, preferably through the <code>ggc_mark</code> macro
(and conversely, these routines should usually not be used in plugins
outside of the <code>PLUGIN_GGC_MARKING</code> event). Plugins that wish to hold
weak references to gc data may also use this event to drop weak references when
the object is about to be collected. The <code>ggc_marked_p</code> function can be
used to tell if an object is marked, or is about to be collected. The
<code>gt_clear_cache</code> overloads which some types define may also be of use in
managing weak references.
<p>Some plugins may need to add extra GGC root tables, e.g. to handle their own
<code>GTY</code>-ed data. This can be done with the <code>PLUGIN_REGISTER_GGC_ROOTS</code>
pseudo-event with a null callback and the extra root table (of type <code>struct
ggc_root_tab*</code>) as <code>user_data</code>. Running the
<code>gengtype -p </code><var>source-dir</var> <var>file-list</var> <var>plugin*.c</var><code> ...</code>
utility generates these extra root tables.
<p>You should understand the details of memory management inside GCC
before using <code>PLUGIN_GGC_MARKING</code> or <code>PLUGIN_REGISTER_GGC_ROOTS</code>.
</body></html>
|
recipes/resources/geoext/tests/lib/GeoExt/widgets/form/SearchAction.html | fedesanchez/suite-3.1 | <!DOCTYPE html>
<html debug="true">
<head>
<script type="text/javascript" src="../../../../../../openlayers/lib/OpenLayers.js"></script>
<script type="text/javascript" src="../../../../../../ext/adapter/ext/ext-base.js"></script>
<script type="text/javascript" src="../../../../../../ext/ext-all-debug.js"></script>
<script type="text/javascript" src="../../../../../lib/GeoExt.js"></script>
<script type="text/javascript">
function test_constructor(t) {
t.plan(1);
/*
* Set up
*/
var form, action, protocol;
form = new Ext.form.BasicForm(Ext.get("form"));
protocol = new OpenLayers.Protocol();
action = new GeoExt.form.SearchAction(form, {protocol: protocol});
/*
* Test
*/
t.ok(action.options.protocol == protocol,
"SearchAction constructor properly sets protocol in options");
}
function test_run(t) {
t.plan(1);
/*
* Set up
*/
var field, form, action, protocol;
var field = new Ext.form.TextField({
name: "foo__eq",
value: "bar"
});
form = new Ext.form.FormPanel({
renderTo: "form",
items: [field]
});
protocol = new OpenLayers.Protocol({
read: function(options) {
t.ok(options.filter instanceof OpenLayers.Filter.Logical,
"run calls protocol.read with a logical filter");
}
});
action = new GeoExt.form.SearchAction(form.getForm(), {
protocol: protocol,
clientValidation: false
});
/*
* Test
*/
action.run();
/*
* Tear down
*/
form.destroy();
}
function test_abort(t) {
t.plan(2);
/*
* Set up
*/
var field, form, action, protocol, log = {};
var field = new Ext.form.TextField({
name: "foo__eq",
value: "bar"
});
form = new Ext.form.FormPanel({
renderTo: "form",
items: [field]
});
protocol = new OpenLayers.Protocol({
read: function(options) {
return "something";
},
abort: function() {
log.abort++;
}
});
action = new GeoExt.form.SearchAction(form.getForm(), {
protocol: protocol,
clientValidation: false,
abortPrevious: true
});
/*
* Test
*/
log.abort = 0;
action.run();
action.run();
t.ok(log.abort == 1, "protocol abort called once");
log.abort = 0;
action.options.abortPrevious = false;
action.run();
t.ok(log.abort == 0, "protocol abort not called");
/*
* Tear down
*/
form.destroy();
}
</script>
<body>
<div id="form"></div>
</body>
</html>
|
gfx/tests/reftest/468496-1-ref.html | Yukarumya/Yukarum-Redfoxes | <!DOCTYPE html>
<html><head>
<title>stretched image artifacts (test)</title>
<style>
div {
height: 5px;
background-image: url("data:image/gif;base64,R0lGODdhAQACAPABAAD/AP///ywAAAAAAQACAAACAkQKADs=");
background-repeat: repeat-x;
}
</style>
</head><body>
<div style="width: 540px">
</div><div style="width: 541px">
</div><div style="width: 542px">
</div><div style="width: 543px">
</div><div style="width: 544px">
</div><div style="width: 545px">
</div><div style="width: 546px">
</div><div style="width: 547px">
</div><div style="width: 548px">
</div><div style="width: 549px">
</div><div style="width: 550px">
</div><div style="width: 551px">
</div><div style="width: 552px">
</div><div style="width: 553px">
</div><div style="width: 554px">
</div><div style="width: 555px">
</div><div style="width: 556px">
</div><div style="width: 557px">
</div><div style="width: 558px">
</div><div style="width: 559px">
</div></body></html>
|
themes/example/lms/templates/courseware/course_about.html | louyihua/edx-platform | ## mako
<%page expression_filter="h"/>
<%namespace name='static' file='../static_content.html'/>
<%!
from itertools import izip_longest
from django.utils.translation import ugettext as _
from django.core.urlresolvers import reverse
from courseware.courses import get_course_about_section
from django.conf import settings
from edxmako.shortcuts import marketing_link
from openedx.core.lib.courses import course_image_url
from openedx.core.djangolib.markup import HTML, Text
from openedx.core.djangolib.js_utils import js_escaped_string
%>
<%inherit file="../main.html" />
<%block name="headextra">
<link rel="stylesheet" type="text/css" href="${static.url('css/slick.css')}"/>
## OG (Open Graph) title and description added below to give social media info to display
## (https://developers.facebook.com/docs/opengraph/howtos/maximizing-distribution-media-content#tags)
<meta property="og:title" content="${course.display_name_with_default}" />
<meta property="og:description" content="${get_course_about_section(request, course, 'short_description')}" />
</%block>
<%block name="js_extra">
## CourseTalk widget js script
% if show_coursetalk_widget:
<script src="//d3q6qq2zt8nhwv.cloudfront.net/s/js/widgets/coursetalk-read-reviews.js"></script>
% endif
<script src="${static.url('js/course-about.js')}"></script>
<script type="text/javascript">
(function() {
(function(require) {
require(['edx-ui-toolkit/js/utils/html-utils'], function(HtmlUtils) {
"use strict";
// Listen for click events on element tagged with the 'register' class
// Submit the hidden enrolllment form, and include information about which
// purchasing workflow is being executed (based on which button is clicked)
$(".register").click(function(event) {
var purchase_workflow = "single";
if (event.currentTarget.id.includes("bulk")) {
purchase_workflow = "bulk";
}
var event_target_input = $("<input>")
.attr("type", "hidden")
.attr("id", "purchase_workflow")
.attr("name", "purchase_workflow").val(purchase_workflow);
HtmlUtils.append("#class_enroll_form", HtmlUtils.HTML($(event_target_input)));
var enroll_form = $("#class_enroll_form");
enroll_form.submit();
event.preventDefault();
});
% if can_add_course_to_cart:
add_course_complete_handler = function(jqXHR, textStatus) {
if (jqXHR.status == 200) {
location.href = "${cart_link | n, js_escaped_string}";
}
if (jqXHR.status == 400) {
HtmlUtils.setHtml("#register_error", HtmlUtils.HTML(jqXHR.responseText ? jqXHR.responseText : "${_("An error occurred. Please try again later.")| n, js_escaped_string}"));
$("#register_error").css("display", "block");
}
else if (jqXHR.status == 403) {
location.href = "${reg_then_add_to_cart_link| n, js_escaped_string}";
}
};
$("#add_to_cart_post").click(function(event){
$.ajax({
url: "${reverse('add_course_to_cart', args=[course.id.to_deprecated_string()]) | n, js_escaped_string}",
type: "POST",
/* Rant: HAD TO USE COMPLETE B/C PROMISE.DONE FOR SOME REASON DOES NOT WORK ON THIS PAGE. */
complete: add_course_complete_handler
})
event.preventDefault();
});
% endif
## making the conditional around this entire JS block for sanity
%if settings.FEATURES.get('RESTRICT_ENROLL_BY_REG_METHOD') and course.enrollment_domain:
<%
perms_error = Text(_('The currently logged-in user account does not have permission to enroll in this course. '
'You may need to {start_logout_tag}log out{end_tag} then try the enroll button again. '
'Please visit the {start_help_tag}help page{end_tag} for a possible solution.')).format(
start_help_tag=HTML("<a href='/faq'>"), end_tag=HTML('</a>'),
start_logout_tag=HTML("<a href='/logout'>")
)
%>
$('#class_enroll_form').on('ajax:complete', function(event, xhr) {
if(xhr.status == 200) {
location.href = "${reverse('dashboard')| n, js_escaped_string}";
} else if (xhr.status == 403) {
location.href = "${reverse('course-specific-register', args=[course.id.to_deprecated_string()])| n, js_escaped_string}?course_id=${course.id | n, js_escaped_string}&enrollment_action=enroll";
} else if (xhr.status == 400) { //This means the user did not have permission
HtmlUtils.setHtml("#register_error", HtmlUtils.HTML("${perms_error| n, js_escaped_string}"));
$('#register_error').css("display", "block");
} else {
HtmlUtils.setHtml("#register_error", HtmlUtils.HTML(xhr.responseText ? xhr.responseText : "${_("An error occurred. Please try again later.")| n, js_escaped_string}"));
$('#register_error').css("display", "block");
}
});
%else:
$('#class_enroll_form').on('ajax:complete', function(event, xhr) {
if(xhr.status == 200) {
if (xhr.responseText == "") {
location.href = "${reverse('dashboard')| n, js_escaped_string}";
}
else {
location.href = xhr.responseText;
}
} else if (xhr.status == 403) {
// If the form submission receives a Forbidden response, the user is not currently authenticated
// Include the purchase workflow context along with the regular user registration location information
var purchase_workflow = "&purchase_workflow=" + $("input#purchase_workflow").val();
location.href = "${reverse('register_user')| n, js_escaped_string}?course_id=${course.id | n, js_escaped_string}&enrollment_action=enroll" + purchase_workflow;
} else {
HtmlUtils.setHtml("#register_error", HtmlUtils.HTML(xhr.responseText ? xhr.responseText : "${_("An error occurred. Please try again later.")| n, js_escaped_string}"));
$('#register_error').css("display", "block");
}
});
%endif
});
}).call(this, require || RequireJS.require);
</script>
<%include file="../about_site.html" />
<script src="${static.url('js/course_info.js')}"></script>
<script src="${static.url('js/slick.min.js')}"></script>
<script src="${static.url('js/sticky.js')}"></script>
</%block>
<%block name="pagetitle">${course.display_name_with_default}</%block>
<section class="course-info" xmlns="http://www.w3.org/1999/html">
<header class="hero hero-video grid-manual">
<div class="hero-image" style="background: url('${static.url(course_details.banner_image_asset_path)}') no-repeat center right;">
<div class="tint-dark no-background-mobile"></div>
</div>
<div class="tint-dark no-background-mobile">
<div class="grid-container grid-manual">
<div class="row">
<div class="col col-12 sm-col-12 md-col-4 lg-col-4 xl-col-4 video">
<div class="video-data">
<a href="#video-modal" class="media" rel="leanModal">
<img src="${static.url(course_details.video_thumbnail_image_asset_path)}" alt="${course_details.video_thumbnail_image_name}">
<span class="play-btn"></span>
</a>
</div>
</div>
<div class="col col-12 sm-col-12 md-col-8 lg-col-8 xl-col-8 description">
<div class="data">
<h1>${course_details.title or course.display_name}</h1>
<p>${course_details.subtitle}</p>
</div>
</div>
</div>
</div>
</div>
</header>
<div id="sticky" class="course-detail light-bg">
<div class="grid-manual grid-container">
<div class="inner-container">
<div class="row">
<div class="col col-12 sm-col-12 md-col-6 sticky-course-title hidden">
<span>${course_details.title or course.display_name}</span>
</div>
<div class="col col-12 sm-col-12 md-col-3 course-run">
Start Date:
<span>${course_details.start_date.strftime('%b %-d, %Y')}</span>
</div>
<div class="col col-12 sm-col-12 md-col-3 course-run">
Duration:
<span>${course_details.duration}</span>
</div>
<div class="col col-12 sm-col-12 md-col-2">
Price:
<span>${course_price}</span>
</div>
<%
btn_text = 'Enroll Now'
btn_href = '#'
btn_class = ''
btn_class_bulk = ''
btn_id = ''
%>
% if user.is_authenticated() and registered:
<%
btn_text = "You are enrolled in this course"
btn_class = "disabled"
%>
% elif in_cart:
<%
btn_text = "This course is in your cart"
btn_href = cart_link
%>
% elif is_course_full:
<%
btn_text = "Course is full"
btn_class = "disabled"
btn_class_bulk = btn_class
%>
% elif invitation_only and not can_enroll:
<%
btn_text = "Enrollment in this course is by invitation only"
btn_class = "disabled"
btn_class_bulk = btn_class
%>
% elif not is_shib_course and not can_enroll:
<%
btn_text = "Enrollment is Closed"
btn_class = "disabled"
btn_class_bulk = btn_class
%>
% elif can_add_course_to_cart:
<%
btn_class = "add-to-cart"
btn_text = "Enroll Now"
%>
% if user.is_authenticated():
% if user.is_active:
<%
btn_href = "#"
btn_id = "add_to_cart_post"
%>
% else:
<%
btn_text = "Please Activate Your Account"
btn_class = "disabled"
%>
% endif
% else:
<%
btn_href = reg_then_add_to_cart_link
btn_id = "reg_then_add_to_cart"
%>
% endif
% if ecommerce_checkout and ecommerce_checkout_link and user.is_authenticated():
<%
btn_href = ecommerce_checkout_link
%>
% endif
% else:
% if ecommerce_checkout:
% if ecommerce_checkout_link:
<% btn_href = ecommerce_checkout_link %>
% else:
<% btn_href="#" %>
% endif
% if professional_mode:
% if user.is_authenticated():
<% btn_class = "add-to-cart" %>
% else:
<%
btn_class = "register"
btn_class_bulk = btn_class
%>
% endif
% endif
% endif
% endif
<div class="col col-12 sm-col-12 md-col-4">
<a href="${btn_href}" id="${btn_id}" class="btn-block btn-success btn-large btn-enroll ${btn_class}">
${_(btn_text)}
</a>
</div>
</div>
</div>
</div>
</div>
<div class="grid-manual grid-container">
<div class="inner-container">
<div class="description-container">
<div class="row">
<div class="col col-12 sm-col-12 md-col-8">
<h2> Course Description</h2>
<div class="course-description">
<p>${course_details.description}</p>
</div>
<h2> What you'll learn</h2>
<div class="course-learning">
<ul class="list-bulleted">
% for item in course_details.learning_info:
<li>${item}</li>
%endfor
</ul>
</div>
</div>
% if can_enroll and not is_course_full:
<div class="col col-12 sm-col-12 md-col-4 pull-right extras">
<div class="course-features group-purchase">
<h2>${_("Want to purchase this course for a group?")} </h2>
<p>${_("You can purchase enrollment codes for this course to distribute to your team")}</p>
% if ecommerce_bulk_checkout_link:
<%
url = "mailto:harvardxplus@harvard.edu?Subject={course_id}%20{run}%20Bulk%20Discount".format(course_id=course_details.course_id, run=course_details.run)
link_start = HTML("<a href='{url}'>").format(url=Text(url))
%>
<a href="${ecommerce_bulk_checkout_link}" id="ecommerce_bulk_checkout_button" class="btn-block btn-success btn-large btn-enroll ${btn_class_bulk}">${_("Purchase for a Group")}</a>
<p>
${Text(_("Bulk discounts may apply for groups larger than 10. Contact {link_start}harvardxplus@harvard.edu{link_end} for more information.")).format(
link_start=HTML(link_start),
link_end=HTML('</a>')
)}
</p>
% else:
<%
url = "mailto:harvardxplus@harvard.edu?Subject={course_id}%20{run}%20Group%20Purchase".format(
course_id=course_details.course_id, run=course_details.run)
%>
<a href="${url}" class="btn-block btn-success btn-large btn-enroll">${_("Email Us")}</a>
% endif
</div>
</div>
% endif
</div>
<div class="col col-12"><h2>Instructors</h2></div>
<% index = 0 %>
% for instructors in izip_longest(*([iter(course_details.instructor_info['instructors'])] * 2)):
<div class="row instructors">
% for instructor in [i for i in instructors if i is not None]:
<% index += 1 %>
<div class="col col-12 sm-col-12 md-col-6 lg-col-6 xl-col-6">
<div class="thumbnail">
<a href="#instructor-details-${index}" class="instructor-image"><img src="${static.url(instructor['image'])}" alt="${instructor['name']}"></a>
</div>
<p>${instructor['name']} <span>${instructor['title']}</span></p>
<div class="modal modal-custom" id="instructor-details-${index}">
<div class="btn-close modal_close"><i class="fa fa-close"></i></div>
<div class="modal-body">
<div class="modal-header">
<div class="instructor-data">
<div class="thumbnail">
<img src="${instructor['image']}" alt="${instructor['name']}">
</div>
<h3>
<span class="instructor-name">${instructor['name']}</span>
<span>${instructor['title']}
% if instructor['organization']:
at ${instructor['organization']}
% endif
</span>
</h3>
</div>
</div>
<div class="instructor-bio">${instructor['bio']}</div>
</div>
</div>
</div>
% endfor
</div>
% endfor
</div>
</div>
</div>
<div class="light-bg course-about">
<div class="grid-manual grid-container">
<div class="inner-container">
<div class="row">
<div class="col col-12">
${HTML(course_details.overview)}
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about-section">
<div class="about-container"></div>
<div class="grid-manual">
<div class="row">
<div class="col col-12 sm-col-12 md-col-4 text-center btn-enroll-mobile">
<a href="${btn_href}" id="${btn_id}" class="btn-block btn-success btn-large btn-enroll ${btn_class}">
${_(btn_text)}
</a>
</div>
</div>
</div>
</section>
## Need to put this hidden form on the page so that the registration button works.
## Since it's no harm to display a hidden form, we display it with the most permissive conditional
## which is when the student is not registered.
%if active_reg_button or is_shib_course:
<div style="display: none;">
<form id="class_enroll_form" method="post" data-remote="true" action="${reverse('change_enrollment')}">
<fieldset class="enroll_fieldset">
<legend class="sr">${_("Enroll")}</legend>
<input name="course_id" type="hidden" value="${course.id}">
<input name="enrollment_action" type="hidden" value="enroll">
</fieldset>
<div class="submit">
<input name="submit" type="submit" value="${_('enroll')}">
</div>
</form>
</div>
%endif
% if course_details.intro_video and course_details.video_thumbnail_image_name:
<section id="video-modal" class="modal modal-custom custom-video-modal">
<div class="inner-wrapper">
<iframe title="YouTube Video" width="640" height="360"
src="//www.youtube.com/embed/${course_details.intro_video}?showinfo=0"
frameborder="0" allowfullscreen></iframe>
</div>
</section>
% endif
|
lms/templates/courseware/courseware-error.html | XiaodunServerGroup/xiaodun-platform | <%! from django.utils.translation import ugettext as _ %>
<%inherit file="/main.html" />
<%namespace name='static' file='../static_content.html'/>
<%block name="bodyclass">courseware</%block>
<%block name="pagetitle">${_("Courseware")}</%block>
<%block name="headextra">
<%static:css group='style-course-vendor'/>
<%static:css group='style-course'/>
</%block>
<%include file="/courseware/course_navigation.html" args="active_page='courseware'" />
<section class="container">
<section class="outside-app">
<h1>${_('There has been an error on the {span_start}{platform_name}{span_end} servers').format(platform_name=settings.PLATFORM_NAME, span_start='<span class="edx">', span_end='</span>')}</h1>
<p>${_("We're sorry, this module is temporarily unavailable. Our staff is working to fix it as soon as possible. Please email us at '<a href=\"mailto:{tech_support_email}\">{tech_support_email}</a>' to report any problems or downtime.").format(tech_support_email=settings.TECH_SUPPORT_EMAIL)}</p>
</section>
</section>
|
lib/javadocs/index-files/index-7.html | klawx3/leafhouse | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_26) on Tue Mar 20 15:29:47 PDT 2012 -->
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<TITLE>
G-Index (JavaMail API documentation)
</TITLE>
<META NAME="date" CONTENT="2012-03-20">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="G-Index (JavaMail API documentation)";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index-6.html"><B>PREV LETTER</B></A>
<A HREF="index-8.html"><B>NEXT LETTER</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?index-filesindex-7.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-7.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <HR>
<A NAME="_G_"><!-- --></A><H2>
<B>G</B></H2>
<DL>
<DT><A HREF="../javax/mail/search/ComparisonTerm.html#GE"><B>GE</B></A> -
Static variable in class javax.mail.search.<A HREF="../javax/mail/search/ComparisonTerm.html" title="class in javax.mail.search">ComparisonTerm</A>
<DD>
<DT><A HREF="../javax/mail/internet/ParameterList.html#get(java.lang.String)"><B>get(String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ParameterList.html" title="class in javax.mail.internet">ParameterList</A>
<DD>Returns the value of the specified parameter.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getACL()"><B>getACL()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the access control list entries for this folder.
<DT><A HREF="../com/sun/mail/smtp/SMTPAddressFailedException.html#getAddress()"><B>getAddress()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPAddressFailedException.html" title="class in com.sun.mail.smtp">SMTPAddressFailedException</A>
<DD>Return the address that failed.
<DT><A HREF="../com/sun/mail/smtp/SMTPAddressSucceededException.html#getAddress()"><B>getAddress()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPAddressSucceededException.html" title="class in com.sun.mail.smtp">SMTPAddressSucceededException</A>
<DD>Return the address that succeeded.
<DT><A HREF="../com/sun/mail/smtp/SMTPSenderFailedException.html#getAddress()"><B>getAddress()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPSenderFailedException.html" title="class in com.sun.mail.smtp">SMTPSenderFailedException</A>
<DD>Return the address that failed.
<DT><A HREF="../javax/mail/internet/InternetAddress.html#getAddress()"><B>getAddress()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetAddress.html" title="class in javax.mail.internet">InternetAddress</A>
<DD>Get the email address.
<DT><A HREF="../javax/mail/search/AddressTerm.html#getAddress()"><B>getAddress()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/AddressTerm.html" title="class in javax.mail.search">AddressTerm</A>
<DD>Return the address to match with.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getAllHeaderLines()"><B>getAllHeaderLines()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get all header-lines.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getAllHeaderLines()"><B>getAllHeaderLines()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Get all header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getAllHeaderLines()"><B>getAllHeaderLines()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Return all the header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getAllHeaderLines()"><B>getAllHeaderLines()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Get all header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getAllHeaderLines()"><B>getAllHeaderLines()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get all header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimePart.html#getAllHeaderLines()"><B>getAllHeaderLines()</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get all header lines as an Enumeration of Strings.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getAllHeaders()"><B>getAllHeaders()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get all headers.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getAllHeaders()"><B>getAllHeaders()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Return all the headers from this Message as an enumeration
of Header objects.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getAllHeaders()"><B>getAllHeaders()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Return all the headers as an Enumeration of
<A HREF="../javax/mail/Header.html" title="class in javax.mail"><CODE>Header</CODE></A> objects.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getAllHeaders()"><B>getAllHeaders()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return all the headers from this Message as an Enumeration of
Header objects.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getAllHeaders()"><B>getAllHeaders()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return all the headers from this Message as an enumeration
of Header objects.
<DT><A HREF="../javax/mail/Part.html#getAllHeaders()"><B>getAllHeaders()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return all the headers from this part as an Enumeration of
Header objects.
<DT><A HREF="../com/sun/mail/smtp/SMTPMessage.html#getAllow8bitMIME()"><B>getAllow8bitMIME()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPMessage.html" title="class in com.sun.mail.smtp">SMTPMessage</A>
<DD>Is use of the 8BITMIME extension is allowed?
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getAllRecipients()"><B>getAllRecipients()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get all the recipient addresses for the message.
<DT><A HREF="../javax/mail/Message.html#getAllRecipients()"><B>getAllRecipients()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get all the recipient addresses for the message.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getAttachmentFilters()"><B>getAttachmentFilters()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the attachment filters.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getAttachmentFormatters()"><B>getAttachmentFormatters()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the attachment formatters.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getAttachmentNames()"><B>getAttachmentNames()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the attachment name formatters.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getAttributes()"><B>getAttributes()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the attributes that the IMAP server returns with the
LIST response.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getAuthenticator()"><B>getAuthenticator()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the <tt>Authenticator</tt> used to login to the email server.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getAuthorizationId()"><B>getAuthorizationId()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Gets the authorization ID to be used for authentication.
<DT><A HREF="../javax/mail/internet/ContentType.html#getBaseType()"><B>getBaseType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentType.html" title="class in javax.mail.internet">ContentType</A>
<DD>Return the MIME type string, without the parameters.
<DT><A HREF="../javax/mail/internet/MimeMultipart.html#getBodyPart(int)"><B>getBodyPart(int)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMultipart.html" title="class in javax.mail.internet">MimeMultipart</A>
<DD>Get the specified BodyPart.
<DT><A HREF="../javax/mail/internet/MimeMultipart.html#getBodyPart(java.lang.String)"><B>getBodyPart(String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMultipart.html" title="class in javax.mail.internet">MimeMultipart</A>
<DD>Get the MimeBodyPart referred to by the given ContentID (CID).
<DT><A HREF="../javax/mail/Multipart.html#getBodyPart(int)"><B>getBodyPart(int)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Multipart.html" title="class in javax.mail">Multipart</A>
<DD>Get the specified Part.
<DT><A HREF="../javax/mail/MultipartDataSource.html#getBodyPart(int)"><B>getBodyPart(int)</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/MultipartDataSource.html" title="interface in javax.mail">MultipartDataSource</A>
<DD>Get the specified Part.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getCapacity()"><B>getCapacity()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the number of log records the internal buffer can hold.
<DT><A HREF="../javax/mail/MessagingException.html#getCause()"><B>getCause()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/MessagingException.html" title="class in javax.mail">MessagingException</A>
<DD>Overrides the <code>getCause</code> method of <code>Throwable</code>
to return the next exception in the chain of nested exceptions.
<DT><A HREF="../javax/mail/Provider.html#getClassName()"><B>getClassName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Provider.html" title="class in javax.mail">Provider</A>
<DD>Returns name of the class that implements the protocol
<DT><A HREF="../com/sun/mail/smtp/SMTPAddressFailedException.html#getCommand()"><B>getCommand()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPAddressFailedException.html" title="class in com.sun.mail.smtp">SMTPAddressFailedException</A>
<DD>Return the command that failed.
<DT><A HREF="../com/sun/mail/smtp/SMTPAddressSucceededException.html#getCommand()"><B>getCommand()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPAddressSucceededException.html" title="class in com.sun.mail.smtp">SMTPAddressSucceededException</A>
<DD>Return the command that succeeded.
<DT><A HREF="../com/sun/mail/smtp/SMTPSenderFailedException.html#getCommand()"><B>getCommand()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPSenderFailedException.html" title="class in com.sun.mail.smtp">SMTPSenderFailedException</A>
<DD>Return the command that failed.
<DT><A HREF="../com/sun/mail/smtp/SMTPSendFailedException.html#getCommand()"><B>getCommand()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPSendFailedException.html" title="class in com.sun.mail.smtp">SMTPSendFailedException</A>
<DD>Return the command that failed.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getComparator()"><B>getComparator()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the comparator used to order all <tt>LogRecord</tt> objects prior
to formatting.
<DT><A HREF="../javax/mail/search/DateTerm.html#getComparison()"><B>getComparison()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/DateTerm.html" title="class in javax.mail.search">DateTerm</A>
<DD>Return the type of comparison.
<DT><A HREF="../javax/mail/search/IntegerComparisonTerm.html#getComparison()"><B>getComparison()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/IntegerComparisonTerm.html" title="class in javax.mail.search">IntegerComparisonTerm</A>
<DD>Return the type of comparison.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getContent()"><B>getContent()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return the content as a Java object.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getContent()"><B>getContent()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return the content as a Java object.
<DT><A HREF="../javax/mail/Part.html#getContent()"><B>getContent()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return the content as a Java object.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getContentID()"><B>getContentID()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the Content-ID.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getContentID()"><B>getContentID()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Returns the value of the "Content-ID" header field.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getContentID()"><B>getContentID()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the "Content-ID" header field.
<DT><A HREF="../javax/mail/internet/MimePart.html#getContentID()"><B>getContentID()</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get the Content-ID of this part.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getContentLanguage()"><B>getContentLanguage()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the content language.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getContentLanguage()"><B>getContentLanguage()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Get the languages specified in the Content-Language header
of this MimePart.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getContentLanguage()"><B>getContentLanguage()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get the languages specified in the "Content-Language" header
field of this message.
<DT><A HREF="../javax/mail/internet/MimePart.html#getContentLanguage()"><B>getContentLanguage()</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get the language tags specified in the Content-Language header
of this MimePart.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getContentMD5()"><B>getContentMD5()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the Content-MD5.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getContentMD5()"><B>getContentMD5()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return the value of the "Content-MD5" header field.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getContentMD5()"><B>getContentMD5()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return the value of the "Content-MD5" header field.
<DT><A HREF="../javax/mail/internet/MimePart.html#getContentMD5()"><B>getContentMD5()</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get the Content-MD5 digest of this part.
<DT><A HREF="../com/sun/mail/dsn/MessageHeaders.html#getContentStream()"><B>getContentStream()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MessageHeaders.html" title="class in com.sun.mail.dsn">MessageHeaders</A>
<DD>
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getContentStream()"><B>getContentStream()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get all the bytes for this message.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getContentStream()"><B>getContentStream()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Produce the raw bytes of the content.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getContentStream()"><B>getContentStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Produce the raw bytes of the content.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getContentStream()"><B>getContentStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Produce the raw bytes of the content.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getContentType()"><B>getContentType()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the Content-Type.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getContentType()"><B>getContentType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Returns the value of the RFC 822 "Content-Type" header field.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getContentType()"><B>getContentType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the RFC 822 "Content-Type" header field.
<DT><A HREF="../javax/mail/internet/MimePartDataSource.html#getContentType()"><B>getContentType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimePartDataSource.html" title="class in javax.mail.internet">MimePartDataSource</A>
<DD>Returns the content-type of this DataSource.
<DT><A HREF="../javax/mail/Multipart.html#getContentType()"><B>getContentType()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Multipart.html" title="class in javax.mail">Multipart</A>
<DD>Return the content-type of this Multipart.
<DT><A HREF="../javax/mail/Part.html#getContentType()"><B>getContentType()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Returns the Content-Type of the content of this part.
<DT><A HREF="../javax/mail/util/ByteArrayDataSource.html#getContentType()"><B>getContentType()</B></A> -
Method in class javax.mail.util.<A HREF="../javax/mail/util/ByteArrayDataSource.html" title="class in javax.mail.util">ByteArrayDataSource</A>
<DD>Get the MIME content type of the data.
<DT><A HREF="../javax/mail/internet/MimeMultipart.html#getCount()"><B>getCount()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMultipart.html" title="class in javax.mail.internet">MimeMultipart</A>
<DD>Return the number of enclosed BodyPart objects.
<DT><A HREF="../javax/mail/Multipart.html#getCount()"><B>getCount()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Multipart.html" title="class in javax.mail">Multipart</A>
<DD>Return the number of enclosed BodyPart objects.
<DT><A HREF="../javax/mail/MultipartDataSource.html#getCount()"><B>getCount()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/MultipartDataSource.html" title="interface in javax.mail">MultipartDataSource</A>
<DD>Return the number of enclosed BodyPart objects.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getDataHandler()"><B>getDataHandler()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the DataHandler object for this message.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getDataHandler()"><B>getDataHandler()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return a DataHandler for this body part's content.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getDataHandler()"><B>getDataHandler()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return a DataHandler for this Message's content.
<DT><A HREF="../javax/mail/Part.html#getDataHandler()"><B>getDataHandler()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return a DataHandler for the content within this part.
<DT><A HREF="../javax/mail/search/DateTerm.html#getDate()"><B>getDate()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/DateTerm.html" title="class in javax.mail.search">DateTerm</A>
<DD>Return the Date to compare with.
<DT><A HREF="../javax/mail/Session.html#getDebug()"><B>getDebug()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get the debug setting for this Session.
<DT><A HREF="../javax/mail/Session.html#getDebugOut()"><B>getDebugOut()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Returns the stream to be used for debugging output.
<DT><A HREF="../com/sun/mail/util/MailSSLSocketFactory.html#getDefaultCipherSuites()"><B>getDefaultCipherSuites()</B></A> -
Method in class com.sun.mail.util.<A HREF="../com/sun/mail/util/MailSSLSocketFactory.html" title="class in com.sun.mail.util">MailSSLSocketFactory</A>
<DD>
<DT><A HREF="../com/sun/mail/imap/IMAPStore.html#getDefaultFolder()"><B>getDefaultFolder()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPStore.html" title="class in com.sun.mail.imap">IMAPStore</A>
<DD>Get the default folder, representing the root of this user's
namespace.
<DT><A HREF="../com/sun/mail/pop3/POP3Store.html#getDefaultFolder()"><B>getDefaultFolder()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Store.html" title="class in com.sun.mail.pop3">POP3Store</A>
<DD>
<DT><A HREF="../javax/mail/Store.html#getDefaultFolder()"><B>getDefaultFolder()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Store.html" title="class in javax.mail">Store</A>
<DD>Returns a Folder object that represents the 'root' of
the default namespace presented to the user by the Store.
<DT><A HREF="../javax/mail/Session.html#getDefaultInstance(java.util.Properties, javax.mail.Authenticator)"><B>getDefaultInstance(Properties, Authenticator)</B></A> -
Static method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get the default Session object.
<DT><A HREF="../javax/mail/Session.html#getDefaultInstance(java.util.Properties)"><B>getDefaultInstance(Properties)</B></A> -
Static method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get the default Session object.
<DT><A HREF="../javax/mail/internet/MimeUtility.html#getDefaultJavaCharset()"><B>getDefaultJavaCharset()</B></A> -
Static method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeUtility.html" title="class in javax.mail.internet">MimeUtility</A>
<DD>Get the default charset corresponding to the system's current
default locale.
<DT><A HREF="../javax/mail/Authenticator.html#getDefaultUserName()"><B>getDefaultUserName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Authenticator.html" title="class in javax.mail">Authenticator</A>
<DD>
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getDeletedMessageCount()"><B>getDeletedMessageCount()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the deleted message count.
<DT><A HREF="../javax/mail/Folder.html#getDeletedMessageCount()"><B>getDeletedMessageCount()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get the number of deleted messages in this Folder.
<DT><A HREF="../com/sun/mail/dsn/MultipartReport.html#getDeliveryStatus()"><B>getDeliveryStatus()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MultipartReport.html" title="class in com.sun.mail.dsn">MultipartReport</A>
<DD><B>Deprecated.</B> <I>use getReport instead</I>
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getDescription()"><B>getDescription()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the decoded Content-Description.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getDescription()"><B>getDescription()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Returns the "Content-Description" header field of this body part.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getDescription()"><B>getDescription()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the "Content-Description" header field of this Message.
<DT><A HREF="../javax/mail/Part.html#getDescription()"><B>getDescription()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return a description String for this part.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getDisposition()"><B>getDisposition()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the Content-Disposition.
<DT><A HREF="../javax/mail/internet/ContentDisposition.html#getDisposition()"><B>getDisposition()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentDisposition.html" title="class in javax.mail.internet">ContentDisposition</A>
<DD>Return the disposition value.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getDisposition()"><B>getDisposition()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Returns the value of the "Content-Disposition" header field.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getDisposition()"><B>getDisposition()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the "Content-Disposition" header field.
<DT><A HREF="../javax/mail/Part.html#getDisposition()"><B>getDisposition()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return the disposition of this part.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getEncoding()"><B>getEncoding()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the Content-Transfer-Encoding.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getEncoding()"><B>getEncoding()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Returns the content transfer encoding from the
"Content-Transfer-Encoding" header
field.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getEncoding()"><B>getEncoding()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the content transfer encoding from the
"Content-Transfer-Encoding" header
field.
<DT><A HREF="../javax/mail/internet/MimePart.html#getEncoding()"><B>getEncoding()</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get the transfer encoding of this part.
<DT><A HREF="../javax/mail/internet/MimeUtility.html#getEncoding(javax.activation.DataSource)"><B>getEncoding(DataSource)</B></A> -
Static method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeUtility.html" title="class in javax.mail.internet">MimeUtility</A>
<DD>Get the content-transfer-encoding that should be applied
to the input stream of this datasource, to make it mailsafe.
<DT><A HREF="../javax/mail/internet/MimeUtility.html#getEncoding(javax.activation.DataHandler)"><B>getEncoding(DataHandler)</B></A> -
Static method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeUtility.html" title="class in javax.mail.internet">MimeUtility</A>
<DD>Same as <code>getEncoding(DataSource)</code> except that instead
of reading the data from an <code>InputStream</code> it uses the
<code>writeTo</code> method to examine the data.
<DT><A HREF="../javax/mail/internet/PreencodedMimeBodyPart.html#getEncoding()"><B>getEncoding()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/PreencodedMimeBodyPart.html" title="class in javax.mail.internet">PreencodedMimeBodyPart</A>
<DD>Returns the content transfer encoding specified when
this object was created.
<DT><A HREF="../com/sun/mail/smtp/SMTPMessage.html#getEnvelopeFrom()"><B>getEnvelopeFrom()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPMessage.html" title="class in com.sun.mail.smtp">SMTPMessage</A>
<DD>Return the envelope From address.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getExtensionParameter(java.lang.String)"><B>getExtensionParameter(String)</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Return the parameter the server provided for the specified
service extension, or null if the extension isn't supported.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getFetchBlockSize()"><B>getFetchBlockSize()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>
<DT><A HREF="../javax/mail/URLName.html#getFile()"><B>getFile()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Returns the file name of this URLName.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getFileName()"><B>getFileName()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the "filename" Disposition parameter.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getFileName()"><B>getFileName()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Get the filename associated with this body part.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getFileName()"><B>getFileName()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get the filename associated with this Message.
<DT><A HREF="../javax/mail/Part.html#getFileName()"><B>getFileName()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Get the filename associated with this part, if possible.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getFlags()"><B>getFlags()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the Flags for this message.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getFlags()"><B>getFlags()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return a <code>Flags</code> object containing the flags for
this message.
<DT><A HREF="../javax/mail/Message.html#getFlags()"><B>getFlags()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Returns a <code>Flags</code> object containing the flags for
this message.
<DT><A HREF="../javax/mail/search/FlagTerm.html#getFlags()"><B>getFlags()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/FlagTerm.html" title="class in javax.mail.search">FlagTerm</A>
<DD>Return the Flags to test.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getFolder(java.lang.String)"><B>getFolder(String)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the named subfolder.
<DT><A HREF="../com/sun/mail/imap/IMAPStore.html#getFolder(java.lang.String)"><B>getFolder(String)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPStore.html" title="class in com.sun.mail.imap">IMAPStore</A>
<DD>Get named folder.
<DT><A HREF="../com/sun/mail/imap/IMAPStore.html#getFolder(javax.mail.URLName)"><B>getFolder(URLName)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPStore.html" title="class in com.sun.mail.imap">IMAPStore</A>
<DD>Get named folder.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getFolder(java.lang.String)"><B>getFolder(String)</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Always throws <code>MessagingException</code> because no POP3 folders
can contain subfolders.
<DT><A HREF="../com/sun/mail/pop3/POP3Store.html#getFolder(java.lang.String)"><B>getFolder(String)</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Store.html" title="class in com.sun.mail.pop3">POP3Store</A>
<DD>Only the name "INBOX" is supported.
<DT><A HREF="../com/sun/mail/pop3/POP3Store.html#getFolder(javax.mail.URLName)"><B>getFolder(URLName)</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Store.html" title="class in com.sun.mail.pop3">POP3Store</A>
<DD>
<DT><A HREF="../javax/mail/event/FolderEvent.html#getFolder()"><B>getFolder()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/FolderEvent.html" title="class in javax.mail.event">FolderEvent</A>
<DD>Return the affected folder.
<DT><A HREF="../javax/mail/Folder.html#getFolder(java.lang.String)"><B>getFolder(String)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Return the Folder object corresponding to the given name.
<DT><A HREF="../javax/mail/FolderClosedException.html#getFolder()"><B>getFolder()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/FolderClosedException.html" title="class in javax.mail">FolderClosedException</A>
<DD>Returns the dead Folder object
<DT><A HREF="../javax/mail/FolderNotFoundException.html#getFolder()"><B>getFolder()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/FolderNotFoundException.html" title="class in javax.mail">FolderNotFoundException</A>
<DD>Returns the offending Folder object.
<DT><A HREF="../javax/mail/Message.html#getFolder()"><B>getFolder()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get the folder from which this message was obtained.
<DT><A HREF="../javax/mail/ReadOnlyFolderException.html#getFolder()"><B>getFolder()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/ReadOnlyFolderException.html" title="class in javax.mail">ReadOnlyFolderException</A>
<DD>Returns the dead Folder object.
<DT><A HREF="../javax/mail/Session.html#getFolder(javax.mail.URLName)"><B>getFolder(URLName)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a closed Folder object for the given URLName.
<DT><A HREF="../javax/mail/Store.html#getFolder(java.lang.String)"><B>getFolder(String)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Store.html" title="class in javax.mail">Store</A>
<DD>Return the Folder object corresponding to the given name.
<DT><A HREF="../javax/mail/Store.html#getFolder(javax.mail.URLName)"><B>getFolder(URLName)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Store.html" title="class in javax.mail">Store</A>
<DD>Return a closed Folder object, corresponding to the given
URLName.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getFrom()"><B>getFrom()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the "From" attribute.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getFrom()"><B>getFrom()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the RFC 822 "From" header fields.
<DT><A HREF="../javax/mail/Message.html#getFrom()"><B>getFrom()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Returns the "From" attribute.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getFullName()"><B>getFullName()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the fullname of this folder.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getFullName()"><B>getFullName()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>
<DT><A HREF="../javax/mail/Folder.html#getFullName()"><B>getFullName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Returns the full name of this Folder.
<DT><A HREF="../javax/mail/internet/InternetAddress.html#getGroup(boolean)"><B>getGroup(boolean)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetAddress.html" title="class in javax.mail.internet">InternetAddress</A>
<DD>Return the members of a group address.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the named header.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getHeader(java.lang.String, java.lang.String)"><B>getHeader(String, String)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the named header.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Get all the headers for this header_name.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getHeader(java.lang.String, java.lang.String)"><B>getHeader(String, String)</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Get all the headers for this header name, returned as a single
String, with headers separated by the delimiter.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Return all the values for the specified header.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getHeader(java.lang.String, java.lang.String)"><B>getHeader(String, String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Get all the headers for this header name, returned as a single
String, with headers separated by the delimiter.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Get all the headers for this header_name.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getHeader(java.lang.String, java.lang.String)"><B>getHeader(String, String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Get all the headers for this header name, returned as a single
String, with headers separated by the delimiter.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get all the headers for this header_name.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getHeader(java.lang.String, java.lang.String)"><B>getHeader(String, String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get all the headers for this header name, returned as a single
String, with headers separated by the delimiter.
<DT><A HREF="../javax/mail/internet/MimePart.html#getHeader(java.lang.String, java.lang.String)"><B>getHeader(String, String)</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get the values of all header fields available for this header,
returned as a single String, with the values separated by the
delimiter.
<DT><A HREF="../javax/mail/Part.html#getHeader(java.lang.String)"><B>getHeader(String)</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Get all the headers for this header name.
<DT><A HREF="../javax/mail/search/HeaderTerm.html#getHeaderName()"><B>getHeaderName()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/HeaderTerm.html" title="class in javax.mail.search">HeaderTerm</A>
<DD>Return the name of the header to compare with.
<DT><A HREF="../javax/mail/FetchProfile.html#getHeaderNames()"><B>getHeaderNames()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/FetchProfile.html" title="class in javax.mail">FetchProfile</A>
<DD>Get the names of the header-fields set in this profile.
<DT><A HREF="../javax/mail/internet/NewsAddress.html#getHost()"><B>getHost()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/NewsAddress.html" title="class in javax.mail.internet">NewsAddress</A>
<DD>Get the host.
<DT><A HREF="../javax/mail/URLName.html#getHost()"><B>getHost()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Returns the host of this URLName.
<DT><A HREF="../javax/mail/search/StringTerm.html#getIgnoreCase()"><B>getIgnoreCase()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/StringTerm.html" title="class in javax.mail.search">StringTerm</A>
<DD>Return true if we should ignore case when matching.
<DT><A HREF="../com/sun/mail/dsn/MessageHeaders.html#getInputStream()"><B>getInputStream()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MessageHeaders.html" title="class in com.sun.mail.dsn">MessageHeaders</A>
<DD>
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getInputStream()"><B>getInputStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return a decoded input stream for this body part's "content".
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getInputStream()"><B>getInputStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return a decoded input stream for this Message's "content".
<DT><A HREF="../javax/mail/internet/MimePartDataSource.html#getInputStream()"><B>getInputStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimePartDataSource.html" title="class in javax.mail.internet">MimePartDataSource</A>
<DD>Returns an input stream from this MimePart.
<DT><A HREF="../javax/mail/Part.html#getInputStream()"><B>getInputStream()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return an input stream for this part's "content".
<DT><A HREF="../javax/mail/util/ByteArrayDataSource.html#getInputStream()"><B>getInputStream()</B></A> -
Method in class javax.mail.util.<A HREF="../javax/mail/util/ByteArrayDataSource.html" title="class in javax.mail.util">ByteArrayDataSource</A>
<DD>Return an InputStream for the data.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getInReplyTo()"><B>getInReplyTo()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the In-Reply-To header.
<DT><A HREF="../com/sun/mail/imap/Rights.Right.html#getInstance(char)"><B>getInstance(char)</B></A> -
Static method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/Rights.Right.html" title="class in com.sun.mail.imap">Rights.Right</A>
<DD>Get a Right object representing the specified character.
<DT><A HREF="../javax/mail/Session.html#getInstance(java.util.Properties, javax.mail.Authenticator)"><B>getInstance(Properties, Authenticator)</B></A> -
Static method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a new Session object.
<DT><A HREF="../javax/mail/Session.html#getInstance(java.util.Properties)"><B>getInstance(Properties)</B></A> -
Static method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a new Session object.
<DT><A HREF="../javax/mail/event/TransportEvent.html#getInvalidAddresses()"><B>getInvalidAddresses()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/TransportEvent.html" title="class in javax.mail.event">TransportEvent</A>
<DD>Return the addresses to which this message could not be sent.
<DT><A HREF="../javax/mail/SendFailedException.html#getInvalidAddresses()"><B>getInvalidAddresses()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/SendFailedException.html" title="class in javax.mail">SendFailedException</A>
<DD>Return the addresses to which this message could not be sent.
<DT><A HREF="../javax/mail/FetchProfile.html#getItems()"><B>getItems()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/FetchProfile.html" title="class in javax.mail">FetchProfile</A>
<DD>Get the items set in this profile.
<DT><A HREF="../com/sun/mail/util/MailSSLSocketFactory.html#getKeyManagers()"><B>getKeyManagers()</B></A> -
Method in class com.sun.mail.util.<A HREF="../com/sun/mail/util/MailSSLSocketFactory.html" title="class in com.sun.mail.util">MailSSLSocketFactory</A>
<DD>
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getLastReturnCode()"><B>getLastReturnCode()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Return the return code from the last response we got from the server.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getLastServerResponse()"><B>getLastServerResponse()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Return the last response we got from the server.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getLineCount()"><B>getLineCount()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the total number of lines.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getLineCount()"><B>getLineCount()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return the number of lines for the content of this Part.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getLineCount()"><B>getLineCount()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return the number of lines for the content of this message.
<DT><A HREF="../javax/mail/Part.html#getLineCount()"><B>getLineCount()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return the number of lines in the content of this part.
<DT><A HREF="../javax/mail/internet/InternetAddress.html#getLocalAddress(javax.mail.Session)"><B>getLocalAddress(Session)</B></A> -
Static method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetAddress.html" title="class in javax.mail.internet">InternetAddress</A>
<DD>Return an InternetAddress object representing the current user.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getLocalHost()"><B>getLocalHost()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Get the name of the local host, for use in the EHLO and HELO commands.
<DT><A HREF="../com/sun/mail/smtp/SMTPMessage.html#getMailExtension()"><B>getMailExtension()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPMessage.html" title="class in com.sun.mail.smtp">SMTPMessage</A>
<DD>Gets the extension string to use with the MAIL command.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getMailProperties()"><B>getMailProperties()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets a copy of the mail properties used for the session.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getMatchingHeaderLines(java.lang.String[])"><B>getMatchingHeaderLines(String[])</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get all matching header-lines.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getMatchingHeaderLines(java.lang.String[])"><B>getMatchingHeaderLines(String[])</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Get matching header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getMatchingHeaderLines(java.lang.String[])"><B>getMatchingHeaderLines(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Return all matching header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getMatchingHeaderLines(java.lang.String[])"><B>getMatchingHeaderLines(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Get matching header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getMatchingHeaderLines(java.lang.String[])"><B>getMatchingHeaderLines(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get matching header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimePart.html#getMatchingHeaderLines(java.lang.String[])"><B>getMatchingHeaderLines(String[])</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get matching header lines as an Enumeration of Strings.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getMatchingHeaders(java.lang.String[])"><B>getMatchingHeaders(String[])</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get matching headers.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getMatchingHeaders(java.lang.String[])"><B>getMatchingHeaders(String[])</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Return matching headers from this Message as an Enumeration of
Header objects.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getMatchingHeaders(java.lang.String[])"><B>getMatchingHeaders(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Return all matching <A HREF="../javax/mail/Header.html" title="class in javax.mail"><CODE>Header</CODE></A> objects.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getMatchingHeaders(java.lang.String[])"><B>getMatchingHeaders(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return matching headers from this Message as an Enumeration of
Header objects.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getMatchingHeaders(java.lang.String[])"><B>getMatchingHeaders(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return matching headers from this Message as an Enumeration of
Header objects.
<DT><A HREF="../javax/mail/Part.html#getMatchingHeaders(java.lang.String[])"><B>getMatchingHeaders(String[])</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return matching headers from this part as an Enumeration of
Header objects.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getMessage(int)"><B>getMessage(int)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the specified message.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getMessage(int)"><B>getMessage(int)</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>
<DT><A HREF="../javax/mail/event/MessageChangedEvent.html#getMessage()"><B>getMessage()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/MessageChangedEvent.html" title="class in javax.mail.event">MessageChangedEvent</A>
<DD>Return the changed Message.
<DT><A HREF="../javax/mail/event/StoreEvent.html#getMessage()"><B>getMessage()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/StoreEvent.html" title="class in javax.mail.event">StoreEvent</A>
<DD>Get the message from the Store.
<DT><A HREF="../javax/mail/event/TransportEvent.html#getMessage()"><B>getMessage()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/TransportEvent.html" title="class in javax.mail.event">TransportEvent</A>
<DD>Get the Message object associated with this Transport Event.
<DT><A HREF="../javax/mail/Folder.html#getMessage(int)"><B>getMessage(int)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get the Message object corresponding to the given message
number.
<DT><A HREF="../javax/mail/MessageContext.html#getMessage()"><B>getMessage()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/MessageContext.html" title="class in javax.mail">MessageContext</A>
<DD>Return the Message that contains the content.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getMessageBySeqNumber(int)"><B>getMessageBySeqNumber(int)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the message object for the given sequence number.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getMessageByUID(long)"><B>getMessageByUID(long)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the Message corresponding to the given UID.
<DT><A HREF="../javax/mail/UIDFolder.html#getMessageByUID(long)"><B>getMessageByUID(long)</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/UIDFolder.html" title="interface in javax.mail">UIDFolder</A>
<DD>Get the Message corresponding to the given UID.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getMessageCacheLock()"><B>getMessageCacheLock()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the messageCacheLock, associated with this Message's
Folder.
<DT><A HREF="../javax/mail/event/MessageChangedEvent.html#getMessageChangeType()"><B>getMessageChangeType()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/MessageChangedEvent.html" title="class in javax.mail.event">MessageChangedEvent</A>
<DD>Return the type of this event.
<DT><A HREF="../javax/mail/internet/MimePartDataSource.html#getMessageContext()"><B>getMessageContext()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimePartDataSource.html" title="class in javax.mail.internet">MimePartDataSource</A>
<DD>Return the <code>MessageContext</code> for the current part.
<DT><A HREF="../javax/mail/MessageAware.html#getMessageContext()"><B>getMessageContext()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/MessageAware.html" title="interface in javax.mail">MessageAware</A>
<DD>Return the message context.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getMessageCount()"><B>getMessageCount()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the total message count.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getMessageCount()"><B>getMessageCount()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Will not change while the folder is open because the POP3
protocol doesn't support notification of new messages
arriving in open folders.
<DT><A HREF="../javax/mail/Folder.html#getMessageCount()"><B>getMessageCount()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get total number of messages in this Folder.
<DT><A HREF="../com/sun/mail/dsn/DeliveryStatus.html#getMessageDSN()"><B>getMessageDSN()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/DeliveryStatus.html" title="class in com.sun.mail.dsn">DeliveryStatus</A>
<DD>Return all the per-message fields in the delivery status notification.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getMessageID()"><B>getMessageID()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the Message-ID.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getMessageID()"><B>getMessageID()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the "Message-ID" header field.
<DT><A HREF="../javax/mail/Message.html#getMessageNumber()"><B>getMessageNumber()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get the Message number for this Message.
<DT><A HREF="../javax/mail/event/MessageCountEvent.html#getMessages()"><B>getMessages()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/MessageCountEvent.html" title="class in javax.mail.event">MessageCountEvent</A>
<DD>Return the array of messages added or removed.
<DT><A HREF="../javax/mail/Folder.html#getMessages(int, int)"><B>getMessages(int, int)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get the Message objects for message numbers ranging from start
through end, both start and end inclusive.
<DT><A HREF="../javax/mail/Folder.html#getMessages(int[])"><B>getMessages(int[])</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get the Message objects for message numbers specified in
the array.
<DT><A HREF="../javax/mail/Folder.html#getMessages()"><B>getMessages()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get all Message objects from this Folder.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getMessagesByUID(long, long)"><B>getMessagesByUID(long, long)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the Messages specified by the given range.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getMessagesByUID(long[])"><B>getMessagesByUID(long[])</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the Messages specified by the given array.
<DT><A HREF="../javax/mail/UIDFolder.html#getMessagesByUID(long, long)"><B>getMessagesByUID(long, long)</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/UIDFolder.html" title="interface in javax.mail">UIDFolder</A>
<DD>Get the Messages specified by the given range.
<DT><A HREF="../javax/mail/UIDFolder.html#getMessagesByUID(long[])"><B>getMessagesByUID(long[])</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/UIDFolder.html" title="interface in javax.mail">UIDFolder</A>
<DD>Get the Messages specified by the given array of UIDs.
<DT><A HREF="../javax/mail/event/StoreEvent.html#getMessageType()"><B>getMessageType()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/StoreEvent.html" title="class in javax.mail.event">StoreEvent</A>
<DD>Return the type of this event.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getMimeStream()"><B>getMimeStream()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Return the MIME format stream corresponding to this message.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getMimeStream()"><B>getMimeStream()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Return the MIME format stream corresponding to this message part.
<DT><A HREF="../com/sun/mail/util/ReadableMime.html#getMimeStream()"><B>getMimeStream()</B></A> -
Method in interface com.sun.mail.util.<A HREF="../com/sun/mail/util/ReadableMime.html" title="interface in com.sun.mail.util">ReadableMime</A>
<DD>Return the MIME format stream corresponding to this message part.
<DT><A HREF="../javax/mail/Folder.html#getMode()"><B>getMode()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Return the open mode of this folder.
<DT><A HREF="../com/sun/mail/imap/ACL.html#getName()"><B>getName()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/ACL.html" title="class in com.sun.mail.imap">ACL</A>
<DD>Get the identifier name for this ACL entry.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getName()"><B>getName()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the name of this folder.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getName()"><B>getName()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>
<DT><A HREF="../javax/mail/Folder.html#getName()"><B>getName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Returns the name of this Folder.
<DT><A HREF="../javax/mail/Header.html#getName()"><B>getName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Header.html" title="class in javax.mail">Header</A>
<DD>Returns the name of this header.
<DT><A HREF="../javax/mail/internet/MimePartDataSource.html#getName()"><B>getName()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimePartDataSource.html" title="class in javax.mail.internet">MimePartDataSource</A>
<DD>DataSource method to return a name.
<DT><A HREF="../javax/mail/util/ByteArrayDataSource.html#getName()"><B>getName()</B></A> -
Method in class javax.mail.util.<A HREF="../javax/mail/util/ByteArrayDataSource.html" title="class in javax.mail.util">ByteArrayDataSource</A>
<DD>Get the name of the data.
<DT><A HREF="../javax/mail/internet/ParameterList.html#getNames()"><B>getNames()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ParameterList.html" title="class in javax.mail.internet">ParameterList</A>
<DD>Return an enumeration of the names of all parameters in this
list.
<DT><A HREF="../javax/mail/event/FolderEvent.html#getNewFolder()"><B>getNewFolder()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/FolderEvent.html" title="class in javax.mail.event">FolderEvent</A>
<DD>If this event indicates that a folder is renamed, (i.e, the event type
is RENAMED), then this method returns the Folder object representing the
new name.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getNewMessageCount()"><B>getNewMessageCount()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the new message count.
<DT><A HREF="../javax/mail/Folder.html#getNewMessageCount()"><B>getNewMessageCount()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get the number of new messages in this Folder.
<DT><A HREF="../javax/mail/internet/NewsAddress.html#getNewsgroup()"><B>getNewsgroup()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/NewsAddress.html" title="class in javax.mail.internet">NewsAddress</A>
<DD>Get the newsgroup.
<DT><A HREF="../javax/mail/MessagingException.html#getNextException()"><B>getNextException()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/MessagingException.html" title="class in javax.mail">MessagingException</A>
<DD>Get the next exception chained to this one.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getNonMatchingHeaderLines(java.lang.String[])"><B>getNonMatchingHeaderLines(String[])</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get all non-matching headerlines.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getNonMatchingHeaderLines(java.lang.String[])"><B>getNonMatchingHeaderLines(String[])</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Get non-matching header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getNonMatchingHeaderLines(java.lang.String[])"><B>getNonMatchingHeaderLines(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Return all non-matching header lines
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getNonMatchingHeaderLines(java.lang.String[])"><B>getNonMatchingHeaderLines(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Get non-matching header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getNonMatchingHeaderLines(java.lang.String[])"><B>getNonMatchingHeaderLines(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Get non-matching header lines as an Enumeration of Strings.
<DT><A HREF="../javax/mail/internet/MimePart.html#getNonMatchingHeaderLines(java.lang.String[])"><B>getNonMatchingHeaderLines(String[])</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/MimePart.html" title="interface in javax.mail.internet">MimePart</A>
<DD>Get non-matching header lines as an Enumeration of Strings.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getNonMatchingHeaders(java.lang.String[])"><B>getNonMatchingHeaders(String[])</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get non-matching headers.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getNonMatchingHeaders(java.lang.String[])"><B>getNonMatchingHeaders(String[])</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Return non-matching headers from this Message as an
Enumeration of Header objects.
<DT><A HREF="../javax/mail/internet/InternetHeaders.html#getNonMatchingHeaders(java.lang.String[])"><B>getNonMatchingHeaders(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.html" title="class in javax.mail.internet">InternetHeaders</A>
<DD>Return all non-matching <A HREF="../javax/mail/Header.html" title="class in javax.mail"><CODE>Header</CODE></A> objects.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getNonMatchingHeaders(java.lang.String[])"><B>getNonMatchingHeaders(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return non-matching headers from this Message as an
Enumeration of Header objects.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getNonMatchingHeaders(java.lang.String[])"><B>getNonMatchingHeaders(String[])</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return non-matching headers from this Message as an
Enumeration of Header objects.
<DT><A HREF="../javax/mail/Part.html#getNonMatchingHeaders(java.lang.String[])"><B>getNonMatchingHeaders(String[])</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return non-matching headers from this envelope as an Enumeration
of Header objects.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getNoopStrict()"><B>getNoopStrict()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Is the NOOP command required to return a response code
of 250 to indicate success?
<DT><A HREF="../com/sun/mail/dsn/DispositionNotification.html#getNotifications()"><B>getNotifications()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/DispositionNotification.html" title="class in com.sun.mail.dsn">DispositionNotification</A>
<DD>Return all the disposition notification fields in the
disposition notification.
<DT><A HREF="../com/sun/mail/smtp/SMTPMessage.html#getNotifyOptions()"><B>getNotifyOptions()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPMessage.html" title="class in com.sun.mail.smtp">SMTPMessage</A>
<DD>Get notification options.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getNTLMDomain()"><B>getNTLMDomain()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Gets the NTLM domain to be used for NTLM authentication.
<DT><A HREF="../javax/mail/search/IntegerComparisonTerm.html#getNumber()"><B>getNumber()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/IntegerComparisonTerm.html" title="class in javax.mail.search">IntegerComparisonTerm</A>
<DD>Return the number to compare with.
<DT><A HREF="../javax/mail/internet/MimePartDataSource.html#getOutputStream()"><B>getOutputStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimePartDataSource.html" title="class in javax.mail.internet">MimePartDataSource</A>
<DD>DataSource method to return an output stream.
<DT><A HREF="../javax/mail/util/ByteArrayDataSource.html#getOutputStream()"><B>getOutputStream()</B></A> -
Method in class javax.mail.util.<A HREF="../javax/mail/util/ByteArrayDataSource.html" title="class in javax.mail.util">ByteArrayDataSource</A>
<DD>Return an OutputStream for the data.
<DT><A HREF="../javax/mail/internet/ContentDisposition.html#getParameter(java.lang.String)"><B>getParameter(String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentDisposition.html" title="class in javax.mail.internet">ContentDisposition</A>
<DD>Return the specified parameter value.
<DT><A HREF="../javax/mail/internet/ContentType.html#getParameter(java.lang.String)"><B>getParameter(String)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentType.html" title="class in javax.mail.internet">ContentType</A>
<DD>Return the specified parameter value.
<DT><A HREF="../javax/mail/internet/ContentDisposition.html#getParameterList()"><B>getParameterList()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentDisposition.html" title="class in javax.mail.internet">ContentDisposition</A>
<DD>Return a ParameterList object that holds all the available
parameters.
<DT><A HREF="../javax/mail/internet/ContentType.html#getParameterList()"><B>getParameterList()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentType.html" title="class in javax.mail.internet">ContentType</A>
<DD>Return a ParameterList object that holds all the available
parameters.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getParent()"><B>getParent()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get this folder's parent.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getParent()"><B>getParent()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>
<DT><A HREF="../javax/mail/BodyPart.html#getParent()"><B>getParent()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/BodyPart.html" title="class in javax.mail">BodyPart</A>
<DD>Return the containing <code>Multipart</code> object,
or <code>null</code> if not known.
<DT><A HREF="../javax/mail/Folder.html#getParent()"><B>getParent()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Returns the parent folder of this folder.
<DT><A HREF="../javax/mail/Multipart.html#getParent()"><B>getParent()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Multipart.html" title="class in javax.mail">Multipart</A>
<DD>Return the <code>Part</code> that contains this <code>Multipart</code>
object, or <code>null</code> if not known.
<DT><A HREF="../javax/mail/MessageContext.html#getPart()"><B>getPart()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/MessageContext.html" title="class in javax.mail">MessageContext</A>
<DD>Return the Part that contains the content.
<DT><A HREF="../javax/mail/PasswordAuthentication.html#getPassword()"><B>getPassword()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/PasswordAuthentication.html" title="class in javax.mail">PasswordAuthentication</A>
<DD>
<DT><A HREF="../javax/mail/URLName.html#getPassword()"><B>getPassword()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Returns the password of this URLName.
<DT><A HREF="../javax/mail/Authenticator.html#getPasswordAuthentication()"><B>getPasswordAuthentication()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Authenticator.html" title="class in javax.mail">Authenticator</A>
<DD>Called when password authentication is needed.
<DT><A HREF="../javax/mail/Session.html#getPasswordAuthentication(javax.mail.URLName)"><B>getPasswordAuthentication(URLName)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Return any saved PasswordAuthentication for this (store or transport)
URLName.
<DT><A HREF="../javax/mail/search/StringTerm.html#getPattern()"><B>getPattern()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/StringTerm.html" title="class in javax.mail.search">StringTerm</A>
<DD>Return the string to match with.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getPeek()"><B>getPeek()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get whether or not to use the PEEK variant of FETCH when
fetching message content.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getPermanentFlags()"><B>getPermanentFlags()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Return the permanent flags supported by the server.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getPermanentFlags()"><B>getPermanentFlags()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Always returns an empty <code>Flags</code> object because
the POP3 protocol doesn't support any permanent flags.
<DT><A HREF="../javax/mail/Folder.html#getPermanentFlags()"><B>getPermanentFlags()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get the permanent flags supported by this Folder.
<DT><A HREF="../javax/mail/internet/InternetAddress.html#getPersonal()"><B>getPersonal()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetAddress.html" title="class in javax.mail.internet">InternetAddress</A>
<DD>Get the personal name.
<DT><A HREF="../com/sun/mail/imap/IMAPStore.html#getPersonalNamespaces()"><B>getPersonalNamespaces()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPStore.html" title="class in com.sun.mail.imap">IMAPStore</A>
<DD>Using the IMAP NAMESPACE command (RFC 2342), return a set
of folders representing the Personal namespaces.
<DT><A HREF="../javax/mail/Store.html#getPersonalNamespaces()"><B>getPersonalNamespaces()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Store.html" title="class in javax.mail">Store</A>
<DD>Return a set of folders representing the <i>personal</i> namespaces
for the current user.
<DT><A HREF="../javax/mail/URLName.html#getPort()"><B>getPort()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Returns the port number of this URLName.
<DT><A HREF="../javax/mail/internet/AddressException.html#getPos()"><B>getPos()</B></A> -
Method in exception javax.mail.internet.<A HREF="../javax/mail/internet/AddressException.html" title="class in javax.mail.internet">AddressException</A>
<DD>Get the position with the reference string where the error was
detected (-1 if not relevant).
<DT><A HREF="../javax/mail/internet/SharedInputStream.html#getPosition()"><B>getPosition()</B></A> -
Method in interface javax.mail.internet.<A HREF="../javax/mail/internet/SharedInputStream.html" title="interface in javax.mail.internet">SharedInputStream</A>
<DD>Return the current position in the InputStream, as an
offset from the beginning of the InputStream.
<DT><A HREF="../javax/mail/util/SharedByteArrayInputStream.html#getPosition()"><B>getPosition()</B></A> -
Method in class javax.mail.util.<A HREF="../javax/mail/util/SharedByteArrayInputStream.html" title="class in javax.mail.util">SharedByteArrayInputStream</A>
<DD>Return the current position in the InputStream, as an
offset from the beginning of the InputStream.
<DT><A HREF="../javax/mail/util/SharedFileInputStream.html#getPosition()"><B>getPosition()</B></A> -
Method in class javax.mail.util.<A HREF="../javax/mail/util/SharedFileInputStream.html" title="class in javax.mail.util">SharedFileInputStream</A>
<DD>Return the current position in the InputStream, as an
offset from the beginning of the InputStream.
<DT><A HREF="../javax/mail/internet/MimeMultipart.html#getPreamble()"><B>getPreamble()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMultipart.html" title="class in javax.mail.internet">MimeMultipart</A>
<DD>Get the preamble text, if any, that appears before the
first body part of this multipart.
<DT><A HREF="../javax/mail/internet/ContentType.html#getPrimaryType()"><B>getPrimaryType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentType.html" title="class in javax.mail.internet">ContentType</A>
<DD>Return the primary type.
<DT><A HREF="../javax/mail/Session.html#getProperties()"><B>getProperties()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Returns the Properties object associated with this Session
<DT><A HREF="../javax/mail/Session.html#getProperty(java.lang.String)"><B>getProperty(String)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Returns the value of the specified property.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getProtocol()"><B>getProtocol()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Return the IMAPProtocol object for this folder.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getProtocol()"><B>getProtocol()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get this message's folder's protocol connection.
<DT><A HREF="../javax/mail/Provider.html#getProtocol()"><B>getProtocol()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Provider.html" title="class in javax.mail">Provider</A>
<DD>Returns the protocol supported by this Provider
<DT><A HREF="../javax/mail/URLName.html#getProtocol()"><B>getProtocol()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Returns the protocol of this URLName.
<DT><A HREF="../javax/mail/Session.html#getProvider(java.lang.String)"><B>getProvider(String)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Returns the default Provider for the protocol
specified.
<DT><A HREF="../javax/mail/Session.html#getProviders()"><B>getProviders()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>This method returns an array of all the implementations installed
via the javamail.[default.]providers files that can
be loaded using the ClassLoader available to this application.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getPushFilter()"><B>getPushFilter()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the push filter.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getPushLevel()"><B>getPushLevel()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the push level.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getQuota()"><B>getQuota()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the quotas for the quotaroot associated with this
folder.
<DT><A HREF="../com/sun/mail/imap/IMAPStore.html#getQuota(java.lang.String)"><B>getQuota(String)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPStore.html" title="class in com.sun.mail.imap">IMAPStore</A>
<DD>Get the quotas for the named quota root.
<DT><A HREF="../javax/mail/QuotaAwareStore.html#getQuota(java.lang.String)"><B>getQuota(String)</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/QuotaAwareStore.html" title="interface in javax.mail">QuotaAwareStore</A>
<DD>Get the quotas for the named folder.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getRawInputStream()"><B>getRawInputStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return an InputStream to the raw data with any Content-Transfer-Encoding
intact.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getRawInputStream()"><B>getRawInputStream()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return an InputStream to the raw data with any Content-Transfer-Encoding
intact.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getReceivedDate()"><B>getReceivedDate()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the recieved date (INTERNALDATE)
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getReceivedDate()"><B>getReceivedDate()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the Date on this message was received.
<DT><A HREF="../javax/mail/Message.html#getReceivedDate()"><B>getReceivedDate()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get the date this message was received.
<DT><A HREF="../com/sun/mail/dsn/DeliveryStatus.html#getRecipientDSN(int)"><B>getRecipientDSN(int)</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/DeliveryStatus.html" title="class in com.sun.mail.dsn">DeliveryStatus</A>
<DD>Return the delivery status notification information for
the specified recipient.
<DT><A HREF="../com/sun/mail/dsn/DeliveryStatus.html#getRecipientDSNCount()"><B>getRecipientDSNCount()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/DeliveryStatus.html" title="class in com.sun.mail.dsn">DeliveryStatus</A>
<DD>Return the number of recipients for which we have
per-recipient delivery status notification information.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getRecipients(javax.mail.Message.RecipientType)"><B>getRecipients(Message.RecipientType)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the desired Recipient type.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getRecipients(javax.mail.Message.RecipientType)"><B>getRecipients(Message.RecipientType)</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the recepients specified by the type.
<DT><A HREF="../javax/mail/Message.html#getRecipients(javax.mail.Message.RecipientType)"><B>getRecipients(Message.RecipientType)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get all the recipient addresses of the given type.
<DT><A HREF="../javax/mail/search/RecipientStringTerm.html#getRecipientType()"><B>getRecipientType()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/RecipientStringTerm.html" title="class in javax.mail.search">RecipientStringTerm</A>
<DD>Return the type of recipient to match with.
<DT><A HREF="../javax/mail/search/RecipientTerm.html#getRecipientType()"><B>getRecipientType()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/RecipientTerm.html" title="class in javax.mail.search">RecipientTerm</A>
<DD>Return the type of recipient to match with.
<DT><A HREF="../javax/mail/internet/AddressException.html#getRef()"><B>getRef()</B></A> -
Method in exception javax.mail.internet.<A HREF="../javax/mail/internet/AddressException.html" title="class in javax.mail.internet">AddressException</A>
<DD>Get the string that was being parsed when the error was detected
(null if not relevant).
<DT><A HREF="../javax/mail/URLName.html#getRef()"><B>getRef()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Returns the reference of this URLName.
<DT><A HREF="../javax/mail/internet/HeaderTokenizer.html#getRemainder()"><B>getRemainder()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/HeaderTokenizer.html" title="class in javax.mail.internet">HeaderTokenizer</A>
<DD>Return the rest of the Header.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getReplyTo()"><B>getReplyTo()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the ReplyTo addresses.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getReplyTo()"><B>getReplyTo()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return the value of the RFC 822 "Reply-To" header field.
<DT><A HREF="../javax/mail/Message.html#getReplyTo()"><B>getReplyTo()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get the addresses to which replies should be directed.
<DT><A HREF="../com/sun/mail/dsn/MultipartReport.html#getReport()"><B>getReport()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MultipartReport.html" title="class in com.sun.mail.dsn">MultipartReport</A>
<DD>Get the report associated with this multipart/report.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getReportSuccess()"><B>getReportSuccess()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Should we report even successful sends by throwing an exception?
If so, a <code>SendFailedException</code> will always be thrown and
an <A HREF="../com/sun/mail/smtp/SMTPAddressSucceededException.html" title="class in com.sun.mail.smtp"><CODE>SMTPAddressSucceededException</CODE></A> will be included in the exception
chain for each successful address, along with the usual
<A HREF="../com/sun/mail/smtp/SMTPAddressFailedException.html" title="class in com.sun.mail.smtp"><CODE>SMTPAddressFailedException</CODE></A> for each unsuccessful address.
<DT><A HREF="../javax/mail/Authenticator.html#getRequestingPort()"><B>getRequestingPort()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Authenticator.html" title="class in javax.mail">Authenticator</A>
<DD>
<DT><A HREF="../javax/mail/Authenticator.html#getRequestingPrompt()"><B>getRequestingPrompt()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Authenticator.html" title="class in javax.mail">Authenticator</A>
<DD>
<DT><A HREF="../javax/mail/Authenticator.html#getRequestingProtocol()"><B>getRequestingProtocol()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Authenticator.html" title="class in javax.mail">Authenticator</A>
<DD>Give the protocol that's requesting the connection.
<DT><A HREF="../javax/mail/Authenticator.html#getRequestingSite()"><B>getRequestingSite()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Authenticator.html" title="class in javax.mail">Authenticator</A>
<DD>
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getRequireStartTLS()"><B>getRequireStartTLS()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Should we require the STARTTLS command to secure the connection?
<DT><A HREF="../com/sun/mail/smtp/SMTPAddressFailedException.html#getReturnCode()"><B>getReturnCode()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPAddressFailedException.html" title="class in com.sun.mail.smtp">SMTPAddressFailedException</A>
<DD>Return the return code from the SMTP server that indicates the
reason for the failure.
<DT><A HREF="../com/sun/mail/smtp/SMTPAddressSucceededException.html#getReturnCode()"><B>getReturnCode()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPAddressSucceededException.html" title="class in com.sun.mail.smtp">SMTPAddressSucceededException</A>
<DD>Return the return code from the SMTP server that indicates the
reason for the success.
<DT><A HREF="../com/sun/mail/smtp/SMTPSenderFailedException.html#getReturnCode()"><B>getReturnCode()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPSenderFailedException.html" title="class in com.sun.mail.smtp">SMTPSenderFailedException</A>
<DD>Return the return code from the SMTP server that indicates the
reason for the failure.
<DT><A HREF="../com/sun/mail/smtp/SMTPSendFailedException.html#getReturnCode()"><B>getReturnCode()</B></A> -
Method in exception com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPSendFailedException.html" title="class in com.sun.mail.smtp">SMTPSendFailedException</A>
<DD>Return the return code from the SMTP server that indicates the
reason for the failure.
<DT><A HREF="../com/sun/mail/dsn/MultipartReport.html#getReturnedMessage()"><B>getReturnedMessage()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MultipartReport.html" title="class in com.sun.mail.dsn">MultipartReport</A>
<DD>Get the original message that is being returned along with this
multipart/report.
<DT><A HREF="../com/sun/mail/smtp/SMTPMessage.html#getReturnOption()"><B>getReturnOption()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPMessage.html" title="class in com.sun.mail.smtp">SMTPMessage</A>
<DD>Return return option.
<DT><A HREF="../com/sun/mail/imap/ACL.html#getRights()"><B>getRights()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/ACL.html" title="class in com.sun.mail.imap">ACL</A>
<DD>Get the rights associated with this ACL entry.
<DT><A HREF="../com/sun/mail/imap/Rights.html#getRights()"><B>getRights()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/Rights.html" title="class in com.sun.mail.imap">Rights</A>
<DD>Return all the rights in this Rights object.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getSASLEnabled()"><B>getSASLEnabled()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Is SASL authentication enabled?
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getSASLMechanisms()"><B>getSASLMechanisms()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Get the list of SASL mechanisms to consider if SASL authentication
is enabled.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getSASLRealm()"><B>getSASLRealm()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Gets the SASL realm to be used for DIGEST-MD5 authentication.
<DT><A HREF="../com/sun/mail/util/MailSSLSocketFactory.html#getSecureRandom()"><B>getSecureRandom()</B></A> -
Method in class com.sun.mail.util.<A HREF="../com/sun/mail/util/MailSSLSocketFactory.html" title="class in com.sun.mail.util">MailSSLSocketFactory</A>
<DD>
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getSender()"><B>getSender()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the "Sender" attribute.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getSender()"><B>getSender()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the RFC 822 "Sender" header field.
<DT><A HREF="../com/sun/mail/smtp/SMTPMessage.html#getSendPartial()"><B>getSendPartial()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPMessage.html" title="class in com.sun.mail.smtp">SMTPMessage</A>
<DD>Send message if some addresses are invalid?
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getSentDate()"><B>getSentDate()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the SentDate.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getSentDate()"><B>getSentDate()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the RFC 822 "Date" field.
<DT><A HREF="../javax/mail/Message.html#getSentDate()"><B>getSentDate()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get the date this message was sent.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getSeparator()"><B>getSeparator()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the separator character.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getSeparator()"><B>getSeparator()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Always returns a NUL character because POP3 doesn't support a hierarchy.
<DT><A HREF="../javax/mail/Folder.html#getSeparator()"><B>getSeparator()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Return the delimiter character that separates this Folder's pathname
from the names of immediate subfolders.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getSequenceNumber()"><B>getSequenceNumber()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get this message's IMAP sequence number.
<DT><A HREF="../javax/mail/MessageContext.html#getSession()"><B>getSession()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/MessageContext.html" title="class in javax.mail">MessageContext</A>
<DD>Return the Session we're operating in.
<DT><A HREF="../com/sun/mail/imap/IMAPStore.html#getSharedNamespaces()"><B>getSharedNamespaces()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPStore.html" title="class in com.sun.mail.imap">IMAPStore</A>
<DD>Using the IMAP NAMESPACE command (RFC 2342), return a set
of folders representing the Shared namespaces.
<DT><A HREF="../javax/mail/Store.html#getSharedNamespaces()"><B>getSharedNamespaces()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Store.html" title="class in javax.mail">Store</A>
<DD>Return a set of folders representing the <i>shared</i> namespaces.
<DT><A HREF="../com/sun/mail/dsn/MessageHeaders.html#getSize()"><B>getSize()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MessageHeaders.html" title="class in com.sun.mail.dsn">MessageHeaders</A>
<DD>Return the size of this message.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getSize()"><B>getSize()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the message size.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getSize()"><B>getSize()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Return the size of this folder, as was returned by the POP3 STAT
command when this folder was opened.
<DT><A HREF="../com/sun/mail/pop3/POP3Message.html#getSize()"><B>getSize()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Message.html" title="class in com.sun.mail.pop3">POP3Message</A>
<DD>Return the size of the content of this message in bytes.
<DT><A HREF="../javax/mail/internet/MimeBodyPart.html#getSize()"><B>getSize()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeBodyPart.html" title="class in javax.mail.internet">MimeBodyPart</A>
<DD>Return the size of the content of this body part in bytes.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getSize()"><B>getSize()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Return the size of the content of this message in bytes.
<DT><A HREF="../javax/mail/Part.html#getSize()"><B>getSize()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/Part.html" title="interface in javax.mail">Part</A>
<DD>Return the size of the content of this part in bytes.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getSizes()"><B>getSizes()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Return the sizes of all messages in this folder, as returned
by the POP3 LIST command.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getSortedMessages(com.sun.mail.imap.SortTerm[])"><B>getSortedMessages(SortTerm[])</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Sort the messages in the folder according to the sort criteria.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getSortedMessages(com.sun.mail.imap.SortTerm[], javax.mail.search.SearchTerm)"><B>getSortedMessages(SortTerm[], SearchTerm)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Sort the messages in the folder according to the sort criteria.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getStartTLS()"><B>getStartTLS()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Should we use the STARTTLS command to secure the connection
if the server supports it?
<DT><A HREF="../javax/mail/Folder.html#getStore()"><B>getStore()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Returns the Store that owns this Folder object.
<DT><A HREF="../javax/mail/Session.html#getStore()"><B>getStore()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a Store object that implements this user's desired Store
protocol.
<DT><A HREF="../javax/mail/Session.html#getStore(java.lang.String)"><B>getStore(String)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a Store object that implements the specified protocol.
<DT><A HREF="../javax/mail/Session.html#getStore(javax.mail.URLName)"><B>getStore(URLName)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a Store object for the given URLName.
<DT><A HREF="../javax/mail/Session.html#getStore(javax.mail.Provider)"><B>getStore(Provider)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get an instance of the store specified by Provider.
<DT><A HREF="../javax/mail/StoreClosedException.html#getStore()"><B>getStore()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/StoreClosedException.html" title="class in javax.mail">StoreClosedException</A>
<DD>Returns the dead Store object
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getStoreProtocol()"><B>getStoreProtocol()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get this folder's Store's protocol connection.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getSubject()"><B>getSubject()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>Get the decoded subject.
<DT><A HREF="../com/sun/mail/util/logging/MailHandler.html#getSubject()"><B>getSubject()</B></A> -
Method in class com.sun.mail.util.logging.<A HREF="../com/sun/mail/util/logging/MailHandler.html" title="class in com.sun.mail.util.logging">MailHandler</A>
<DD>Gets the formatter used to create the subject line.
<DT><A HREF="../javax/mail/internet/MimeMessage.html#getSubject()"><B>getSubject()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/MimeMessage.html" title="class in javax.mail.internet">MimeMessage</A>
<DD>Returns the value of the "Subject" header field.
<DT><A HREF="../javax/mail/Message.html#getSubject()"><B>getSubject()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Message.html" title="class in javax.mail">Message</A>
<DD>Get the subject of this message.
<DT><A HREF="../com/sun/mail/smtp/SMTPMessage.html#getSubmitter()"><B>getSubmitter()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPMessage.html" title="class in com.sun.mail.smtp">SMTPMessage</A>
<DD>Gets the submitter to be used for the RFC 2554 AUTH= value
in the MAIL FROM command.
<DT><A HREF="../javax/mail/internet/ContentType.html#getSubType()"><B>getSubType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/ContentType.html" title="class in javax.mail.internet">ContentType</A>
<DD>Return the subType.
<DT><A HREF="../com/sun/mail/util/MailSSLSocketFactory.html#getSupportedCipherSuites()"><B>getSupportedCipherSuites()</B></A> -
Method in class com.sun.mail.util.<A HREF="../com/sun/mail/util/MailSSLSocketFactory.html" title="class in com.sun.mail.util">MailSSLSocketFactory</A>
<DD>
<DT><A HREF="../javax/mail/Flags.html#getSystemFlags()"><B>getSystemFlags()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Flags.html" title="class in javax.mail">Flags</A>
<DD>Return all the system flags in this Flags object.
<DT><A HREF="../javax/mail/search/NotTerm.html#getTerm()"><B>getTerm()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/NotTerm.html" title="class in javax.mail.search">NotTerm</A>
<DD>Return the term to negate.
<DT><A HREF="../javax/mail/search/AndTerm.html#getTerms()"><B>getTerms()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/AndTerm.html" title="class in javax.mail.search">AndTerm</A>
<DD>Return the search terms.
<DT><A HREF="../javax/mail/search/OrTerm.html#getTerms()"><B>getTerms()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/OrTerm.html" title="class in javax.mail.search">OrTerm</A>
<DD>Return the search terms.
<DT><A HREF="../javax/mail/search/FlagTerm.html#getTestSet()"><B>getTestSet()</B></A> -
Method in class javax.mail.search.<A HREF="../javax/mail/search/FlagTerm.html" title="class in javax.mail.search">FlagTerm</A>
<DD>Return true if testing whether the flags are set.
<DT><A HREF="../com/sun/mail/dsn/MultipartReport.html#getText()"><B>getText()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MultipartReport.html" title="class in com.sun.mail.dsn">MultipartReport</A>
<DD>Get the plain text to be presented to the user, if there is any.
<DT><A HREF="../com/sun/mail/dsn/MultipartReport.html#getTextBodyPart()"><B>getTextBodyPart()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/MultipartReport.html" title="class in com.sun.mail.dsn">MultipartReport</A>
<DD>Return the body part containing the message to be presented to
the user, usually just a text/plain part.
<DT><A HREF="../javax/mail/Session.html#getTransport()"><B>getTransport()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a Transport object that implements this user's desired
Transport protcol.
<DT><A HREF="../javax/mail/Session.html#getTransport(java.lang.String)"><B>getTransport(String)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a Transport object that implements the specified protocol.
<DT><A HREF="../javax/mail/Session.html#getTransport(javax.mail.URLName)"><B>getTransport(URLName)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a Transport object for the given URLName.
<DT><A HREF="../javax/mail/Session.html#getTransport(javax.mail.Provider)"><B>getTransport(Provider)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get an instance of the transport specified in the Provider.
<DT><A HREF="../javax/mail/Session.html#getTransport(javax.mail.Address)"><B>getTransport(Address)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Session.html" title="class in javax.mail">Session</A>
<DD>Get a Transport object that can transport a Message of the
specified address type.
<DT><A HREF="../com/sun/mail/util/MailSSLSocketFactory.html#getTrustedHosts()"><B>getTrustedHosts()</B></A> -
Method in class com.sun.mail.util.<A HREF="../com/sun/mail/util/MailSSLSocketFactory.html" title="class in com.sun.mail.util">MailSSLSocketFactory</A>
<DD>
<DT><A HREF="../com/sun/mail/util/MailSSLSocketFactory.html#getTrustManagers()"><B>getTrustManagers()</B></A> -
Method in class com.sun.mail.util.<A HREF="../com/sun/mail/util/MailSSLSocketFactory.html" title="class in com.sun.mail.util">MailSSLSocketFactory</A>
<DD>
<DT><A HREF="../com/sun/mail/dsn/Report.html#getType()"><B>getType()</B></A> -
Method in class com.sun.mail.dsn.<A HREF="../com/sun/mail/dsn/Report.html" title="class in com.sun.mail.dsn">Report</A>
<DD>Get the MIME subtype of the report.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getType()"><B>getType()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the type of this folder.
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getType()"><B>getType()</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Always returns Folder.HOLDS_MESSAGES.
<DT><A HREF="../javax/mail/Address.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Address.html" title="class in javax.mail">Address</A>
<DD>Return a type string that identifies this address type.
<DT><A HREF="../javax/mail/event/ConnectionEvent.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/ConnectionEvent.html" title="class in javax.mail.event">ConnectionEvent</A>
<DD>Return the type of this event
<DT><A HREF="../javax/mail/event/FolderEvent.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/FolderEvent.html" title="class in javax.mail.event">FolderEvent</A>
<DD>Return the type of this event.
<DT><A HREF="../javax/mail/event/MessageCountEvent.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/MessageCountEvent.html" title="class in javax.mail.event">MessageCountEvent</A>
<DD>Return the type of this event.
<DT><A HREF="../javax/mail/event/TransportEvent.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/TransportEvent.html" title="class in javax.mail.event">TransportEvent</A>
<DD>Return the type of this event.
<DT><A HREF="../javax/mail/Folder.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Returns the type of this Folder, that is, whether this folder can hold
messages or subfolders or both.
<DT><A HREF="../javax/mail/internet/HeaderTokenizer.Token.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/HeaderTokenizer.Token.html" title="class in javax.mail.internet">HeaderTokenizer.Token</A>
<DD>Return the type of the token.
<DT><A HREF="../javax/mail/internet/InternetAddress.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetAddress.html" title="class in javax.mail.internet">InternetAddress</A>
<DD>Return the type of this address.
<DT><A HREF="../javax/mail/internet/NewsAddress.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/NewsAddress.html" title="class in javax.mail.internet">NewsAddress</A>
<DD>Return the type of this address.
<DT><A HREF="../javax/mail/Provider.html#getType()"><B>getType()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Provider.html" title="class in javax.mail">Provider</A>
<DD>Returns the type of this Provider
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getUID(javax.mail.Message)"><B>getUID(Message)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the UID for the specified message.
<DT><A HREF="../com/sun/mail/imap/IMAPMessage.html#getUID()"><B>getUID()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPMessage.html" title="class in com.sun.mail.imap">IMAPMessage</A>
<DD>
<DT><A HREF="../com/sun/mail/pop3/POP3Folder.html#getUID(javax.mail.Message)"><B>getUID(Message)</B></A> -
Method in class com.sun.mail.pop3.<A HREF="../com/sun/mail/pop3/POP3Folder.html" title="class in com.sun.mail.pop3">POP3Folder</A>
<DD>Return the unique ID string for this message, or null if
not available.
<DT><A HREF="../javax/mail/UIDFolder.html#getUID(javax.mail.Message)"><B>getUID(Message)</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/UIDFolder.html" title="interface in javax.mail">UIDFolder</A>
<DD>Get the UID for the specified message.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getUIDNext()"><B>getUIDNext()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Returns the predicted UID that will be assigned to the
next message that is appended to this folder.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getUIDValidity()"><B>getUIDValidity()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Returns the UIDValidity for this folder.
<DT><A HREF="../javax/mail/UIDFolder.html#getUIDValidity()"><B>getUIDValidity()</B></A> -
Method in interface javax.mail.<A HREF="../javax/mail/UIDFolder.html" title="interface in javax.mail">UIDFolder</A>
<DD>Returns the UIDValidity value associated with this folder.
<DT><A HREF="../com/sun/mail/imap/IMAPFolder.html#getUnreadMessageCount()"><B>getUnreadMessageCount()</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPFolder.html" title="class in com.sun.mail.imap">IMAPFolder</A>
<DD>Get the unread message count.
<DT><A HREF="../javax/mail/Folder.html#getUnreadMessageCount()"><B>getUnreadMessageCount()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Get the total number of unread messages in this Folder.
<DT><A HREF="../javax/mail/URLName.html#getURL()"><B>getURL()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Constructs a URL from the URLName.
<DT><A HREF="../javax/mail/Folder.html#getURLName()"><B>getURLName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Folder.html" title="class in javax.mail">Folder</A>
<DD>Return a URLName representing this folder.
<DT><A HREF="../javax/mail/Service.html#getURLName()"><B>getURLName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Service.html" title="class in javax.mail">Service</A>
<DD>Return a URLName representing this service.
<DT><A HREF="../javax/mail/Flags.html#getUserFlags()"><B>getUserFlags()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Flags.html" title="class in javax.mail">Flags</A>
<DD>Return all the user flags in this Flags object.
<DT><A HREF="../javax/mail/PasswordAuthentication.html#getUserName()"><B>getUserName()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/PasswordAuthentication.html" title="class in javax.mail">PasswordAuthentication</A>
<DD>
<DT><A HREF="../javax/mail/URLName.html#getUsername()"><B>getUsername()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/URLName.html" title="class in javax.mail">URLName</A>
<DD>Returns the user name of this URLName.
<DT><A HREF="../com/sun/mail/imap/IMAPStore.html#getUserNamespaces(java.lang.String)"><B>getUserNamespaces(String)</B></A> -
Method in class com.sun.mail.imap.<A HREF="../com/sun/mail/imap/IMAPStore.html" title="class in com.sun.mail.imap">IMAPStore</A>
<DD>Using the IMAP NAMESPACE command (RFC 2342), return a set
of folders representing the User's namespaces.
<DT><A HREF="../javax/mail/Store.html#getUserNamespaces(java.lang.String)"><B>getUserNamespaces(String)</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Store.html" title="class in javax.mail">Store</A>
<DD>Return a set of folders representing the namespaces for
<code>user</code>.
<DT><A HREF="../com/sun/mail/smtp/SMTPTransport.html#getUseRset()"><B>getUseRset()</B></A> -
Method in class com.sun.mail.smtp.<A HREF="../com/sun/mail/smtp/SMTPTransport.html" title="class in com.sun.mail.smtp">SMTPTransport</A>
<DD>Should we use the RSET command instead of the NOOP command
in the @{link #isConnected isConnected} method?
<DT><A HREF="../javax/mail/event/TransportEvent.html#getValidSentAddresses()"><B>getValidSentAddresses()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/TransportEvent.html" title="class in javax.mail.event">TransportEvent</A>
<DD>Return the addresses to which this message was sent succesfully.
<DT><A HREF="../javax/mail/SendFailedException.html#getValidSentAddresses()"><B>getValidSentAddresses()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/SendFailedException.html" title="class in javax.mail">SendFailedException</A>
<DD>Return the addresses to which this message was sent succesfully.
<DT><A HREF="../javax/mail/event/TransportEvent.html#getValidUnsentAddresses()"><B>getValidUnsentAddresses()</B></A> -
Method in class javax.mail.event.<A HREF="../javax/mail/event/TransportEvent.html" title="class in javax.mail.event">TransportEvent</A>
<DD>Return the addresses that are valid but to which this message
was not sent.
<DT><A HREF="../javax/mail/SendFailedException.html#getValidUnsentAddresses()"><B>getValidUnsentAddresses()</B></A> -
Method in exception javax.mail.<A HREF="../javax/mail/SendFailedException.html" title="class in javax.mail">SendFailedException</A>
<DD>Return the addresses that are valid but to which this message
was not sent.
<DT><A HREF="../javax/mail/Header.html#getValue()"><B>getValue()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Header.html" title="class in javax.mail">Header</A>
<DD>Returns the value of this header.
<DT><A HREF="../javax/mail/internet/HeaderTokenizer.Token.html#getValue()"><B>getValue()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/HeaderTokenizer.Token.html" title="class in javax.mail.internet">HeaderTokenizer.Token</A>
<DD>Returns the value of the token just read.
<DT><A HREF="../javax/mail/internet/InternetHeaders.InternetHeader.html#getValue()"><B>getValue()</B></A> -
Method in class javax.mail.internet.<A HREF="../javax/mail/internet/InternetHeaders.InternetHeader.html" title="class in javax.mail.internet">InternetHeaders.InternetHeader</A>
<DD>Return the "value" part of the header line.
<DT><A HREF="../javax/mail/Provider.html#getVendor()"><B>getVendor()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Provider.html" title="class in javax.mail">Provider</A>
<DD>Returns name of vendor associated with this implementation or null
<DT><A HREF="../javax/mail/Provider.html#getVersion()"><B>getVersion()</B></A> -
Method in class javax.mail.<A HREF="../javax/mail/Provider.html" title="class in javax.mail">Provider</A>
<DD>Returns version of this implementation or null if no version
<DT><A HREF="../javax/mail/search/ComparisonTerm.html#GT"><B>GT</B></A> -
Static variable in class javax.mail.search.<A HREF="../javax/mail/search/ComparisonTerm.html" title="class in javax.mail.search">ComparisonTerm</A>
<DD>
</DL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Package</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Index</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="index-6.html"><B>PREV LETTER</B></A>
<A HREF="index-8.html"><B>NEXT LETTER</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html?index-filesindex-7.html" target="_top"><B>FRAMES</B></A>
<A HREF="index-7.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<A HREF="index-1.html">A</A> <A HREF="index-2.html">B</A> <A HREF="index-3.html">C</A> <A HREF="index-4.html">D</A> <A HREF="index-5.html">E</A> <A HREF="index-6.html">F</A> <A HREF="index-7.html">G</A> <A HREF="index-8.html">H</A> <A HREF="index-9.html">I</A> <A HREF="index-10.html">J</A> <A HREF="index-11.html">K</A> <A HREF="index-12.html">L</A> <A HREF="index-13.html">M</A> <A HREF="index-14.html">N</A> <A HREF="index-15.html">O</A> <A HREF="index-16.html">P</A> <A HREF="index-17.html">Q</A> <A HREF="index-18.html">R</A> <A HREF="index-19.html">S</A> <A HREF="index-20.html">T</A> <A HREF="index-21.html">U</A> <A HREF="index-22.html">V</A> <A HREF="index-23.html">W</A> <A HREF="index-24.html">X</A> <HR>
Copyright © 2012 <a href="http://www.oracle.com">Oracle</a>. All Rights Reserved.
</BODY>
</HTML>
|
功能扩展/uexImageBrowser/widget/uexImageBrowser.html | xinghuanyu/appcan-docs | <!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport"
content="target-densitydpi=device-dpi, width=device-width, initial-scale=1.0, user-scalable=no" />
<link rel="stylesheet" type="text/css" href="css/index.css">
<title>图片浏览功能</title>
<script type="text/javascript">
window.uexOnload = function() {
uexImageBrowser.cbPick = function(opCode, dataType, data) {
//document.getElementById('pickImage').innerHTML = data;
if (data.indexOf(',') >= 0) {
var arr = data.split(',');
var len = arr.length;
for (var i = 0; i < len; i++) {
$('<img src="' + arr[i] + '" name="img" style="width: 4em; height: 4em; padding:2pxp;">').appendTo($('#piclist'));
}
} else {
$('<img src="' + data + '" name="img" style="width: 4em; height: 4em; padding:2pxp;">').appendTo($('#piclist'));
}
}
uexImageBrowser.cbCropImage = function(opCode, dataType, data){
$('<img src="' + data + '" name="img" style="width: 4em; height: 4em; padding:2pxp;">').appendTo($('#piclist'));
}
uexImageBrowser.cbSave = function(opCode, dataType, data) {
if (data == 0) {
alert("保存成功!");
} else if (data == 1) {
alert("保存失败!");
}
}
uexWidgetOne.onError = function(opCode, errorCode, errorDesc) {
alert(errorCode + ":" + errorDesc);
}
}
function openImageGallery() {
var array = document.getElementsByName("img");
if(array.length > 0){
var data = new Array(array.length);
for(var i = 0; i < array.length; i++){
data[i] = array[i].src;
}
uexImageBrowser.open(data);
}else{
alert("please choose picture first!");
}
}
function openImageGalleryWithIndex() {
var array = document.getElementsByName("img");
if(array.length > 0){
var data = new Array(array.length);
for(var i = 0; i < array.length; i++){
data[i] = array[i].src;
}
uexImageBrowser.open(data, 1);
}else{
alert("please choose picture first!");
}
}
function saveImg() {
var pic = document.getElementById('saveImgSrc').value;
uexImageBrowser.save(pic);
}
function cleanCache(){
alert("cleanCache");
uexImageBrowser.cleanCache();
}
function cropImage(){
uexImageBrowser.cropImage();
}
</script>
<script src="js/appcan.js"></script>
<script src="js/appcan.control.js"></script>
<script src="js/appcan.tab.js"></script>
</head>
<body>
<div class="tit">图片浏览功能</div>
<div class="conbor">
<div class="consj">
<span>1.从媒体库选择一张图片:</span> <input class="btn" type="button"
value="选择单张图片" onclick="uexImageBrowser.pick();">
<span>2.从媒体库选择多张图片:</span>
<input class="btn" type="button" value="选择多张图片" onclick="uexImageBrowser.pickMulti(10);">
<div id="piclist" >
<img src="wgtRes/appcan.png" name="img" style="width: 4em; height: 4em; padding:2pxp;">
</div>
<br>
<input class="btn" type="button" value="打开图片浏览器"
onclick="openImageGallery();"> <input class="btn"
type="button" value="有索引打开" onclick="openImageGalleryWithIndex();">
<input class="textbox" type="text" value="res://appcan.png" id="saveImgSrc">
<input class="btn" type="button" value="保存" onclick="saveImg();">
<input class="btn" type="button" value="裁剪图片" onclick="cropImage();">
<input class="btn" type="button" value="清除缓存" onclick="cleanCache();">
</div>
</div>
</body>
</html> |
third_party/js/jquery-ui/tests/visual/button/performance.html | googlearchive/caja | <!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Button Visual Test: Initialization Performance</title>
<link rel="stylesheet" href="../../../themes/base/jquery.ui.all.css">
<script src="../../../jquery-1.8.2.js"></script>
<script src="../../../ui/jquery.ui.core.js"></script>
<script src="../../../ui/jquery.ui.widget.js"></script>
<script src="../../../ui/jquery.ui.button.js"></script>
<script>
$(function() {
var start,
html = new Array( 500 ).join( "<button>button</button>" );
$( html ).appendTo( "body" );
start = $.now();
$( "button" ).button();
$( "<p>" ).text( "Time to initialize: " + ($.now() - start) + "ms" ).prependTo( "body" );
});
</script>
</head>
<body>
</body>
</html>
|
third_party/webgl/src/conformance-suites/1.0.2/conformance/ogles/GL/log2/log2_001_to_008.html | guorendong/iridium-browser-ubuntu | <!DOCTYPE html>
<!-- this file is auto-generated. DO NOT EDIT.
/*
** 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.
*/
-->
<html>
<head>
<meta charset="utf-8">
<title>WebGL GLSL conformance test: log2_001_to_008.html</title>
<link rel="stylesheet" href="../../../../resources/js-test-style.css" />
<link rel="stylesheet" href="../../../resources/ogles-tests.css" />
<script src="../../../../resources/js-test-pre.js"></script>
<script src="../../../resources/webgl-test.js"></script>
<script src="../../../resources/webgl-test-utils.js"></script>
<script src="../../ogles-utils.js"></script>
</head>
<body>
<canvas id="example" width="500" height="500" style="width: 16px; height: 16px;"></canvas>
<div id="description"></div>
<div id="console"></div>
</body>
<script>
"use strict";
OpenGLESTestRunner.run({
"tests": [
{
"referenceProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_float_frag_xvary_ref.frag"
},
"model": null,
"testProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_float_frag_xvary.frag"
},
"name": "log2_float_frag_xvary.test.html",
"pattern": "compare"
},
{
"referenceProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_float_frag_xvary01_ref.frag"
},
"model": null,
"testProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_float_frag_xvary01.frag"
},
"name": "log2_float_frag_xvary01.test.html",
"pattern": "compare"
},
{
"referenceProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec2_frag_xvary_ref.frag"
},
"model": null,
"testProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec2_frag_xvary.frag"
},
"name": "log2_vec2_frag_xvary.test.html",
"pattern": "compare"
},
{
"referenceProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec2_frag_xvary01_ref.frag"
},
"model": null,
"testProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec2_frag_xvary01.frag"
},
"name": "log2_vec2_frag_xvary01.test.html",
"pattern": "compare"
},
{
"referenceProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec3_frag_xvary_ref.frag"
},
"model": null,
"testProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec3_frag_xvary.frag"
},
"name": "log2_vec3_frag_xvary.test.html",
"pattern": "compare"
},
{
"referenceProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec3_frag_xvary01_ref.frag"
},
"model": null,
"testProgram": {
"vertexShader": "../default/default.vert",
"fragmentShader": "log2_vec3_frag_xvary01.frag"
},
"name": "log2_vec3_frag_xvary01.test.html",
"pattern": "compare"
},
{
"referenceProgram": {
"vertexShader": "log2_float_vert_xvary_ref.vert",
"fragmentShader": "../default/default.frag"
},
"model": "grid",
"testProgram": {
"vertexShader": "log2_float_vert_xvary.vert",
"fragmentShader": "../default/default.frag"
},
"name": "log2_float_vert_xvary.test.html",
"pattern": "compare"
},
{
"referenceProgram": {
"vertexShader": "log2_float_vert_xvary01_ref.vert",
"fragmentShader": "../default/default.frag"
},
"model": "grid",
"testProgram": {
"vertexShader": "log2_float_vert_xvary01.vert",
"fragmentShader": "../default/default.frag"
},
"name": "log2_float_vert_xvary01.test.html",
"pattern": "compare"
}
]
});
var successfullyParsed = true;
</script>
</html>
|
webapi/webapi-vehicleinfo-ivi-tests/vehicleinfo/EngineOil_attributes.html | pk-sam/crosswalk-test-suite | <!DOCTYPE html>
<!--
Copyright (c) 2014 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Xu, Kang <kangx.xu@intel.com>
-->
<meta charset="utf-8">
<title>Vehicle Test: EngineOil - attributes</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="http://rawgit.com/w3c/automotive-bg/master/data_spec.html">
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/support.js"></script>
<div id="log"></div>
<script>
[
["number", "level", "readonly"],
["number", "lifeRemaining", "readonly"],
["number", "temperature", "readonly"],
["number", "pressure", "readonly"],
["boolean", "change", "readonly"]
].forEach(function (attr) {
var type = attr[0];
var name = attr[1];
var read = attr[2];
async_test(function (t) {
assert_true("engineOil" in vehicle, "the vehicle.engineOil exists");
var getAvailability = vehicle.engineOil.availableForRetrieval(name);
var setAvailability = vehicle.engineOil.availableForSetting(name);
if (getAvailability === "available") {
vehicle.engineOil.get().then(
function (engineOil) {
t.step(function () {
assert_true(name in engineOil, "the EngineOil." + name + " exists");
assert_equals(typeof engineOil[name], type, "the type of EngineOil." + name);
if (setAvailability === "available") {
var variable = engineOil[name];
var varType = typeof variable;
var setVar;
switch (varType) {
case "number":
setVar = variable + 1;
break;
case "string":
setVar = variable + "a";
break;
case "boolean":
setVar = !variable;
break;
default:
setVar = null;
}
vehicle.engineOil.set({name : setVar}).then(
function (veh) {
t.step(function () {
assert_equals(veh[name], variable);
});
t.done();
},
function (error) {
t.step(function () {
assert_unreached(error.message);
});
t.done();
}
);
} else {
//Compliance test passes as the feature is not implemented
t.done();
}
});
},
function (error) {
t.step(function () {
assert_unreached(error.message);
});
t.done();
}
);
} else {
//Compliance test passes as the feature is not implemented
t.done();
}
}, "Check if " + read + " EngineOil." + name + " exists and type of " + type);
});
</script>
|
web/css/siwapp/login.css | siwapp/siwapp-sf1 | html, #bd, #bd-content {
/* overflow:hidden; */
background-color:#F9F9F9;
}
.login-form {
border-width:1px;
border-style:solid;
border-color:#E5E5E5;
-webkit-border-radius:10px;
-moz-border-radius:10px;
border-radius:10px;
padding:3em;
background-color:#FFF;
margin-bottom:1em;
}
.login-form ul.error_list { font-size:1em; color:#DA4722; margin:0.2em 0 0.5em; }
.login-form label { display:block; margin-bottom:0.3em; font-size:1.4em; }
.login-form li.buttons { margin-top:2em; text-align:right; }
.login-form .btn { font-size:1.6em; }
#bd-login-form {
position:absolute;
top:50%;
left:50%;
width:36em;
margin-left:-18em;
margin-top:-19em;
}
#login-form {
padding:120px 3em 3em;
background-image:url(../../images/logo2.gif);
background-repeat:no-repeat;
background-position:2em 0.8em;
}
#login-form li.row { margin-top:1em; }
#login-form ul.error_list { color:#DA4722; }
#username_email,
#signin_username,
#signin_password {
border-color:#E5E5E5;
background-color:#F9F9F9;
font-size:2.2em;
line-height:1em;
padding:0.3em 0.2em;
width:290px;
}
#errors-form label {
background:transparent url(../../images/icons/exclamation.png) no-repeat center left;
padding:0 0 0 25px;
margin-bottom:1em;
color:#DA4722;
font-weight:bold;
}
#errors-form li { font-size:1.2em; margin-bottom:5px; }
#login-form li#remember-me-option { line-height:1em; font-size:0.85em; margin-top:2em; }
#login-form li#remember-me-option input { position:relative; top:-1px; }
#login-form li#remember-me-option label { display:inline; margin:0 0 0 5px; }
#password-close { display:block; width:16px; height:16px; padding:0; margin:0 0 0.5em; float:right; position:relative; top:-1em; left:1em; }
#password-form-contents p { font-size:1.2em; line-height:1.4em; margin:2em 0; }
#siwapp_site_link { float: right; font-size:0.9em;} |
idea/feincms/templates/breadcrumbs.html | mcmaxwell/idea_digital_agency | <ul class="breadcrumbs">
{% for url, title in trail %}
<li>
{% if url %}
<a href="{{ url }}">{{ title }}</a>
{% else %}
{{ title }}
{% endif %}
</li>
{% endfor %}
</ul> |
test/philip.html5.org/tests/2d.gradient.interpolate.colour.html | kangax/webgl-2d | <!DOCTYPE html>
<title>Canvas test: 2d.gradient.interpolate.colour</title>
<script src="../tests.js"></script>
<link rel="stylesheet" href="../tests.css">
<link rel="prev" href="2d.gradient.interpolate.solid.html" title="2d.gradient.interpolate.solid">
<link rel="next" href="2d.gradient.interpolate.alpha.html" title="2d.gradient.interpolate.alpha">
<body class="show_output">
<p>
<a href="2d.gradient.interpolate.solid.html" accesskey="p" title="[p] 2d.gradient.interpolate.solid"><</a>
<a href="index.html">[index]</a>
<a href="2d.gradient.interpolate.alpha.html" accesskey="n" title="[n] 2d.gradient.interpolate.alpha">></a>
<h1><a href="index.2d.html">2d</a>.<a href="index.2d.gradient.html">gradient</a>.<a href="index.2d.gradient.interpolate.html">interpolate</a>.colour</h1>
<p class="desc"></p>
<div class="refs">References:
<ul>
<li><a href="spec.html#testrefs.2d.gradient.interpolate.linear">2d.gradient.interpolate.linear</a>
</ul>
</div>
<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="2d.gradient.interpolate.colour.png" class="output expected" id="expected" alt="">
<ul id="d"></ul>
<script>
_addTest(function(canvas, ctx) {
var g = ctx.createLinearGradient(0, 0, 100, 0);
g.addColorStop(0, '#ff0');
g.addColorStop(1, '#00f');
ctx.fillStyle = g;
ctx.fillRect(0, 0, 100, 50);
_assertPixelApprox(canvas, 25,25, 191,191,63,255, "25,25", "191,191,63,255", 3);
_assertPixelApprox(canvas, 50,25, 127,127,127,255, "50,25", "127,127,127,255", 3);
_assertPixelApprox(canvas, 75,25, 63,63,191,255, "75,25", "63,63,191,255", 3);
});
</script>
|
wp-content/themes/earthandcity/Options-Framework-master/admin/assets/css/admin-style.css | allenca/earthAndCity | /*-----------------------------------------------------------------------------------
/* Admin styles
/*-----------------------------------------------------------------------------------*/
.smof_footer_info{
width: 785px;
margin: 0 15px;
font-size: 11px;
color: #999;
text-align: center;
}
.updated, .error {
display:none!important
} /* disable the admin notices */
#of_container {
margin: 15px 15px 5px 15px;
width: 785px;
position:relative;
z-index: 0
}
#of_container #header {
height: 70px;
background:#f1f1f1;
border: 1px solid #ccc;
-webkit-border-radius: 6px 6px 0 0;
-moz-border-radius: 6px 6px 0 0;
border-radius: 6px 6px 0 0;
background-image: -ms-linear-gradient(top,#f9f9f9,#ececec);
background-image: -moz-linear-gradient(top,#f9f9f9,#ececec);
background-image: -o-linear-gradient(top,#f9f9f9,#ececec);
background-image: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
background-image: -webkit-linear-gradient(top,#f9f9f9,#ececec);
background-image: linear-gradient(top,#f9f9f9,#ececec);
-moz-box-shadow: inset 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
}
#of_container #header .logo {
float: left;
margin:10px 20px;
}
#of_container #js-warning {
color: red;
float: left;
margin: 20px 10px;
width: 330px;
}
#of_container ul,#of_container ol {margin: 0;}
.js #of_container #js-warning {
display: none;
}
#of_container #header .logo h2 {
display:inline-block;
font-style:normal;
padding-right:5px;
}
#of_container #header .logo span {
color:#888888;
}
#of_container #header .icon-option {
float: right;
height: 32px;
width: 32px;
background: url(../images/icon_option.png) no-repeat;
margin:20px 30px 0;
}
#of_container #info_bar {
background: #f3f3f3;
border:solid #d8d8d8;
border-bottom:1px solid #D8D8D8;
border-width:0px 1px 1px 1px;
padding: 6px 20px 0px 6px;
height: 31px;
text-align: right;
-moz-box-shadow: inset 0 1px 0 #fcfcfc;
-webkit-box-shadow: inset 0 1px 0 #fcfcfc;
box-shadow: inset 0 1px 0 #fcfcfc;
}
#of_container #expand_options{
cursor: pointer;
display: block;
height: 22px;
width: 21px;
float: left;
font-size:0px;
text-indent: -9999px;
margin: 0 0 0 10px;
border: 1px solid #bbb;
-webkit-border-radius: 2px;
-moz-border-radius: 2px;
border-radius: 2px;
}
#of_container #info_bar .expand { background: url(../images/toggle_tabs.png) no-repeat -2px -1px; }
#of_container #info_bar .close { background: url(../images/toggle_tabs.png) no-repeat -2px -26px; }
#of_container #expand_options:hover {
cursor: pointer;
border-color: #888;
}
#of_container #main {
background-color: #f1f1f1;
border-left: 1px solid #d8d8d8;
border-right: 1px solid #d8d8d8;
border-bottom: 1px solid #d8d8d8;
}
#of_container #of-nav {
float: left;
position: relative;
z-index: 9999;
width: 160px;
}
#of_container #of-nav ul {
margin:0;
}
#of_container #of-nav li {
margin-bottom:0;
-moz-box-shadow: inset 0 1px 0 #f9f9f9;
-webkit-box-shadow: inset 0 1px 0 #f9f9f9;
box-shadow: inset 0 1px 0 #f9f9f9;
margin-right: 1px;
border-bottom: 1px solid #d8d8d8;
}
#of_container #of-nav li:last-child {
-moz-box-shadow: inset 0 1px 0 #f9f9f9, 0 1px 0 #f9f9f9;
-webkit-box-shadow: inset 0 1px 0 #f9f9f9, 0 1px 0 #f9f9f9;
box-shadow: inset 0 1px 0 #f9f9f9, 0 1px 0 #f9f9f9;
}
#of_container #of-nav li.current {
margin-right: 0;
}
#of_container #of-nav li a, #of_container #of-nav ul li a:link, #of-nav ul li a:visited {
display: block;
padding: 10px 10px 10px 40px;
background-repeat: no-repeat;
background-position: 13px 10px;
font-weight:bold;
font-size: 12px;
text-decoration: none;
color: #555;
opacity: 0.5;
}
#of_container #of-nav ul li.current a {
background-color: #fcfcfc;
color: #797979;
opacity: 1;
}
#of_container #of-nav ul li a:hover {
color: #d54e21;
opacity: 1;
}
/*menu icons - customize to your liking*/
#of_container #of-nav li.slideroptions a{ background-image:url(../images/icon-slider.png);}
#of_container #of-nav li.generalsettings a{ background-image:url(../images/icon-settings.png);}
#of_container #of-nav li.stylingoptions a{ background-image:url(../images/icon-paint.png);}
#of_container #of-nav li.exampleoptions a{ background-image:url(../images/icon-docs.png);}
#of_container #of-nav li.homesettings a{ background-image:url(../images/icon-home.png);}
#of_container #of-nav li.backupoptions a {background: url(../images/icon-backup.png) no-repeat;}
#of_container #of-nav li.advancedsettings a {background: url(../images/wrench16.png) no-repeat;}
#of_container #content {
float: left;
min-height: 500px;
width: 595px;
margin-left: -1px;
padding: 0 14px;
font-family: "Lucida Grande", Sans-serif;
background-color: #FCFCFC;
border-left: 1px solid #d8d8d8;
-moz-box-shadow: inset 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
}
#of_container #content .section {
margin-bottom: 10px;
}
#of_container #content .section h3.heading {
font-family:;
margin: 10px 0 10px 0;
padding: 7px 0px;
border-bottom: 1px solid #e7e7e7;
}
#of_container #content .section .controls {
position: relative;
float: left;
width: 345px;
margin: 0 15px 0 0;
}
#of_container #content .section .explain {
float: left;
width: 225px;
padding: 0 10px 0 0;
font-size: 11px;
color: #999999;
}
#of_container #content .section-checkbox .controls {
width:25px
}
#of_container #content .section-multicheck .controls input.checkbox {
margin-right: 5px;
}
#of_container #content .section-checkbox .explain {
max-width:93%;
}
#of_container #content .section-info h3.heading {
display:none;
}
#of_container #content .section-info .controls {
margin: 20px 0 0;
float:none;
width: auto;
}
#of_container #content .section-info .controls .of-info{
padding: 15px 10px;
line-height: 1.5em;
font-size: 12px;
background-color: #EFF9FF;
border: 1px solid #D6F0FF;
color:#777;
}
#of_container #content .section-info .controls .of-info ._icon {
height:16px; width:16px;
margin: 0 10px 0 0;
float: left;
}
#of_container #content .section-info .controls small {
font-size: 12px
}
#of_container #content .section-info h3.heading {
-webkit-border-radius: 3px 3px 0 0;
-moz-border-radius: 3px 3px 0 0;
border-radius: 3px 3px 0 0;
}
#of_container #content .section-info .controls {
-webkit-border-radius: 0 0 3px 3px;
-moz-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
}
#of_container .sorter {margin-right: -20px;}
#of_container .sorter ul {
background: #F9F9F9;
border: 1px dashed #E3E3E3;
min-height: 40px;
padding: 10px 10px 0;
width: 145px;
float: left;
margin: 0 15px 0 0;
}
#of_container .sorter ul h3 {
margin: 0 0 10px;
text-align: center;
color: #777;
text-transform: capitalize;
}
#of_container .sorter ul li {
border: 1px solid #DFDFDF;
cursor: move;
font-weight: bold;
margin-bottom:10px;
padding:0 10px;
height: 40px;
line-height: 40px;
background-color: #F1F1F1;
background-image: -ms-linear-gradient(top,#f9f9f9,#ececec);
background-image: -moz-linear-gradient(top,#f9f9f9,#ececec);
background-image: -o-linear-gradient(top,#f9f9f9,#ececec);
background-image: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
background-image: -webkit-linear-gradient(top,#f9f9f9,#ececec);
background-image: linear-gradient(top,#f9f9f9,#ececec);
overflow: hidden;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: inset 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
text-align:center;
}
#of_container #content .section-sorter li.placeholder {
background:#f9f9f9;
border-width:1px;
border-style:dashed;
height:40px;}
#of_container #content .section-slider li.placeholder {
background:#f9f9f9;
border-width:1px;
border-style:dashed;
height:33px;}
#of_container textarea, #of_container input[type="text"], #of_container select, #of_container button{
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
border-style:solid;
border-width:1px;
}
#of_container .controls input[type="text"], #of_container .controls select, #of_container .controls textarea {
margin-bottom: 9px !important;
background-color: #f1f1f1;
border: 1px solid;
border-color: #ccc #e6e6e6 #e6e6e6 #ccc;
width: 340px;
padding: 4px;
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
font-size: 12px;
}
#of_container .controls input[type="text"]:hover, #of_container .controls textarea:hover {
background-color: #f9f9f9;
}
#of_container .controls input[type="text"]:focus, #of_container .controls textarea:focus {
background-color: #fff;
border-color: #ccc #e6e6e6 #e6e6e6 #ccc;
outline:0;
}
#of_container .controls .upload {
width: 340px;
}
#of_container .controls select {
height: 28px;
padding: 4px 5px;
width: 340px
}
#of_container .controls textarea {
width: 345px;
}
#of_container input[type=text] {
width: 340px;
}
#of_container input.checkbox {
width: auto;
}
#of_container input.of-radio {
width: auto;
}
label.radio, label.multicheck {
position: relative;
}
#of_container .controls .input-text-small {
width: 60px;
margin-right:10px
}
#of_container .meta-two {
margin-right:10px
}
#of_container #content .section-typography .controls {
width:440px
}
#of_container #content .section-typography .explain {
width:130px
}
#of_container .controls .of-typography-size {
width:70px;
float:left
}
#of_container .controls .of-typography-unit {
width:60px;
float:left
}
#of_container .controls .of-typography-face {
width:145px;
float:left
}
#of_container .controls .of-typography-style {
width:95px;
float:left
}
#of_container .controls .of-radio-img-img {
border:3px solid #fff;
margin:0 5px 10px 0;
display:none;
cursor:pointer;
float:left;
}
#of_container .controls .of-radio-img-selected {
border:3px solid #ccc
}
#of_container .controls .of-radio-img-img:hover {
opacity:.8;
}
#of_container .controls .of-radio-tile-img {
width:50px;
height:50px;
border:3px solid #f9f9f9;
margin:0 5px 10px 0;
display:none;
cursor:pointer;
float:left;
}
#of_container .controls .of-radio-tile-selected {
border:3px solid #DB423D
}
#of_container .controls .of-radio-tile-img:hover {
opacity:.8;
}
#of_container .controls .of-border-width {
width:70px;
float:left
}
#of_container .controls .of-border-style {
width:95px;
float:left
}
#of_container .group {
display:none;
padding-bottom:20px;
}
#of_container .group h2 {
display:none;
border-bottom:3px solid #e7e7e7
}
#of_container .controls input:focus, #of_container select:focus, #of_container textarea:focus {
background:#fff;
}
#of_container .accept {
background: #DBF6BE no-repeat 10px center;
border: solid #9BBF65;
border-width: 0px 1px 1px 1px;
color: #060;
font-weight: bold;
padding: 10px;
text-align: center;
}
#of_container .warning {
background: #ffeeee no-repeat 10px center;
;
border: solid #dfbfbf;
border-width: 0px 1px 1px 1px;
color: #333;
font-weight: bold;
padding: 10px;
text-align: center;
}
#of_container .update_available {
background: #FFFEEB no-repeat 10px center;
border: solid #CCCCCC;
border-width: 0px 1px 1px 1px;
color: #333;
font-weight: bold;
padding: 10px;
text-align: center;
}
#of_container .of-save-popup {
position:absolute;
background:rgba(0, 0, 0, 0.5);
color:#fff;
font-size:24px;
text-align:center;
display:none;
-webkit-border-radius: 12px;
-moz-border-radius: 12px;
border-radius: 12px;
}
#of_container .of-save-popup div{
background-repeat: no-repeat;
background-position: 20px 50%;
padding:30px 30px 30px 60px;
}
#of_container .of-save-save {
background-image: url(../images/button_check.png);
}
#of_container .of-save-reset {
background-image: url(../images/sign_warning.png);
}
#of_container .of-save-fail {
background-image:url(../images/stop.png);
}
#of_container .accept,
#of_container .warning,
#of_container .update_available,
#of_container .of-save-popup {
z-index: 9999;
}
#of_container .upload_button_div {
margin-top:7px;
margin-bottom: 15px;
}
#of_container .button {
border-width: 1px;
border-style: solid;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
border-color: #dfdfdf;
background-color: #fff;
margin:4px 0 4px;
}
#of_container .button:hover,#of_container .button_hover {
border-color: #bbb;
color: #464646;
}
#of_container .button_active {
background:#eee url(../../images/white-grad-active.png) repeat-x scroll left top;
}
#of_container .image_reset_button, #of_container .button.remove-image {
margin-left:10px;
color:#ef521d;
}
#of_container .image_reset_button:hover, #of_container .button.remove-image:hover {
color:red;
}
#of_container .upload-error {
float:left;
color:#666;
font-size:10px;
font-weight:bold;
text-decoration:none;
text-shadow:1px 1px 0 #FFFFFF;
margin: 0 10px 0 0;
padding:3px 10px;
background:#FFDFEC;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
#of_container .reset-button {
font-family:Arial,Verdana,sans-serif;
float:left;
margin:0 ;
color: #ef521d;
border-color: #bbb;
}
#of_container .reset-button:hover { color: #ef521d; border-color: #888}
#of_container .slide_add_button { float:right; margin-top:10px; }
#of_container .save_bar {
background: #f3f3f3;
border:solid #ccc;
border-width:0px 1px 1px 1px;
padding: 10px 20px 0px 20px;
height: 35px;
text-align: right;
-webkit-border-radius: 0 0 3px 3px;
-moz-border-radius: 0 0 3px 3px;
border-radius: 0 0 3px 3px;
-moz-box-shadow: inset 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
}
#of_save {
font-family: Arial,Verdana,sans-serif;
float:right;
}
#of_save:hover {
border:1px solid #111 !important;
}
#of_container .hide {
display:none
}
#of_container .ajax-loading-img-top {
margin: 5px 4px 0;
float:left
}
#of_container .ajax-loading-img-bottom {
margin: 5px 4px 0;
}
#of_container .ajax-reset-loading-img {
display: block;
margin-left: 100px;
}
#of_container .screenshot {
max-width:340px;
margin-bottom:9px;
}
#of_container .of-uploaded-image {
}
#of_container .of-option-image {
max-width:340px;
padding: 5px;
border:1px solid #e3e3e3;
background:#f7f7f7;
-moz-border-radius: 3px;
-khtml-border-radius: 3px;
-webkit-border-radius: 3px;
border-radius: 3px;
}
#of_container .select_wrapper {
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
border-radius: 4px;
font-family: "Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
font-size: 12px;
background: #F1F1F1 url(../images/select.png) no-repeat right center;
border-color: #CCC #E6E6E6 #E6E6E6 #CCC;
border-style: solid;
border-width: 1px;
float: left;
height: 26px;
width: 344px;
margin: 0;
margin-bottom: 9px !important;
width: 340px;
display: block;
color: #888;
position:relative;
}
#of_container .select_wrapper:hover {background-color:#f9f9f9;}
#of_container .mini .controls select, #of_container #content .section .mini .controls, #of_container .controls .typography-size, #of_container .controls .border-width,#of_container .controls .mini,#of_container .mini .controls input, #of_container #content .mini .controls {width: 70px;}
#of_container .controls .typography-face {width: 145px;}
#of_container .controls .typography-style, #of_container .controls .border-style {width: 95px;}
#of_container .controls .typography-size,#of_container .controls .typography-face,#of_container .controls .typography-style, #of_container .controls .border-width, #of_container .controls .border-style {margin-right:5px;}
#of_container #content .mini .explain {
width:500px;
}
#of_container .of-notice {
background: #ffd1d1;
border:1px solid #DFDFDF;
-moz-border-radius:8px;
text-align: center;
margin-bottom: 15px
}
#of_container .slider li {
width: 345px;
border: 1px solid #dfdfdf;
background:#f9f9f9;
overflow:hidden;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-moz-box-shadow: inset 0 1px 0 #fff;
-webkit-box-shadow: inset 0 1px 0 #fff;
box-shadow: inset 0 1px 0 #fff;
}
#of_container .slide_header {
cursor:move;
height:32px;
padding-left:10px;
padding-right:20px;
line-height:32px;
background-color: #F1F1F1;
margin: 1px 0 -1px 0;
border-bottom: 1px solid #dfdfdf;
background-image: -ms-linear-gradient(top,#f9f9f9,#ececec);
background-image: -moz-linear-gradient(top,#f9f9f9,#ececec);
background-image: -o-linear-gradient(top,#f9f9f9,#ececec);
background-image: -webkit-gradient(linear,left top,left bottom,from(#f9f9f9),to(#ececec));
background-image: -webkit-linear-gradient(top,#f9f9f9,#ececec);
background-image: linear-gradient(top,#f9f9f9,#ececec);
overflow:hidden;
position: relative;
}
#of_container .slide_body {
display:none;
padding:10px 10px 10px 11px;
}
#of_container .slider li input,#of_container .slider li input.upload,#of_container .slider li textarea,#of_container .slider li .screenshot,#of_container .slider li .of-option-image {
width:311px;
}
#of_container a.slide_edit_button, #of_container a.slide_delete_button {
text-indent:-9999px;
font-size:0;
}
#of_container a.slide_edit_button {
position: absolute;
right: 0;
top: 0;
width:32px;
height:32px;
background: url(../images/dropdown-arrow.png) no-repeat 9px -28px;
}
#of_container a:hover.slide_edit_button {
background: url(../images/dropdown-arrow.png) no-repeat 9px 11px;}
#of_container a.slide_delete_button {
float: right;
margin: 0 0 0 7px;
width:16px;
height:16px;
background: url(../images/icon-delete.png) no-repeat
}
#of_container .select_wrapper span {
height: 26px;
line-height: 26px;
z-index: 2;
padding-left: 6px;
position:absolute;
left:0;
}
#of_container .select_wrapper .select {
cursor: pointer;
height: 28px;
margin: 0;
-moz-opacity: 0;
filter: alpha(opacity: 0);
opacity: 0;
padding: 0;
position: relative;
width: inherit;
z-index: 4;
}
#of_backup {
margin: 40px 20px;
width: 600px;
}
#of_backup textarea {
margin-bottom: 9px !important;
background-color: #F1F1F1;
border: 1px solid;
width: 100%;
padding: 4px;
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, Verdana, sans-serif;
font-size: 12px;
border-color: #CCC #E6E6E6 #E6E6E6 #CCC;
}
#of_container #content .section-backup .controls { width: 80%}
#of_container #content .section-backup .explain {
display:none
}
#of_container #content .section-backup .backup-box {
margin: 0 0 20px;
}
#of_container #content .section-backup .instructions {
margin: 0 0 10px;
color: #777;
}
#of_container #content .section-backup .button, #of_container #content .section-transfer .button {
margin: 0 25px 0 0;
}
/* google fonts previewer field style */
#of_container p.google_font_preview{
display: block;
border: 1px dotted lightgray;
float: left;
padding: 10px;
font-size: 10pt;
width: 318px;
height: auto;
margin: 0 0 10px 0;
line-height: 1.2;
}
.temphide {display:none;}
/*-------------------------------------------------------------------------------------------*/
/* GENERAL STYLES */
/*-------------------------------------------------------------------------------------------*/
/* http://sonspring.com/journal/clearing-floats */
html body * span.clear, html body * div.clear, html body * li.clear, html body * dd.clear {
background: none;
border: 0;
clear: both;
display: block;
float: none;
font-size: 0;
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
visibility: hidden;
width: 0;
height: 0;
}
/*-------------------------------------------------------------------------------------------*/
/* Tipsy
/*-------------------------------------------------------------------------------------------*/
.tipsy { font-size: 10px; position: absolute; padding: 5px; z-index: 100000; }
.tipsy-inner { background-color: #000; color: #FFF; max-width: 200px; padding: 5px 8px 4px 8px; text-align: center; }
/* Rounded corners */
.tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }
/* Uncomment for shadow */
/*.tipsy-inner { box-shadow: 0 0 5px #000000; -webkit-box-shadow: 0 0 5px #000000; -moz-box-shadow: 0 0 5px #000000; }*/
.tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; }
/* Rules to colour arrows */
.tipsy-arrow-n { border-bottom-color: #000; }
.tipsy-arrow-s { border-top-color: #000; }
.tipsy-arrow-e { border-left-color: #000; }
.tipsy-arrow-w { border-right-color: #000; }
.tipsy-n .tipsy-arrow { top: 0px; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
.tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
.tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }
/*-------------------------------------------------------------------------------------------*/
/* Switch
/*-------------------------------------------------------------------------------------------*/
p.switch-options{ margin: 0; }
.cb-enable, .cb-disable, .cb-enable span, .cb-disable span { background: url(../images/switch.gif) repeat-x; display: block; float: left; }
.cb-enable span, .cb-disable span { line-height: 30px; display: block; background-repeat: no-repeat; font-weight: bold; }
.cb-enable span { background-position: left -90px; padding: 0 10px; }
.cb-disable span { background-position: right -180px;padding: 0 10px; }
.cb-disable.selected { background-position: 0 -30px; }
.cb-disable.selected span { background-position: right -210px; color: #fff; }
.cb-enable.selected { background-position: 0 -60px; }
.cb-enable.selected span { background-position: left -150px; color: #fff; }
.switch-options label { cursor: pointer; }
.switch-options input { display: none; }
.cb-enable span, .cb-disable span{
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
user-select: none;
}/*disable text selection*/
/*-------------------------------------------------------------------------------------------*/
/* Color picker overwrite
/*-------------------------------------------------------------------------------------------*/
#of_container .controls .wp-picker-container input.button{
width: auto;
height: auto;
line-height: 1.5;
padding: 2px 8px;
margin: 6px 6px 6px 6px;
}
#of_container .controls .of-color {
float: left;
width: 70px;
margin-left: 5px;
margin-top: 6px;
padding: 3px;
}
#of_container .controls .wp-color-result.wp-picker-open {
top: -3px;
}
#of_container #content .section-color .controls {
width: 345px;
}
#of_container #content .section-color .explain {
width: 225px;
}
#of_container #content .iris-picker .iris-strip .ui-slider-handle {
position: absolute;
background: none!important;
right: -3px;
left: -3px;
border: 4px solid #aaa!important;
border-width: 4px 3px;
width: auto;
height: 6px;
border-radius: 4px;
box-shadow: 0 1px 2px rgba(0,0,0,.2);
opacity: .9;
z-index: 5;
cursor: ns-resize;
}
#of_container #content .iris-picker .iris-slider-offset {
position: absolute;
top: 3px;
left: 0;
right: 0;
bottom: 6px;
width: 28px;
background: none!important;
border: 0!important;
height: auto;
}
#of_container .controls .wp-picker-container .wp-color-result { outline: 0; } |
src/commons-math3-3.6.1/docs/apidocs/org/apache/commons/math3/ode/nonstiff/class-use/MidpointIntegrator.html | asampley/FactorioRatioAssistant | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Uses of Class org.apache.commons.math3.ode.nonstiff.MidpointIntegrator (Apache Commons Math 3.6.1 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Uses of Class org.apache.commons.math3.ode.nonstiff.MidpointIntegrator (Apache Commons Math 3.6.1 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/commons/math3/ode/nonstiff/MidpointIntegrator.html" title="class in org.apache.commons.math3.ode.nonstiff">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/apache/commons/math3/ode/nonstiff/class-use/MidpointIntegrator.html" target="_top">Frames</a></li>
<li><a href="MidpointIntegrator.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="header">
<h2 title="Uses of Class org.apache.commons.math3.ode.nonstiff.MidpointIntegrator" class="title">Uses of Class<br>org.apache.commons.math3.ode.nonstiff.MidpointIntegrator</h2>
</div>
<div class="classUseContainer">No usage of org.apache.commons.math3.ode.nonstiff.MidpointIntegrator</div>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../../../overview-summary.html">Overview</a></li>
<li><a href="../package-summary.html">Package</a></li>
<li><a href="../../../../../../../org/apache/commons/math3/ode/nonstiff/MidpointIntegrator.html" title="class in org.apache.commons.math3.ode.nonstiff">Class</a></li>
<li class="navBarCell1Rev">Use</li>
<li><a href="../package-tree.html">Tree</a></li>
<li><a href="../../../../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../../../../index-all.html">Index</a></li>
<li><a href="../../../../../../../help-doc.html">Help</a></li>
</ul>
<div class="aboutLanguage"><em><script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script></em></div>
</div>
<div class="subNav">
<ul class="navList">
<li>Prev</li>
<li>Next</li>
</ul>
<ul class="navList">
<li><a href="../../../../../../../index.html?org/apache/commons/math3/ode/nonstiff/class-use/MidpointIntegrator.html" target="_top">Frames</a></li>
<li><a href="MidpointIntegrator.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 © 2003–2016 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
libs/log/doc/html/boost/log/sink_factory.html | rprata/boost | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct template sink_factory</title>
<link rel="stylesheet" href="../../../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html" title="Chapter 1. Boost.Log v2">
<link rel="up" href="../../utilities.html#header.boost.log.utility.setup.from_settings_hpp" title="Header <boost/log/utility/setup/from_settings.hpp>">
<link rel="prev" href="parse_formatte_idp46727120.html" title="Function template parse_formatter">
<link rel="next" href="init_from_settings.html" title="Function template init_from_settings">
</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></tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="parse_formatte_idp46727120.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.setup.from_settings_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="init_from_settings.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.log.sink_factory"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct template sink_factory</span></h2>
<p>boost::log::sink_factory</p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../utilities.html#header.boost.log.utility.setup.from_settings_hpp" title="Header <boost/log/utility/setup/from_settings.hpp>">boost/log/utility/setup/from_settings.hpp</a>>
</span><span class="keyword">template</span><span class="special"><</span><span class="keyword">typename</span> CharT<span class="special">></span>
<span class="keyword">struct</span> <a class="link" href="sink_factory.html" title="Struct template sink_factory">sink_factory</a> <span class="special">{</span>
<span class="comment">// types</span>
<span class="keyword">typedef</span> <span class="identifier">CharT</span> <a name="boost.log.sink_factory.char_type"></a><span class="identifier">char_type</span><span class="special">;</span> <span class="comment">// Character type. </span>
<span class="keyword">typedef</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">basic_string</span><span class="special"><</span> <span class="identifier">char_type</span> <span class="special">></span> <a name="boost.log.sink_factory.string_type"></a><span class="identifier">string_type</span><span class="special">;</span> <span class="comment">// String type. </span>
<span class="keyword">typedef</span> <a class="link" href="basic_settings_section.html" title="Class template basic_settings_section">basic_settings_section</a><span class="special"><</span> <span class="identifier">char_type</span> <span class="special">></span> <a name="boost.log.sink_factory.settings_section"></a><span class="identifier">settings_section</span><span class="special">;</span> <span class="comment">// Settings section type. </span>
<span class="comment">// <a class="link" href="sink_factory.html#boost.log.sink_factoryconstruct-copy-destruct">construct/copy/destruct</a></span>
<a class="link" href="sink_factory.html#idp46746240-bb"><span class="identifier">sink_factory</span></a><span class="special">(</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">default</span><span class="special">;</span>
<a class="link" href="sink_factory.html#idp46747920-bb"><span class="identifier">sink_factory</span></a><span class="special">(</span><a class="link" href="sink_factory.html" title="Struct template sink_factory">sink_factory</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span>
<a class="link" href="sink_factory.html" title="Struct template sink_factory">sink_factory</a> <span class="special">&</span> <a class="link" href="sink_factory.html#idp46749456-bb"><span class="keyword">operator</span><span class="special">=</span></a><span class="special">(</span><a class="link" href="sink_factory.html" title="Struct template sink_factory">sink_factory</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span>
<a class="link" href="sink_factory.html#idp46747216-bb"><span class="special">~</span><span class="identifier">sink_factory</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="comment">// <a class="link" href="sink_factory.html#idp46742240-bb">public member functions</a></span>
<span class="keyword">virtual</span> <span class="identifier">shared_ptr</span><span class="special"><</span> <span class="identifier">sinks</span><span class="special">::</span><span class="identifier">sink</span> <span class="special">></span> <a class="link" href="sink_factory.html#idp46742800-bb"><span class="identifier">create_sink</span></a><span class="special">(</span><span class="identifier">settings_section</span> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="special">=</span> <span class="number">0</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp134719984"></a><h2>Description</h2>
<p>Sink factory base interface </p>
<div class="refsect2">
<a name="idp134720704"></a><h3>
<a name="boost.log.sink_factoryconstruct-copy-destruct"></a><code class="computeroutput">sink_factory</code>
public
construct/copy/destruct</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem">
<pre class="literallayout"><a name="idp46746240-bb"></a><span class="identifier">sink_factory</span><span class="special">(</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">default</span><span class="special">;</span></pre>
<p>Default constructor </p>
</li>
<li class="listitem"><pre class="literallayout"><a name="idp46747920-bb"></a><span class="identifier">sink_factory</span><span class="special">(</span><a class="link" href="sink_factory.html" title="Struct template sink_factory">sink_factory</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><a class="link" href="sink_factory.html" title="Struct template sink_factory">sink_factory</a> <span class="special">&</span> <a name="idp46749456-bb"></a><span class="keyword">operator</span><span class="special">=</span><span class="special">(</span><a class="link" href="sink_factory.html" title="Struct template sink_factory">sink_factory</a> <span class="keyword">const</span> <span class="special">&</span><span class="special">)</span> <span class="special">=</span> <span class="keyword">delete</span><span class="special">;</span></pre></li>
<li class="listitem">
<pre class="literallayout"><a name="idp46747216-bb"></a><span class="special">~</span><span class="identifier">sink_factory</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre>
<p>Virtual destructor </p>
</li>
</ol></div>
</div>
<div class="refsect2">
<a name="idp134748784"></a><h3>
<a name="idp46742240-bb"></a><code class="computeroutput">sink_factory</code> public member functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1"><li class="listitem">
<pre class="literallayout"><span class="keyword">virtual</span> <span class="identifier">shared_ptr</span><span class="special"><</span> <span class="identifier">sinks</span><span class="special">::</span><span class="identifier">sink</span> <span class="special">></span>
<a name="idp46742800-bb"></a><span class="identifier">create_sink</span><span class="special">(</span><span class="identifier">settings_section</span> <span class="keyword">const</span> <span class="special">&</span> settings<span class="special">)</span> <span class="special">=</span> <span class="number">0</span><span class="special">;</span></pre>
<p>The function creates a formatter for the specified attribute.</p>
<p>
</p>
<div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term">Parameters:</span></p></td>
<td><div class="variablelist"><table border="0" class="variablelist compact">
<colgroup>
<col align="left" valign="top">
<col>
</colgroup>
<tbody><tr>
<td><p><span class="term"><code class="computeroutput">settings</code></span></p></td>
<td><p>Sink parameters </p></td>
</tr></tbody>
</table></div></td>
</tr></tbody>
</table></div>
</li></ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2007-2015 Andrey
Semashev<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="parse_formatte_idp46727120.html"><img src="../../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../utilities.html#header.boost.log.utility.setup.from_settings_hpp"><img src="../../../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="init_from_settings.html"><img src="../../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
wp-content/themes/guardian/css/sticky.css | Tamiiy/spartan-english | .noanim{-webkit-transition:none !important;-moz-transition:none !important;-ms-transition:none !important;-o-transition:none !important;transition:none !important}@-webkit-keyframes blink{0%{opacity:1;filter:alpha(opacity=100)}33%{opacity:0;filter:alpha(opacity=0)}100%{opacity:0;filter:alpha(opacity=0)}}@-moz-keyframes blink{0%{opacity:1;filter:alpha(opacity=100)}33%{opacity:0;filter:alpha(opacity=0)}100%{opacity:0;filter:alpha(opacity=0)}}@keyframes blink{0%{opacity:1;filter:alpha(opacity=100)}33%{opacity:0;filter:alpha(opacity=0)}100%{opacity:0;filter:alpha(opacity=0)}}
body{font:12px/28px ;}
.wrapper,#page{zoom:1;width:100%;margin:0 auto}.wrapper:after,#page:after,.wrapper:before,#page:before{content:"\0020";display:table;height:0;overflow:hidden}.wrapper:after,#page:after{clear:both}
#header{margin:0px 0 0;}
#trueHeader{z-index:8000;left:0;right:0;padding:0px 0;box-shadow:0 1px 5px rgba(0,0,0,0.2);-khtml-box-shadow:0 1px 5px rgba(0,0,0,0.2);-webkit-box-shadow:0 1px 5px rgba(0,0,0,0.2);-moz-box-shadow:0 1px 5px rgba(0,0,0,0.2);-ms-box-shadow:0 1px 5px rgba(0,0,0,0.2);-o-box-shadow:0 1px 5px rgba(0,0,0,0.2);transition:padding 0.35s ease;-khtml-transition:padding 0.35s ease;-webkit-transition:padding 0.35s ease;-moz-transition:padding 0.35s ease;-ms-transition:padding 0.35s ease;-o-transition:padding 0.35s ease;background-color:transparent;zoom:1}
#trueHeader {
background: #fff;
}
#header.sticky #trueHeader{position:fixed;top:0}
#header.sticky.condensed #trueHeader{padding:0px 0}
@media only screen and (min-width: 768px) and (max-width: 999px){
.menu_main {
padding: 8px 0px;
}
}
@media only screen and (min-width: 480px) and (max-width: 767px){
.menu_main {
padding: 0px 0px 0px 0px;
}
}
@media only screen and (max-width: 479px){
.menu_main {
padding: 0px 0px 0px 0px;
}
} |
doc/edu/dhbw/andopenglcam/package-tree.html | Turupawn/BattleRoyaleAumentada | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--NewPage-->
<HTML>
<HEAD>
<!-- Generated by javadoc (build 1.6.0_13) on Mon May 24 15:25:09 CEST 2010 -->
<TITLE>
edu.dhbw.andopenglcam Class Hierarchy
</TITLE>
<META NAME="date" CONTENT="2010-05-24">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="edu.dhbw.andopenglcam Class Hierarchy";
}
}
</SCRIPT>
<NOSCRIPT>
</NOSCRIPT>
</HEAD>
<BODY BGCOLOR="white" onload="windowTitle();">
<HR>
<!-- ========= START OF TOP NAVBAR ======= -->
<A NAME="navbar_top"><!-- --></A>
<A HREF="#skip-navbar_top" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_top_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../edu/dhbw/andar/util/package-tree.html"><B>PREV</B></A>
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?edu/dhbw/andopenglcam/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<CENTER>
<H2>
Hierarchy For Package edu.dhbw.andopenglcam
</H2>
</CENTER>
<DL>
<DT><B>Package Hierarchies:</B><DD><A HREF="../../../overview-tree.html">All Packages</A></DL>
<HR>
<H2>
Class Hierarchy
</H2>
<UL>
<LI TYPE="circle">java.lang.Object<UL>
<LI TYPE="circle">edu.dhbw.andopenglcam.<A HREF="../../../edu/dhbw/andopenglcam/R.html" title="class in edu.dhbw.andopenglcam"><B>R</B></A><LI TYPE="circle">edu.dhbw.andopenglcam.<A HREF="../../../edu/dhbw/andopenglcam/R.attr.html" title="class in edu.dhbw.andopenglcam"><B>R.attr</B></A><LI TYPE="circle">edu.dhbw.andopenglcam.<A HREF="../../../edu/dhbw/andopenglcam/R.drawable.html" title="class in edu.dhbw.andopenglcam"><B>R.drawable</B></A><LI TYPE="circle">edu.dhbw.andopenglcam.<A HREF="../../../edu/dhbw/andopenglcam/R.layout.html" title="class in edu.dhbw.andopenglcam"><B>R.layout</B></A><LI TYPE="circle">edu.dhbw.andopenglcam.<A HREF="../../../edu/dhbw/andopenglcam/R.string.html" title="class in edu.dhbw.andopenglcam"><B>R.string</B></A></UL>
</UL>
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Class</FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <FONT CLASS="NavBarFont1">Use</FONT> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Tree</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../index-files/index-1.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../edu/dhbw/andar/util/package-tree.html"><B>PREV</B></A>
NEXT</FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../index.html?edu/dhbw/andopenglcam/package-tree.html" target="_top"><B>FRAMES</B></A>
<A HREF="package-tree.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
three.js-master/examples/misc_uv_tests.html | JohnDecker1/BlackHOle-battles | <!DOCTYPE html>
<html lang="en">
<head>
<title>three.js - uv mapping tests</title>
<meta charset=utf-8 />
<meta name="viewport" content="width=device-width, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
</head>
<body>
<script src="../build/three.min.js"></script>
<script src="js/utils/UVsDebug.js"></script>
<script>
/*
* This is to help debug UVs problems in geometry,
* as well as allow a new user to visualize what UVs are about.
*/
function test(name, geometry) {
var d = document.createElement( 'div' );
d.innerHTML = '<br><br>' + name + '<br>';
d.appendChild( THREE.UVsDebug( geometry ) );
document.body.appendChild( d );
}
test('new THREE.PlaneGeometry( 100, 100, 4, 4 )', new THREE.PlaneGeometry( 100, 100, 4, 4 ));
test('new THREE.PlaneBufferGeometry( 100, 100, 4, 4 )', new THREE.PlaneBufferGeometry( 100, 100, 4, 4 ));
test('new THREE.SphereGeometry( 75, 12, 6 )', new THREE.SphereGeometry( 75, 12, 6 ));
test('new THREE.IcosahedronGeometry( 30, 1 )', new THREE.IcosahedronGeometry( 30, 1 ));
test('new THREE.OctahedronGeometry( 30, 2 )', new THREE.OctahedronGeometry( 30, 2 ));
test('new THREE.CylinderGeometry( 25, 75, 100, 10, 5 )', new THREE.CylinderGeometry( 25, 75, 100, 10, 5 ));
test('new THREE.BoxGeometry( 100, 100, 100, 4, 4, 4 )', new THREE.BoxGeometry( 100, 100, 100, 4, 4, 4 ));
var points = [];
for ( var i = 0; i < 10; i ++ ) {
points.push( new THREE.Vector2( Math.sin( i * 0.2 ) * 15 + 50, ( i - 5 ) * 2 ) );
}
test('new THREE.LatheGeometry( points, 8 )', new THREE.LatheGeometry( points, 8 ));
test('new THREE.TorusGeometry( 50, 20, 8, 8 )', new THREE.TorusGeometry( 50, 20, 8, 8 ));
test('new THREE.TorusKnotGeometry( 50, 10, 12, 6 )', new THREE.TorusKnotGeometry( 50, 10, 12, 6 ));
</script>
</body>
</html>
|
matlab/codes/graphicxFigures/help/exports.html | fanatichuman/guillaumemaze | <html>
<head>
<title>Help: exports</title>
</head>
<body>
<center><table><tbody>
<tr>
<td style="border: 1px solid rgb(170, 170, 170); padding: 5px; background-color: #fff;">
<h4>exports</h4>Export a figure to A4 color PDF format
<br><small>Last modified: 20-Aug-2010 20:34:44</small>
</tr>
<tr>
<td style="border: 0px solid rgb(170, 170, 170); padding: 5px; background-color: #fff;">
<a href="http://guillaumemaze.googlecode.com/svn/trunk/matlab/codes/graphicxFigures/exports.m">Download here</a>
</td>
</tr>
<tr>
<td style="border: 1px solid rgb(170, 170, 170); padding: 5px; background-color: #ddd; font-size:12px;">
<br>% exports Export a figure to A4 color PDF format<br>%<br>% exports(GCF,[ORIENTATION,FILE,KEEPFOOTNOTE])<br>%<br>% Export a figure GCF to A4 color eps format<br>% Default output file is: fig.eps in current directory<br>% or specify it into FILE (extension .eps is automatic).<br>% ORIENTATION is an optionnal parameter:<br>% ORIENTATION=0 : Portrait (default)<br>% ORIENTATION=1 : Landscape<br>%<br>%<br>% Created: 2009-04-22.
</td>
</tr>
<tr>
<td style="border: 1px solid rgb(170, 170, 170); padding: 5px; background-color: #fff; font-size:12px;">
Last update: 2011 March 04, 17:46<br>
Created by Guillaume Maze<br>
More informations at: <a href="http://codes.guillaumemaze.org/matlab">codes.guillaumemaze.org/matlab</a><br>
</td>
</tr>
</tbody></table></center>
</body>
</html>
|
matlab/codes/graphicxPlots/help/xanom.html | fanatichuman/guillaumemaze | <html>
<head>
<title>Help: xanom</title>
</head>
<body>
<center><table><tbody>
<tr>
<td style="border: 1px solid rgb(170, 170, 170); padding: 5px; background-color: #fff;">
<h4>xanom</h4>Make x-axis centered around 0
<br><small>Last modified: 26-Jan-2011 14:01:24</small>
</tr>
<tr>
<td style="border: 0px solid rgb(170, 170, 170); padding: 5px; background-color: #fff;">
<a href="http://guillaumemaze.googlecode.com/svn/trunk/matlab/codes/graphicxPlots/xanom.m">Download here</a>
</td>
</tr>
<tr>
<td style="border: 1px solid rgb(170, 170, 170); padding: 5px; background-color: #ddd; font-size:12px;">
<br>% xanom Make x-axis centered around 0<br>%<br>% [] = xanom([gca])<br>% <br>% Make x-axis centered around 0<br>%<br>% Created: 2011-01-26.<br>% All rights reserved.
</td>
</tr>
<tr>
<td style="border: 1px solid rgb(170, 170, 170); padding: 5px; background-color: #fff; font-size:12px;">
Last update: 2011 March 04, 17:46<br>
Created by Guillaume Maze<br>
More informations at: <a href="http://codes.guillaumemaze.org/matlab">codes.guillaumemaze.org/matlab</a><br>
</td>
</tr>
</tbody></table></center>
</body>
</html>
|
tests/wpt/web-platform-tests/css/css-text/i18n/reference/css3-text-line-break-jazh-040-ref.html | anthgur/servo | <!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8"/>
<title>CSS3 Text, linebreaks: FF1B FULLWIDTH SEMICOLON (strict,ja)</title>
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
<meta name='flags' content=''>
<style type='text/css'>
@font-face {
font-family: 'mplus-1p-regular';
src: url('/fonts/mplus-1p-regular.woff') format('woff');
/* filesize: 803K */
}
.test, .ref { font-size: 30px; font-family: mplus-1p-regular, sans-serif; width: 93px; padding: 0; border: 1px solid orange; line-height: 1em; }
.name { font-size: 10px; }
.test { line-break: strict; }
</style>
</head>
<body>
<p class='instructions'>Test passes if the two orange boxes are identical.</p>
<div class='ref'>中中<br/>中;文</div></div>
<div class='ref'>中中<br/>中;文</div></div>
</body>
</html>
|
src/Core/org/objectweb/proactive/core/component/adl/xml/package.html | acontes/programming | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
</head>
<body bgcolor="white">
<p>
Contains the DTDs used for the GCM ADL with ProActive.
</p>
@author The ProActive Team
</body>
</html>
|
webkit-1.2.5/WebCore/inspector/front-end/inspector.html | pocketbook-free/browser | <!--
Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
its contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="audits.css">
<link rel="stylesheet" type="text/css" href="inspector.css">
<link rel="stylesheet" type="text/css" href="inspectorSyntaxHighlight.css">
<link rel="stylesheet" type="text/css" href="popover.css">
<link rel="stylesheet" type="text/css" href="textViewer.css">
<script type="text/javascript" src="utilities.js"></script>
<script type="text/javascript" src="treeoutline.js"></script>
<script type="text/javascript" src="inspector.js"></script>
<script type="text/javascript" src="InspectorBackendStub.js"></script>
<script type="text/javascript" src="InspectorFrontendHostStub.js"></script>
<script type="text/javascript" src="Object.js"></script>
<script type="text/javascript" src="Settings.js"></script>
<script type="text/javascript" src="Checkbox.js"></script>
<script type="text/javascript" src="ContextMenu.js"></script>
<script type="text/javascript" src="KeyboardShortcut.js"></script>
<script type="text/javascript" src="TextPrompt.js"></script>
<script type="text/javascript" src="Popover.js"></script>
<script type="text/javascript" src="Placard.js"></script>
<script type="text/javascript" src="View.js"></script>
<script type="text/javascript" src="Callback.js"></script>
<script type="text/javascript" src="Drawer.js"></script>
<script type="text/javascript" src="ChangesView.js"></script>
<script type="text/javascript" src="ConsoleView.js"></script>
<script type="text/javascript" src="Panel.js"></script>
<script type="text/javascript" src="TimelineGrid.js"></script>
<script type="text/javascript" src="AbstractTimelinePanel.js"></script>
<script type="text/javascript" src="Resource.js"></script>
<script type="text/javascript" src="ResourceCategory.js"></script>
<script type="text/javascript" src="Database.js"></script>
<script type="text/javascript" src="DOMStorage.js"></script>
<script type="text/javascript" src="DOMStorageItemsView.js"></script>
<script type="text/javascript" src="DataGrid.js"></script>
<script type="text/javascript" src="CookieItemsView.js"></script>
<script type="text/javascript" src="Script.js"></script>
<script type="text/javascript" src="Breakpoint.js"></script>
<script type="text/javascript" src="SidebarPane.js"></script>
<script type="text/javascript" src="ElementsTreeOutline.js"></script>
<script type="text/javascript" src="SidebarTreeElement.js"></script>
<script type="text/javascript" src="Section.js"></script>
<script type="text/javascript" src="PropertiesSection.js"></script>
<script type="text/javascript" src="ObjectProxy.js"></script>
<script type="text/javascript" src="ObjectPropertiesSection.js"></script>
<script type="text/javascript" src="BreakpointsSidebarPane.js"></script>
<script type="text/javascript" src="CallStackSidebarPane.js"></script>
<script type="text/javascript" src="ScopeChainSidebarPane.js"></script>
<script type="text/javascript" src="WatchExpressionsSidebarPane.js"></script>
<script type="text/javascript" src="WorkersSidebarPane.js"></script>
<script type="text/javascript" src="MetricsSidebarPane.js"></script>
<script type="text/javascript" src="PropertiesSidebarPane.js"></script>
<script type="text/javascript" src="EventListenersSidebarPane.js"></script>
<script type="text/javascript" src="Color.js"></script>
<script type="text/javascript" src="StylesSidebarPane.js"></script>
<script type="text/javascript" src="PanelEnablerView.js"></script>
<script type="text/javascript" src="WelcomeView.js"></script>
<script type="text/javascript" src="StatusBarButton.js"></script>
<script type="text/javascript" src="SummaryBar.js"></script>
<script type="text/javascript" src="ElementsPanel.js"></script>
<script type="text/javascript" src="ResourcesPanel.js"></script>
<script type="text/javascript" src="InjectedFakeWorker.js"></script>
<script type="text/javascript" src="ScriptsPanel.js"></script>
<script type="text/javascript" src="StoragePanel.js"></script>
<script type="text/javascript" src="ProfilesPanel.js"></script>
<script type="text/javascript" src="ConsolePanel.js"></script>
<script type="text/javascript" src="AuditsPanel.js"></script>
<script type="text/javascript" src="AuditResultView.js"></script>
<script type="text/javascript" src="AuditLauncherView.js"></script>
<script type="text/javascript" src="AuditRules.js"></script>
<script type="text/javascript" src="AuditCategories.js"></script>
<script type="text/javascript" src="ResourceView.js"></script>
<script type="text/javascript" src="SourceFrame.js"></script>
<script type="text/javascript" src="DOMSyntaxHighlighter.js"></script>
<script type="text/javascript" src="TextEditorModel.js"></script>
<script type="text/javascript" src="TextEditorHighlighter.js"></script>
<script type="text/javascript" src="TextViewer.js"></script>
<script type="text/javascript" src="SourceTokenizer.js"></script>
<script type="text/javascript" src="SourceCSSTokenizer.js"></script>
<script type="text/javascript" src="SourceHTMLTokenizer.js"></script>
<script type="text/javascript" src="SourceJavaScriptTokenizer.js"></script>
<script type="text/javascript" src="SourceView.js"></script>
<script type="text/javascript" src="FontView.js"></script>
<script type="text/javascript" src="ImageView.js"></script>
<script type="text/javascript" src="DatabaseTableView.js"></script>
<script type="text/javascript" src="DatabaseQueryView.js"></script>
<script type="text/javascript" src="ScriptView.js"></script>
<script type="text/javascript" src="ProfileDataGridTree.js"></script>
<script type="text/javascript" src="BottomUpProfileDataGridTree.js"></script>
<script type="text/javascript" src="TopDownProfileDataGridTree.js"></script>
<script type="text/javascript" src="ProfileView.js"></script>
<script type="text/javascript" src="DOMAgent.js"></script>
<script type="text/javascript" src="InjectedScript.js"></script>
<script type="text/javascript" src="InjectedScriptAccess.js"></script>
<script type="text/javascript" src="TimelineAgent.js"></script>
<script type="text/javascript" src="TimelinePanel.js"></script>
<script type="text/javascript" src="TimelineOverviewPane.js"></script>
<script type="text/javascript" src="TestController.js"></script>
</head>
<body class="detached">
<div id="toolbar">
<div class="toolbar-item close-left"><button id="close-button-left"></button></div>
<div class="toolbar-item flexable-space"></div>
<div class="toolbar-item hidden" id="search-results-matches"></div>
<div class="toolbar-item"><input id="search" type="search" incremental results="0"><div id="search-toolbar-label" class="toolbar-label"></div></div>
<div class="toolbar-item close-right"><button id="close-button-right"></button></div>
</div>
<div id="main">
<div id="main-panels" spellcheck="false"></div>
<div id="main-status-bar" class="status-bar"><div id="anchored-status-bar-items"><button id="dock-status-bar-item" class="status-bar-item"><div class="glyph"></div><div class="glyph shadow"></div></button><button id="console-status-bar-item" class="status-bar-item"><div class="glyph"></div><div class="glyph shadow"></div></button><button id="changes-status-bar-item" class="status-bar-item hidden"></button><div id="count-items"><div id="changes-count" class="hidden"></div><div id="error-warning-count" class="hidden"></div></div></div></div>
</div>
<div id="drawer">
<div id="console-view"><div id="console-messages" class="monospace"><div id="console-prompt" spellcheck="false"><br></div></div></div>
<div id="drawer-status-bar" class="status-bar"><div id="other-drawer-status-bar-items"><button id="clear-console-status-bar-item" class="status-bar-item"><div class="glyph"></div><div class="glyph shadow"></div></button><div id="console-filter" class="scope-bar status-bar-item"></div></div></div>
</div>
</body>
</html>
|
node_modules/oae-core/upload/css/upload.css | nicolaasmatthijs/3akai-ux | /*!
* Copyright 2014 Apereo Foundation (AF) Licensed under the
* Educational Community 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://opensource.org/licenses/ECL-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.
*/
#upload-modal #upload-dropzone.well {
margin-bottom: 0;
}
#upload-modal form {
margin: 0;
}
#upload-modal #upload-browse-button {
overflow: hidden;
position: relative;
}
#upload-modal #upload-browse-button input {
cursor: pointer;
font-size: 23px;
margin: 0;
opacity: 0;
position: absolute;
right: 0;
top: 0;
transform: translate(-300px, 0px) scale(4);
}
/* Selected container */
#upload-modal ul#upload-selected-container {
max-height: 230px;
overflow: auto;
}
/* Add an IE9 fallback for threedots */
@media (min-width: 550px) {
.ie-lt10 #upload-modal .jeditable-field {
max-width: 375px !important;
}
}
@media (max-width: 550px) {
.ie-lt10 #upload-modal .jeditable-field {
max-width: 220px !important;
}
}
#upload-modal .jeditable-field form input {
width: 370px !important;
}
/* Permissions */
#upload-modal #upload-permissions {
margin: 12px 0 0;
}
|
verify_code/Imaging-1.1.7/Docs/pythondoc-PIL.MpegImagePlugin.html | zhaochl/python-utils | <!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Strict//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd'>
<html>
<head>
<meta http-equiv='Content-Type' content='text/html; charset=us-ascii' />
<title>The PIL.MpegImagePlugin Module</title>
<link rel='stylesheet' href='effbot.css' type='text/css' />
</head>
<body>
<h1>The PIL.MpegImagePlugin Module</h1>
<dl>
<dt><b>MpegImageFile</b> (class) [<a href='#PIL.MpegImagePlugin.MpegImageFile-class'>#</a>]</dt>
<dd>
<p>Image plugin for MPEG streams.</p>
<p>For more information about this class, see <a href='#PIL.MpegImagePlugin.MpegImageFile-class'><i>The MpegImageFile Class</i></a>.</p>
</dd>
</dl>
<h2><a id='PIL.MpegImagePlugin.MpegImageFile-class' name='PIL.MpegImagePlugin.MpegImageFile-class'>The MpegImageFile Class</a></h2>
<dl>
<dt><b>MpegImageFile</b> (class) [<a href='#PIL.MpegImagePlugin.MpegImageFile-class'>#</a>]</dt>
<dd>
</dd>
</dl>
</body></html>
|
tests/changetracking/acceptDel-list08-expected.html | corinthia/corinthia-editorlib | <html>
<head>
<link href="changetracking.css" rel="stylesheet"/>
</head>
<body>
<ul>
<li>[]ONE</li>
<li><del>TWO</del></li>
<li>THREE</li>
</ul>
</body>
</html>
|
third_party/webgl/src/sdk/tests/conformance/glsl/misc/shader-with-float-return-value.frag.html | endlessm/chromium-browser | <!--
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>WebGL GLSL Conformance Tests</title>
<link rel="stylesheet" href="../../../resources/js-test-style.css"/>
<link rel="stylesheet" href="../../../resources/glsl-feature-tests.css"/>
<script src="../../../js/js-test-pre.js"></script>
<script src="../../../js/webgl-test-utils.js"></script>
<script src="../../../js/glsl-conformance-test.js"></script>
</head>
<body>
<div id="description"></div>
<div id="console"></div>
<script id="fragmentShader" type="text/something-not-javascript">
// Shader with float return value from function call should succeed
precision mediump float;
float functionResult();
void main()
{
float r = functionResult();
gl_FragColor = vec4(r, r, r, r);
}
float functionResult()
{
return 1.0;
}
</script>
<script>
"use strict";
GLSLConformanceTester.runTest();
var successfullyParsed = true;
</script>
</body>
</html>
|
native_client_sdk/src/examples/gamepad/gamepad.html | aYukiSekiguchi/ACCESS-Chromium | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<!--
Copyright (c) 2012 The Native Client Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<head>
<title>Gamepad example</title>
</head>
<body id="bodyId">
<p> Attached gamepad values should appear, left to right, once they've been
interacted with. Buttons, esp triggers are analog (alpha). </p>
<embed
name="nacl_module"
id="gamepad"
width=800 height=200
src="gamepad.nmf"
type="application/x-nacl" />
</body>
</html>
|
third_party/webgl/src/sdk/tests/conformance2/textures/image_bitmap_from_blob/tex-3d-rgb16f-rgb-half_float.html | endlessm/chromium-browser | <!--
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
-->
<!--
This file is auto-generated from py/tex_image_test_generator.py
DO NOT EDIT!
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../../resources/js-test-style.css"/>
<script src="../../../js/js-test-pre.js"></script>
<script src="../../../js/webgl-test-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-with-image-bitmap-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-3d-with-image-bitmap-from-blob.js"></script>
</head>
<body>
<canvas id="example" width="32" height="32"></canvas>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
function testPrologue(gl) {
return true;
}
generateTest("RGB16F", "RGB", "HALF_FLOAT", testPrologue, "../../../resources/", 2)();
</script>
</body>
</html>
|
third_party/webgl/src/sdk/tests/conformance2/textures/video/tex-2d-rgba8-rgba-unsigned_byte.html | endlessm/chromium-browser | <!--
Copyright (c) 2019 The Khronos Group Inc.
Use of this source code is governed by an MIT-style license that can be
found in the LICENSE.txt file.
-->
<!--
This file is auto-generated from py/tex_image_test_generator.py
DO NOT EDIT!
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="../../../resources/js-test-style.css"/>
<script src="../../../js/js-test-pre.js"></script>
<script src="../../../js/webgl-test-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-utils.js"></script>
<script src="../../../js/tests/tex-image-and-sub-image-2d-with-video.js"></script>
</head>
<body>
<canvas id="example" width="32" height="32"></canvas>
<div id="description"></div>
<div id="console"></div>
<script>
"use strict";
function testPrologue(gl) {
return true;
}
generateTest("RGBA8", "RGBA", "UNSIGNED_BYTE", testPrologue, "../../../resources/", 2)();
</script>
</body>
</html>
|
webapp/academic-excellence/preview.html | bscoleman-psu/plymouth-webapp | <?php
$tpl = new AETemplate('Preview');
$tpl->body_style_classes = 'ae-student';
$editing = $_REQUEST['editing'] == '1' ? true : false;
$GLOBALS['IS_SUMMER'] = $_REQUEST['summer'] == '1' ? true : false;
$tpl->assign('user_type', 'aestudent');
if($_REQUEST['low_gpa'])
{
$tpl->assign('user_type', '');
}
elseif($_REQUEST['closed'])
{
$GLOBALS['ACCEPTING_DATA'] = false;
}
else
{
$tpl->assign('editing', $editing);
$tpl->assign('preview', true);
$student = array(
'full_name' => 'Joe S. Student',
'addr1' => '7 Elm St.',
'addr2' => '',
'city' => 'Plymouth',
'state' => 'NH',
'zip' => '03264'
);
if($editing)
{
$student['confirmed'] = -1;
$student['confirmed_cert'] = -1;
}
else
{
$student['confirmed'] = $_REQUEST['confirmed'] == '1' ? 1 : 0;
$student['confirmed_cert'] = $_REQUEST['confirmed_cert'] == '1' ? 1 : 0;
}
$tpl->assign('student', $student);
}
$tpl->display('index.tpl');
|
npminstall/ink-docstrap/themes/journal/logger.js.html | guoguogis/ng-nice | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>DocStrap Source: utils/logger.js</title>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link type="text/css" rel="stylesheet" href="styles/sunlight.default.css">
<link type="text/css" rel="stylesheet" href="styles/site.journal.css">
</head>
<body>
<div class="container-fluid">
<div class="navbar navbar-fixed-top navbar-inverse">
<div class="navbar-inner">
<a class="brand" href="index.html">DocStrap</a>
<ul class="nav">
<li class="dropdown">
<a href="modules.list.html" class="dropdown-toggle" data-toggle="dropdown">Modules<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li>
<a href="module-base.html">base</a>
</li>
<li>
<a href="chains_.html">base/chains</a>
</li>
<li>
<a href="binder.html">documents/binder</a>
</li>
<li>
<a href="model_.html">documents/model</a>
</li>
<li>
<a href="probe.html">documents/probe</a>
</li>
<li>
<a href="schema_.html">documents/schema</a>
</li>
<li>
<a href="collector.html">ink/collector</a>
</li>
<li>
<a href="bussable_.html">mixins/bussable</a>
</li>
<li>
<a href="signalable_.html">mixins/signalable</a>
</li>
<li>
<a href="format.html">strings/format</a>
</li>
<li>
<a href="logger.html">utils/logger</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="classes.list.html" class="dropdown-toggle" data-toggle="dropdown">Classes<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li>
<a href="base.html">base</a>
</li>
<li>
<a href="chains.html">base/chains</a>
</li>
<li>
<a href="model.html">documents/model</a>
</li>
<li>
<a href="probe.queryOperators.html">documents/probe.queryOperators</a>
</li>
<li>
<a href="probe.updateOperators.html">documents/probe.updateOperators</a>
</li>
<li>
<a href="collector-ACollector.html">ink/collector~ACollector</a>
</li>
<li>
<a href="collector-CollectorBase_.html">ink/collector~CollectorBase</a>
</li>
<li>
<a href="collector-OCollector.html">ink/collector~OCollector</a>
</li>
<li>
<a href="signalable-Signal.html">mixins/signalable~Signal</a>
</li>
<li>
<a href="logger.Logger.html">utils/logger.Logger</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="mixins.list.html" class="dropdown-toggle" data-toggle="dropdown">Mixins<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li>
<a href="schema.html">documents/schema</a>
</li>
<li>
<a href="bussable.html">mixins/bussable</a>
</li>
<li>
<a href="signalable.html">mixins/signalable</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="tutorials.list.html" class="dropdown-toggle" data-toggle="dropdown">Tutorials<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li>
<a href="tutorial-Teeth.html">Brush Teeth</a>
</li>
<li>
<a href="tutorial-Car.html">Drive Car</a>
</li>
<li>
<a href="tutorial-Test.html">Fence Test</a>
</li>
</ul>
</li>
<li class="dropdown">
<a href="global.html" class="dropdown-toggle" data-toggle="dropdown">Global<b
class="caret"></b></a>
<ul class="dropdown-menu ">
<li>
<a href="global.html#utils/logger">utils/logger</a>
</li>
</ul>
</li>
</ul>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<div id="main">
<h1 class="page-title">Source: utils/logger.js</h1>
<section>
<article>
<pre
class="sunlight-highlight-javascript linenums">"use strict";
/**
* @fileOverview The logging system for papyrus is based on [http://pimterry.github.io/loglevel/](loglevel) and slightly decorated
* @module utils/logger
* @requires dcl
* @requires loglevel
*/
var dcl = require( "dcl" );
var log = require( 'loglevel' );
/**
* A logger class that you can mix into your classes to handle logging settings and state at an object level.
* See {@link utils/logger} for the members of this class
*
* @exports utils/logger.Logger
* @class
* @see utils/logger
*/
var Logger = dcl( null, /** @lends utils/logger.Logger# */{
declaredClass : "utils/Logger",
/**
* Turn off all logging. If you log something, it will not error, but will not do anything either
* and the cycles are minimal.
*
*/
silent : function () {
log.disableAll();
},
/**
* Turns on all logging levels
*
*/
all : function () {
log.enableAll();
},
/**
* Sets the logging level to one of `trace`, `debug`, `info`, `warn`, `error`.
* @param {string} lvl The level to set it to. Can be one of `trace`, `debug`, `info`, `warn`, `error`.
*
*/
level : function ( lvl ) {
if ( lvl.toLowerCase() === "none" ) {
log.disableAll();
} else {
log.setLevel( lvl );
}
},
/**
* Log a `trace` call
* @method
* @param {string} The value to log
*/
trace : log.trace,
/**
* Log a `debug` call
* @method
* @param {string} The value to log
*/
debug : log.debug,
/**
* Log a `info` call
* @method
* @param {string} The value to log
*/
info : log.info,
/**
* Log a `warn` call
* @method
* @param {string} The value to log
*/
warn : log.warn,
/**
* Log a `error` call
* @method
* @param {string} The value to log
*/
error : log.error
} );
module.exports = new Logger();
/**
* The system global, cross-platform logger
* @name utils/logger
* @static
* @type {utils/logger.Logger}
*/
module.exports.Logger = Logger;
</pre>
</article>
</section>
</div>
<div class="clearfix"></div>
<footer>
<span class="copyright">
DocStrap Copyright © 2012-2013 The contributors to the JSDoc3 and DocStrap projects.
</span>
<br />
<span class="jsdoc-message">
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.3.0-alpha5</a>
on Mon Jul 7th 2014 using the <a
href="https://github.com/terryweiss/docstrap">DocStrap template</a>.
</span>
</footer>
</div>
<br clear="both">
</div>
</div>
<!--<script src="scripts/sunlight.js"></script>-->
<script src="scripts/docstrap.lib.js"></script>
<script src="scripts/bootstrap-dropdown.js"></script>
<script src="scripts/toc.js"></script>
<script>
$( function () {
$( "[id*='$']" ).each( function () {
var $this = $( this );
$this.attr( "id", $this.attr( "id" ).replace( "$", "__" ) );
} );
$( "#toc" ).toc( {
anchorName : function ( i, heading, prefix ) {
return $( heading ).attr( "id" ) || ( prefix + i );
},
selectors : "h1,h2,h3,h4",
showAndHide : false,
scrollTo : "100px"
} );
$( "#toc>ul" ).addClass( "nav nav-pills nav-stacked" );
$( "#main span[id^='toc']" ).addClass( "toc-shim" );
$( '.dropdown-toggle' ).dropdown();
// $( ".tutorial-section pre, .readme-section pre" ).addClass( "sunlight-highlight-javascript" ).addClass( "linenums" );
$( ".tutorial-section pre, .readme-section pre" ).each( function () {
var $this = $( this );
var example = $this.find( "code" );
exampleText = example.html();
var lang = /{@lang (.*?)}/.exec( exampleText );
if ( lang && lang[1] ) {
exampleText = exampleText.replace( lang[0], "" );
example.html( exampleText );
lang = lang[1];
} else {
lang = "javascript";
}
if ( lang ) {
$this
.addClass( "sunlight-highlight-" + lang )
.addClass( "linenums" )
.html( example.html() );
}
} );
Sunlight.highlightAll( {
lineNumbers : true,
showMenu : true,
enableDoclinks : true
} );
} );
</script>
<!--Navigation and Symbol Display-->
<!--Google Analytics-->
</body>
</html>
|
Sources/weiphp2.0.1202/Application/Home/View/default/Forum/store_right.html | furongsoft/weiphp2.0.1202 | <div class="r">
<h3><span class="gray fl">主题数:{$topic_count}</span> <a href="{:U('home/forum/form',array('cid'=>I('cid'),'model'=>$model[id]))}" class="public_btn fr"> + 发表</a></h3>
<ul class="sidebar">
<!-- <li>
<p>讨论区公告:<br/后台分类列表增加折叠>记忆的功能后台分类列表增加折叠记忆的功能后台分类列表增加折叠记忆的功能,官方QQ群:329650736【已满】,8322255</p>
</li>-->
<volist name='cateArr' id='vo'>
<li> <a href="{:U('home/forum/store','cid='.$vo['cid'])}">{$vo.name}</a> </li>
</volist>
</ul>
</div>
|
ajax/libs/oojs-ui/0.26.2/oojs-ui-wikimediaui-icons-location.rtl.css | holtkamp/cdnjs | /*!
* OOUI v0.26.2
* https://www.mediawiki.org/wiki/OOUI
*
* Copyright 2011–2018 OOUI Team and other contributors.
* Released under the MIT license
* http://oojs.mit-license.org
*
* Date: 2018-04-04T17:22:48Z
*/
/**
* WikimediaUI Base v0.10.0
* Wikimedia Foundation user interface base variables
*/
.oo-ui-icon-map {
background-image: url('themes/wikimediaui/images/icons/map-rtl.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/map-rtl.svg');
}
.oo-ui-image-invert.oo-ui-icon-map {
background-image: url('themes/wikimediaui/images/icons/map-rtl-invert.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/map-rtl-invert.svg');
}
.oo-ui-image-progressive.oo-ui-icon-map {
background-image: url('themes/wikimediaui/images/icons/map-rtl-progressive.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/map-rtl-progressive.svg');
}
.oo-ui-icon-mapPin {
background-image: url('themes/wikimediaui/images/icons/mapPin.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapPin.svg');
}
.oo-ui-image-invert.oo-ui-icon-mapPin {
background-image: url('themes/wikimediaui/images/icons/mapPin-invert.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapPin-invert.svg');
}
.oo-ui-image-progressive.oo-ui-icon-mapPin {
background-image: url('themes/wikimediaui/images/icons/mapPin-progressive.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapPin-progressive.svg');
}
.oo-ui-icon-mapPinAdd {
background-image: url('themes/wikimediaui/images/icons/mapPinAdd.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapPinAdd.svg');
}
.oo-ui-image-invert.oo-ui-icon-mapPinAdd {
background-image: url('themes/wikimediaui/images/icons/mapPinAdd-invert.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapPinAdd-invert.svg');
}
.oo-ui-image-progressive.oo-ui-icon-mapPinAdd {
background-image: url('themes/wikimediaui/images/icons/mapPinAdd-progressive.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapPinAdd-progressive.svg');
}
.oo-ui-icon-mapTrail {
background-image: url('themes/wikimediaui/images/icons/mapTrail.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapTrail.svg');
}
.oo-ui-image-invert.oo-ui-icon-mapTrail {
background-image: url('themes/wikimediaui/images/icons/mapTrail-invert.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapTrail-invert.svg');
}
.oo-ui-image-progressive.oo-ui-icon-mapTrail {
background-image: url('themes/wikimediaui/images/icons/mapTrail-progressive.png');
background-image: linear-gradient(transparent, transparent), /* @embed */ url('themes/wikimediaui/images/icons/mapTrail-progressive.svg');
}
|
wp-content/plugins/custom-contact-forms/assets/build/css/form-cpt.css | SarahJee/www.jkddesign.dev | #titlediv {
display: none; }
#submitdiv {
display: none; }
#wp-admin-bar-view {
display: none; }
.ccf-title h1 {
margin: 0; }
.ccf-title h1 .button {
vertical-align: middle;
top: -2px;
position: relative;
margin-left: 8px; }
#post-body-content .ccf-open-form-manager {
display: none; }
.add-new-h2 {
display: none; }
#ccf-at-a-glance .inside {
margin: 0;
padding: 0; }
#ccf-at-a-glance .inside .line {
display: block; }
#ccf-at-a-glance .inside .has-icon {
display: block; }
#ccf-at-a-glance .inside .has-icon:before {
font: normal 20px/1 'dashicons';
speak: none;
display: inline-block;
padding: 0 5px 0 0;
left: -1px;
position: relative;
vertical-align: top;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-decoration: none !important;
top: -1px;
color: #888; }
#ccf-at-a-glance .inside #ccf-created-by:before {
content: "\f110"; }
#ccf-at-a-glance .inside #ccf-submission-num:before {
content: "\f226"; }
#ccf-at-a-glance .inside #ccf-field-num:before {
content: "\f175"; }
#ccf-at-a-glance .inside #major-publishing-actions {
overflow: auto; }
#ccf-at-a-glance .inside #major-publishing-actions .submitdelete {
color: #a00;
text-decoration: none;
padding: 1px 2px; }
#ccf-at-a-glance .inside #major-publishing-actions .submitdelete.duplicate {
color: #0073aa; }
#ccf-at-a-glance .inside #major-publishing-actions .export-button {
float: right; }
.ccf-form-cpt-preview .ccf-form-preview {
border: 0;
padding: 0;
background-color: inherit; }
.ccf-form-cpt-preview .spinner {
display: block;
float: none; }
.ccf-submission-column-controller .spinner {
display: block;
float: none; }
#ccf-submissions [data-icon]:before {
font-family: 'form-manager';
content: attr(data-icon);
speak: none;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
cursor: pointer;
-webkit-font-smoothing: antialiased; }
#ccf-submissions .ccf-submission-icon {
font: normal 20px/1;
speak: none;
display: inline-block;
padding: 12px 0px 4px 10px;
top: 0;
position: relative;
float: right;
width: 23px;
height: 30px;
cursor: pointer;
color: inherit; }
#ccf-submissions .inside {
padding: 0;
margin: 0; }
#ccf-submissions .inside table {
border: 0;
border-collapse: collapse;
table-layout: auto;
width: 100%; }
#ccf-submissions .inside table td, #ccf-submissions .inside table th {
padding: 8px 10px; }
#ccf-submissions .inside table th input {
margin: 0; }
#ccf-submissions .inside table tbody tr {
background-color: #f9f9f9; }
#ccf-submissions .inside table tbody tr td {
width: auto; }
#ccf-submissions .inside table tbody tr .spinner {
float: none;
display: block; }
#ccf-submissions .inside table tbody tr .actions {
text-align: right; }
#ccf-submissions .inside table tbody tr .actions a {
cursor: pointer;
color: inherit;
padding-left: 4px; }
#ccf-submissions .inside table tbody tr .submission-wrapper {
display: none; }
#ccf-submissions .inside table tbody tr:nth-child(2n-1) {
background-color: #fff; }
#ccf-submissions .inside table tbody tr td.no-submissions {
text-align: center;
width: auto;
padding-bottom: 8px; }
#ccf-submissions .inside .ccf-pagination {
border-top: 1px solid #eee;
margin-top: 0;
padding: 8px; }
.ccf-submission-content .field-slug {
font-weight: bold;
font-size: 15px;
padding: 7px; }
.ccf-submission-content .field-content {
padding: 7px;
background-color: #f9f9f9; }
.ccf-submission-content .field-content span {
font-style: italic; }
/*# sourceMappingURL=form-cpt.css.map */
|
sites/all/libraries/fontawesome/src/3.2.1/icon/stackexchange/index.html | ehazell/AWBA | <!DOCTYPE html>
<!--[if lt IE 7 ]><html class="ie ie6" lang="en"> <![endif]-->
<!--[if IE 7 ]><html class="ie ie7" lang="en"> <![endif]-->
<!--[if IE 8 ]><html class="ie ie8" lang="en"> <![endif]-->
<!--[if (gte IE 9)|!(IE)]><!-->
<html lang="en" xmlns="http://www.w3.org/1999/html"> <!--<![endif]-->
<head>
<!-- Basic Page Needs
================================================== -->
<meta charset="utf-8" />
<title>icon-stackexchange: Font Awesome Icons</title>
<meta name="description" content="Font Awesome, the iconic font designed for Bootstrap">
<meta name="author" content="Dave Gandy">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<meta name="viewport" content="initial-scale=1; maximum-scale=1">-->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- CSS
================================================== -->
<link rel="stylesheet" href="../../assets/css/site.css">
<link rel="stylesheet" href="../../assets/css/pygments.css">
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome.css">
<!--[if IE 7]>
<link rel="stylesheet" href="../../assets/font-awesome/css/font-awesome-ie7.css">
<![endif]-->
<!-- Le fav and touch icons -->
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<script type="text/javascript" src="//use.typekit.net/wnc7ioh.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-30136587-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</head>
<body data-spy="scroll" data-target=".navbar">
<div class="wrapper"> <!-- necessary for sticky footer. wrap all content except footer -->
<div class="navbar navbar-inverse navbar-static-top hidden-print">
<div class="navbar-inner">
<div class="container">
<a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a class="brand" href="../../"><i class="icon-flag"></i> Font Awesome</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="hidden-tablet "><a href="../../">Home</a></li>
<li><a href="../../get-started/">Get Started</a></li>
<li class="dropdown-split-left"><a href="../../icons/">Icons</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../icons/"><i class="icon-flag icon-fixed-width"></i> Icons</a></li>
<li class="divider"></li>
<li><a href="../../icons/#new"><i class="icon-shield icon-fixed-width"></i> New Icons in 3.2.1</a></li>
<li><a href="../../icons/#web-application"><i class="icon-camera-retro icon-fixed-width"></i> Web Application Icons</a></li>
<li><a href="../../icons/#currency"><i class="icon-won icon-fixed-width"></i> Currency Icons</a></li>
<li><a href="../../icons/#text-editor"><i class="icon-file-text-alt icon-fixed-width"></i> Text Editor Icons</a></li>
<li><a href="../../icons/#directional"><i class="icon-hand-right icon-fixed-width"></i> Directional Icons</a></li>
<li><a href="../../icons/#video-player"><i class="icon-play-sign icon-fixed-width"></i> Video Player Icons</a></li>
<li><a href="../../icons/#brand"><i class="icon-github icon-fixed-width"></i> Brand Icons</a></li>
<li><a href="../../icons/#medical"><i class="icon-medkit icon-fixed-width"></i> Medical Icons</a></li>
</ul>
</li>
<li class="dropdown-split-left"><a href="../../examples/">Examples</a></li>
<li class="dropdown dropdown-split-right hidden-phone">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-caret-down"></i>
</a>
<ul class="dropdown-menu pull-right">
<li><a href="../../examples/">Examples</a></li>
<li class="divider"></li>
<li><a href="../../examples/#new-styles">New Styles</a></li>
<li><a href="../../examples/#inline-icons">Inline Icons</a></li>
<li><a href="../../examples/#larger-icons">Larger Icons</a></li>
<li><a href="../../examples/#bordered-pulled">Bordered & Pulled</a></li>
<li><a href="../../examples/#buttons">Buttons</a></li>
<li><a href="../../examples/#button-groups">Button Groups</a></li>
<li><a href="../../examples/#button-dropdowns">Button Dropdowns</a></li>
<li><a href="../../examples/#bulleted-lists">Bulleted Lists</a></li>
<li><a href="../../examples/#navigation">Navigation</a></li>
<li><a href="../../examples/#form-inputs">Form Inputs</a></li>
<li><a href="../../examples/#animated-spinner">Animated Spinner</a></li>
<li><a href="../../examples/#rotated-flipped">Rotated & Flipped</a></li>
<li><a href="../../examples/#stacked">Stacked</a></li>
<li><a href="../../examples/#custom">Custom CSS</a></li>
</ul>
</li>
<li><a href="../../whats-new/">
<span class="hidden-tablet">What's </span>New</a>
</li>
<li><a href="../../community/">Community</a></li>
<li><a href="../../license/">License</a></li>
</ul>
<ul class="nav pull-right">
<li><a href="http://blog.fontawesome.io">Blog</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="jumbotron jumbotron-icon">
<div class="container">
<div class="info-icons">
<i class="icon-stackexchange icon-6"></i>
<span class="hidden-phone">
<i class="icon-stackexchange icon-5"></i>
<span class="hidden-tablet"><i class="icon-stackexchange icon-4"></i> </span>
<i class="icon-stackexchange icon-3"></i>
<i class="icon-stackexchange icon-2"></i>
</span>
<i class="icon-stackexchange icon-1"></i>
</div>
<h1 class="info-class">
icon-stackexchange
<small>
<i class="icon-stackexchange"></i> ·
Unicode: <span class="upper">f16c</span> ·
Created: v3.2 ·
Categories:
Brand Icons
</small>
</h1>
</div>
</div>
<div class="container">
<section>
<div class="row-fluid">
<div class="span9">
<p>After you get <a href="../../integration/">up and running</a>, you can place Font Awesome icons just about anywhere with the <code><i></code> tag:</p>
<div class="well well-transparent">
<div style="font-size: 24px; line-height: 1.5em;">
<i class="icon-stackexchange"></i> icon-stackexchange
</div>
</div>
<div class="highlight"><pre><code class="html"><span class="nt"><i</span> <span class="na">class=</span><span class="s">"icon-stackexchange"</span><span class="nt">></i></span> icon-stackexchange
</code></pre></div>
<br>
<div class="lead"><i class="icon-info-sign"></i> Looking for more? Check out the <a href="../../examples/">examples</a>.</div>
</div>
<div class="span3">
<div class="info-ad"><div id="carbonads-container"><div class="carbonad"><div id="azcarbon"></div><script type="text/javascript">var z = document.createElement("script"); z.type = "text/javascript"; z.async = true; z.src = "http://engine.carbonads.com/z/32291/azcarbon_2_1_0_VERT"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(z, s);</script></div></div>
</div>
</div>
</div>
</section>
</div>
<div class="push"><!-- necessary for sticky footer --></div>
</div>
<footer class="footer hidden-print">
<div class="container text-center">
<div>
<i class="icon-flag"></i> Font Awesome 3.2.1
<span class="hidden-phone">·</span><br class="visible-phone">
Created and Maintained by <a href="http://twitter.com/davegandy">Dave Gandy</a>
</div>
<div>
Font Awesome licensed under <a href="http://scripts.sil.org/OFL">SIL OFL 1.1</a>
<span class="hidden-phone">·</span><br class="visible-phone">
Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>
<span class="hidden-phone hidden-tablet">·</span><br class="visible-phone visible-tablet">
Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>
</div>
<div>
Thanks to <a href="http://maxcdn.com"><i class="icon-maxcdn"></i> MaxCDN</a> for providing the excellent <a href="http://www.bootstrapcdn.com/#tab_fontawesome">BootstrapCDN for Font Awesome</a>
</div>
<div class="project">
<a href="https://github.com/FortAwesome/Font-Awesome">GitHub Project</a> ·
<a href="https://github.com/FortAwesome/Font-Awesome/issues">Issues</a>
</div>
</div>
</footer>
<script src="http://platform.twitter.com/widgets.js"></script>
<script src="../../assets/js/jquery-1.7.1.min.js"></script>
<script src="../../assets/js/ZeroClipboard-1.1.7.min.js"></script>
<script src="../../assets/js/bootstrap-2.3.1.min.js"></script>
<script src="../../assets/js/site.js"></script>
</body>
</html>
|
wsgi/static/reeborg/src/html/begin.html | coursemdetw/2014c2 | <!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="description" content="Free Interactive Programming Tutorials">
<meta name="keywords" content="JavaScript,Python,Programming">
<meta name="author" content="André Roberge">
<meta name="license" content="CC BY-NC-SA 3.0">
<link href="../css/jquery-ui.custom.min.css" rel="stylesheet" >
<link rel="stylesheet" href="http://cdn.jsdelivr.net/codemirror/3.0/codemirror.css">
<link rel="stylesheet" href="../css/reeborg.css"> <!-- load after codemirror.css -->
<title>Reeborg's world</title>
</head>
<body>
<header class="blue-gradient green-border">
<a id="logo" href="../index.html" class="fake_button">Reeborg</a>
<div id="header-child">
<button class="active reverse-blue-gradient" label="content-panel">Content</button>
<button class="active reverse-blue-gradient" label="editor-panel">Editor</button>
<button class="active reverse-blue-gradient" label="world-panel">World</button>
<button class="blue-gradient" label="output-panel">Diary</button>
</div>
<div>
<button class="blue-gradient" id="toc-button">Table of Contents</button>
<button class="blue-gradient" id="help-button">Help</button>
<button class="blue-gradient" id="about-button">About</button>
<button class="blue-gradient" id="contribute-button">Contribute</button>
</div>
</header>
<div id="panels">
<div id="content-panel" class="panel active">
<div id="content">Loading content...</div>
</div>
<div id="editor-panel" class="panel active" >
<div id="tabs">
<ul>
<li><a id="editor-link" href="#editor">Code</a></li>
<li><a id="library-link" href="#library">Library</a></li>
<li><a id="notes-link" href="#notes">Notes</a></li>
<button class="blue-gradient float-right" id="save-library">Save</button> <span id="saved">Saved!</span>
</ul>
<div id="editor">
<span id="library-problem">Problem with code in library!</span>
<textarea id="code" name="code">move();</textarea>
</div>
<div id="library">
<textarea id="library-code" name="library-code">
/* Sorry - if you see this, it means that
your browser is incapable of using the
Library or the Notes the way they been have designed.
You could write code here ... but it will
not be saved for next time you visit.
Have you tried Firefox or Chrome? */
</textarea>
</div>
<div id="notes">
<br>
<p>Keep your personal notes here; they will be available from any page on this site.
You can choose to use html syntax for formatting.</p>
<p>
<form name="notes_editor" id="notes_editor">
<textarea name="data" rows="5" id="data_entry"></textarea><br>
<span id="undo_delete"></span><span class="float-right">HTML</span>
<input type="checkbox" name="check_html" class="float-right"/>
<a href="javascript:addNote();" class="blue-gradient fake_button float-right">Add Note</a><br class="clear">
</form>
</p>
<div id="notes_list"></div>
</div>
</div>
</div>
<div id="world-panel" class="panel active" >
<div id="canvas-wrapper">
<canvas id="background_canvas" width="560" height="460"></canvas>
<canvas id="wall_canvas" width="560" height="460"></canvas>
<canvas id="trace_canvas" width="560" height="460"></canvas>
<canvas id="robot_canvas" width="560" height="460"></canvas>
<button class="blue-gradient" id="run" disabled="true" onClick="RUR.controls.run();">Execute</button>
<button class="blue-gradient" id="pause" disabled="true" onClick="RUR.controls.pause();">Pause</button>
<button class="blue-gradient" id="step" disabled="true" onClick="RUR.controls.step();">Step</button>
<button class="blue-gradient" id="stop" disabled="true" onClick="RUR.controls.stop();">Stop</button>
<button class="blue-gradient" id="reload" disabled="true" onClick="RUR.controls.reload();">Reload</button>
<select id="select_world">
<option value="remove" selected>Select a world</option>
<option value="../json/alone.json">Alone</option>
<option value="../json/home1.json">Home 1</option>
<option value="../json/home2.json">Home 2</option>
<option value="../json/home3.json">Home 3</option>
</select>
<div id="Reeborg-says" title="Reeborg says" style="display:none"></div>
<div id="Reeborg-shouts" title="Reeborg shouts" style="display:none"></div>
</div>
</div>
<div id="output-panel" class="panel">
<button class="blue-gradient" id="run2" onClick="RUR.controls.run2();">Execute</button>
<button class="blue-gradient" id="clear" disabled="true" onClick="RUR.controls.clear();">Clear</button>
<button class="blue-gradient" id="deselect" disabled="true" onClick="RUR.controls.deselect();">Deselect World</button>
<h3>Reeborg's diary</h3>
<pre id="output-pre"></pre>
</div>
</div>
<div id="toc" title="Table of Contents">Retrieving...</div>
<div id="help" title="Help">Retrieving...</div>
<div id="about" title="About">Retrieving...</div>
<div id="contribute" title="Contribute">Retrieving...</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.10.0/jquery-ui.min.js"></script>
<script src="http://cdn.jsdelivr.net/codemirror/3.0/codemirror.js"></script>
<script src="http://cdn.jsdelivr.net/codemirror/3.0/mode/javascript/javascript.js"></script>
<script src="../js/reeborg.js"></script>
<script>
var editor = CodeMirror.fromTextArea(document.getElementById('code'), {
mode: 'javascript',
tabMode: 'indent',
lineNumbers: true,
theme: 'reeborg-dark',
indentUnit: 4
});
var library = CodeMirror.fromTextArea(document.getElementById('library-code'), {
mode: 'javascript',
tabMode: 'indent',
lineNumbers: true,
theme: 'reeborg-dark',
indentUnit: 4
});
$("#select_world").change(function() {
$("select option[value='remove']").remove();
$.get($(this).val(), function(data) {
RUR.world.import_(data);
RUR.world.reset();
RUR.controls.reload();
$("#run2").attr("disabled", "true");
$("#deselect").removeAttr("disabled");
$("#clear").attr("disabled", "true");
});
});
RUR.visible_world.init();
RUR.controls = new RUR.Controls("javascript");
</script>
<script src="../libs/jshint.js"></script>
</body>
</html>
|
lib/tpl/bootstrap3/extra/hooks/navbar.html | tadone/dokuwiki | <?php
/**
* DokuWiki Bootstrap3 Template: navbar.html
*
* @link http://dokuwiki.org/template:bootstrap3
* @author Giuseppe Di Terlizzi <giuseppe.diterlizzi@gmail.com>
* @license GPL 2 (http://www.gnu.org/licenses/gpl.html)
*
* Copy this file in <dokuwiki>/conf directory
*/
?>
<?php global $ID ?>
<li<?php echo ((wl($ID) == wl()) ? ' class="active"' : ''); ?>>
<?php tpl_link(wl(), '<i class="glyphicon glyphicon-home"></i> Home') ?>
</li>
|
wp-content/plugins/Ultimate_VC_Addons/assets/css/headings.css | bechirbenhammed/critiques | @charset "utf-8";
.uvc-heading {
text-align: center
}
.uvc-heading .uvc-main-heading h1,
.uvc-heading .uvc-main-heading h2,
.uvc-heading .uvc-main-heading h3,
.uvc-heading .uvc-main-heading h4,
.uvc-heading .uvc-main-heading h5,
.uvc-heading .uvc-main-heading h6 {
margin: 0;
padding: 0;
line-height: normal
}
.uvc-heading-spacer {
margin: 0 auto;
padding: 0;
position: relative;
overflow: hidden
}
.uvc-heading-spacer .aio-icon {
vertical-align: text-top
}
.uvc-heading-spacer img {
vertical-align: middle;
box-shadow: none!important;
max-width: 100%
}
.uvc-heading-spacer.line_with_icon:before {
content: "";
position: absolute;
bottom: 50%;
right: 0;
border-width: 0;
top: 50%
}
.uvc-heading-spacer.line_with_icon:after {
content: "";
position: absolute;
bottom: 50%;
left: 0;
border-width: 0;
top: 50%
}
.uvc-headings-line {
display: block;
width: 100%;
max-width: 100%
}
.uvc-sub-heading {
line-height: normal;
margin: 0 auto
}
.uvc-sub-heading div,
.uvc-sub-heading p {
font-family: inherit!important;
font-weight: inherit!important;
font-size: inherit!important;
color: inherit!important;
line-height: inherit!important
}
.uvc-heading p {
word-break: normal;
word-wrap: normal;
-ms-word-break: normal;
-ms-word-wrap: normal;
} |
gh-pages/json-schema/gdbots/pbjx/mixin/response/index.html | gdbots/schemas | <html>
<body>
<h1>Gdbots Schemas</h1>
<hr/>
<pre>
<a href="../">../</a>
<a href="1-0-0.json">1-0-0.json</a>
<a href="1-0-1.json">1-0-1.json</a>
<a href="1-0-2.json">1-0-2.json</a>
<a href="latest.json">latest.json</a>
</pre>
</body>
</html>
|
third_party/blink/web_tests/wpt_internal/speech/scripted/speechrecognition-errors.html | scheib/chromium | <!doctype html>
<title>Test Speech JavaScript API errors</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script type="module">
import {MockSpeechRecognizer} from '../resources/mock-speechrecognizer.js';
import {SpeechRecognitionErrorCode} from '/gen/third_party/blink/public/mojom/speech/speech_recognition_error_code.mojom.m.js';
const mock = new MockSpeechRecognizer();
async_test(t => {
const r = new webkitSpeechRecognition();
for (const prop in r) {
if (prop.match('^on')) {
r[prop] = function() {
assert_unreached('unexpected ' + event.type + ' event!');
}
}
}
let count = 0;
r.start();
mock.setMockSpeechRecognitionError(SpeechRecognitionErrorCode.kNotAllowed);
// Check that we get an error event.
r.onerror = t.step_func(event => {
assert_equals(count, 0);
count++;
assert_equals(event.error, 'not-allowed');
assert_equals(event.message, '');
assert_equals(event.type, 'error');
});
// Check that we get an end event after the error event.
r.onend = t.step_func_done(() => {
assert_equals(count, 1);
});
}, 'Not-allowed error test');
</script>
|
tools/tmake/test/index1.html | seem-sky/treefrog-framework | <html><body>
<a href="www.hoge.com"><span data-tf="@val1">ここです</span></a>
</body></html>
|
webapi/tct-messaging-mms-tizen-tests/messaging/MessageStorage_findMessages_filter_hasAttachment_valid.html | JianfengXu/crosswalk-test-suite | <!DOCTYPE html>
<!--
Copyright (c) 2013 Samsung Electronics Co., Ltd.
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.
Authors:
Andrzej Krolikowski <a.krolikowsk@samsung.com>
-->
<html>
<head>
<title>MessageStorage_findMessages_filter_hasAttachment_valid</title>
<meta charset="utf-8">
<script type="text/javascript" src="support/unitcommon.js"></script>
<script type="text/javascript" src="support/messaging_common.js"></script>
</head>
<body>
<div id="log"></div>
<script>
//==== TEST: MessageStorage_findMessages_filter_hasAttachment_valid
//==== LABEL Check if MessageStorage.findMessages method works properly with filter by hasAttachment equal to false
//==== PRIORITY P2
//==== ONLOAD_DELAY 90
//==== SPEC Tizen Web API:Communication:Messaging:MessageStorage:findMessages M
//==== SPEC_URL https://developer.tizen.org/help/topic/org.tizen.web.device.apireference/tizen/messaging.html
//==== TEST_CRITERIA MOA
setup({timeout: 90000});
var t = async_test(document.title, {timeout: 90000}),
mmsService, serviceError, serviceSuccess, addError, addSuccess, findError, findSuccess,
hasAttachmentFilter = new tizen.AttributeFilter("hasAttachment", "EXACTLY", false);
t.step(function () {
findSuccess = t.step_func(function (messages) {
t.done();
});
findError = t.step_func(function (error) {
assert_unreached("findMessages() error callback: name:" + error.name + ", msg:" + error.message);
});
addSuccess = t.step_func(function () {
mmsService.messageStorage.findMessages(hasAttachmentFilter, findSuccess, findError);
});
addError = t.step_func(function (error) {
assert_unreached("addDraftMessage() error callback: name:" + error.name + ", msg:" + error.message);
});
serviceSuccess = t.step_func(function (services) {
assert_greater_than(services.length, 0, "Received empty services array");
mmsService = services[0];
addMMSDraft(t, mmsService, {
subject: generateSubject(),
to: [TEST_SMS_RECIPIENT],
plainBody: "sample plainBody"
}, addSuccess);
});
serviceError = t.step_func(function (error) {
assert_unreached("getMessageServices() error callback: name:" + error.name + ", msg:" + error.message);
});
tizen.messaging.getMessageServices("messaging.mms", serviceSuccess, serviceError);
});
</script>
</body>
</html>
|
pandas/tests/io/formats/data/html/render_links_true.html | rs2/pandas | <table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>foo</th>
<th>bar</th>
<th>None</th>
</tr>
</thead>
<tbody>
<tr>
<th>0</th>
<td>0</td>
<td><a href="https://pandas.pydata.org/?q1=a&q2=b" target="_blank">https://pandas.pydata.org/?q1=a&q2=b</a></td>
<td>pydata.org</td>
</tr>
<tr>
<th>1</th>
<td>0</td>
<td>www.pydata.org</td>
<td>pydata.org</td>
</tr>
</tbody>
</table>
|
third_party/blink/web_tests/fast/canvas/canvas-drawImage-video.html | scheib/chromium | <html>
<head>
<title>Ensure correct behavior of drawImage video elements.</title>
<style type="text/css">
video {
display: none;
}
</style>
</head>
<body>
<canvas id="canvas"></canvas>
<video id="video"></video><
<script>
var length = 150;
var canvas = document.getElementById("canvas");
canvas.setAttribute("width", length);
canvas.setAttribute("height", length);
var ctx = canvas.getContext("2d");
var video = document.getElementById("video");
video.requestVideoFrameCallback(drawImageToCanvas);
video.src = "resources/canvas_video.webm";
video.play();
function drawImageToCanvas() {
ctx.fillStyle = "blue";
ctx.fillRect(0, 0, length, length);
ctx.drawImage(video, 0, 0);
ctx.globalAlpha = 0.5;
ctx.drawImage(video, 0, 60);
if (window.testRunner)
testRunner.notifyDone();
}
</script>
</body>
</html>
|
vendor/Angular/v1.2.21/docs/examples/example-example89/index.html | pgarciacamou/angular-calculator | <!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Example - example-example89</title>
<script src="../../../angular.min.js"></script>
</head>
<body ng-app="">
1+2={{1+2}}
</body>
</html> |
suite/libsass-todo-tests/extend-tests/027_test_universal_unification_with_namespaceless_universal_target/expected.compact.css | mgreter/sass-specs | -a *|*.foo, -a * { a: b; }
|
web/vendor/angular-1.0.8/docs/partials/api/angular.mock.dump.html | pgodel/podisum | <h1><code ng:non-bindable="">angular.mock.dump</code>
<span class="hint">(API in module <code ng:non-bindable="">ng</code>
)</span>
</h1>
<div><a href="http://github.com/angular/angular.js/edit/master/src/ngMock/angular-mocks.js" class="improve-docs btn btn-primary">Improve this doc</a><h2 id="Description">Description</h2>
<div class="description"><div class="angular-mock-dump-page"><p><em>NOTE</em>: this is not an injectable instance, just a globally available function.</p>
<p>Method for serializing common angular objects (scope, elements, etc..) into strings, useful for debugging.</p>
<p>This method is also available on window, where it can be used to display objects on debug console.</p></div></div>
<h2 id="Usage">Usage</h2>
<div class="usage"><pre class="prettyprint linenums">angular.mock.dump(object);</pre>
<h3 id="Parameters">Parameters</h3>
<ul class="parameters"><li><code ng:non-bindable="">object – {*} – </code>
<div class="angular-mock-dump-page"><ul>
<li>any object to turn into string.</li>
</ul></div></li>
</ul>
<h3 id="Returns">Returns</h3>
<div class="returns"><code ng:non-bindable="">{string}</code>
– <div class="angular-mock-dump-page"><p>a serialized string of the argument</p></div></div>
</div>
</div>
|
server_code/commons-lang3-3.4/apidocs/org/apache/commons/lang3/math/package-summary.html | andrei128x/NuCS | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="de">
<head>
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
<title>org.apache.commons.lang3.math (Apache Commons Lang 3.4 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="org.apache.commons.lang3.math (Apache Commons Lang 3.4 API)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../../overview-summary.html">Overview</a></li>
<li 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="../../../../../org/apache/commons/lang3/exception/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../org/apache/commons/lang3/mutable/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/commons/lang3/math/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 org.apache.commons.lang3.math</h1>
<div class="docSummary">
<div class="block">Extends <a href="http://docs.oracle.com/javase/7/docs/api/java/math/package-summary.html?is-external=true"><code>java.math</code></a> for business mathematical classes.</div>
</div>
<p>See: <a href="#package_description">Description</a></p>
</div>
<div class="contentContainer">
<ul class="blockList">
<li class="blockList">
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation">
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption>
<tr>
<th class="colFirst" scope="col">Class</th>
<th class="colLast" scope="col">Description</th>
</tr>
<tbody>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/apache/commons/lang3/math/Fraction.html" title="class in org.apache.commons.lang3.math">Fraction</a></td>
<td class="colLast">
<div class="block"><code>Fraction</code> is a <code>Number</code> implementation that
stores fractions accurately.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><a href="../../../../../org/apache/commons/lang3/math/IEEE754rUtils.html" title="class in org.apache.commons.lang3.math">IEEE754rUtils</a></td>
<td class="colLast">
<div class="block">Provides IEEE-754r variants of NumberUtils methods.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><a href="../../../../../org/apache/commons/lang3/math/NumberUtils.html" title="class in org.apache.commons.lang3.math">NumberUtils</a></td>
<td class="colLast">
<div class="block">Provides extra functionality for Java Number classes.</div>
</td>
</tr>
</tbody>
</table>
</li>
</ul>
<a name="package_description">
<!-- -->
</a>
<h2 title="Package org.apache.commons.lang3.math Description">Package org.apache.commons.lang3.math Description</h2>
<div class="block"><p>Extends <a href="http://docs.oracle.com/javase/7/docs/api/java/math/package-summary.html?is-external=true"><code>java.math</code></a> for business mathematical classes.
This package is intended for business mathematical use, not scientific use.
See <a href="http://commons.apache.org/math/">Commons Math</a> for a more complete set of mathematical classes.
These classes are immutable, and therefore thread-safe.</p>
<p>Although Commons Math also exists, some basic mathematical functions are contained within Lang.
These include classes to a <a href="../../../../../org/apache/commons/lang3/math/Fraction.html" title="class in org.apache.commons.lang3.math"><code>Fraction</code></a> class, various utilities for random numbers, and the flagship class, <a href="../../../../../org/apache/commons/lang3/math/NumberUtils.html" title="class in org.apache.commons.lang3.math"><code>NumberUtils</code></a> which contains a handful of classic number functions.</p>
<p>There are two aspects of this package that should be highlighted.
The first is <a href="../../../../../org/apache/commons/lang3/math/NumberUtils.html#createNumber(java.lang.String)"><code>NumberUtils.createNumber(String)</code></a>, a method which does its best to convert a String into a <a href="http://docs.oracle.com/javase/7/docs/api/java/lang/Number.html?is-external=true" title="class or interface in java.lang"><code>Number</code></a> object.
You have no idea what type of Number it will return, so you should call the relevant <code>xxxValue</code> method when you reach the point of needing a number.
NumberUtils also has a related <a href="../../../../../org/apache/commons/lang3/math/NumberUtils.html#isNumber(java.lang.String)"><code>isNumber(String)</code></a> method.</p></div>
<dl><dt><span class="strong">Since:</span></dt>
<dd>2.0</dd>
<dt><span class="strong">Version:</span></dt>
<dd>$Id: package-info.java 1559146 2014-01-17 15:23:19Z britter $</dd></dl>
</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="../../../../../org/apache/commons/lang3/exception/package-summary.html">Prev Package</a></li>
<li><a href="../../../../../org/apache/commons/lang3/mutable/package-summary.html">Next Package</a></li>
</ul>
<ul class="navList">
<li><a href="../../../../../index.html?org/apache/commons/lang3/math/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 © 2001–2015 <a href="http://www.apache.org/">The Apache Software Foundation</a>. All rights reserved.</small></p>
</body>
</html>
|
inria_demo/web/bin/htdocs/assets/css/themes/bootstrap.css | CARMinesDouai/MultiRobotExplorationPackages | /**
* alertifyjs 1.11.1 http://alertifyjs.com
* AlertifyJS is a javascript framework for developing pretty browser dialogs and notifications.
* Copyright 2018 Mohammad Younes <Mohammad@alertifyjs.com> (http://alertifyjs.com)
* Licensed under GPL 3 <https://opensource.org/licenses/gpl-3.0>*/
.alertify .ajs-dimmer {
background-color: #000;
opacity: .5;
}
.alertify .ajs-dialog {
max-width: 600px;
min-height: 122px;
background-color: #fff;
border: 1px solid rgba(0, 0, 0, 0.2);
-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
border-radius: 6px;
}
.alertify .ajs-header {
color: #333;
border-bottom: 1px solid #e5e5e5;
border-radius: 6px 6px 0 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 18px;
}
.alertify .ajs-body {
font-family: 'Roboto', sans-serif;
color: black;
}
.alertify.ajs-resizable .ajs-content,
.alertify.ajs-maximized:not(.ajs-resizable) .ajs-content {
top: 58px;
bottom: 68px;
}
.alertify .ajs-footer {
background-color: #fff;
padding: 15px;
border-top: 1px solid #e5e5e5;
border-radius: 0 0 6px 6px;
}
.alertify-notifier .ajs-message {
background: rgba(255, 255, 255, 0.95);
color: #000;
text-align: center;
border: solid 1px #ddd;
border-radius: 2px;
}
.alertify-notifier .ajs-message.ajs-success {
color: #fff;
background: rgba(91, 189, 114, 0.95);
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}
.alertify-notifier .ajs-message.ajs-error {
color: #fff;
background: rgba(217, 92, 92, 0.95);
text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.5);
}
.alertify-notifier .ajs-message.ajs-warning {
background: rgba(252, 248, 215, 0.95);
border-color: #999;
}
|
Dead-of-Night/Dead_of_Night_2e.css | Roll20/roll20-character-sheets | /*! ----------------- DEAD OF NIGHT CSS v1.01 ------------------ */
@import url("https://fonts.googleapis.com/css?family=Special+Elite&display=swap");
.sheet-wrapper,
.sheet-rolltemplate-skill {
font-family: "Special Elite", serif;
}
.sheet-main {
display: grid;
grid-gap: 6px 12px;
grid-template-areas: "skills survival target" "skills notes notes" "skills habits habits";
grid-template-columns: 50% 25% 25%;
grid-template-rows: 105px auto 137px;
width: calc(100% - 4rem);
min-width: 680px;
max-width: 680px;
height: auto;
padding: 2rem;
}
.sheet-edit {
padding: 2rem;
width: calc(100% - 4rem);
min-width: 340px;
max-width: 680px;
}
.sheet-edit > div {
border: 2px dotted #f5f5f5;
box-shadow: 2px 2px 12px 0 #f0f0f0;
}
.sheet-tabs {
position: relative;
width: 680px;
padding: 0 2rem;
border-bottom: 2px solid #aaa;
z-index: 2;
}
.sheet-footer {
padding: 2rem 0;
width: calc(100% - 4rem);
min-width: 340px;
max-width: 680px;
}
label {
display: block;
height: 1.5em;
}
textarea {
width: calc(100% - 1em);
height: calc(100% - 4em);
}
.sheet-section {
padding: 1rem;
border: 2px dotted #f5f5f5;
box-shadow: 2px 2px 12px 0 #f0f0f0;
}
.sheet-u-w100 {
width: 100%;
}
.sheet-u-font-small {
font-size: 1em;
}
.sheet-u-font-med {
font-size: 1.3em;
}
.sheet-u-font-large {
font-size: 1.8em;
}
.sheet-u-ucase {
text-transform: uppercase;
}
.sheet-u-text-right {
text-align: right;
}
.sheet-u-text-center {
text-align: center;
}
.sheet-u-hide {
display: none;
}
.sheet-u-block {
display: block;
}
.sheet-u-flex {
display: flex;
}
.sheet-u-flex-align-center {
align-items: center;
}
.sheet-u-flex-justify-center {
justify-content: center;
}
.sheet-u-flex-justify-end {
justify-content: flex-end;
}
.sheet-u-flexcol {
flex-direction: column;
}
.sheet-u-flexrow {
flex-direction: row;
}
.sheet-u-flexrow-reverse {
flex-direction: row-reverse;
}
.sheet-name {
grid-area: name;
}
.sheet-notes {
grid-area: notes;
}
.sheet-skills {
grid-area: skills;
}
.sheet-survival {
grid-area: survival;
}
.sheet-habits {
grid-area: habits;
}
.sheet-target {
grid-area: target;
}
.sheet-skill:not(:last-child) {
border-bottom: 2px dashed #aaa;
}
.sheet-skill__row {
padding: 0.5rem 0 1rem;
}
.sheet-skill--specs {
padding: 0.5rem 0;
background-color: #f5f5f5;
}
.sheet-edit__specs {
background-color: #f5f5f5;
}
.sheet-skill__column {
flex-basis: 100%;
padding: 0 1rem;
}
.sheet-button {
transition-property: background-color, border;
transition-duration: 0.2s;
transition-timing-function: ease-in-out;
border-radius: 3px;
background-image: none;
text-shadow: none;
}
.sheet-button__text {
display: block;
padding-top: 0.5em;
padding-bottom: 0.5em;
}
.sheet-button__tab-text {
display: block;
padding-top: 0.5em;
}
.sheet-button::before {
display: none;
}
.sheet-button--roll {
position: relative;
width: 2em;
border: 2px solid #aaa;
background-color: #e3e3e3;
}
.sheet-button--roll::before {
content: "ROLL" !important;
display: block;
position: absolute;
bottom: -1px;
left: 50%;
width: 40px;
height: 16px;
transform: translateX(-50%);
color: #aaa;
font-family: "Special Elite", serif !important;
font-size: 0.8em;
}
.sheet-button--mod {
padding: 0.7em 0.5em 0.3em;
border: 2px solid #aaa;
background-color: #e3e3e3;
width: 2em;
}
.sheet-button--mod:focus {
outline: none;
}
.sheet-button--roll:hover,
.sheet-button--mod:hover {
background-color: #fff;
}
.sheet-button--mod-sub:hover {
background-color: lightpink;
border-color: indianred;
}
.sheet-button--mod-add:hover {
background-color: lightgreen;
border-color: darkolivegreen;
}
.sheet-button--tab {
border-top: 2px solid #aaa;
border-right: 2px solid #aaa;
border-left: 2px solid #aaa;
border-bottom: 2px solid #aaa;
padding: 0.5em 1em 0;
margin-top: 5px;
margin-bottom: -2px;
margin-left: -2px;
border-top-left-radius: 14px;
border-top-right-radius: 14px;
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
color: #aaa;
}
.sheet-button--tab:focus {
outline: none;
}
.sheet-tabstoggle[value=character] ~ .sheet-tabs .sheet-button--tab[name=act_character],
.sheet-tabstoggle[value=edit] ~ .sheet-tabs .sheet-button--tab[name=act_edit] {
margin-top: 0;
padding-bottom: 1em;
border-bottom: 0;
background-color: white;
color: #333;
}
.sheet-display-number {
display: inline-block;
padding: 0 0.5em 0.5em;
transform: translateY(0.15em);
line-height: 1;
}
.sheet-modify-input {
padding-top: 0.5em;
}
.sheet-rolltemplate-skill {
padding-top: 0.5rem;
}
.sheet-rolltemplate-skill .sheet-template-container {
border: 2px solid #aaa;
text-align: center;
line-height: 1.2;
background-color: #f5f5f5;
box-shadow: 2px 2px 12px 0 #999;
}
.sheet-rolltemplate-skill .sheet-template-container > div {
padding: 0.5rem;
}
.sheet-rolltemplate-skill .sheet-template-header {
background-color: #aaa;
}
.sheet-rolltemplate-skill .sheet-template-row {
display: flex;
align-items: center;
justify-content: center;
}
.sheet-rolltemplate-skill .sheet-subtitle {
font-size: 1.8em;
}
.sheet-rolltemplate-skill .sheet-modifier {
font-size: 1.8em;
}
.sheet-rolltemplate-skill .sheet-template-dice {
font-family: "dicefontd10", sans-serif;
font-size: 4em;
line-height: 1;
}
.sheet-rolltemplate-skill .sheet-template-total {
padding: 0.5rem;
}
.sheet-rolltemplate-skill .sheet-template-total > span {
font-size: 1.8em;
display: inline-block;
padding-top: 0.3em;
background-color: transparent;
}
.sheet-rolltemplate-skill .sheet-template-footer--fail {
background-color: lightpink;
}
.sheet-rolltemplate-skill .sheet-template-footer--fail .sheet-template-total > span {
border-color: indianred;
}
.sheet-rolltemplate-skill .sheet-template-footer--success {
background-color: lightgreen;
}
.sheet-rolltemplate-skill .sheet-template-footer--success .sheet-template-total > span {
border-color: darkolivegreen;
}
.sheet-rolltemplate-skill .sheet-template-row-head {
padding-top: 0.3em;
}
.sheet-rolltemplate-skill .sheet-template-equal {
display: block;
padding-top: 0.5em;
font-size: 1em;
}
.sheet-tabcharacter .repcontrol {
display: none;
}
.sheet-toggle-target {
display: none;
}
.sheet-checkbox--toggle:checked + .sheet-toggle-target {
display: initial;
}
.sheet-tabcharacter,
.sheet-tabedit {
display: none;
}
.sheet-tabstoggle[value=character] ~ .sheet-tabcharacter,
.sheet-tabstoggle[value=edit] ~ .sheet-tabedit {
display: block;
}
|
web/global/vendor/highlight/styles/monokai_sublime.css | oumarxy/BOPARK | /*
Monokai Sublime style. Derived from Monokai by noformnocontent http://nn.mit-license.org/
*/
.hljs {
display: block;
padding: .5em;
overflow-x: auto;
-webkit-text-size-adjust: none;
background: #23241f;
}
.hljs,
.hljs-tag,
.css .hljs-rule,
.css .hljs-value,
.aspectj .hljs-function,
.css .hljs-function
.hljs-preprocessor,
.hljs-pragma {
color: #f8f8f2;
}
.hljs-strongemphasis,
.hljs-strong,
.hljs-emphasis {
color: #a8a8a2;
}
.hljs-bullet,
.hljs-blockquote,
.hljs-horizontal_rule,
.hljs-number,
.hljs-regexp,
.alias .hljs-keyword,
.hljs-literal,
.hljs-hexcolor {
color: #ae81ff;
}
.hljs-tag .hljs-value,
.hljs-code,
.hljs-title,
.css .hljs-class,
.hljs-class .hljs-title:last-child {
color: #a6e22e;
}
.hljs-link_url {
font-size: 80%;
}
.hljs-strong,
.hljs-strongemphasis {
font-weight: bold;
}
.hljs-emphasis,
.hljs-strongemphasis,
.hljs-class .hljs-title:last-child,
.hljs-typename {
font-style: italic;
}
.hljs-keyword,
.ruby .hljs-class .hljs-keyword:first-child,
.ruby .hljs-function .hljs-keyword,
.hljs-function,
.hljs-change,
.hljs-winutils,
.hljs-flow,
.nginx .hljs-title,
.tex .hljs-special,
.hljs-header,
.hljs-attribute,
.hljs-symbol,
.hljs-symbol .hljs-string,
.hljs-tag .hljs-title,
.hljs-value,
.alias .hljs-keyword:first-child,
.css .hljs-tag,
.css .unit,
.css .hljs-important {
color: #f92672;
}
.hljs-function .hljs-keyword,
.hljs-class .hljs-keyword:first-child,
.hljs-aspect .hljs-keyword:first-child,
.hljs-constant,
.hljs-typename,
.hljs-name,
.css .hljs-attribute {
color: #66d9ef;
}
.hljs-variable,
.hljs-params,
.hljs-class .hljs-title,
.hljs-aspect .hljs-title {
color: #f8f8f2;
}
.hljs-string,
.css .hljs-id,
.hljs-subst,
.hljs-type,
.ruby .hljs-class .hljs-parent,
.hljs-built_in,
.django .hljs-template_tag,
.django .hljs-variable,
.smalltalk .hljs-class,
.django .hljs-filter .hljs-argument,
.smalltalk .hljs-localvars,
.smalltalk .hljs-array,
.hljs-attr_selector,
.hljs-pseudo,
.hljs-addition,
.hljs-stream,
.hljs-envvar,
.apache .hljs-tag,
.apache .hljs-cbracket,
.tex .hljs-command,
.hljs-prompt,
.hljs-link_label,
.hljs-link_url {
color: #e6db74;
}
.hljs-comment,
.hljs-annotation,
.hljs-decorator,
.hljs-pi,
.hljs-doctype,
.hljs-deletion,
.hljs-shebang,
.apache .hljs-sqbracket,
.tex .hljs-formula {
color: #75715e;
}
.coffeescript .javascript,
.javascript .xml,
.tex .hljs-formula,
.xml .javascript,
.xml .vbscript,
.xml .css,
.xml .hljs-cdata,
.xml .php,
.php .xml {
opacity: .5;
}
|
lib/boost/doc/html/boost_asio/reference/io_service/poll.html | Bloodyaugust/sugarlabcppboilerplate | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>io_service::poll</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="../io_service.html" title="io_service">
<link rel="prev" href="notify_fork.html" title="io_service::notify_fork">
<link rel="next" href="poll/overload1.html" title="io_service::poll (1 of 2 overloads)">
</head>
<body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF">
<table cellpadding="2" width="100%"><tr>
<td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../../boost.png"></td>
<td align="center"><a href="../../../../../index.html">Home</a></td>
<td align="center"><a href="../../../../../libs/libraries.htm">Libraries</a></td>
<td align="center"><a href="http://www.boost.org/users/people.html">People</a></td>
<td align="center"><a href="http://www.boost.org/users/faq.html">FAQ</a></td>
<td align="center"><a href="../../../../../more/index.htm">More</a></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="notify_fork.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../io_service.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="poll/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="section">
<div class="titlepage"><div><div><h4 class="title">
<a name="boost_asio.reference.io_service.poll"></a><a class="link" href="poll.html" title="io_service::poll">io_service::poll</a>
</h4></div></div></div>
<p>
<a class="indexterm" name="idp142176144"></a>
Run the <a class="link" href="../io_service.html" title="io_service"><code class="computeroutput"><span class="identifier">io_service</span></code></a> object's event processing
loop to execute ready handlers.
</p>
<pre class="programlisting"><span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="poll/overload1.html" title="io_service::poll (1 of 2 overloads)">poll</a><span class="special">();</span>
<span class="emphasis"><em>» <a class="link" href="poll/overload1.html" title="io_service::poll (1 of 2 overloads)">more...</a></em></span>
<span class="identifier">std</span><span class="special">::</span><span class="identifier">size_t</span> <a class="link" href="poll/overload2.html" title="io_service::poll (2 of 2 overloads)">poll</a><span class="special">(</span>
<span class="identifier">boost</span><span class="special">::</span><span class="identifier">system</span><span class="special">::</span><span class="identifier">error_code</span> <span class="special">&</span> <span class="identifier">ec</span><span class="special">);</span>
<span class="emphasis"><em>» <a class="link" href="poll/overload2.html" title="io_service::poll (2 of 2 overloads)">more...</a></em></span>
</pre>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 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="notify_fork.html"><img src="../../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../io_service.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="poll/overload1.html"><img src="../../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
lib/boost/doc/html/boost/units/base_unit_inf_idp344165568.html | Bloodyaugust/sugarlabcppboilerplate | <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII">
<title>Struct base_unit_info<abstract::time_unit_tag></title>
<link rel="stylesheet" href="../../../../doc/src/boostbook.css" type="text/css">
<meta name="generator" content="DocBook XSL Stylesheets V1.78.1">
<link rel="home" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset">
<link rel="up" href="../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp" title="Header <boost/units/systems/abstract.hpp>">
<link rel="prev" href="base_unit_inf_idp344161488.html" title="Struct base_unit_info<abstract::temperature_unit_tag>">
<link rel="next" href="base_unit_inf_idp344200096.html" title="Struct base_unit_info<angle::arcminute_base_unit>">
</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="base_unit_inf_idp344161488.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="base_unit_inf_idp344200096.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
<div class="refentry">
<a name="boost.units.base_unit_inf_idp344165568"></a><div class="titlepage"></div>
<div class="refnamediv">
<h2><span class="refentrytitle">Struct base_unit_info<abstract::time_unit_tag></span></h2>
<p>boost::units::base_unit_info<abstract::time_unit_tag></p>
</div>
<h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2>
<div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"><span class="comment">// In header: <<a class="link" href="../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp" title="Header <boost/units/systems/abstract.hpp>">boost/units/systems/abstract.hpp</a>>
</span>
<span class="keyword">struct</span> <a class="link" href="base_unit_inf_idp344165568.html" title="Struct base_unit_info<abstract::time_unit_tag>">base_unit_info</a><span class="special"><</span><span class="identifier">abstract</span><span class="special">::</span><span class="identifier">time_unit_tag</span><span class="special">></span> <span class="special">{</span>
<span class="comment">// <a class="link" href="base_unit_inf_idp344165568.html#idp344166672-bb">public static functions</a></span>
<span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a class="link" href="base_unit_inf_idp344165568.html#idp344167232-bb"><span class="identifier">name</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a class="link" href="base_unit_inf_idp344165568.html#idp344168352-bb"><span class="identifier">symbol</span></a><span class="special">(</span><span class="special">)</span><span class="special">;</span>
<span class="special">}</span><span class="special">;</span></pre></div>
<div class="refsect1">
<a name="idp505084272"></a><h2>Description</h2>
<div class="refsect2">
<a name="idp505084688"></a><h3>
<a name="idp344166672-bb"></a><code class="computeroutput">base_unit_info</code> public static functions</h3>
<div class="orderedlist"><ol class="orderedlist" type="1">
<li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a name="idp344167232-bb"></a><span class="identifier">name</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li>
<li class="listitem"><pre class="literallayout"><span class="keyword">static</span> <span class="identifier">std</span><span class="special">::</span><span class="identifier">string</span> <a name="idp344168352-bb"></a><span class="identifier">symbol</span><span class="special">(</span><span class="special">)</span><span class="special">;</span></pre></li>
</ol></div>
</div>
</div>
</div>
<table xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" width="100%"><tr>
<td align="left"></td>
<td align="right"><div class="copyright-footer">Copyright © 2003-2008 Matthias Christian Schabel<br>Copyright © 2007-2010 Steven
Watanabe<p>
Distributed under the Boost Software License, Version 1.0. (See accompanying
file LICENSE_1_0.txt or copy at <a href="http://www.boost.org/LICENSE_1_0.txt" target="_top">http://www.boost.org/LICENSE_1_0.txt</a>)
</p>
</div></td>
</tr></table>
<hr>
<div class="spirit-nav">
<a accesskey="p" href="base_unit_inf_idp344161488.html"><img src="../../../../doc/src/images/prev.png" alt="Prev"></a><a accesskey="u" href="../../boost_units/Reference.html#header.boost.units.systems.abstract_hpp"><img src="../../../../doc/src/images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../../../doc/src/images/home.png" alt="Home"></a><a accesskey="n" href="base_unit_inf_idp344200096.html"><img src="../../../../doc/src/images/next.png" alt="Next"></a>
</div>
</body>
</html>
|
tracker/software/fatfs/doc/en/rename.html | DL7AD/pecanpico9 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<meta http-equiv="Content-Style-Type" content="text/css">
<link rel="up" title="FatFs" href="../00index_e.html">
<link rel="alternate" hreflang="ja" title="Japanese" href="../ja/rename.html">
<link rel="stylesheet" href="../css_e.css" type="text/css" media="screen" title="ELM Default">
<title>FatFs - f_rename</title>
</head>
<body>
<div class="para func">
<h2>f_rename</h2>
<p>Renames a file or sub-directory.</p>
<pre>
FRESULT f_rename (
const TCHAR* <span class="arg">old_name</span>, <span class="c">/* [IN] Old object name */</span>
const TCHAR* <span class="arg">new_name</span> <span class="c">/* [IN] New object name */</span>
);
</pre>
</div>
<div class="para arg">
<h4>Parameters</h4>
<dl class="par">
<dt>old_name</dt>
<dd>Pointer to a null-terminated string that specifies an existing <a href="filename.html">file or sub-directory</a> to be renamed.</dd>
<dt>new_name</dt>
<dd>Pointer to a null-terminated string that specifies the new object name. The drive number specified in this string is ignored and one determined by <tt class="arg">old_name</tt> is used instead.</dd>
</dl>
</div>
<div class="para ret">
<h4>Return Values</h4>
<p>
<a href="rc.html#ok">FR_OK</a>,
<a href="rc.html#de">FR_DISK_ERR</a>,
<a href="rc.html#ie">FR_INT_ERR</a>,
<a href="rc.html#nr">FR_NOT_READY</a>,
<a href="rc.html#ok">FR_NO_FILE</a>,
<a href="rc.html#np">FR_NO_PATH</a>,
<a href="rc.html#in">FR_INVALID_NAME</a>,
<a href="rc.html#de">FR_DENIED</a>,
<a href="rc.html#ex">FR_EXIST</a>,
<a href="rc.html#wp">FR_WRITE_PROTECTED</a>,
<a href="rc.html#id">FR_INVALID_DRIVE</a>,
<a href="rc.html#ne">FR_NOT_ENABLED</a>,
<a href="rc.html#ns">FR_NO_FILESYSTEM</a>,
<a href="rc.html#tm">FR_TIMEOUT</a>,
<a href="rc.html#lo">FR_LOCKED</a>,
<a href="rc.html#nc">FR_NOT_ENOUGH_CORE</a>
</p>
</div>
<div class="para desc">
<h4>Description</h4>
<p>Renames a file or sub-directory and can also move it to other directory within the same logical drive. <em>Do not rename open objects</em> or directry table can be broken.</p>
</div>
<div class="para comp">
<h4>QuickInfo</h4>
<p>Available when <tt>_FS_READONLY == 0</tt> and <tt>_FS_MINIMIZE == 0</tt>.</p>
</div>
<div class="para use">
<h4>Example</h4>
<pre>
<span class="c">/* Rename an object */</span>
f_rename("oldname.txt", "newname.txt");
<span class="c">/* Rename and move an object to other directory */</span>
f_rename("oldname.txt", "dir1/newname.txt");
</pre>
</div>
<p class="foot"><a href="../00index_e.html">Return</a></p>
</body>
</html>
|
mallet-2.0.6/doc/api/cc/mallet/util/tests/TestRandom.html | napsternxg/twitter_nlp | <!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_10) on Tue Sep 28 15:42:21 EDT 2010 -->
<TITLE>
TestRandom (Mallet 2 API)
</TITLE>
<META NAME="keywords" CONTENT="cc.mallet.util.tests.TestRandom class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="TestRandom (Mallet 2 API)";
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TestRandom.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../cc/mallet/util/tests/TestPropertyList.html" title="class in cc.mallet.util.tests"><B>PREV CLASS</B></A>
<A HREF="../../../../cc/mallet/util/tests/TestStrings.html" title="class in cc.mallet.util.tests"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?cc/mallet/util/tests/TestRandom.html" target="_top"><B>FRAMES</B></A>
<A HREF="TestRandom.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
cc.mallet.util.tests</FONT>
<BR>
Class TestRandom</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">junit.framework.Assert
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">junit.framework.TestCase
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>cc.mallet.util.tests.TestRandom</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>junit.framework.Test</DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>TestRandom</B><DT>extends junit.framework.TestCase</DL>
</PRE>
<P>
Created: Jan 19, 2005
<P>
<P>
<DL>
<DT><B>Version:</B></DT>
<DD>$Id: TestRandom.java,v 1.1 2007/10/22 21:37:57 mccallum Exp $</DD>
<DT><B>Author:</B></DT>
<DD><A HREF="mailto:casutton@cs.umass.edu>casutton@cs.umass.edu</A></DD>
</DL>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../cc/mallet/util/tests/TestRandom.html#TestRandom(java.lang.String)">TestRandom</A></B>(java.lang.String name)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/util/tests/TestRandom.html#main(java.lang.String[])">main</A></B>(java.lang.String[] args)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static junit.framework.Test</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/util/tests/TestRandom.html#suite()">suite</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/util/tests/TestRandom.html#testAsJava()">testAsJava</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_junit.framework.TestCase"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class junit.framework.TestCase</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>countTestCases, createResult, getName, run, run, runBare, runTest, setName, setUp, tearDown, toString</CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_junit.framework.Assert"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class junit.framework.Assert</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail, failNotEquals, failNotSame, failSame, format</CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="TestRandom(java.lang.String)"><!-- --></A><H3>
TestRandom</H3>
<PRE>
public <B>TestRandom</B>(java.lang.String name)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="suite()"><!-- --></A><H3>
suite</H3>
<PRE>
public static junit.framework.Test <B>suite</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="testAsJava()"><!-- --></A><H3>
testAsJava</H3>
<PRE>
public static void <B>testAsJava</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="main(java.lang.String[])"><!-- --></A><H3>
main</H3>
<PRE>
public static void <B>main</B>(java.lang.String[] args)
throws java.lang.Throwable</PRE>
<DL>
<DD><DL>
<DT><B>Throws:</B>
<DD><CODE>java.lang.Throwable</CODE></DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TestRandom.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../cc/mallet/util/tests/TestPropertyList.html" title="class in cc.mallet.util.tests"><B>PREV CLASS</B></A>
<A HREF="../../../../cc/mallet/util/tests/TestStrings.html" title="class in cc.mallet.util.tests"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?cc/mallet/util/tests/TestRandom.html" target="_top"><B>FRAMES</B></A>
<A HREF="TestRandom.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
mallet-2.0.6/doc/api/cc/mallet/types/tests/TestFeatureVector.html | napsternxg/twitter_nlp | <!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_10) on Tue Sep 28 15:42:19 EDT 2010 -->
<TITLE>
TestFeatureVector (Mallet 2 API)
</TITLE>
<META NAME="keywords" CONTENT="cc.mallet.types.tests.TestFeatureVector class">
<LINK REL ="stylesheet" TYPE="text/css" HREF="../../../../stylesheet.css" TITLE="Style">
<SCRIPT type="text/javascript">
function windowTitle()
{
parent.document.title="TestFeatureVector (Mallet 2 API)";
}
</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> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TestFeatureVector.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../cc/mallet/types/tests/TestFeatureSequence.html" title="class in cc.mallet.types.tests"><B>PREV CLASS</B></A>
<A HREF="../../../../cc/mallet/types/tests/TestHashedSparseVector.html" title="class in cc.mallet.types.tests"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?cc/mallet/types/tests/TestFeatureVector.html" target="_top"><B>FRAMES</B></A>
<A HREF="TestFeatureVector.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_top"></A>
<!-- ========= END OF TOP NAVBAR ========= -->
<HR>
<!-- ======== START OF CLASS DATA ======== -->
<H2>
<FONT SIZE="-1">
cc.mallet.types.tests</FONT>
<BR>
Class TestFeatureVector</H2>
<PRE>
java.lang.Object
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">junit.framework.Assert
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by ">junit.framework.TestCase
<IMG SRC="../../../../resources/inherit.gif" ALT="extended by "><B>cc.mallet.types.tests.TestFeatureVector</B>
</PRE>
<DL>
<DT><B>All Implemented Interfaces:</B> <DD>junit.framework.Test</DD>
</DL>
<HR>
<DL>
<DT><PRE>public class <B>TestFeatureVector</B><DT>extends junit.framework.TestCase</DL>
</PRE>
<P>
<HR>
<P>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<A NAME="constructor_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Constructor Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE><B><A HREF="../../../../cc/mallet/types/tests/TestFeatureVector.html#TestFeatureVector(java.lang.String)">TestFeatureVector</A></B>(java.lang.String name)</CODE>
<BR>
</TD>
</TR>
</TABLE>
<!-- ========== METHOD SUMMARY =========== -->
<A NAME="method_summary"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="2"><FONT SIZE="+2">
<B>Method Summary</B></FONT></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/types/tests/TestFeatureVector.html#main(java.lang.String[])">main</A></B>(java.lang.String[] args)</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>protected void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/types/tests/TestFeatureVector.html#setUp()">setUp</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE>static junit.framework.Test</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/types/tests/TestFeatureVector.html#suite()">suite</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/types/tests/TestFeatureVector.html#testDuplicateValueFromFeatureSequence()">testDuplicateValueFromFeatureSequence</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/types/tests/TestFeatureVector.html#testSingleValueFromFeatureSequence()">testSingleValueFromFeatureSequence</A></B>()</CODE>
<BR>
</TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
<CODE> void</CODE></FONT></TD>
<TD><CODE><B><A HREF="../../../../cc/mallet/types/tests/TestFeatureVector.html#testSizeFromFeatureSequence()">testSizeFromFeatureSequence</A></B>()</CODE>
<BR>
</TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_junit.framework.TestCase"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class junit.framework.TestCase</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>countTestCases, createResult, getName, run, run, runBare, runTest, setName, tearDown, toString</CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_junit.framework.Assert"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class junit.framework.Assert</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertEquals, assertFalse, assertFalse, assertNotNull, assertNotNull, assertNotSame, assertNotSame, assertNull, assertNull, assertSame, assertSame, assertTrue, assertTrue, fail, fail, failNotEquals, failNotSame, failSame, format</CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="TestFeatureVector(java.lang.String)"><!-- --></A><H3>
TestFeatureVector</H3>
<PRE>
public <B>TestFeatureVector</B>(java.lang.String name)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A>
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TH ALIGN="left" COLSPAN="1"><FONT SIZE="+2">
<B>Method Detail</B></FONT></TH>
</TR>
</TABLE>
<A NAME="setUp()"><!-- --></A><H3>
setUp</H3>
<PRE>
protected void <B>setUp</B>()</PRE>
<DL>
<DD><DL>
<DT><B>Overrides:</B><DD><CODE>setUp</CODE> in class <CODE>junit.framework.TestCase</CODE></DL>
</DD>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="testDuplicateValueFromFeatureSequence()"><!-- --></A><H3>
testDuplicateValueFromFeatureSequence</H3>
<PRE>
public void <B>testDuplicateValueFromFeatureSequence</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="testSingleValueFromFeatureSequence()"><!-- --></A><H3>
testSingleValueFromFeatureSequence</H3>
<PRE>
public void <B>testSingleValueFromFeatureSequence</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="testSizeFromFeatureSequence()"><!-- --></A><H3>
testSizeFromFeatureSequence</H3>
<PRE>
public void <B>testSizeFromFeatureSequence</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="suite()"><!-- --></A><H3>
suite</H3>
<PRE>
public static junit.framework.Test <B>suite</B>()</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<HR>
<A NAME="main(java.lang.String[])"><!-- --></A><H3>
main</H3>
<PRE>
public static void <B>main</B>(java.lang.String[] args)</PRE>
<DL>
<DD><DL>
</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<A NAME="navbar_bottom"><!-- --></A>
<A HREF="#skip-navbar_bottom" title="Skip navigation links"></A>
<TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0" SUMMARY="">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A>
<TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3" SUMMARY="">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../overview-summary.html"><FONT CLASS="NavBarFont1"><B>Overview</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-summary.html"><FONT CLASS="NavBarFont1"><B>Package</B></FONT></A> </TD>
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/TestFeatureVector.html"><FONT CLASS="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="package-tree.html"><FONT CLASS="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../deprecated-list.html"><FONT CLASS="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../index-all.html"><FONT CLASS="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../../../../help-doc.html"><FONT CLASS="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../cc/mallet/types/tests/TestFeatureSequence.html" title="class in cc.mallet.types.tests"><B>PREV CLASS</B></A>
<A HREF="../../../../cc/mallet/types/tests/TestHashedSparseVector.html" title="class in cc.mallet.types.tests"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../../../../index.html?cc/mallet/types/tests/TestFeatureVector.html" target="_top"><B>FRAMES</B></A>
<A HREF="TestFeatureVector.html" target="_top"><B>NO FRAMES</B></A>
<SCRIPT type="text/javascript">
<!--
if(window==top) {
document.writeln('<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>');
}
//-->
</SCRIPT>
<NOSCRIPT>
<A HREF="../../../../allclasses-noframe.html"><B>All Classes</B></A>
</NOSCRIPT>
</FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: NESTED | FIELD | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<A NAME="skip-navbar_bottom"></A>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<HR>
</BODY>
</HTML>
|
target/classes/org/olat/group/delete/_content/readyToDelete.html | RLDevOps/Demo | <p>
$header
$r.render("readyToDelete")
</p> |
source/api/apidocs-4.3/user/deleteAutoScaleVmProfile.html | resmo/cloudstack-www | <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 1.0 Transitional//EN">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="../includes/main.css" type="text/css">
<link rel="shortcut icon" href="../favicon.ico" type="image/x-icon">
<title>Apache CloudStack | The Power Behind Your Cloud</title>
</head>
<body>
<div id="insidetopbg">
<div id="inside_wrapper">
<div class="uppermenu_panel">
<div class="uppermenu_box"></div>
</div>
<div id="main_master">
<div id="inside_header">
<div class="header_top">
<a class="cloud_logo" href="http://cloudstack.org"></a>
<div class="mainemenu_panel"></div>
</div>
</div>
<div id="main_content">
<div class="inside_apileftpanel">
<div class="inside_contentpanel" style="width:930px;">
<div class="api_titlebox">
<div class="api_titlebox_left">
<span>
Apache CloudStack v4.3.0 User API Reference
</span>
<p></p>
<h1>deleteAutoScaleVmProfile</h1>
<p>Deletes a autoscale vm profile.</p>
</div>
<div class="api_titlebox_right">
<a class="api_backbutton" href="../TOC_User.html"></a>
</div>
</div>
<div class="api_tablepanel">
<h2>Request parameters</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Parameter Name</strong></td><td style="width:500px;">Description</td><td style="width:180px;">Required</td>
</tr>
<tr>
<td style="width:200px;"><strong>id</strong></td><td style="width:500px;"><strong>the ID of the autoscale profile</strong></td><td style="width:180px;"><strong>true</strong></td>
</tr>
</table>
</div>
<div class="api_tablepanel">
<h2>Response Tags</h2>
<table class="apitable">
<tr class="hed">
<td style="width:200px;"><strong>Response Name</strong></td><td style="width:500px;">Description</td>
</tr>
<tr>
<td style="width:200px;"><strong>displaytext</strong></td><td style="width:500px;">any text associated with the success or failure</td>
</tr>
<tr>
<td style="width:200px;"><strong>success</strong></td><td style="width:500px;">true if operation is executed successfully</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
<div id="footer">
<div id="footer_mainmaster">
<p>Copyright © 2013 The Apache Software Foundation, Licensed under the
<a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License, Version 2.0.</a>
<br>
Apache, CloudStack, Apache CloudStack, the Apache CloudStack logo, the CloudMonkey logo and the Apache feather logo are trademarks of The Apache Software Foundation.</p>
</div>
</div>
</div>
</div>
</body>
</html>
|
web-app/js-lib/ext-4.0.7/docs/source/FeatureDetector.html | ozoneplatform/owf-framework | <!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-env-FeatureDetector'>/**
</span> * Provides useful information about the current browser features.
* Don't instantiate directly, but use the {@link Ext#features} property instead.
*/
Ext.define('Ext.env.FeatureDetector', {
statics: {
defaultTests: {
<span id='Ext-env-FeatureDetector-property-Canvas'> /**
</span> * @property {Boolean}
* True if canvas element supported.
*/
Canvas: function() {
var element = this.getTestElement('canvas');
return !!(element && element.getContext && element.getContext('2d'));
},
<span id='Ext-env-FeatureDetector-property-SVG'> /**
</span> * @property {Boolean}
* True if SVG supported.
*/
SVG: function() {
var doc = Ext.global.document;
return !!(doc.createElementNS && !!doc.createElementNS("http:/" + "/www.w3.org/2000/svg", "svg").createSVGRect);
},
<span id='Ext-env-FeatureDetector-property-VML'> /**
</span> * @property {Boolean}
* True if VML supported.
*/
VML: function() {
var element = this.getTestElement(),
ret = false;
element.innerHTML = "<!--[if vml]><br><br><![endif]-->";
ret = (element.childNodes.length === 2);
element.innerHTML = "";
return ret;
},
<span id='Ext-env-FeatureDetector-property-Touch'> /**
</span> * @property {Boolean}
* True if we're in Sencha Touch environment.
*/
Touch: function() {
return ('ontouchstart' in Ext.global) && !(Ext.platform && Ext.platform.name.match(/Windows|MacOSX|Linux/));
},
<span id='Ext-env-FeatureDetector-property-Orientation'> /**
</span> * @property {Boolean}
* True if orientation API supported.
*/
Orientation: function() {
return ('orientation' in Ext.global);
},
<span id='Ext-env-FeatureDetector-property-Geolocation'> /**
</span> * @property {Boolean}
* True if geolocation API supported.
*/
Geolocation: function() {
return !!Ext.global.navigator.geolocation;
},
<span id='Ext-env-FeatureDetector-property-SqlDatabase'> /**
</span> * @property {Boolean}
* True if openDatabase API supported.
*/
SqlDatabase: function() {
return !!Ext.global.openDatabase;
},
<span id='Ext-env-FeatureDetector-property-Websockets'> /**
</span> * @property {Boolean}
* True if WebSocket API supported.
*/
Websockets: function() {
return 'WebSocket' in Ext.global;
},
<span id='Ext-env-FeatureDetector-property-History'> /**
</span> * @property {Boolean}
* True if history.pushState supported.
*/
History: function() {
return !!(Ext.global.history && Ext.global.history.pushState);
},
<span id='Ext-env-FeatureDetector-property-CSSTransforms'> /**
</span> * @property {Boolean}
* True if CSS transforms supported.
*/
CSSTransforms: function() {
return this.isStyleSupported('transform');
},
<span id='Ext-env-FeatureDetector-property-CSS3DTransforms'> /**
</span> * @property {Boolean}
* True if CSS 3D transforms supported.
*/
CSS3DTransforms: function() {
return this.has('csstransforms') && this.isStyleSupported('perspective');
},
<span id='Ext-env-FeatureDetector-property-CSSAnimations'> /**
</span> * @property {Boolean}
* True if CSS animations supported.
*/
CSSAnimations: function() {
return this.isStyleSupported('animationName');
},
<span id='Ext-env-FeatureDetector-property-CSSTransitions'> /**
</span> * @property {Boolean}
* True if CSS transitions supported.
*/
CSSTransitions: function() {
return this.isStyleSupported('transitionProperty');
},
<span id='Ext-env-FeatureDetector-property-Audio'> /**
</span> * @property {Boolean}
* True if audio element supported.
*/
Audio: function() {
return !!this.getTestElement('audio').canPlayType;
},
<span id='Ext-env-FeatureDetector-property-Video'> /**
</span> * @property {Boolean}
* True if video element supported.
*/
Video: function() {
return !!this.getTestElement('video').canPlayType;
}
},
stylePrefixes: ['Webkit', 'Moz', 'O', 'ms']
},
constructor: function() {
this.tests = {};
this.testElements = {};
this.registerTests(this.self.defaultTests, true);
return this;
},
has: function(name) {
if (!this.hasTest(name)) {
return false;
}
else if (this.has.hasOwnProperty(name)) {
return this.has[name];
}
else {
return this.getTestResult(name);
}
},
getTestResult: function(name) {
return !!this.getTest(name).call(this);
},
getTestElement: function(tag) {
if (!tag) {
tag = 'div';
}
if (!this.testElements[tag]) {
this.testElements[tag] = Ext.global.document.createElement(tag);
}
return this.testElements[tag];
},
registerTest: function(name, fn, isDefault) {
//<debug>
if (this.hasTest(name)) {
Ext.Error.raise({
sourceClass: "Ext.env.FeatureDetector",
sourceMethod: "registerTest",
msg: "Test name " + name + " has already been registered"
});
}
//<debug>
this.tests[name] = fn;
if (isDefault) {
this.has[name] = this.getTestResult(name);
}
return this;
},
registerTests: function(tests, isDefault) {
Ext.Object.each(tests, function(name, fn) {
this.registerTest(name, fn, isDefault);
}, this);
return this;
},
hasTest: function(name) {
return this.tests.hasOwnProperty(name);
},
getTest: function(name) {
//<debug>
if (!this.hasTest(name)) {
Ext.Error.raise({
sourceClass: "Ext.env.FeatureDetector",
sourceMethod: "getTest",
msg: "Test name " + name + " does not exist"
});
}
//<debug>
return this.tests[name];
},
getTests: function() {
return this.tests;
},
isStyleSupported: function(name, tag) {
var elementStyle = this.getTestElement(tag).style,
cName = Ext.String.capitalize(name),
i = this.self.stylePrefixes.length;
if (elementStyle[name] !== undefined) {
return true;
}
while (i--) {
if (elementStyle[this.self.stylePrefixes[i] + cName] !== undefined) {
return true;
}
}
return false;
},
isEventSupported: function(name, tag) {
var element = this.getTestElement(tag),
eventName = 'on' + name,
isSupported = false;
// When using `setAttribute`, IE skips "unload", WebKit skips
// "unload" and "resize", whereas `in` "catches" those
isSupported = (eventName in element);
if (!isSupported) {
if (element.setAttribute && element.removeAttribute) {
element.setAttribute(eventName, '');
isSupported = typeof element[eventName] === 'function';
// If property was created, "remove it" (by setting value to `undefined`)
if (typeof element[eventName] !== 'undefined') {
element[eventName] = undefined;
}
element.removeAttribute(eventName);
}
}
return isSupported;
}
}, function() {
<span id='Ext-property-features'> /**
</span> * @property {Ext.env.FeatureDetector} features
* @member Ext
* Global convenient instance of {@link Ext.env.FeatureDetector}.
*/
Ext.features = new Ext.env.FeatureDetector();
});
</pre>
</body>
</html>
|
wts/tests/audiosystem/AudioSystem_disconnect_exist.html | haoxli/web-testing-service | <!DOCTYPE html>
<!--
Copyright (c) 2014 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Authors:
Jianfeng.Xu <jianfengx.xu@intel.com>
-->
<meta charset='utf-8'>
<title>AudioSystem Test: AudioSystem_disconnect_exist</title>
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="help" href="https://wiki.tizen.org/wiki/User:Tanuk/AudioSystemAPI">
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="support/unitcommon.js"></script>
<div id="log"></div>
<script>
test(function () {
assert_true("disconnect" in tizen.audiosystem, "AudioSystem should have disconnect method");
check_method_exists(tizen.audiosystem, "disconnect");
}, document.title);
</script>
|
useradmin/help/findform.fr.html | webdev1001/webmin | <header>Chercher un utilisateur</header>
Si votre système a trop d'utilisateurs, cette page vous sera affichée
pour que vous recherchiez l'utilisateur à modifier. La recherche peut
s'éffectuer par une correspondance exacte ou d'une expression régulière
sur le nom, le vrai nom, le shell, le répertoire personnel ou le
numero d'utilisateur.
<hr>
|
third_party/blink/web_tests/http/tests/notifications/resources/iframe-permission-helper.html | nwjs/chromium.src | <!doctype html>
<html>
<head>
<title>Notification permission helper</title>
</head>
<body>
<script>
Promise.all([
Notification.requestPermission(),
navigator.permissions.query({ name: 'notifications' }),
navigator.permissions.query({ name: 'push', userVisibleOnly: true }),
]).then(results => {
parent.postMessage({
notificationPermission: Notification.permission,
notificationRequestPermission: results[0],
permissionApiNotificationPermission: results[1].state,
permissionApiPushPermission: results[2].state
}, '*' /* all origins */);
});
</script>
</body>
</html>
|
third_party/blink/web_tests/fast/canvas-api/canvas-lose-restore-max-int-size.html | scheib/chromium | <script src="../../resources/testharness.js"></script>
<script src="../../resources/testharnessreport.js"></script>
<script>
var canvas = document.createElement('canvas')
var ctx = canvas.getContext('2d');
function verifyContextLost(shouldBeLost, message) {
// Verify context loss experimentally as well as isContextLost()
ctx.fillStyle = '#0f0';
ctx.fillRect(0, 0, 1, 1);
var contextLostTest = ctx.getImageData(0, 0, 1, 1).data[1] == 0;
assert_equals(contextLostTest, shouldBeLost, message + ': Ability to read a write to context');
assert_equals(ctx.isContextLost(), shouldBeLost, message + ': Context lost state');
}
test(() => {
verifyContextLost(false, 'initial state');
}, 'Context should initially not be lost');
test(() => {
// WebIDL defines width and height as int. 2147483647 is int max.
var extremelyLargeNumber = 2147483647;
canvas.width = extremelyLargeNumber;
canvas.height = extremelyLargeNumber;
verifyContextLost(true, 'extremely large height set');
canvas.width = extremelyLargeNumber;
verifyContextLost(true, 'extremely large width set');
// Restore a sane dimension
canvas.width = 100;
canvas.height = 100;
// Restoration is async.
verifyContextLost(true, 'reasonable size set');
}, 'Context should be lost when size is set to an extremely large number and then restored when set to a reasonable number');
var lostEventHasFired = false;
promise_test(() => {
return new Promise(resolve => {
canvas.addEventListener('contextlost', () => {
assert_false(lostEventHasFired, 'contextLost should only be fired once');
lostEventHasFired = true;
verifyContextLost(true);
resolve();
});
});
}, 'contextlost event should fire after size is set to extremely large number');
promise_test(() => {
return new Promise(resolve => {
canvas.addEventListener('contextrestored', () => {
assert_true(lostEventHasFired, 'Lost context event should fire before resorted context event');
verifyContextLost(false);
resolve();
});
});
}, 'contextrestored event should fire after size is restored to a reasonable number');
</script>
|
dspace/docs/html/Installation.html | mdiggory/dryad-repo | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>DSpace Documentation : Installation</title>
<link rel="stylesheet" href="styles/site.css" type="text/css" />
<META http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<table class="pagecontent" border="0" cellpadding="0" cellspacing="0" width="100%" bgcolor="#ffffff">
<tr>
<td valign="top" class="pagebody">
<div class="pageheader">
<span class="pagetitle">
DSpace Documentation : Installation
</span>
</div>
<div class="pagesubheading">
This page last changed on Mar 11, 2011 by <font color="#0050B2">stuartlewis</font>.
</div>
<h1><a name="Installation-DSpaceSystemDocumentation%3AInstallation"></a>DSpace System Documentation: Installation</h1>
<style type='text/css'>/*<![CDATA[*/
div.rbtoc1299806510998 {margin-left: 0px;padding: 0px;}
div.rbtoc1299806510998 ul {list-style: none;margin-left: 0px;}
div.rbtoc1299806510998 li {margin-left: 0px;padding-left: 0px;}
/*]]>*/</style><div class='rbtoc1299806510998'>
<ul>
<li><span class='TOCOutline'>1</span> <a href='#Installation-FortheImpatient'>For the Impatient</a></li>
<li><span class='TOCOutline'>2</span> <a href='#Installation-PrerequisiteSoftware'>Prerequisite Software</a></li>
<ul>
<li><span class='TOCOutline'>2.1</span> <a href='#Installation-UNIXlikeOSorMicrosoftWindows'>UNIX-like OS or Microsoft Windows</a></li>
<li><span class='TOCOutline'>2.2</span> <a href='#Installation-OracleJavaJDK6orlater%28standardSDKisfine%2Cyoudon%27tneedJ2EE%29'>Oracle Java JDK 6 or later (standard SDK is fine, you don't need J2EE)</a></li>
<li><span class='TOCOutline'>2.3</span> <a href='#Installation-ApacheMaven2.2.x%28Javabuildtool%29'>Apache Maven 2.2.x (Java build tool)</a></li>
<ul>
<li><span class='TOCOutline'>2.3.1</span> <a href='#Installation-ConfiguringaProxy'>Configuring a Proxy</a></li>
</ul>
<li><span class='TOCOutline'>2.4</span> <a href='#Installation-ApacheAnt1.7orlater%28Javabuildtool%29'>Apache Ant 1.7 or later (Java build tool)</a></li>
<li><span class='TOCOutline'>2.5</span> <a href='#Installation-RelationalDatabase%3A%28PostgreSQLorOracle%29.'>Relational Database: (PostgreSQL or Oracle).</a></li>
<li><span class='TOCOutline'>2.6</span> <a href='#Installation-ServletEngine%3A%28ApacheTomcat5.5or6%2CJetty%2CCauchoResinorequivalent%29.'>Servlet Engine: (Apache Tomcat 5.5 or 6, Jetty, Caucho Resin or equivalent).</a></li>
<li><span class='TOCOutline'>2.7</span> <a href='#Installation-Perl%28onlyrequiredfor%5Cdspace%5C%2Fbin%2Fdspaceinfo.pl%29'>Perl (only required for [dspace]/bin/dspace-info.pl)</a></li>
</ul>
<li><span class='TOCOutline'>3</span> <a href='#Installation-InstallationInstructions'>Installation Instructions</a></li>
<ul>
<li><span class='TOCOutline'>3.1</span> <a href='#Installation-OverviewofInstallOptions'>Overview of Install Options</a></li>
<li><span class='TOCOutline'>3.2</span> <a href='#Installation-OverviewofDSpaceDirectories'>Overview of DSpace Directories</a></li>
<li><span class='TOCOutline'>3.3</span> <a href='#Installation-Installation'>Installation</a></li>
</ul>
<li><span class='TOCOutline'>4</span> <a href='#Installation-AdvancedInstallation'>Advanced Installation</a></li>
<ul>
<li><span class='TOCOutline'>4.1</span> <a href='#Installation-%27cron%27Jobs'>'cron' Jobs</a></li>
<li><span class='TOCOutline'>4.2</span> <a href='#Installation-MultilingualInstallation'>Multilingual Installation</a></li>
<li><span class='TOCOutline'>4.3</span> <a href='#Installation-DSpaceoverHTTPS'>DSpace over HTTPS</a></li>
<ul>
<li><span class='TOCOutline'>4.3.1</span> <a href='#Installation-ToenabletheHTTPSsupportinTomcat5.0%3A'>To enable the HTTPS support in Tomcat 5.0:</a></li>
<li><span class='TOCOutline'>4.3.2</span> <a href='#Installation-TouseSSLonApacheHTTPDwithmodjk%3A'>To use SSL on Apache HTTPD with mod_jk:</a></li>
</ul>
<li><span class='TOCOutline'>4.4</span> <a href='#Installation-TheHandleServer'>The Handle Server</a></li>
<ul>
<li><span class='TOCOutline'>4.4.1</span> <a href='#Installation-UpdatingExistingHandlePrefixes'>Updating Existing Handle Prefixes</a></li>
</ul>
<li><span class='TOCOutline'>4.5</span> <a href='#Installation-GoogleandHTMLsitemaps'>Google and HTML sitemaps</a></li>
<li><span class='TOCOutline'>4.6</span> <a href='#Installation-DSpaceStatistics'>DSpace Statistics</a></li>
</ul>
<li><span class='TOCOutline'>5</span> <a href='#Installation-WindowsInstallation'>Windows Installation</a></li>
<ul>
<li><span class='TOCOutline'>5.1</span> <a href='#Installation-PrerequisiteSoftware'>Pre-requisite Software</a></li>
<li><span class='TOCOutline'>5.2</span> <a href='#Installation-InstallationSteps'>Installation Steps</a></li>
</ul>
<li><span class='TOCOutline'>6</span> <a href='#Installation-CheckingYourInstallation'>Checking Your Installation</a></li>
<li><span class='TOCOutline'>7</span> <a href='#Installation-KnownBugs'>Known Bugs</a></li>
<li><span class='TOCOutline'>8</span> <a href='#Installation-CommonProblems'>Common Problems</a></li>
</ul></div>
<h2><a name="Installation-FortheImpatient"></a>For the Impatient</h2>
<p>Since some users might want to get their test version up and running as fast as possible, offered below is an <em>unsupported</em> outline of getting DSpace to run quickly in a Unix-based environment.</p>
<div class='panelMacro'><table class='warningMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="images/icons/emoticons/forbidden.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td>Only experienced unix admins should even attempt the following without going to the detailed <a href="#Installation-InstallationInstructions">Installation Instructions</a></td></tr></table></div>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">useradd -m dspace
gunzip -c dspace-1.x-src-release.tar.gz | tar -xf -
createuser -U postgres -d -A -P dspace
createdb -U dspace -E UNICODE dspace
cd [dspace-source]/dspace/config
vi dspace.cfg
mkdir [dspace]
chown dspace [dspace]
su - dspace
cd [dspace-source]/dspace
mvn <span class="code-keyword">package</span>
cd [dspace-source]/dspace/target/dspace-<version>-build.dir
ant fresh_install
cp -r [dspace]/webapps/* [tomcat]/webapps
/etc/init.d/tomcat start
[dspace]/bin/dspace create-administrator</pre>
</div></div>
<h2><a name="Installation-PrerequisiteSoftware"></a>Prerequisite Software</h2>
<p>The list below describes the third-party components and tools you'll need to run a DSpace server. These are just guidelines. Since DSpace is built on open source, standards-based tools, there are numerous other possibilities and setups.</p>
<p>Also, please note that the configuration and installation guidelines relating to a particular tool below are here for convenience. You should refer to the documentation for each individual component for complete and up-to-date details. Many of the tools are updated on a frequent basis, and the guidelines below may become out of date.</p>
<h3><a name="Installation-UNIXlikeOSorMicrosoftWindows"></a>UNIX-like OS or Microsoft Windows</h3>
<ul>
<li>UNIX-like OS (Linux, HP/UX, Mac OSX, etc.) : Many distributions of Linux/Unix come with some of the dependencies below pre-installed or easily installed via updates, you should consult your particular distributions documentation or local system administrators to determine what is already available.</li>
<li>Microsoft Windows: After verifying all prerequisites below, see the <a href="#Installation-WindowsInstallation">Windows Installation</a> section for Windows tailored instructions</li>
</ul>
<h3><a name="Installation-OracleJavaJDK6orlater%28standardSDKisfine%2Cyoudon%27tneedJ2EE%29"></a>Oracle Java JDK 6 or later (standard SDK is fine, you don't need J2EE)</h3>
<p>DSpace now requires <b>Oracle</b> Java 6 or greater because of usage of new language capabilities introduced in 5 and 6 that make coding easier and cleaner.</p>
<p>Java can be downloaded from the following location: <a href="http://java.sun.com/javase/downloads/index.jsp">http://java.sun.com/javase/downloads/index.jsp</a></p>
<p>Only Oracle's Java has been tested with each release and is known to work correctly. Other flavors of Java may pose problems.</p>
<h3><a name="Installation-ApacheMaven2.2.x%28Javabuildtool%29"></a>Apache Maven 2.2.x (Java build tool)</h3>
<div class='panelMacro'><table class='noteMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="images/icons/emoticons/warning.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td><b>Known issue with Maven 2.0.x and Maven 3.x and DSpace 1.7.0</b><br />DSpace 1.7.0 does not build properly when using Maven 2.0.x or Maven 3.x. This is a known issue. <b>The quick fix is to use Maven 2.2.x.</b> More information on this issue can be found in the following JIRA issue: <a href="https://jira.duraspace.org/browse/DS-788">DS-788</a>.</td></tr></table></div>
<p>Maven is necessary in the first stage of the build process to assemble the installation package for your DSpace instance. It gives you the flexibility to customize DSpace using the existing Maven projects found in the <em>[dspace-source]/dspace/modules</em> directory or by adding in your own Maven project to build the installation package for DSpace, and apply any custom interface "overlay" changes.</p>
<p>Maven can be downloaded from the following location: <a href="http://maven.apache.org/download.html">http://maven.apache.org/download.html</a></p>
<h4><a name="Installation-ConfiguringaProxy"></a>Configuring a Proxy</h4>
<p>You can configure a proxy to use for some or all of your HTTP requests in Maven 2.0. The username and password are only required if your proxy requires basic authentication (note that later releases may support storing your passwords in a secured keystore‚ in the mean time, please ensure your <em>settings.xml</em> file (usually <em>${user.home}/.m2/settings.xml</em>) is secured with permissions appropriate for your operating system).</p>
<p>Example:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"><settings>
.
.
<proxies>
<proxy>
<active><span class="code-keyword">true</span></active>
<protocol>http</protocol>
<host>proxy.somewhere.com</host>
<port>8080</port>
<username>proxyuser</username>
<password>somepassword</password>
<nonProxyHosts>www.google.com|*.somewhere.com</nonProxyHosts>
</proxy>
</proxies>
.
.
</settings> </pre>
</div></div>
<h3><a name="Installation-ApacheAnt1.7orlater%28Javabuildtool%29"></a>Apache Ant 1.7 or later (Java build tool)</h3>
<p>Apache Ant is still required for the second stage of the build process. It is used once the installation package has been constructed in <em>[dspace-source]/dspace/target/dspace-<version>-build.dir</em> and still uses some of the familiar ant build targets found in the 1.4.x build process.</p>
<p>Ant can be downloaded from the following location: <a href="http://ant.apache.org/" title="http://ant.apache.org">http://ant.apache.org</a></p>
<h3><a name="Installation-RelationalDatabase%3A%28PostgreSQLorOracle%29."></a>Relational Database: (PostgreSQL or Oracle).</h3>
<ul>
<li><b>PostgreSQL 8.2 to 8.4</b> PostgreSQL can be downloaded from the following location: <a href="http://www.postgresql.org/" title="http://www.postgresql.org/">http://www.postgresql.org/ </a>. It is highly recommended that you try to work with Postgres 8.4 or greater, however, 8.2 or greater should still work. Unicode (specifically UTF-8) support must be enabled. This is enabled by default in 8.0+. Once installed, you need to enable TCP/IP connections (DSpace uses JDBC). In <em>postgresql.conf</em>: uncomment the line starting: <em>listen_addresses = 'localhost'</em>. Then tighten up security a bit by editing <em>pg_hba.conf</em> and adding this line: <em>host dspace dspace 127.0.0.1 255.255.255.255 md5</em>. Then restart PostgreSQL.</li>
<li><b>Oracle 10g or greater</b> Details on acquiring Oracle can be downloaded from the following location: <a href="http://www.oracle.com/database/" title="http://www.oracle.com/database/">http://www.oracle.com/database/</a>. You will need to create a database for DSpace. Make sure that the character set is one of the Unicode character sets. DSpace uses UTF-8 natively, and it is suggested that the Oracle database use the same character set. You will also need to create a user account for DSpace (e.g. <em>dspace</em>) and ensure that it has permissions to add and remove tables in the database. Refer to the Quick Installation for more details.
<ul>
<li><b>NOTE:</b> DSpace uses sequences to generate unique object IDs — beware Oracle sequences, which are said to lose their values when doing a database export/import, say restoring from a backup. Be sure to run the script <em>etc/update-sequences.sql</em>.</li>
<li>For people interested in switching from Postgres to Oracle, I know of no tools that would do this automatically. You will need to recreate the community, collection, and eperson structure in the Oracle system, and then use the item export and import tools to move your content over.</li>
</ul>
</li>
</ul>
<h3><a name="Installation-ServletEngine%3A%28ApacheTomcat5.5or6%2CJetty%2CCauchoResinorequivalent%29."></a>Servlet Engine: (Apache Tomcat 5.5 or 6, Jetty, Caucho Resin or equivalent).</h3>
<ul>
<li><b>Apache Tomcat 5.5 or later.</b> Tomcat can be downloaded from the following location: <a href="http://tomcat.apache.org/whichversion.html" title="http://tomcat.apache.org">http://tomcat.apache.org</a>.
<ul>
<li>Note that DSpace will need to run as the same user as Tomcat, so you might want to install and run Tomcat as a user called '<em>dspace</em>'. Set the environment variable <em>TOMCAT_USER</em> appropriately.</li>
<li>You need to ensure that Tomcat has a) enough memory to run DSpace and b) uses UTF-8 as its default file encoding for international character support. So ensure in your startup scripts (etc) that the following environment variable is set: <em>JAVA_OPTS="-Xmx512M -Xms64M -Dfile.encoding=UTF-8"</em></li>
<li><b>Modifications in</b> <b><em>[tomcat]/conf/server.xml</em></b>: You also need to alter Tomcat's default configuration to support searching and browsing of multi-byte UTF-8 correctly. You need to add a configuration option to the <em><Connector></em> element in <em>[tomcat]/config/server.xml</em>: <em>URIEncoding="UTF-8"</em> e.g. if you're using the default Tomcat config, it should read:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"><!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
<Connector port=<span class="code-quote">"8080"</span>
maxThreads=<span class="code-quote">"150"</span>
minSpareThreads=<span class="code-quote">"25"</span>
maxSpareThreads=<span class="code-quote">"75"</span>
enableLookups=<span class="code-quote">"<span class="code-keyword">false</span>"</span>
redirectPort=<span class="code-quote">"8443"</span>
acceptCount=<span class="code-quote">"100"</span>
connectionTimeout=<span class="code-quote">"20000"</span>
disableUploadTimeout=<span class="code-quote">"<span class="code-keyword">true</span>"</span>
URIEncoding=<span class="code-quote">"UTF-8"</span>/>
</pre>
</div></div>
<p>You may change the port from 8080 by editing it in the file above, and by setting the variable <em>CONNECTOR_PORT</em> in <em>server.xml</em>.
<br class="atl-forced-newline" /></p></li>
</ul>
</li>
<li><b>Jetty or Caucho Resin</b> DSpace will also run on an equivalent servlet Engine, such as Jetty (<a href="http://www.mortbay.org/jetty/index.html" title="http://www.mortbay.org/jetty/index.html">http://www.mortbay.org/jetty/index.html</a>) or Caucho Resin (<a href="http://www.caucho.com/" title="http://www.caucho.com/)">http://www.caucho.com/)</a>. Jetty and Resin are configured for correct handling of UTF-8 by default.</li>
</ul>
<h3><a name="Installation-Perl%28onlyrequiredfor%5Cdspace%5C%2Fbin%2Fdspaceinfo.pl%29"></a>Perl (only required for [dspace]/bin/dspace-info.pl)</h3>
<h2><a name="Installation-InstallationInstructions"></a>Installation Instructions</h2>
<h3><a name="Installation-OverviewofInstallOptions"></a>Overview of Install Options</h3>
<p>With the advent of a new Apache <a href="http://maven.apache.org/" title="Maven 2">Maven 2</a> based build architecture (first introduced inDSpace 1.5.x), you now have two options in how you may wish to install and manage your local installation of DSpace. If you've used DSpace 1.4.x, please recognize that the initial build procedure has changed to allow for more customization. You will find the later 'Ant based' stages of the installation procedure familiar. Maven is used to resolve the dependencies of DSpace online from the 'Maven Central Repository' server.</p>
<p>It is important to note that the strategies are identical in terms of the list of procedures required to complete the build process, the only difference being that the Source Release includes "more modules" that will be built given their presence in the distribution package.</p>
<ul>
<li>Default Release (dspace-<version>-release.zip)
<ul>
<li>This distribution will be adequate for most cases of running a DSpace instance. It is intended to be the quickest way to get DSpace installed and running while still allowing for customization of the themes and branding of your DSpace instance.</li>
<li>This method allows you to customize DSpace configurations (in dspace.cfg) or user interfaces, using basic pre-built interface "overlays".</li>
<li>It downloads "precompiled" libraries for the core dspace-api, supporting servlets, taglibraries, aspects and themes for the dspace-xmlui, dspace-xmlui and other webservice/applications.</li>
<li>This approach exposes the parts of the application that the DSpace committers would prefer to see customized. All other modules are downloaded from the 'Maven Central Repository' The directory structure for this release is the following:
<ul>
<li><em>[dspace-source]</em>
<ul>
<li><em>dspace/</em> - DSpace 'build' and configuration module</li>
<li><em>pom.xml</em> - DSpace Parent Project definition</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
<li>Source Release (dspace-<version>-src-release.zip)
<ul>
<li>This method is recommended for those who wish to develop DSpace further or alter its underlying capabilities to a greater degree.</li>
<li>It contains <b>all</b> dspace code for the core dspace-api, supporting servlets, taglibraries, aspects and themes for Manakin (dspace-xmlui), and other webservice/applications.</li>
<li>Provides all the same capabilities as the normal release. The directory structure for this release is more detailed:
<ul>
<li><em>[dspace-source]</em>
<ul>
<li><em>dspace/</em> - DSpace 'build' and configuration module</li>
<li><em>dspace-api/</em> - Java API source module</li>
<li><em>dspace-jspui/</em> - JSP-UI source module</li>
<li><em>dspace-oai</em> - OAI-PMH source module</li>
<li><em>dspace-xmlui</em> - XML-UI (Manakin) source module</li>
<li><em>dspace-lni</em> - Lightweight Network Interface source module</li>
<li><em>dspace-sword</em> – SWORD (Simple Web-serve Offering Repository Deposit) deposit service source module</li>
<li><em>dspace-test</em> – DSpace Tests (Unit and Integration Tests)</li>
<li><em>pom.xml</em> - DSpace Parent Project definition</li>
</ul>
</li>
</ul>
</li>
</ul>
</li>
</ul>
<h3><a name="Installation-OverviewofDSpaceDirectories"></a>Overview of DSpace Directories</h3>
<p>Before beginning an installation, it is important to get a general understanding of the DSpace directories and the names by which they are generally referred. (Please attempt to use these below directory names when asking for help on the DSpace Mailing Lists, as it will help everyone better understand what directory you may be referring to.)</p>
<p>DSpace uses three separate directory trees. Although you don't need to know all the details of them in order to install DSpace, you do need to know they exist and also know how they're referred to in this document:</p>
<ol>
<li><b>The installation directory</b>, referred to as <tt>[dspace]</tt>. This is the location where DSpace is installed and running off of it is the location that gets defined in the <tt>dspace.cfg</tt> as "dspace.dir". It is where all the DSpace configuration files, command line scripts, documentation and webapps will be installed to.</li>
<li><b>The source directory</b>, referred to as <tt>[dspace-source]</tt> . This is the location where the DSpace release distribution has been unzipped into. It usually has the name of the archive that you expanded such as <tt>dspace</tt>-<tt><version></tt>-<tt>release</tt> or <tt>dspace</tt>-<tt><version></tt>-<tt>src</tt>-<tt>release</tt>. It is the directory where all of your "build" commands will be run.</li>
<li><b>The web deployment directory</b>. This is the directory that contains your DSpace web application(s). In DSpace 1.5.x and above, this corresponds to <tt>[dspace]/webapps</tt> by default. However, if you are using Tomcat, you may decide to copy your DSpace web applications from <tt>[dspace]/webapps/</tt> to <tt>[tomcat]/webapps/</tt> (with <tt>[tomcat]</tt> being wherever you installed Tomcat‚ also known as <tt>$CATALINA_HOME</tt>).<br/>
For details on the contents of these separate directory trees, refer to directories.html. <em>Note that the</em> <tt>[dspace-source]</tt> <em>and</em> <tt>[dspace]</tt> <em>directories are always separate!</em></li>
</ol>
<h3><a name="Installation-Installation"></a>Installation</h3>
<p>This method gets you up and running with DSpace quickly and easily. It is identical in both the Default Release and Source Release distributions.</p>
<ol>
<li><b>Create the DSpace user</b>. This needs to be the same user that Tomcat (or Jetty etc.) will run as. e.g. as <b><em>root</em></b> run:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">useradd -m dspace</pre>
</div></div></li>
<li><b>Download</b> the <a href="http://sourceforge.net/projects/dspace/" title="latest DSpace release">latest DSpace release</a> There are two version available with each release of DSpace: (<em>dspace-1.x-release.</em> and <em>dspace-1.x-src-release.xxx</em>); you only need to choose one. If you want a copy of all underlying Java source code, you should download the <em>dspace-1.x-src-release.xxx</em> Within each version, you have a choice of compressed file format. Choose the one that best fits your environment.</li>
<li><b>Unpack the DSpace software</b>. After downloading the software, based on the compression file format, choose one of the following methods to unpack your software:
<ol>
<li><b>Zip file</b>. If you downloaded <em>dspace-1.6-release.zip</em> do the following:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">unzip dspace-1.7-release.zip</pre>
</div></div></li>
<li><b>.gz file</b>. If you downloaded <em>dspace-1.6-release.tar.gz</em> do the following:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">gunzip -c dspace-1.7-release.tar.gz | tar -xf -</pre>
</div></div></li>
<li><b>.bz2 file</b>. If you downloaded _dspace-1.6-release.tar.bz2_do the following:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">bunzip2 dspace-1.7-release.tar.bz | tar -xf -</pre>
</div></div>
<p>For ease of reference, we will refer to the location of this unzipped version of the DSpace release as <em>[dspace-source]</em> in the remainder of these instructions. After unpacking the file, the user may which to change the ownership of the <em>dspace-1.6-release</em> to the 'dspace' user. (And you may need to change the group).</p></li>
</ol>
</li>
<li><b>Database Setup</b>
<ul>
<li><em>PostgreSQL:</em>
<ul>
<li>A PostgreSQL JDBC driver is configured as part of the default DSpace build. You no longer need to copy any PostgreSQL jars to get PostgreSQL installed.</li>
<li>Create a <tt>dspace}}database, owned by the {{dspace</tt> PostgreSQL user <em>(you are still logged in at 'root')</em>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">createuser -U postgres -d -A -P dspace
createdb -U dspace -E UNICODE dspace</pre>
</div></div>
<p>You will be prompted for a password for the DSpace database. (This isn't the same as the <em>dspace</em> user's UNIX password.)</p></li>
</ul>
</li>
<li><em>Oracle:</em>
<ul>
<li>Setting up oracle is a bit different now. You will need still need to get a Copy of the oracle JDBC driver, but instead of copying it into a lib directory you will need to install it into your local Maven repository. (You'll need to download it first from this location: <a href="http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html">http://www.oracle.com/technetwork/database/enterprise-edition/jdbc-112010-090769.html</a>) Run the following command (all on one line)
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">mvn install:install-file -Dfile=ojdbc6.jar -DgroupId=com.oracle
-DartifactId=ojdbc6 -Dversion=11.2.0.2.0 -Dpackaging=jar -DgeneratePom=<span class="code-keyword">true</span></pre>
</div></div></li>
<li>Create a database for DSpace. Make sure that the character set is one of the Unicode character sets. DSpace uses UTF-8 natively, and it is required that the Oracle database use the same character set. Create a user account for DSpace (e.g. <em>dspace</em>,) and ensure that it has permissions to add and remove tables in the database.</li>
<li>Edit the <em>[dspace-source]/dspace/config/dspace.cfg</em> database settings:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">db.name = oracle
db.url = jdbc:oracle:thin:@<span class="code-comment">//host:port/dspace
</span>db.driver = oracle.jdbc.OracleDriver
</pre>
</div></div></li>
</ul>
</li>
</ul>
</li>
<li><b>Initial Configuration:</b> Edit <tt>[dspace-source]/dspace/config/dspace.cfg</tt>, in particular you'll need to set these properties:
<ul>
<li><tt>dspace.dir</tt> - must be set to the <em>[dspace]</em> (installation) directory.</li>
<li><tt>dspace.url</tt> - complete URL of this server's DSpace home page.</li>
<li><tt>dspace.hostname</tt> - fully-qualified domain name of web server.</li>
<li><tt>dspace.name</tt> - "Proper" name of your server, e.g. "My Digital Library".</li>
<li><tt>db.password</tt> - the database password you entered in the previous step.</li>
<li><tt>mail.server</tt> - fully-qualified domain name of your outgoing mail server.</li>
<li><tt>mail.from.address</tt> - the "From:" address to put on email sent by DSpace.</li>
<li><tt>feedback.recipient</tt> - mailbox for feedback mail.</li>
<li><tt>mail.admin</tt> - mailbox for DSpace site administrator.</li>
<li><tt>alert.recipient</tt> - mailbox for server errors/alerts (not essential but very useful!)</li>
<li><tt>registration.notify</tt> - mailbox for emails when new users register (optional)
<div class='panelMacro'><table class='infoMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="images/icons/emoticons/information.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td>You can interpolate the value of one configuration variable in the value of another one. For example, to set <em>feedback.recipient</em> to the same value as <em>mail.admin</em>, the line would look like:
<br class="atl-forced-newline" /> <tt>feedback.recipient = ${mail.admin</tt>}
<br class="atl-forced-newline" />
Refer to the <a href="Configuration.html#Configuration-GeneralConfiguration">General Configuration</a> section for details and examples of the above.</td></tr></table></div></li>
</ul>
</li>
<li><b>DSpace Directory:</b> Create the directory for the DSpace installation (i.e. <tt>[dspace]</tt>). As <em>root</em> (or a user with appropriate permissions), run:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">mkdir [dspace]
chown dspace [dspace]</pre>
</div></div>
<p>(Assuming the <em>dspace</em> UNIX username.)</p></li>
<li><b>Installation Package:</b> As the <em>dspace</em> UNIX user, generate the DSpace installation package in the <tt>[dspace-source]/dspace</tt> directory:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">cd [dspace-source]/dspace/
mvn <span class="code-keyword">package</span></pre>
</div></div>
<div class='panelMacro'><table class='infoMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="images/icons/emoticons/information.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td><b>Defaults to PostgreSQL settings</b><br />Without any extra arguments, the DSpace installation package is initialized for PostgreSQL. _If you want to use Oracle instead, you should build the DSpace installation package as follows:
<br class="atl-forced-newline" /> <tt>mvn -Ddb.name=oracle package</tt></td></tr></table></div></li>
<li><b>Build DSpace and Initialize Database:</b> As the <em>dspace</em> UNIX user, initialize the DSpace database and install DSpace to <tt>[dspace]_</tt>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">cd [dspace-source]/dspace/target/dspace-[version]-build.dir
ant fresh_install</pre>
</div></div>
<div class='panelMacro'><table class='infoMacro'><colgroup><col width='24'><col></colgroup><tr><td valign='top'><img src="images/icons/emoticons/information.gif" width="16" height="16" align="absmiddle" alt="" border="0"></td><td>To see a complete list of build targets, run: <tt>ant help</tt> <em>The most likely thing to go wrong here is the database connection. See the</em> <em><a href="#Installation-CommonProblems">Common Problems</a></em> <em>Section</em>.</td></tr></table></div></li>
<li><b>Deploy Web Applications.</b> You have two choices or techniques for having Tomcat/Jetty/Resin serve up your web applications:
<ul>
<li><em>Technique A.</em> Simple and complete. You copy only (or all) of the DSpace Web application(s) you wish to use from the [dspace]/webapps directory to the appropriate directory in your Tomcat/Jetty/Resin installation. For example:
<br class="atl-forced-newline" /> <tt>cp -R [dspace]/webapps/* [tomcat]/webapps*</tt> (This will copy all the web applications to Tomcat).
<br class="atl-forced-newline" /> <tt>cp -R [dspace]/webapps/jspui [tomcat]/webapps*</tt> (This will copy only the jspui web application to Tomcat.)</li>
<li><em>Technique B.</em> Tell your Tomcat/Jetty/Resin installation where to find your DSpace web application(s). As an example, in the <tt>\<Host</tt>> section of your <tt>[tomcat]/conf/server.xml</tt> you could add lines similar to the following (but replace <tt>[dspace]</tt> with your installation location:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"><!-- Define the <span class="code-keyword">default</span> virtual host
Note: XML Schema validation will not work with Xerces 2.2.
-->
<Host name=<span class="code-quote">"localhost"</span> appBase=<span class="code-quote">"[dspace]/webapps"</span>
....</pre>
</div></div></li>
</ul>
</li>
<li><b>Administrator Account:</b> Create an initial administrator account:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">[dspace]/bin/dspace create-administrator</pre>
</div></div></li>
<li><b>Initial Startup!</b> Now the moment of truth! Start up (or restart) Tomcat/Jetty/Resin. Visit the base URL(s) of your server, depending on which DSpace web applications you want to use. You should see the DSpace home page. Congratulations! Base URLs of DSpace Web Applications:
<ul>
<li><em>JSP User Interface</em> - (e.g.) <tt><a href="http://dspace.myu.edu:8080/jspui">http://dspace.myu.edu:8080/jspui</a></tt></li>
<li><em>XML User Interface</em> (aka. Manakin) - (e.g.) <tt><a href="http://dspace.myu.edu:8080/xmlui">http://dspace.myu.edu:8080/xmlui</a></tt></li>
<li><em>OAI-PMH Interface</em> - (e.g.) <tt><a href="http://dspace.myu.edu:8080/oai/request?verb=Identify">http://dspace.myu.edu:8080/oai/request?verb=Identify</a></tt> (Should return an XML-based response)</li>
</ul>
</li>
</ol>
<p>In order to set up some communities and collections, you'll need to login as your DSpace Administrator (which you created with <tt>create-administrator</tt> above) and access the administration UI in either the JSP or XML user interface.</p>
<h2><a name="Installation-AdvancedInstallation"></a>Advanced Installation</h2>
<p>The above installation steps are sufficient to set up a test server to play around with, but there are a few other steps and options you should probably consider before deploying a DSpace production site.</p>
<h3><a name="Installation-%27cron%27Jobs"></a>'cron' Jobs</h3>
<p>A couple of DSpace features require that a script is run regularly – the e-mail subscription feature that alerts users of new items being deposited, and the new 'media filter' tool, that generates thumbnails of images and extracts the full-text of documents for indexing.</p>
<p>To set these up, you just need to run the following command as the <em>dspace</em> UNIX user:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">crontab -e</pre>
</div></div>
<p>Then add the following lines:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"># Send out subscription e-mails at 01:00 every day
0 1 * * * [dspace]/bin/dspace sub-daily
# Run the media filter at 02:00 every day
0 2 * * * [dspace]/bin/dspace filter-media
# Run the checksum checker at 03:00
0 3 * * * [dspace]/bin/dspace checker -lp
# Mail the results to the sysadmin at 04:00
0 4 * * * [dspace]/bin/dspace checker-emailer -c
</pre>
</div></div>
<p>Naturally you should change the frequencies to suit your environment.</p>
<p>PostgreSQL also benefits from regular 'vacuuming', which optimizes the indexes and clears out any deleted data. Become the <em>postgres</em> UNIX user, run <em>crontab -e</em> and add (for example):</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"># Clean up the database nightly at 4.20am
20 4 * * * vacuumdb --analyze dspace > /dev/<span class="code-keyword">null</span> 2>&1</pre>
</div></div>
<p>In order that statistical reports are generated regularly and thus kept up to date you should set up the following cron jobs:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"># Run stat analysis
0 1 * * * [dspace]/bin/dspace stat-general
0 1 * * * [dspace]/bin/dspace stat-monthly
0 2 * * * [dspace]/bin/dspace stat-report-general
0 2 * * * [dspace]/bin/dspace stat-report-monthly</pre>
</div></div>
<p>Obviously, you should choose execution times which are most useful to you, and you should ensure that the <em><del>report</del></em> scripts run a short while after the analysis scripts to give them time to complete (a run of around 8 months worth of logs can take around 25 seconds to complete); the resulting reports will let you know how long analysis took and you can adjust your cron times accordingly.</p>
<h3><a name="Installation-MultilingualInstallation"></a>Multilingual Installation</h3>
<p>In order to deploy a multilingual version of DSpace you have to configure two parameters in <em>[dspace-source]/config/dspace.cfg:</em></p>
<ul>
<li><em>default.locale</em>, e.g. <tt>default.locale = en</tt></li>
<li><em>webui.supported locales</em>, e.g. <tt>webui.supported.locales = en, de</tt></li>
</ul>
<p>The Locales might have the form country, country_language, country_language_variant.</p>
<p>According to the languages you wish to support, you have to make sure, that all the i18n related files are available see the Multilingual User Interface Configuring MultiLingual Support section for the JSPUI or the Multilingual Support for XMLUI in the configuration documentation.</p>
<h3><a name="Installation-DSpaceoverHTTPS"></a>DSpace over HTTPS</h3>
<p>If your DSpace is configured to have users login with a username and password (as opposed to, say, client Web certificates), then you should consider using HTTPS. Whenever a user logs in with the Web form (e.g. <em>dspace.myuni.edu/dspace/password-login</em>) their DSpace password is exposed in plain text on the network. This is a very serious security risk since network traffic monitoring is very common, especially at universities. If the risk seems minor, then consider that your DSpace administrators also login this way and they have ultimate control over the archive.</p>
<p>The solution is to use <em>HTTPS</em> (HTTP over SSL, i.e. Secure Socket Layer, an encrypted transport), which protects your passwords against being captured. You can configure DSpace to require SSL on all "authenticated" transactions so it only accepts passwords on SSL connections.</p>
<p>The following sections show how to set up the most commonly-used Java Servlet containers to support HTTP over SSL.</p>
<h4><a name="Installation-ToenabletheHTTPSsupportinTomcat5.0%3A"></a>To enable the HTTPS support in Tomcat 5.0:</h4>
<ol>
<li><b>For Production use:</b> Follow this procedure to set up SSL on your server. Using a "real" server certificate ensures your users' browsers will accept it without complaints. In the examples below, <em>$CATALINA_BASE</em> is the directory under which your Tomcat is installed.
<ol>
<li>Create a Java keystore for your server with the password <em>changeit</em>, and install your server certificate under the alias <em>"tomcat"</em>. This assumes the certificate was put in the file <em>server.pem</em>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">$JAVA_HOME/bin/keytool -<span class="code-keyword">import</span> -noprompt -v -storepass changeit
-keystore $CATALINA_BASE/conf/keystore -alias tomcat -file
myserver.pem</pre>
</div></div></li>
<li>Install the CA (Certifying Authority) certificate for the CA that granted your server cert, if necessary. This assumes the server CA certificate is in <em>ca.pem</em>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> $JAVA_HOME/bin/keytool -<span class="code-keyword">import</span> -noprompt -storepass changeit
-trustcacerts -keystore $CATALINA_BASE/conf/keystore -alias ServerCA
-file ca.pem
</pre>
</div></div></li>
<li>Optional – ONLY if you need to accept client certificates for the X.509 certificate stackable authentication module See the configuration section for instructions on enabling the X.509 authentication method. Load the keystore with the CA (certifying authority) certificates for the authorities of any clients whose certificates you wish to accept. For example, assuming the client CA certificate is in <em>client1.pem</em>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">$JAVA_HOME/bin/keytool -<span class="code-keyword">import</span> -noprompt -storepass changeit
-trustcacerts -keystore $CATALINA_BASE/conf/keystore -alias client1
-file client1.pem
</pre>
</div></div></li>
<li>Now add another Connector tag to your <em>server.xml</em> Tomcat configuration file, like the example below. The parts affecting or specific to SSL are shown in bold. (You may wish to change some details such as the port, pathnames, and keystore password)
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> <Connector port=<span class="code-quote">"8443"</span>
maxThreads=<span class="code-quote">"150"</span> minSpareThreads=<span class="code-quote">"25"</span>
maxSpareThreads=<span class="code-quote">"75"</span>
enableLookups=<span class="code-quote">"<span class="code-keyword">false</span>"</span>
disableUploadTimeout=<span class="code-quote">"<span class="code-keyword">true</span>"</span>
acceptCount=<span class="code-quote">"100"</span> debug=<span class="code-quote">"0"</span>
scheme=<span class="code-quote">"https"</span> secure=<span class="code-quote">"<span class="code-keyword">true</span>"</span> sslProtocol=<span class="code-quote">"TLS"</span>
keystoreFile=<span class="code-quote">"conf/keystore"</span> keystorePass=<span class="code-quote">"changeit"</span> clientAuth=<span class="code-quote">"<span class="code-keyword">true</span>"</span> - ONLY <span class="code-keyword">if</span> using client X.509 certs <span class="code-keyword">for</span> authentication!
truststoreFile=<span class="code-quote">"conf/keystore"</span> trustedstorePass=<span class="code-quote">"changeit"</span> />
</pre>
</div></div>
<p>Also, check that the default Connector is set up to redirect "secure" requests to the same port as your SSL connector, e.g.: </p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"><Connector port=<span class="code-quote">"8080"</span>
maxThreads=<span class="code-quote">"150"</span> minSpareThreads=<span class="code-quote">"25"</span>
maxSpareThreads=<span class="code-quote">"75"</span>
enableLookups=<span class="code-quote">"<span class="code-keyword">false</span>"</span>
redirectPort=<span class="code-quote">"8443"</span>
acceptCount=<span class="code-quote">"100"</span> debug=<span class="code-quote">"0"</span> />
</pre>
</div></div></li>
</ol>
</li>
<li><b>Quick-and-dirty Procedure for Testing:</b> If you are just setting up a DSpace server for testing, or to experiment with HTTPS, then you don't need to get a real server certificate. You can create a "self-signed" certificate for testing; web browsers will issue warnings before accepting it but they will function exactly the same after that as with a "real" certificate. In the examples below, <em>$CATALINA_BASE</em> is the directory under which your Tomcat is installed.
<ol>
<li>Optional – ONLY if you don't already have a server certificate. Follow this sub-procedure to request a new, signed server certificate from your Certifying Authority (CA):
<ul>
<li>Create a new key pair under the alias name <em>"tomcat"</em>. When generating your key, give the Distinguished Name fields the appropriate values for your server and institution. CN should be the fully-qualified domain name of your server host. Here is an example:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">$JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA -keysize
1024 \
-keystore $CATALINA_BASE/conf/keystore -storepass changeit
-validity 365 \
-dname 'CN=dspace.myuni.edu, OU=MIT Libraries, O=Massachusetts
Institute of Technology, L=Cambridge, S=MA, C=US'
</pre>
</div></div></li>
<li>Then, create a <em>CSR</em> (Certificate Signing Request) and send it to your Certifying Authority. They will send you back a signed Server Certificate. This example command creates a CSR in the file <em>tomcat.csr</em>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> $JAVA_HOME/bin/keytool -keystore $CATALINA_BASE/conf/keystore
-storepass changeit \
-certreq -alias tomcat -v -file tomcat.csr
</pre>
</div></div></li>
<li>Before importing the signed certificate, you must have the CA's certificate in your keystore as a <em>trusted certificate</em>. Get their certificate, and import it with a command like this (for the example <em>mitCA.pem</em>):
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> $JAVA_HOME/bin/keytool -keystore $CATALINA_BASE/conf/keystore
-storepass changeit \
-<span class="code-keyword">import</span> -alias mitCA -trustcacerts -file mitCA.pem
</pre>
</div></div></li>
<li>Finally, when you get the signed certificate from your CA, import it into the keystore with a command like the following example: (cert is in the file <em>signed-cert.pem</em>)
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> $JAVA_HOME/bin/keytool -keystore $CATALINA_BASE/conf/keystore
-storepass changeit \
-<span class="code-keyword">import</span> -alias tomcat -trustcacerts -file signed-cert.pem
</pre>
</div></div>
<p> Since you now have a signed server certificate in your keystore, you can, obviously, skip the next steps of installing a signed server certificate and the server CA's certificate.</p></li>
</ul>
</li>
<li>Create a Java keystore for your server with the password <em>changeit</em>, and install your server certificate under the alias <em>"tomcat"</em>. This assumes the certificate was put in the file <em>server.pem</em>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> $JAVA_HOME/bin/keytool -genkey -alias tomcat -keyalg RSA -keystore
$CATALINA_BASE/conf/keystore -storepass changeit
</pre>
</div></div>
<p>When answering the questions to identify the certificate, be sure to respond to "First and last name" with the fully-qualified domain name of your server (e.g. <em>test-dspace.myuni.edu</em>). The other questions are not important.</p></li>
<li>Optional – ONLY if you need to accept client certificates for the X.509 certificate stackable authentication module See the configuration section for instructions on enabling the X.509 authentication method. Load the keystore with the CA (certifying authority) certificates for the authorities of any clients whose certificates you wish to accept. For example, assuming the client CA certificate is in <em>client1.pem</em>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> $JAVA_HOME/bin/keytool -<span class="code-keyword">import</span> -noprompt -storepass changeit
-trustcacerts -keystore $CATALINA_BASE/conf/keystore -alias client1
-file client1.pem
</pre>
</div></div></li>
<li>Follow the procedure in the section above to add another Connector tag, for the HTTPS port, to your <em>server.xml</em> file.</li>
</ol>
</li>
</ol>
<h4><a name="Installation-TouseSSLonApacheHTTPDwithmodjk%3A"></a>To use SSL on Apache HTTPD with mod_jk:</h4>
<p>If you choose <a href="http://httpd.apache.org/" title="Apache HTTPD">Apache HTTPD</a> as your primary HTTP server, you can have it forward requests to the <a href="http://tomcat.apache.org/" title="Tomcat servlet container">Tomcat servlet container</a> via <a href="http://tomcat.apache.org/connectors-doc/" title="Apache Jakarta Tomcat Connector">Apache Jakarta Tomcat Connector</a>. This can be configured to work over SSL as well. First, you must configure Apache for SSL; for Apache 2.0 see <a href="http://httpd.apache.org/docs/2.0/ssl/" title="Apache SSL/TLS Encryption">Apache SSL/TLS Encryption</a> for information about using <a href="http://httpd.apache.org/docs/2.0/mod/mod_ssl.html" title="mod_ssl">mod_ssl</a>.</p>
<p><b><em>If you are using X.509 Client Certificates for authentication:</em></b> add these configuration options to the appropriate <em>httpd</em> configuration file, e.g. <em>ssl.conf</em>, and be sure they are in force for the virtual host and namespace locations dedicated to DSpace:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> ## SSLVerifyClient can be <span class="code-quote">"optional"</span> or
<span class="code-quote">"require"</span>
SSLVerifyClient optional
SSLVerifyDepth 10
SSLCACertificateFile
path-to-your-client-CA-certificate
SSLOptions StdEnvVars ExportCertData
</pre>
</div></div>
<p>Now consult the <a href="http://tomcat.apache.org/connectors-doc/" title="Apache Jakarta Tomcat Connector">Apache Jakarta Tomcat Connector</a> documentation to configure the <em>mod_jk</em> (note: <b>NOT</b><em>mod_jk2</em>) module. Select the AJP 1.3 connector protocol. Also follow the instructions there to configure your Tomcat server to respond to AJP.</p>
<p><b>To use SSL on Apache HTTPD with mod_webapp</b> consult the DSpace 1.3.2 documentation. Apache have deprecated the <em>mod_webapp</em> connector and recommend using <em>mod_jk</em>.</p>
<p><b>To use Jetty's HTTPS support</b> consult the documentation for the relevant tool.</p>
<h3><a name="Installation-TheHandleServer"></a>The Handle Server</h3>
<p>First a few facts to clear up some common misconceptions:</p>
<ul>
<li>You don't <b>have</b> to use CNRI's Handle system. At the moment, you need to change the code a little to use something else (e.g PURLs) but that should change soon.</li>
<li>You'll notice that while you've been playing around with a test server, DSpace has apparently been creating handles for you looking like <em>hdl:123456789/24</em> and so forth. These aren't really Handles, since the global Handle system doesn't actually know about them, and lots of other DSpace test installs will have created the same IDs. They're only really Handles once you've registered a prefix with CNRI (see below) and have correctly set up the Handle server included in the DSpace distribution. This Handle server communicates with the rest of the global Handle infrastructure so that anyone that understands Handles can find the Handles your DSpace has created.<br/>
If you want to use the Handle system, you'll need to set up a Handle server. This is included with DSpace. Note that this is not required in order to evaluate DSpace; you only need one if you are running a production service. You'll need to obtain a Handle prefix from <a href="http://www.handle.net/" title="the central CNRI Handle site">the central CNRI Handle site</a>.</li>
</ul>
<p>A Handle server runs as a separate process that receives TCP requests from other Handle servers, and issues resolution requests to a global server or servers if a Handle entered locally does not correspond to some local content. The Handle protocol is based on TCP, so it will need to be installed on a server that can broadcast and receive TCP on port 2641.</p>
<ol>
<li>To configure your DSpace installation to run the handle server, run the following command:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">[dspace]/bin/dspace make-handle-config [dspace]/handle-server</pre>
</div></div>
<p> Ensure that <em>[dspace]/handle-server</em> matches whatever you have in <em>dspace.cfg</em> for the <em>handle.dir</em> property.</p></li>
<li>Edit the resulting <em>[dspace]/handle-server/config.dct</em> file to include the following lines in the <em>"server_config"</em> clause:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"><span class="code-quote">"storage_type"</span> = <span class="code-quote">"CUSTOM"</span>
<span class="code-quote">"storage_class"</span> = <span class="code-quote">"org.dspace.handle.HandlePlugin"</span>
</pre>
</div></div>
<p>This tells the Handle server to get information about individual Handles from the DSpace code.</p></li>
<li>Once the configuration file has been generated, you will need to go to <a href="http://hdl.handle.net/4263537/5014">http://hdl.handle.net/4263537/5014</a> to upload the generated sitebndl.zip file. The upload page will ask you for your contact information. An administrator will then create the naming authority/prefix on the root service (known as the Global Handle Registry), and notify you when this has been completed. You will not be able to continue the handle server installation until you receive further information concerning your naming authority.</li>
<li>When CNRI has sent you your naming authority prefix, you will need to edit the <em>config.dct</em> file. The file will be found in <em>/[dspace]/handle-server</em>. Look for <em>"300:0.NA/YOUR_NAMING_AUTHORITY"</em>. Replace <em>YOUR_NAMING_AUTHORITY</em> with the assigned naming authority prefix sent to you.</li>
<li>Now start your handle server (as the dspace user):
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">[dspace]/bin/start-handle-server</pre>
</div></div>
<p>Note that since the DSpace code manages individual Handles, administrative operations such as Handle creation and modification aren't supported by DSpace's Handle server.</p></li>
</ol>
<h4><a name="Installation-UpdatingExistingHandlePrefixes"></a>Updating Existing Handle Prefixes</h4>
<p>If you need to update the handle prefix on items created before the CNRI registration process you can run the <em>[dspace]/bin/dspace update-handle-prefix script</em>. You may need to do this if you loaded items prior to CNRI registration (e.g. setting up a demonstration system prior to migrating it to production). The script takes the current and new prefix as parameters. For example:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">[dspace]/bin/dspace update-handle-prefix 123456789 1303
</pre>
</div></div>
<p>This script will change any handles currently assigned prefix 123456789 to prefix 1303, so for example handle 123456789/23 will be updated to 1303/23 in the database.</p>
<h3><a name="Installation-GoogleandHTMLsitemaps"></a>Google and HTML sitemaps</h3>
<p>To aid web crawlers index the content within your repository, you can make use of sitemaps. There are currently two forms of sitemaps included in DSpace; Google sitemaps and HTML sitemaps.</p>
<p>Sitemaps allow DSpace to expose it's content without the crawlers having to index every page. HTML sitemaps provide a list of all items, collections and communities in HTML format, whilst Google sitemaps provide the same information in gzipped XML format.</p>
<p>To generate the sitemaps, you need to run <em>[dspace]/bin/generate-sitemaps</em> This creates the sitemaps in <em>[dspace]/sitemaps/</em></p>
<p>The sitemaps can be accessed from the following URLs:</p>
<ul>
<li><a href="http://dspace.example.com/dspace/sitemap">http://dspace.example.com/dspace/sitemap</a> - Index sitemap</li>
<li><a href="http://dspace.example.com/dspace/sitemap?map=0">http://dspace.example.com/dspace/sitemap?map=0</a> - First list of items (up to 50,000)</li>
<li><a href="http://dspace.example.com/dspace/sitemap?map=n">http://dspace.example.com/dspace/sitemap?map=n</a> - Subsequent lists of items (e.g. 50,0001 to 100,000) etc...<br/>
HTML sitemaps follow the same procedure:</li>
<li><a href="http://dspace.example.com/dspace/htmlmap">http://dspace.example.com/dspace/htmlmap</a> - Index HTML based sitemap</li>
<li>etc...</li>
</ul>
<p>When running <em>[dspace]/bin/generate-sitemaps</em> the script informs Google that the sitemaps have been updated. For this update to register correctly, you must first register your Google sitemap index page (<em>/dspace/sitemap</em>) with Google at <a href="http://www.google.com/webmasters/sitemaps/" title="http://www.google.com/webmasters/sitemaps/">http://www.google.com/webmasters/sitemaps/</a>. If your DSpace server requires the use of a HTTP proxy to connect to the Internet, ensure that you have set <em>http.proxy.host</em> and <em>http.proxy.port</em> in <em>[dspace]/config/dspace.cfg</em></p>
<p>The URL for pinging Google, and in future, other search engines, is configured in <em>[dspace-space]/config/dspace.cfg</em> using the <em>sitemap.engineurls</em> setting where you can provide a comma-separated list of URLs to 'ping'.</p>
<p>You can generate the sitemaps automatically every day using an additional cron job:</p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"># Generate sitemaps
0 6 * * * [dspace]/bin/generate-sitemaps
</pre>
</div></div>
<h3><a name="Installation-DSpaceStatistics"></a>DSpace Statistics</h3>
<p>DSpace uses the Apache Solr application underlaying the statistics. There is no need to download any separate software. All the necessary software is included. To understand all of the configuration property keys, the user should refer to 5.2.35 DSpace Statistic Configuration for detailed information.</p>
<ol>
<li><b>DSpace Configuration for Accessing Solr.</b> In the <em>dspace.cfg</em> file review the following fields to make sure they are uncommented:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">solr.log.server = ${dspace.baseUrl}/solr/statistics
solr.dbfile = ${dspace.dir}/config/GeoLiteCity.dat
solr.spiderips.urls = http:<span class="code-comment">//iplists.com/google.txt, \
</span> http:<span class="code-comment">//iplists.com/inktomi.txt, \
</span> http:<span class="code-comment">//iplists.com/lycos.txt, \
</span> http:<span class="code-comment">//iplists.com/infoseek.txt, \
</span> http:<span class="code-comment">//iplists.com/altavista.txt, \
</span> http:<span class="code-comment">//iplists.com/excite.txt, \
</span> http:<span class="code-comment">//iplists.com/misc.txt, \
</span> http:<span class="code-comment">//iplists.com/non_engines.txt</span></pre>
</div></div></li>
<li><b>DSpace logging configuration for Solr.</b> If your DSpace instance is protected by a proxy server, in order for Solr to log the correct IP address of the user rather than of the proxy, it must be configured to look for the X-Forwarded-For header. This feature can be enabled by ensuring the following setting is uncommented in the logging section of <em>dspace.cfg</em>:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">useProxies = <span class="code-keyword">true</span></pre>
</div></div></li>
<li><b>Configuration Control.</b> In the <em>dspace.cfg</em> set the following property key:_statistics.item.authorization.admin=true_This will require the user to sign on to see that statistics. Setting the statistics to "false" will make them publicly available.</li>
<li>Final steps.
<ul>
<li>Perform the following step:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">cd [dspace-source]/dspace
mvn <span class="code-keyword">package</span>
cd [dspace-source]/dspace/target/dspace-<version>-build.dir
ant -Dconfig=[dspace]/config/dspace.cfg update
cp -R [dspace]/webapps/* [TOMCAT]/webapps
</pre>
</div></div>
<p>If you only need to build the statistics, and don't make any changes to other web applications, you can replace the copy step above with: <em>cp -R [dspace]/webapps/solr [TOMCAT]/webapps</em></p></li>
<li>Restart your webapps (Tomcat/Jetty/Resin)</li>
</ul>
</li>
</ol>
<h2><a name="Installation-WindowsInstallation"></a>Windows Installation</h2>
<h3><a name="Installation-PrerequisiteSoftware"></a>Pre-requisite Software</h3>
<p>If you are installing DSpace on Windows, you will still need to install all the same <a href="#Installation-PrerequisiteSoftware">Prerequisite Software</a>, as listed above.</p>
<ul>
<li>If you install PostgreSQL, it's recommended to select to install the pgAdmin III tool. It provides a nice User Interface for interacting with PostgreSQL databases.</li>
</ul>
<h3><a name="Installation-InstallationSteps"></a>Installation Steps</h3>
<ol>
<li>Download the DSpace source from <a href="http://sourceforge.net/projects/dspace" title="SourceForge">SourceForge</a> and unzip it (<a href="http://www.winzip.com/" title="WinZip">WinZip</a> will do this)</li>
<li>Ensure the PostgreSQL service is running, and then run pgAdmin III (Start -> PostgreSQL 8.0 -> pgAdmin III). Connect to the local database as the postgres user and:
<ul>
<li>Create a 'Login Role' (user) called <em>dspace</em> with the password <em>dspace</em></li>
<li>Create a database called <em>dspace</em> owned by the user <em>dspace</em>, with UTF-8 encoding</li>
</ul>
</li>
<li>Update paths in <em>[dspace-source]\dspace\config\dspace.cfg</em>. <b>Note:</b> Use forward slashes / for path separators, though you can still use drive letters, e.g.:_dspace.dir = C:/DSpace_Make sure you change all of the parameters with file paths to suit, specifically:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"> dspace.dir
config.template.log4j.properties
config.template.log4j-handle-plugin.properties
config.template.oaicat.properties
assetstore.dir
log.dir
upload.temp.dir
report.dir
handle.dir
</pre>
</div></div></li>
<li>Create the directory for the DSpace installation (e.g. <em>C:\DSpace</em>)</li>
<li>Generate the DSpace installation package by running the following from command line (cmd) from your <em>[dspace-source]/dspace/</em> directory:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">mvn <span class="code-keyword">package</span>
</pre>
</div></div>
<ul>
<li><em>Note #1:</em> This will generate the DSpace installation package in your <em>[dspace-source]/dspace/target/dspace-[version]-build.dir/</em> directory.</li>
<li><em>Note #2:</em> Without any extra arguments, the DSpace installation package is initialized for PostgreSQL. If you want to use Oracle instead, you should build the DSpace installation package as follows:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">mvn -Ddb.name=oracle <span class="code-keyword">package</span></pre>
</div></div></li>
</ul>
</li>
<li>Initialize the DSpace database and install DSpace to <em>[dspace]</em> (e.g. <em>C:\DSpace</em>) by running the following from command line from your <em>[dspace-source]/dspace/target/dspace-[version]-build.dir/</em> directory:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">ant fresh_install</pre>
</div></div>
<ul>
<li><em>Note:</em> to see a complete list of build targets, run: <tt>ant help</tt></li>
</ul>
</li>
<li>Create an administrator account, by running the following from your <em>[dspace]</em> (e.g. <em>C:\DSpace</em>) directory:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">[dspace]\bin\dspace create-administrator</pre>
</div></div></li>
<li>Copy the Web application directories from <em>[dspace]\webapps</em> to Tomcat's webapps dir, which should be somewhere like <em>C:\Program Files\Apache Software Foundation\Tomcat\webapps</em>
<ul>
<li>Alternatively, Tell your Tomcat installation where to find your DSpace web application(s). As an example, in the <em><Host></em> section of your <em>[tomcat]/conf/server.xml</em> you could add lines similar to the following (but replace <em>[dspace]</em> with your installation location):
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java"><!-- DEFINE A CONTEXT PATH FOR DSpace JSP User Interface -->
<Context path=<span class="code-quote">"/jspui"</span> docBase=<span class="code-quote">"[dspace]\webapps\jspui"</span> debug=<span class="code-quote">"0"</span>
reloadable=<span class="code-quote">"<span class="code-keyword">true</span>"</span> cachingAllowed=<span class="code-quote">"<span class="code-keyword">false</span>"</span>
allowLinking=<span class="code-quote">"<span class="code-keyword">true</span>"</span>/>
<!-- DEFINE A CONTEXT PATH FOR DSpace OAI User Interface -->
<Context path=<span class="code-quote">"/oai"</span> docBase=<span class="code-quote">"[dspace]\webapps\oai"</span> debug=<span class="code-quote">"0"</span>
reloadable=<span class="code-quote">"<span class="code-keyword">true</span>"</span> cachingAllowed=<span class="code-quote">"<span class="code-keyword">false</span>"</span>
allowLinking=<span class="code-quote">"<span class="code-keyword">true</span>"</span>/>
</pre>
</div></div></li>
</ul>
</li>
<li>Start the Tomcat service</li>
<li>Browse to either <a href="http://localhost:8080/jspui">http://localhost:8080/jspui</a> or <a href="http://localhost:8080/xmlui">http://localhost:8080/xmlui</a>. You should see the DSpace home page for either the JSPUI or XMLUI, respectively.</li>
</ol>
<h2><a name="Installation-CheckingYourInstallation"></a>Checking Your Installation</h2>
<p>The administrator needs to check the installation to make sure all components are working. Here is list of checks to be performed. In brackets after each item, it the associated component or components that might be the issue needing resolution.</p>
<ul>
<li>System is up and running. <em>User can see the DSpace home page. [Tomcat/Jetty, firewall, IP assignment, DNS]</em></li>
<li>Database is running and working correctly. <em>Attempt to create a user, community or collection [PostgreSQL, Oracle]</em><em>Run the test database command to see if other issues are being report:</em><em>[dspace]/bin/dspace test-database</em></li>
<li>Email subsystem is running. The user can issue the following command to test the email system. t attempts to send a test email to the email address that is set in dspace.cfg (mail.admin). If it fails, you will get messages informing you as to why, will refer you to the DSpace documentation. <em>[dspace]/bin/test-email</em></li>
</ul>
<h2><a name="Installation-KnownBugs"></a>Known Bugs</h2>
<p>In any software project of the scale of DSpace, there will be bugs. Sometimes, a stable version of DSpace includes known bugs. We do not always wait until every known bug is fixed before a release. If the software is sufficiently stable and an improvement on the previous release, and the bugs are minor and have known workarounds, we release it to enable the community to take advantage of those improvements.</p>
<p>The known bugs in a release are documented in the <em>KNOWN_BUGS</em> file in the source package.</p>
<p>Please see the <a href="https://jira.duraspace.org/browse/DS">DSpace bug tracker</a> for further information on current bugs, and to find out if the bug has subsequently been fixed. This is also where you can report any further bugs you find.</p>
<h2><a name="Installation-CommonProblems"></a>Common Problems</h2>
<p>In an ideal world everyone would follow the above steps and have a fully functioning DSpace. Of course, in the real world it doesn't always seem to work out that way. This section lists common problems that people encounter when installing DSpace, and likely causes and fixes. This is likely to grow over time as we learn about users' experiences.</p>
<ul>
<li><b>Database errors occur when you run</b> <tt>ant fresh_install</tt>: There are two common errors that occur.
<ul>
<li>If your error looks like this:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">[java] 2004-03-25 15:17:07,730 INFO
org.dspace.storage.rdbms.InitializeDatabase @ Initializing Database
[java] 2004-03-25 15:17:08,816 FATAL
org.dspace.storage.rdbms.InitializeDatabase @ Caught exception:
[java] org.postgresql.util.PSQLException: Connection refused. Check
that the hostname and port are correct and that the postmaster is
accepting TCP/IP connections.
[java] at
org.postgresql.jdbc1.AbstractJdbc1Connection.openConnection(AbstractJd
bc1Connection.java:204)
[java] at org.postgresql.Driver.connect(Driver.java:139)</pre>
</div></div>
<p> it usually means you haven't yet added the relevant configuration parameter to your PostgreSQL configuration (see above), or perhaps you haven't restarted PostgreSQL after making the change. Also, make sure that the <em>db.username</em> and <em>db.password</em> properties are correctly set in <em>[dspace-source]/config/dspace.cfg</em>. An easy way to check that your DB is working OK over TCP/IP is to try this on the command line: </p>
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">psql -U dspace -W -h localhost</pre>
</div></div>
<p> Enter the <em>dspace</em> database password, and you should be dropped into the psql tool with a <em>dspace=></em> prompt.</p></li>
<li>Another common error looks like this:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">[java] 2004-03-25 16:37:16,757 INFO
org.dspace.storage.rdbms.InitializeDatabase @ Initializing Database
[java] 2004-03-25 16:37:17,139 WARN
org.dspace.storage.rdbms.DatabaseManager @ Exception initializing DB
pool
[java] java.lang.ClassNotFoundException: org.postgresql.Driver
[java] at java.net.URLClassLoader$1.run(URLClassLoader.java:198)
[java] at java.security.AccessController.doPrivileged(Native
Method)
[java] at
java.net.URLClassLoader.findClass(URLClassLoader.java:186)</pre>
</div></div>
<p> This means that the PostgreSQL JDBC driver is not present in <em>[dspace-source]/lib</em>. See above.</p></li>
</ul>
</li>
<li><b>Tomcat doesn't shut down</b>: If you're trying to tweak Tomcat's configuration but nothing seems to make a difference to the error you're seeing, you might find that Tomcat hasn't been shutting down properly, perhaps because it's waiting for a stale connection to close gracefully which won't happen.
<ul>
<li>To see if this is the case, try running: <tt>ps -ef | grep java</tt> and look for Tomcat's Java processes. If they stay around after running Tomcat's <em>shutdown.sh</em> script, trying running <tt>kill</tt> on them (or <tt>kill -9</tt> if necessary), then starting Tomcat again.</li>
</ul>
</li>
<li><b>Database connections don't work, or accessing DSpace takes forever</b>: If you find that when you try to access a DSpace Web page and your browser sits there connecting, or if the database connections fail, you might find that a 'zombie' database connection is hanging around preventing normal operation.
<ul>
<li>To see if this is the case, try running: <tt>ps -ef | grep postgres</tt></li>
<li>You might see some processes like this:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">dspace 16325 1997 0 Feb 14 ? 0:00 postgres: dspace dspace 127.0.0.1 idle in transaction</pre>
</div></div>
<p> This is normal. DSpace maintains a 'pool' of open database connections, which are re-used to avoid the overhead of constantly opening and closing connections. If they're 'idle' it's OK; they're waiting to be used.</p></li>
<li>However sometimes, if something went wrong, they might be stuck in the middle of a query, which seems to prevent other connections from operating, e.g.:
<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<pre class="code-java">dspace 16325 1997 0 Feb 14 ? 0:00 postgres: dspace dspace 127.0.0.1 SELECT</pre>
</div></div>
<p> This means the connection is in the middle of a <em>SELECT</em> operation, and if you're not using DSpace right that instant, it's probably a 'zombie' connection. If this is the case, try running <tt>kill</tt> on the process, and stopping and restarting Tomcat.</p></li>
</ul>
</li>
</ul>
<br/>
<div class="tabletitle">
<a name="attachments">Attachments:</a>
</div>
<div class="greybox" align="left">
<img src="images/icons/bullet_blue.gif" height="8" width="8" alt=""/>
<a href="attachments/22022840/22675570.png">warning.png</a> (image/png)
<br/>
</div>
</td>
</tr>
</table>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td height="12" background="https://wiki.duraspace.org/images/border/border_bottom.gif"><img src="images/border/spacer.gif" width="1" height="1" border="0"/></td>
</tr>
<tr>
<td align="center"><font color="grey">Document generated by Confluence on Mar 25, 2011 19:21</font></td>
</tr>
</table>
</body>
</html> |
web/bundles/jmztest/easyui/themes/ui-sunny/tree.css | jinmingzhu/proj2 | .tree {
margin: 0;
padding: 0;
list-style-type: none;
}
.tree li {
white-space: nowrap;
}
.tree li ul {
list-style-type: none;
margin: 0;
padding: 0;
}
.tree-node {
height: 18px;
white-space: nowrap;
cursor: pointer;
}
.tree-hit {
cursor: pointer;
}
.tree-expanded,
.tree-collapsed,
.tree-folder,
.tree-file,
.tree-checkbox,
.tree-indent {
display: inline-block;
width: 16px;
height: 18px;
vertical-align: top;
overflow: hidden;
}
.tree-expanded {
background: url('images/tree_icons.png') no-repeat -18px 0px;
}
.tree-expanded-hover {
background: url('images/tree_icons.png') no-repeat -50px 0px;
}
.tree-collapsed {
background: url('images/tree_icons.png') no-repeat 0px 0px;
}
.tree-collapsed-hover {
background: url('images/tree_icons.png') no-repeat -32px 0px;
}
.tree-lines .tree-expanded,
.tree-lines .tree-root-first .tree-expanded {
background: url('images/tree_icons.png') no-repeat -144px 0;
}
.tree-lines .tree-collapsed,
.tree-lines .tree-root-first .tree-collapsed {
background: url('images/tree_icons.png') no-repeat -128px 0;
}
.tree-lines .tree-node-last .tree-expanded,
.tree-lines .tree-root-one .tree-expanded {
background: url('images/tree_icons.png') no-repeat -80px 0;
}
.tree-lines .tree-node-last .tree-collapsed,
.tree-lines .tree-root-one .tree-collapsed {
background: url('images/tree_icons.png') no-repeat -64px 0;
}
.tree-line {
background: url('images/tree_icons.png') no-repeat -176px 0;
}
.tree-join {
background: url('images/tree_icons.png') no-repeat -192px 0;
}
.tree-joinbottom {
background: url('images/tree_icons.png') no-repeat -160px 0;
}
.tree-folder {
background: url('images/tree_icons.png') no-repeat -208px 0;
}
.tree-folder-open {
background: url('images/tree_icons.png') no-repeat -224px 0;
}
.tree-file {
background: url('images/tree_icons.png') no-repeat -240px 0;
}
.tree-loading {
background: url('images/loading.gif') no-repeat center center;
}
.tree-checkbox0 {
background: url('images/tree_icons.png') no-repeat -208px -18px;
}
.tree-checkbox1 {
background: url('images/tree_icons.png') no-repeat -224px -18px;
}
.tree-checkbox2 {
background: url('images/tree_icons.png') no-repeat -240px -18px;
}
.tree-title {
font-size: 12px;
display: inline-block;
text-decoration: none;
vertical-align: top;
white-space: nowrap;
padding: 0 2px;
height: 18px;
line-height: 18px;
}
.tree-node-proxy {
font-size: 12px;
line-height: 20px;
padding: 0 2px 0 20px;
border-width: 1px;
border-style: solid;
z-index: 9900000;
}
.tree-dnd-icon {
display: inline-block;
position: absolute;
width: 16px;
height: 18px;
left: 2px;
top: 50%;
margin-top: -9px;
}
.tree-dnd-yes {
background: url('images/tree_icons.png') no-repeat -256px 0;
}
.tree-dnd-no {
background: url('images/tree_icons.png') no-repeat -256px -18px;
}
.tree-node-top {
border-top: 1px dotted red;
}
.tree-node-bottom {
border-bottom: 1px dotted red;
}
.tree-node-append .tree-title {
border: 1px dotted red;
}
.tree-editor {
border: 1px solid #ccc;
font-size: 12px;
height: 14px !important;
height: 18px;
line-height: 14px;
padding: 1px 2px;
width: 80px;
position: absolute;
top: 0;
}
.tree-node-proxy {
background-color: #feeebd;
color: #000000;
border-color: #494437;
}
.tree-node-hover {
background: #ffdd57;
color: #000000;
}
.tree-node-selected {
background: #ffffff;
color: #0074c7;
}
.tree-node-hidden {
display: none;
}
|
realms/templates/search/search.html | bartvm/realms-wiki | {% extends 'layout.html' %}
{% block body %}
{% if results %}
<h3>Results for <em class="text-info">{{ request.args.get('q') }}</em></h3>
<div class="list-group">
{% for r in results %}
<a href="{{ url_for('wiki.page', name=r['name']) }}" class="list-group-item">
<h4 class="list-group-item-heading">{{ r['name'] }}</h4>
<p class="list-group-item-text">
{{ r['content'][:100] }}
</p>
</a>
{% endfor %}
</div>
{% else %}
<h3>No results found for <em class="text-info">{{ request.args.get('q') }}</em></h3>
{% endif %}
{% endblock %}
|
test2/sites/all/libraries/wymeditor/examples/09-two-panels.html | pcostan/CapoDiSerapo | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
* WYMeditor : what you see is What You Mean web-based editor
* Copyright (c) 2005 - 2012 Jean-Francois Hovinne, http://www.wymeditor.org/
* Dual licensed under the MIT (MIT-license.txt)
* and GPL (GPL-license.txt) licenses.
*
* For further information visit:
* http://www.wymeditor.org/
*
* File Name:
* 09-two-panels.html
* WYMeditor integration example - two panels.
* See the documentation for more info.
*
* File Authors:
* Jean-Francois Hovinne - http://www.hovinne.com/
-->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>WYMeditor</title>
<script type="text/javascript" src="../jquery/jquery.js"></script>
<script type="text/javascript" src="../wymeditor/jquery.wymeditor.min.js"></script>
<script type="text/javascript">
jQuery(function() {
jQuery('.wymeditor').wymeditor({
html: '<p>Hello, World!<\/p>',
stylesheet: 'styles.css',
skin: 'twopanels'
});
});
</script>
</head>
<body>
<h1>WYMeditor integration example - two panels</h1>
<p><a href="http://www.wymeditor.org/">WYMeditor</a> is a web-based XHTML WYSIWYM editor.</p>
<form method="post" action="">
<textarea class="wymeditor"></textarea>
<input type="submit" class="wymupdate" />
</form>
</body>
</html>
|
www/collab_api/public/js/libs/flotr2/examples/editor.css | steflef/lmtl | /* Editor */
.editor {
position: relative;
}
.editor .render {
height: 240px;
width: 320px;
margin: 8px auto;
}
.editor .source {
border: 1px solid #ddd;
border-radius: 3px;
}
.editor .controls {
position: absolute;;
z-index: 100;
right: 8px;
margin-top: -12px;
}
.editor .controls button {
float: right;
}
.editor .errors {
color: #ee0000;
padding: 8px;
font-size: 12px;
background: #fee;
border-bottom: 1px solid #eee;
}
.editor .errors .error {
font-weight: bold
}
.editor .errors .message {
font-style: italic;
}
.editor .errors .position {
display: block;
margin-top: 4px;
}
.editor.no-run .controls,
.editor.no-run .render {
display: none;
}
/* html type */
.editor.html .render {
height: 400px;
width: 800px;
text-align: center;
}
.editor.html .render iframe {
height: 100%;
width: 100%;
border: none;
}
/* CodeMirror */
.CodeMirror {
background: #fafafa;
}
.CodeMirror.CodeMirror-focused {
}
.CodeMirror-scroll {
height: auto;
overflow: visible;
overflow-x: auto;
}
.CodeMirror-lines pre,
.CodeMirror-gutter pre {
line-height: 16px;
}
|
_layouts/page.html | dspringate/experiment-two | ---
layout: default
---
<div class="post">
<header class="post-header">
<h1 class="h2">{{ page.title }}</h1>
</header>
<article class="post-content">
{{ content }}
</article>
</div>
|
code/doxygen/html/AnythingActivity_8java_source.html | tjhorner/illacceptanything | <!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.8"/>
<title>illacceptanything: AnythingActivity.java 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="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="navtree.js"></script>
<script type="text/javascript">
$(document).ready(initResizable);
$(window).load(resizeHeight);
</script>
<link href="doxygen.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
<div id="titlearea">
<table cellspacing="0" cellpadding="0">
<tbody>
<tr style="height: 56px;">
<td style="padding-left: 0.5em;">
<div id="projectname">illacceptanything
 <span id="projectnumber">2.0</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<!-- end header part -->
<!-- Generated by Doxygen 1.8.8 -->
<div id="navrow1" class="tabs">
<ul class="tablist">
<li><a href="index.html"><span>Main Page</span></a></li>
<li><a href="namespaces.html"><span>Namespaces</span></a></li>
<li><a href="annotated.html"><span>Data Structures</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 List</span></a></li>
<li><a href="globals.html"><span>Globals</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('AnythingActivity_8java_source.html','');});
</script>
<div id="doc-content">
<div class="header">
<div class="headertitle">
<div class="title">AnythingActivity.java</div> </div>
</div><!--header-->
<div class="contents">
<a href="AnythingActivity_8java.html">Go to the documentation of this file.</a><div class="fragment"><div class="line"><a name="l00001"></a><span class="lineno"> 1</span> <span class="keyword">package </span>com.willowtree.anythingproject;</div>
<div class="line"><a name="l00002"></a><span class="lineno"> 2</span> </div>
<div class="line"><a name="l00003"></a><span class="lineno"> 3</span> <span class="keyword">import</span> android.os.Bundle;</div>
<div class="line"><a name="l00004"></a><span class="lineno"> 4</span> <span class="keyword">import</span> android.support.v7.app.ActionBarActivity;</div>
<div class="line"><a name="l00005"></a><span class="lineno"> 5</span> <span class="keyword">import</span> android.widget.ImageView;</div>
<div class="line"><a name="l00006"></a><span class="lineno"> 6</span> </div>
<div class="line"><a name="l00010"></a><span class="lineno"><a class="line" href="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity.html"> 10</a></span> <span class="keyword">public</span> <span class="keyword">class </span><a class="code" href="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity.html">AnythingActivity</a> <span class="keyword">extends</span> ActionBarActivity {</div>
<div class="line"><a name="l00011"></a><span class="lineno"> 11</span>  @Override</div>
<div class="line"><a name="l00012"></a><span class="lineno"><a class="line" href="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity.html#aa779b52233a38ecb3778e69caad256a8"> 12</a></span>  <span class="keyword">protected</span> <span class="keywordtype">void</span> <a class="code" href="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity.html#aa779b52233a38ecb3778e69caad256a8">onCreate</a>(Bundle savedInstanceState) {</div>
<div class="line"><a name="l00013"></a><span class="lineno"> 13</span>  super.onCreate(savedInstanceState);</div>
<div class="line"><a name="l00014"></a><span class="lineno"> 14</span>  setContentView(R.layout.activity_anything);</div>
<div class="line"><a name="l00015"></a><span class="lineno"> 15</span>  ImageView image = (ImageView) findViewById(R.id.image);</div>
<div class="line"><a name="l00016"></a><span class="lineno"> 16</span>  image.setImageResource(R.drawable.derp);</div>
<div class="line"><a name="l00017"></a><span class="lineno"> 17</span>  }</div>
<div class="line"><a name="l00018"></a><span class="lineno"> 18</span> }</div>
<div class="ttc" id="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity_html"><div class="ttname"><a href="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity.html">com.willowtree.anythingproject.AnythingActivity</a></div><div class="ttdef"><b>Definition:</b> <a href="AnythingActivity_8java_source.html#l00010">AnythingActivity.java:10</a></div></div>
<div class="ttc" id="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity_html_aa779b52233a38ecb3778e69caad256a8"><div class="ttname"><a href="classcom_1_1willowtree_1_1anythingproject_1_1AnythingActivity.html#aa779b52233a38ecb3778e69caad256a8">com.willowtree.anythingproject.AnythingActivity.onCreate</a></div><div class="ttdeci">void onCreate(Bundle savedInstanceState)</div><div class="ttdef"><b>Definition:</b> <a href="AnythingActivity_8java_source.html#l00012">AnythingActivity.java:12</a></div></div>
</div><!-- fragment --></div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="dir_c0734f77ea3dea2197fe756876cb58bd.html">android</a></li><li class="navelem"><a class="el" href="dir_5ea00ee3169c063913cef35319605953.html">AnythingProject</a></li><li class="navelem"><a class="el" href="dir_b7bb4f32f971c567f4efa09487b04447.html">app</a></li><li class="navelem"><a class="el" href="dir_198b9e1ef7825b24546bac9f559794d7.html">src</a></li><li class="navelem"><a class="el" href="dir_3efcdf65cba5d3853e6ecf6919d46bf3.html">main</a></li><li class="navelem"><a class="el" href="dir_0bbe81b4265b509717b9b5b452491df6.html">java</a></li><li class="navelem"><a class="el" href="dir_0dd9f8cf133d309586f9ebd12a082bd4.html">com</a></li><li class="navelem"><a class="el" href="dir_436e07701cb03e35c9ec79a73833afa1.html">willowtree</a></li><li class="navelem"><a class="el" href="dir_6ee961fde6ee653c292a84f6f4915d49.html">anythingproject</a></li><li class="navelem"><a class="el" href="AnythingActivity_8java.html">AnythingActivity.java</a></li>
<li class="footer">Generated on Fri Apr 10 2015 15:21:50 for illacceptanything by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.8 </li>
</ul>
</div>
</body>
</html>
|
wp-content/plugins/easy-responsive-tabs/assets/css/res_tab_icon.css | xalgorithm/wkgbweb | .res_tab_icon{
background-image:url('../images/icon_bg.png') ;
background-position: 0 0;
background-repeat: no-repeat;
display: inline-block;
height: 11px;
margin-right: 5px;
width: 18px;
} |
qtopiacore/qt/doc/html/widgets-icons-iconsizespinbox-cpp.html | liuyanghejerry/qtextended | <?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>Qt 4.4: iconsizespinbox.cpp Example File (widgets/icons/iconsizespinbox.cpp)</title>
<link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" border="0" /></a></td>
<td width="1"> </td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a> · <a href="namespaces.html"><font color="#004faf">All Namespaces</font></a> · <a href="classes.html"><font color="#004faf">All Classes</font></a> · <a href="mainclasses.html"><font color="#004faf">Main Classes</font></a> · <a href="groups.html"><font color="#004faf">Grouped Classes</font></a> · <a href="modules.html"><font color="#004faf">Modules</font></a> · <a href="functions.html"><font color="#004faf">Functions</font></a></td>
<td align="right" valign="top" width="230"></td></tr></table><h1 class="title">iconsizespinbox.cpp Example File<br /><span class="small-subtitle">widgets/icons/iconsizespinbox.cpp</span>
</h1>
<pre><span class="comment"> /****************************************************************************
**
** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
** Contact: Qt Software Information (qt-info@nokia.com)
**
** This file is part of the example classes of the Qt Toolkit.
**
** Commercial Usage
** Licensees holding valid Qt Commercial licenses may use this file in
** accordance with the Qt Commercial License Agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Nokia.
**
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU
** General Public License versions 2.0 or 3.0 as published by the Free
** Software Foundation and appearing in the file LICENSE.GPL included in
** the packaging of this file. Please review the following information
** to ensure GNU General Public Licensing requirements will be met:
** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
** http://www.gnu.org/copyleft/gpl.html. In addition, as a special
** exception, Nokia gives you certain additional rights. These rights
** are described in the Nokia Qt GPL Exception version 1.3, included in
** the file GPL_EXCEPTION.txt in this package.
**
** Qt for Windows(R) Licensees
** As a special exception, Nokia, as the sole copyright holder for Qt
** Designer, grants users of the Qt/Eclipse Integration plug-in the
** right for the Qt/Eclipse Integration to link to functionality
** provided by Qt Designer and its related libraries.
**
** If you are unsure which license is appropriate for your use, please
** contact the sales department at qt-sales@nokia.com.
**
****************************************************************************/</span>
#include <QtGui>
#include "iconsizespinbox.h"
IconSizeSpinBox::IconSizeSpinBox(QWidget *parent)
: QSpinBox(parent)
{
}
int IconSizeSpinBox::valueFromText(const QString &text) const
{
QRegExp regExp(tr("(\\d+)(\\s*[xx]\\s*\\d+)?"));
if (regExp.exactMatch(text)) {
return regExp.cap(1).toInt();
} else {
return 0;
}
}
QString IconSizeSpinBox::textFromValue(int value) const
{
return tr("%1 x %1").arg(value);
}</pre>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%" align="left">Copyright © 2008 Nokia</td>
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="30%" align="right"><div align="right">Qt 4.4.3</div></td>
</tr></table></div></address></body>
</html>
|
tools/arm-bcm2708/gcc-linaro-arm-none-eabi-4.8-2014.04/share/doc/gcc-linaro-arm-none-eabi/html/gdb/GDB_002fMI-Stream-Records.html | darth-vader-lg/glcncrpi | <html lang="en">
<head>
<title>GDB/MI Stream Records - Debugging with GDB</title>
<meta http-equiv="Content-Type" content="text/html">
<meta name="description" content="Debugging with GDB">
<meta name="generator" content="makeinfo 4.13">
<link title="Top" rel="start" href="index.html#Top">
<link rel="up" href="GDB_002fMI-Output-Records.html#GDB_002fMI-Output-Records" title="GDB/MI Output Records">
<link rel="prev" href="GDB_002fMI-Result-Records.html#GDB_002fMI-Result-Records" title="GDB/MI Result Records">
<link rel="next" href="GDB_002fMI-Async-Records.html#GDB_002fMI-Async-Records" title="GDB/MI Async Records">
<link href="http://www.gnu.org/software/texinfo/" rel="generator-home" title="Texinfo Homepage">
<!--
Copyright (C) 1988-2013 Free Software Foundation, Inc.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License, Version 1.3 or
any later version published by the Free Software Foundation; with the
Invariant Sections being ``Free Software'' and ``Free Software Needs
Free Documentation'', with the Front-Cover Texts being ``A GNU Manual,''
and with the Back-Cover Texts as in (a) below.
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
this GNU Manual. Buying copies from GNU Press supports the FSF in
developing GNU and promoting software freedom.''-->
<meta http-equiv="Content-Style-Type" content="text/css">
<style type="text/css"><!--
pre.display { font-family:inherit }
pre.format { font-family:inherit }
pre.smalldisplay { font-family:inherit; font-size:smaller }
pre.smallformat { font-family:inherit; font-size:smaller }
pre.smallexample { font-size:smaller }
pre.smalllisp { font-size:smaller }
span.sc { font-variant:small-caps }
span.roman { font-family:serif; font-weight:normal; }
span.sansserif { font-family:sans-serif; font-weight:normal; }
--></style>
</head>
<body>
<div class="node">
<a name="GDB%2fMI-Stream-Records"></a>
<a name="GDB_002fMI-Stream-Records"></a>
<p>
Next: <a rel="next" accesskey="n" href="GDB_002fMI-Async-Records.html#GDB_002fMI-Async-Records">GDB/MI Async Records</a>,
Previous: <a rel="previous" accesskey="p" href="GDB_002fMI-Result-Records.html#GDB_002fMI-Result-Records">GDB/MI Result Records</a>,
Up: <a rel="up" accesskey="u" href="GDB_002fMI-Output-Records.html#GDB_002fMI-Output-Records">GDB/MI Output Records</a>
<hr>
</div>
<h4 class="subsection">27.5.2 <span class="sc">gdb/mi</span> Stream Records</h4>
<p><a name="index-g_t_0040sc_007bgdb_002fmi_007d_002c-stream-records-2257"></a><a name="index-stream-records-in-_0040sc_007bgdb_002fmi_007d-2258"></a><span class="sc">gdb</span> internally maintains a number of output streams: the console, the
target, and the log. The output intended for each of these streams is
funneled through the <span class="sc">gdb/mi</span> interface using <dfn>stream records</dfn>.
<p>Each stream record begins with a unique <dfn>prefix character</dfn> which
identifies its stream (see <a href="GDB_002fMI-Output-Syntax.html#GDB_002fMI-Output-Syntax"><span class="sc">gdb/mi</span> Output Syntax</a>). In addition to the prefix, each stream record contains a
<var>string-output</var>. This is either raw text (with an implicit new
line) or a quoted C string (which does not contain an implicit newline).
<dl>
<dt><code>"~" </code><var>string-output</var><dd>The console output stream contains text that should be displayed in the
CLI console window. It contains the textual responses to CLI commands.
<br><dt><code>"@" </code><var>string-output</var><dd>The target output stream contains any textual output from the running
target. This is only present when GDB's event loop is truly
asynchronous, which is currently only the case for remote targets.
<br><dt><code>"&" </code><var>string-output</var><dd>The log stream contains debugging messages being produced by <span class="sc">gdb</span>'s
internals.
</dl>
</body></html>
|
bedrock/security/templates/security/bug-bounty/hall-of-fame.html | Jobava/bedrock | {% extends "security/base.html" %}
{% block page_title %}Mozilla Security Bug Bounty Program Hall of Fame{% endblock %}
{% block breadcrumbs %}
<nav class="breadcrumbs">
<a href="{{ url('mozorg.home') }}">{{ _('Home') }}</a> >
<a href="{{ url('security.index') }}">{{ _('Mozilla Security') }}</a> >
<a href="{{ url('security.bug-bounty') }}">{{ _('Bug Bounty') }}</a> >
</nav>
{% endblock %}
{% block extrahead %}
{{ super() }}
{% stylesheet 'security-bug-bounty-hall-of-fame' %}
{% endblock %}
{% block js %}
{% javascript 'accordion' %}
{% endblock %}
{% block article %}
<article class="section-content" itemscope itemtype="http://schema.org/Article">
<header>
<h1 itemprop="name" class="title-shadow-box">Firefox Bug Bounty Rewards</h1>
</header>
<div itemprop="articleBody">
<p>On behalf of the Mozilla and the millions of people who visit our sites, use Firefox and our other products we would like to thank them for their hard work in helping to make us more secure.</p>
<p>As of this date, we have paid out almost <b>$1,000,000</b> across all of our bounties. Congratulations to everybody who has participicated!</p>
<div class="accordion accordion-auto-init zebra">
<section id="year-2015">
<h3 data-accordion-role="tab">{{ _('2015') }}</h3>
<div data-accordion-role="tabpanel">
<h4>1st Quarter 2015</h4>
<ul>
<li>Abhishek Arya</li>
<li>Aki Helin</li>
<li>andrebargull</li>
<li>Armin Razmdjou</li>
<li>Atte Kettunen</li>
<li>Enrique Rando</li>
<li>Hanno Böck</li>
<li>Holger Fuhrmannek</li>
<li>l.pontorieri</li>
<li>Joev</li>
<li>Jordi Chancel</li>
<li>Looben Yang</li>
<li>Marius Mlynski</li>
<li>Michal Zalewski</li>
<li>moz_bug_r_a4</li>
<li>Muneaki Nishimura</li>
<li>Nils</li>
<li>Pantrombka</li>
<li>Paul</li>
<li>Sergey</li>
<li>websec02</li>
</ul>
</div>
</section>
<section id="year-2014">
<h3 data-accordion-role="tab">{{ _('2014') }}</h3>
<div data-accordion-role="tabpanel">
<h4>4th Quarter 2014</h4>
<ul>
<li>Abhishek Arya</li>
<li>Cody Crews</li>
<li>James Kettle</li>
<li>Michal Zalewski</li>
<li>lifeasageek</li>
<li>Looben Yang</li>
<li>Michal Zalewski</li>
<li>Mitchell Harper</li>
<li>Skylined</li>
<li>teterinis</li>
</ul>
<h4>3rd Quarter 2014</h4>
<ul>
<li>regenrecht</li>
<li>Attek Kettunun</li>
<li>Abhishek Arya</li>
<li>Michal Zalewski</li>
<li>Antoine Delignat-Lavaud</li>
</ul>
<h4>2nd Quarter 2014</h4>
<ul>
<li>Karl Tomlinson</li>
<li>Mariusz Mlynski</li>
<li>Holger Fuhrmannek</li>
<li>Jordi Chancel</li>
<li>Abhishek Arya</li>
<li>Zaza Crub</li>
<li>Looben Yang</li>
<li>Cody Crews</li>
<li>James Kitchener</li>
<li>Atte Kettunen</li>
<li>Jethro Beekman</li>
</ul>
<h4>1st Quarter 2014</h4>
<ul>
<li>Abhishek Arya</li>
<li>Holger Fuhrmannek</li>
<li>Aki Helin</li>
<li>Tyson Smith</li>
<li>Atte Kettunen</li>
<li>Mariusz Mlynski</li>
</ul>
</div>
</section>
<section id="year-2013">
<h3 data-accordion-role="tab">{{ _('2013') }}</h3>
<div data-accordion-role="tabpanel">
<h4>4th Quarter 2013</h4>
<ul>
<li>Abhishek Arya</li>
<li>Atte Kettunen</li>
<li>Chris</li>
<li>Cody Crews</li>
<li>Jesse Schwartzentruber</li>
<li>Jordi Chancel</li>
<li>Sachin Shinde</li>
<li>Tyson Smith</li>
<li>Gabor Molnar</li>
<li>Holger Fuhrmannek</li>
<li>Masato Kinugawa</li>
</ul>
<h4>3rd Quarter 2013</h4>
<ul>
<li>Abhishek Arya</li>
<li>Ash</li>
<li>Atte Kettunen</li>
<li>federico lanusse</li>
<li>miaubiz</li>
<li>Seb Patane</li>
</ul>
<h4>2nd Quarter 2013</h4>
<ul>
<li>Aki Helin</li>
<li>Ash</li>
<li>Atte Kettunen</li>
<li>Cody Crews</li>
<li>federico lanusse</li>
<li>Johnathan Kuskos</li>
<li>Jordi Chancel</li>
<li>Mariusz Mlynski</li>
<li>Nils</li>
<li>Seb Patane</li>
</ul>
<h4>1st Quarter 2013</h4>
<ul>
<li>Abhishek Arya</li>
<li>Ash</li>
<li>Cody Crews</li>
<li>Frederic Hoguin</li>
<li>Nils</li>
<li>Robert Kugler</li>
<li>Seb Patane</li>
</ul>
</div>
</section>
<section id="year-2012">
<h3 data-accordion-role="tab">{{ _('2012') }}</h3>
<div data-accordion-role="tabpanel">
<h4>4th Quarter 2012</h4>
<ul>
<li>Abhishek Arya</li>
<li>Antoine Delignat-Lavaud</li>
<li>Arthur Gerkis</li>
<li>Atte Kettunen</li>
<li>Breen Machine</li>
<li>Cody Crews</li>
<li>Michal Zalewski</li>
<li>Mariusz Mlynski</li>
<li>Masato Kinugawa</li>
<li>miaubiz</li>
<li>Nils</li>
</ul>
<h4>3rd Quarter 2012</h4>
<ul>
<li>Abhishek Arya</li>
<li>Alice0775 White</li>
<li>Arthur Gerkis</li>
<li>Atte Kettunen</li>
<li>Colby Russell</li>
<li>Frédéric Hoguin</li>
<li>Frederik Braun</li>
<li>Mariusz Mlynski</li>
<li>miaubiz</li>
<li>Ms2ger</li>
<li>Robert Kugler</li>
<li>Scott Bell</li>
<li>Thai Duong</li>
</ul>
<h4>2nd Quarter 2012</h4>
<ul>
<li>Abhishek Arya</li>
<li>Adam Barth</li>
<li>Arthur Gerkis</li>
<li>Atte Kettunen</li>
<li>James Forshaw</li>
<li>Karthikeyan Bhargavan</li>
<li>Mario Heiderich</li>
<li>Mariusz Mlynski</li>
<li>Matias Juntunen</li>
<li>Soroush Dalili</li>
</ul>
<h4>1st Quarter 2012</h4>
<ul>
<li>Aki Helin</li>
<li>Atte Kettunen</li>
<li>Chris McGowen</li>
<li>Jeroen van der Gun</li>
<li>Kaspar Brand</li>
<li>Mariusz Mlynski</li>
<li>Michal Zalewski</li>
<li>Ms2ger</li>
<li>Soroush Dalili</li>
</ul>
</div>
</section>
<section id="year-2011">
<h3 data-accordion-role="tab">{{ _('2011') }}</h3>
<div data-accordion-role="tabpanel">
<h4>4th Quarter 2011</h4>
<ul>
<li>Aki Helin</li>
<li>Alex Dvorov</li>
<li>Jordi Chancel</li>
<li>Nicolas Grégoire</li>
<li>Paul Stone</li>
<li>sczimmer</li>
<li>Soroush Dalili</li>
</ul>
<h4>3rd Quarter 2011</h4>
<ul>
<li>Ahu</li>
<li>Aral Yaman</li>
<li>Blair Strang</li>
<li>Jordi Chancel</li>
<li>Marc Schoenefeld</li>
<li>Mariusz Mlynski</li>
<li>Mark Kaplan</li>
<li>Paul Stone</li>
<li>Rh0</li>
<li>sczimmer</li>
<li>Yosuke HASEGAWA</li>
</ul>
<h4>2nd Quarter 2011</h4>
<ul>
<li>Aki Helin</li>
<li>Chris Rohlf</li>
<li>David Rees</li>
<li>Mariusz Mlynski</li>
<li>Michael Jordon</li>
<li>Mike Cardwell</li>
<li>nasalislarvatus3000</li>
<li>Paul Stone</li>
<li>Rh0</li>
<li>secenv</li>
<li>Thai Dong</li>
<li>Vivekanand Bolajwar</li>
</ul>
<h4>1st Quarter 2011</h4>
<ul>
<li>Aki Helin</li>
<li>Christian Holler</li>
<li>Daniel Kozlowski</li>
<li>db</li>
<li>Jan de Mooij</li>
<li>Jordi Chancel</li>
<li>Ian Beer</li>
<li>Martin Barbella</li>
<li>Mitja Kolsek</li>
<li>shutdown</li>
<li>Soroush Dalili</li>
<li>Zach Hoffman</li>
</ul>
</div>
</section>
<section id="year-2010">
<h3 data-accordion-role="tab">{{ _('2010') }}</h3>
<div data-accordion-role="tabpanel">
<h4>4th Quarter 2010</h4>
<ul>
<li>Alex Miller</li>
<li>Aki Helin</li>
<li>Christian Holler</li>
<li>Dirk Heinrich</li>
<li>echo</li>
<li>Giorgio Maone</li>
<li>Jan de Mooij</li>
<li>Jordi Chancel</li>
<li>Konrad</li>
<li>Martin Barbella</li>
<li>Michal Zalewski</li>
<li>timeless</li>
<li>wushi</li>
<li>Zach Hoffman</li>
</ul>
<h4>3rd Quarter 2010</h4>
<ul>
<li>David Lin-Shung Huang</li>
<li>Gregory Fleischer</li>
<li>Marc Schoenefeld</li>
<li>Sergey Glazunov</li>
<li>Siddharth Agarwal</li>
</ul>
</div>
</section>
</div>
<p>If your name is on the list incorrectly or you feel you should be on the list please feel free to mail us at <a href="mailto:security@mozilla.org">security@mozilla.org</a>.</p>
</div>
</article>
{% endblock %}
|
tests/wpt/web-platform-tests/css/css-transforms/transforms-support-calc.html | dsandeephegde/servo | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>CSS Transform Module Level 2: calc values</title>
<link rel="author" title="Eric Willigers" href="mailto:ericwilligers@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-transforms-2/">
<link rel="help" href="https://drafts.csswg.org/css-values-3/#calc-notation">
<meta name="assert" content="calc values are supported in css-transforms properties.">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#container {
width: 600px;
height: 500px;
transform-style: preserve-3d;
}
#target {
width: 300px;
height: 200px;
font-size: 20px;
}
</style>
</head>
<body>
<div id="container">
<div id="target"></div>
</div>
<script>
'use strict';
test(function(){
target.style = 'translate: calc(30px + 20%) calc(-200px + 100%);';
assert_equals(getComputedStyle(target).translate, '90px 0px');
}, 'translate supports calc');
test(function(){
target.style = 'rotate: calc(1turn - 100grad);';
assert_equals(getComputedStyle(target).rotate, '270deg');
}, 'rotate supports calc');
test(function(){
target.style = 'scale: calc(5 + 2) calc(5 - 2) calc(5 * 2);';
assert_equals(getComputedStyle(target).scale, '7 3 10');
}, 'scale supports calc');
test(function(){
target.style = 'perspective: calc(100px - 3em);';
assert_equals(getComputedStyle(target).perspective, '40px');
}, 'perspective supports calc');
test(function(){
target.style = 'perspective-origin: calc(30px + 20%) calc(-200px + 100%);';
assert_equals(getComputedStyle(target).perspectiveOrigin, '90px 0px');
}, 'perspective-origin supports calc');
test(function(){
target.style = 'transform: translate(calc(30px + 20%), calc(-200px + 100%)) rotate(calc(1turn - 400grad)) scale(calc(5 + 2), calc(5 - 2));';
assert_equals(getComputedStyle(target).transform, 'matrix(7, 0, 0, 3, 90, 0)');
}, 'transform supports calc');
test(function(){
target.style = 'transform-origin: calc(30px + 20%) calc(-200px + 100%);';
assert_equals(getComputedStyle(target).transformOrigin, '90px 0px');
}, 'transform-origin supports calc');
</script>
</body>
</html>
|
web/components/template-element/bower_components/test-fixture/test/test-fixture.html | glcomponents/glcomponents.github.io | <!doctype html>
<!--
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>test-fixture</title>
<script src="../../webcomponentsjs/webcomponents-lite.js"></script>
<script src="../../web-component-tester/browser.js"></script>
<script src="../test-fixture-mocha.js"></script>
<link rel="import" href="../test-fixture.html">
</head>
<body>
<script>
(function() {
var proto = Object.create(HTMLElement.prototype);
proto.onDetached = function() {};
proto.detachedCallback = function() {
this.onDetached();
};
document.registerElement('x-custom', {
prototype: proto
});
})();
</script>
<test-fixture id="TrivialFixture">
<template>
<div id="Foo"></div>
</template>
</test-fixture>
<test-fixture id="ComplexDomFixture">
<template>
<div id="Bar">
<div id="BarChild"></div>
</div>
<div id="BarSibling"></div>
</template>
</test-fixture>
<test-fixture id="MultiTemplateFixture">
<template>
<div id="Baz"></div>
</template>
<template>
<div id="Qux"></div>
<div id="QuxSibling"></div>
</template>
</test-fixture>
<test-fixture id="CommentedSingleChildFixture">
<template>
<!-- comment -->
<!-- comment -->
<div id="Foo"></div>
<!-- comment -->
</template>
</test-fixture>
<test-fixture id="CommentedMultiChildFixture">
<template>
<!-- comment -->
<div id="Bar">
<div id="BarChild"></div>
</div>
<!-- comment -->
<!-- comment -->
<div id="BarSibling"></div>
<!-- comment -->
<div id="Baz"></div>
</template>
</test-fixture>
<test-fixture id="AttachedFixture">
<template>
<x-custom></x-custom>
</template>
</test-fixture>
<script>
describe('<test-fixture>', function () {
var trivialFixture;
var complexDomFixture;
var multiTemplateFixture;
var commentedSingleChildFixture;
var commentedMultiChildFixture;
beforeEach(function () {
trivialFixture = document.getElementById('TrivialFixture');
complexDomFixture = document.getElementById('ComplexDomFixture');
multiTemplateFixture = document.getElementById('MultiTemplateFixture');
commentedSingleChildFixture = document.getElementById('CommentedSingleChildFixture');
commentedMultiChildFixture = document.getElementById('CommentedMultiChildFixture');
});
afterEach(function () {
trivialFixture.restore();
complexDomFixture.restore();
multiTemplateFixture.restore();
commentedSingleChildFixture.restore();
commentedMultiChildFixture.restore();
});
describe('an stamped-out fixture', function () {
var attachedFixture;
var element;
beforeEach(function () {
attachedFixture = document.getElementById('AttachedFixture');
element = attachedFixture.create();
});
afterEach(function () {
attachedFixture.restore();
});
it('detaches the fixtured DOM when it is restored', function () {
var detached = false;
element.onDetached = function () {
detached = true;
};
attachedFixture.restore();
expect(detached).to.be.eql(true);
});
});
describe('when create is called', function () {
var el;
beforeEach(function () {
el = trivialFixture.create();
});
it('clones all template fragments within itself', function () {
expect(el).to.be.ok;
expect(document.getElementById('Foo')).to.be.ok;
});
it('detaches all fixture templates from itself', function () {
expect(trivialFixture.querySelectorAll('template').length).to.be.equal(0);
});
describe('and then restore is called', function () {
beforeEach(function () {
trivialFixture.restore();
});
it('re-attaches all fixture templates', function () {
expect(trivialFixture.querySelectorAll('template').length).to.be.equal(1);
});
it('removes all cloned elements from itself', function () {
expect(document.getElementById('Foo')).to.not.be.ok;
});
});
describe('for a dom with a single root element', function () {
it('returns a reference to the root element', function () {
expect(el).to.be.instanceOf(HTMLElement);
});
});
describe('for a complex dom', function () {
var els;
beforeEach(function () {
els = complexDomFixture.create();
});
it('fixtures all the dom elements in the template', function () {
expect(document.getElementById('Bar')).to.be.ok;
expect(document.getElementById('BarSibling')).to.be.ok;
expect(document.getElementById('BarChild')).to.be.ok;
});
it('returns an array of root elements', function () {
expect(els).to.be.instanceOf(Array);
expect(els[0]).to.be.instanceOf(HTMLElement);
expect(els[1]).to.be.instanceOf(HTMLElement);
});
});
describe('when there are multiple templates', function () {
var groups;
beforeEach(function () {
groups = multiTemplateFixture.create();
});
it('fixtures elements from all of the templates', function () {
expect(document.getElementById('Baz')).to.be.ok;
expect(document.getElementById('Qux')).to.be.ok;
});
it('returns an array with elements grouped by template', function () {
expect(groups).to.be.instanceOf(Array);
expect(groups[0]).to.be.instanceOf(HTMLElement);
expect(groups[1]).to.be.instanceOf(Array);
expect(groups[1][0]).to.be.instanceOf(HTMLElement);
expect(groups[1][1]).to.be.instanceOf(HTMLElement);
});
});
describe('when there are comments in the template', function() {
var el;
var els;
beforeEach(function () {
el = commentedSingleChildFixture.create();
els = commentedMultiChildFixture.create();
});
it('returns a single element if the template has a single child', function() {
expect(el).to.be.instanceOf(HTMLElement);
});
it('returns multiple elements if the template has multiple children', function() {
expect(els).to.be.instanceOf(Array);
expect(els.length).to.equal(3);
});
});
});
describe('when the fixture global is called', function () {
var el;
beforeEach(function () {
el = fixture('TrivialFixture');
});
it('generates a DOM fragment from the associated fixture', function () {
expect(el).to.be.equal(document.getElementById('Foo'));
});
});
});
</script>
</body>
</html>
|
slyd/public/start.html | livepy/portia | <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8">
<style>
html {
width:100%;
height:100%;
background:url(/assets/portia.png) center center no-repeat;
}
</style>
</head>
<body>
</body>
</html>
|
docs/api/class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html | gguruss/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>MixERP.Net.Api.Core.CompoundItemScrudViewController Class Reference</title>
<link href="tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript" src="dynsections.js"></script>
<link href="navtree.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="resize.js"></script>
<script type="text/javascript" src="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 Page</span></a></li>
<li><a href="namespaces.html"><span>Packages</span></a></li>
<li class="current"><a href="annotated.html"><span>Classes</span></a></li>
<li>
<div id="MSearchBox" class="MSearchBoxInactive">
<span class="left">
<img id="MSearchSelect" src="search/mag_sel.png"
onmouseover="return searchBox.OnSearchSelectShow()"
onmouseout="return searchBox.OnSearchSelectHide()"
alt=""/>
<input type="text" id="MSearchField" value="Search" accesskey="S"
onfocus="searchBox.OnSearchFieldFocus(true)"
onblur="searchBox.OnSearchFieldFocus(false)"
onkeyup="searchBox.OnSearchFieldChange(event)"/>
</span><span class="right">
<a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a>
</span>
</div>
</li>
</ul>
</div>
<div id="navrow2" class="tabs2">
<ul class="tablist">
<li><a href="annotated.html"><span>Class List</span></a></li>
<li><a href="classes.html"><span>Class Index</span></a></li>
<li><a href="hierarchy.html"><span>Class Hierarchy</span></a></li>
<li><a href="functions.html"><span>Class Members</span></a></li>
</ul>
</div>
</div><!-- top -->
<div id="side-nav" class="ui-resizable side-nav-resizable">
<div id="nav-tree">
<div id="nav-tree-contents">
<div id="nav-sync" class="sync"></div>
</div>
</div>
<div id="splitbar" style="-moz-user-select:none;"
class="ui-resizable-handle">
</div>
</div>
<script type="text/javascript">
$(document).ready(function(){initNavTree('class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.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="summary">
<a href="#pub-methods">Public Member Functions</a> |
<a href="#properties">Properties</a> |
<a href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller-members.html">List of all members</a> </div>
<div class="headertitle">
<div class="title">MixERP.Net.Api.Core.CompoundItemScrudViewController Class Reference</div> </div>
</div><!--header-->
<div class="contents">
<p>Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Compound Item Scrud Views.
<a href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#details">More...</a></p>
<div class="dynheader">
Inheritance diagram for MixERP.Net.Api.Core.CompoundItemScrudViewController:</div>
<div class="dyncontent">
<div class="center">
<img src="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.png" usemap="#MixERP.Net.Api.Core.CompoundItemScrudViewController_map" alt=""/>
<map id="MixERP.Net.Api.Core.CompoundItemScrudViewController_map" name="MixERP.Net.Api.Core.CompoundItemScrudViewController_map">
</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:a51c421dc14774c10930f00ce43f8b5ad"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#a51c421dc14774c10930f00ce43f8b5ad">Count</a> ()</td></tr>
<tr class="memdesc:a51c421dc14774c10930f00ce43f8b5ad"><td class="mdescLeft"> </td><td class="mdescRight">Counts the number of compound item scrud views. <a href="#a51c421dc14774c10930f00ce43f8b5ad">More...</a><br /></td></tr>
<tr class="separator:a51c421dc14774c10930f00ce43f8b5ad"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:af66e55acd766135a377246f117fe0a04"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#af66e55acd766135a377246f117fe0a04">GetPagedResult</a> ()</td></tr>
<tr class="memdesc:af66e55acd766135a377246f117fe0a04"><td class="mdescLeft"> </td><td class="mdescRight">Creates a paginated collection containing 25 compound item scrud views on each page, sorted by the property . <a href="#af66e55acd766135a377246f117fe0a04">More...</a><br /></td></tr>
<tr class="separator:af66e55acd766135a377246f117fe0a04"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aebebec03fcd0d51c1774d463f0e64b0f"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#aebebec03fcd0d51c1774d463f0e64b0f">GetPagedResult</a> (long pageNumber)</td></tr>
<tr class="memdesc:aebebec03fcd0d51c1774d463f0e64b0f"><td class="mdescLeft"> </td><td class="mdescRight">Creates a paginated collection containing 25 compound item scrud views on each page, sorted by the property . <a href="#aebebec03fcd0d51c1774d463f0e64b0f">More...</a><br /></td></tr>
<tr class="separator:aebebec03fcd0d51c1774d463f0e64b0f"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a045e31f653fe06263c153cdf7f4d4072"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_peta_poco_1_1_display_field.html">DisplayField</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#a045e31f653fe06263c153cdf7f4d4072">GetDisplayFields</a> ()</td></tr>
<tr class="memdesc:a045e31f653fe06263c153cdf7f4d4072"><td class="mdescLeft"> </td><td class="mdescRight">Displayfield is a lightweight key/value collection of compound item scrud views. <a href="#a045e31f653fe06263c153cdf7f4d4072">More...</a><br /></td></tr>
<tr class="separator:a045e31f653fe06263c153cdf7f4d4072"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:ac1dcfcfc75f1884f4c723209e91a6cf3"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#ac1dcfcfc75f1884f4c723209e91a6cf3">CountWhere</a> ([FromBody]dynamic filters)</td></tr>
<tr class="memdesc:ac1dcfcfc75f1884f4c723209e91a6cf3"><td class="mdescLeft"> </td><td class="mdescRight">Counts the number of compound item scrud views using the supplied filter(s). <a href="#ac1dcfcfc75f1884f4c723209e91a6cf3">More...</a><br /></td></tr>
<tr class="separator:ac1dcfcfc75f1884f4c723209e91a6cf3"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3cb7b9e0cfba348abd339892b9d59250"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#a3cb7b9e0cfba348abd339892b9d59250">GetWhere</a> (long pageNumber, [FromBody]dynamic filters)</td></tr>
<tr class="memdesc:a3cb7b9e0cfba348abd339892b9d59250"><td class="mdescLeft"> </td><td class="mdescRight">Creates a filtered and paginated collection containing 25 compound item scrud views on each page, sorted by the property . <a href="#a3cb7b9e0cfba348abd339892b9d59250">More...</a><br /></td></tr>
<tr class="separator:a3cb7b9e0cfba348abd339892b9d59250"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aa03c73223ba6157e6e5b5e089223388e"><td class="memItemLeft" align="right" valign="top">long </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#aa03c73223ba6157e6e5b5e089223388e">CountFiltered</a> (string filterName)</td></tr>
<tr class="memdesc:aa03c73223ba6157e6e5b5e089223388e"><td class="mdescLeft"> </td><td class="mdescRight">Counts the number of compound item scrud views using the supplied filter name. <a href="#aa03c73223ba6157e6e5b5e089223388e">More...</a><br /></td></tr>
<tr class="separator:aa03c73223ba6157e6e5b5e089223388e"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a612594132c90438b140d48670d457cf3"><td class="memItemLeft" align="right" valign="top">IEnumerable< <a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a> > </td><td class="memItemRight" valign="bottom"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html#a612594132c90438b140d48670d457cf3">GetFiltered</a> (long pageNumber, string filterName)</td></tr>
<tr class="memdesc:a612594132c90438b140d48670d457cf3"><td class="mdescLeft"> </td><td class="mdescRight">Creates a filtered and paginated collection containing 25 compound item scrud views on each page, sorted by the property . <a href="#a612594132c90438b140d48670d457cf3">More...</a><br /></td></tr>
<tr class="separator:a612594132c90438b140d48670d457cf3"><td class="memSeparator" colspan="2"> </td></tr>
</table><table class="memberdecls">
<tr class="heading"><td colspan="2"><h2 class="groupheader"><a name="properties"></a>
Properties</h2></td></tr>
<tr class="memitem:a4cfa83fefe37e7114b36fbdafe10e8dc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a4cfa83fefe37e7114b36fbdafe10e8dc"></a>
long </td><td class="memItemRight" valign="bottom"><b>LoginId</b><code> [get]</code></td></tr>
<tr class="separator:a4cfa83fefe37e7114b36fbdafe10e8dc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:aca562f5a014dc8132e75b20d1e9f84cc"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="aca562f5a014dc8132e75b20d1e9f84cc"></a>
int </td><td class="memItemRight" valign="bottom"><b>UserId</b><code> [get]</code></td></tr>
<tr class="separator:aca562f5a014dc8132e75b20d1e9f84cc"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a77e507556ac9cfa6a1f8235b2b890498"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a77e507556ac9cfa6a1f8235b2b890498"></a>
int </td><td class="memItemRight" valign="bottom"><b>OfficeId</b><code> [get]</code></td></tr>
<tr class="separator:a77e507556ac9cfa6a1f8235b2b890498"><td class="memSeparator" colspan="2"> </td></tr>
<tr class="memitem:a3f18923487049403073a096df1afe3df"><td class="memItemLeft" align="right" valign="top"><a class="anchor" id="a3f18923487049403073a096df1afe3df"></a>
string </td><td class="memItemRight" valign="bottom"><b>Catalog</b><code> [get]</code></td></tr>
<tr class="separator:a3f18923487049403073a096df1afe3df"><td class="memSeparator" colspan="2"> </td></tr>
</table>
<a name="details" id="details"></a><h2 class="groupheader">Detailed Description</h2>
<div class="textblock"><p>Provides a direct HTTP access to perform various tasks such as adding, editing, and removing Compound Item Scrud Views. </p>
</div><h2 class="groupheader">Member Function Documentation</h2>
<a class="anchor" id="a51c421dc14774c10930f00ce43f8b5ad"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">long MixERP.Net.Api.Core.CompoundItemScrudViewController.Count </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Counts the number of compound item scrud views. </p>
<dl class="section return"><dt>Returns</dt><dd>Returns the count of the compound item scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="aa03c73223ba6157e6e5b5e089223388e"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">long MixERP.Net.Api.Core.CompoundItemScrudViewController.CountFiltered </td>
<td>(</td>
<td class="paramtype">string </td>
<td class="paramname"><em>filterName</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Counts the number of compound item scrud views using the supplied filter name. </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">filterName</td><td>The named filter.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the count of filtered compound item scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="ac1dcfcfc75f1884f4c723209e91a6cf3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">long MixERP.Net.Api.Core.CompoundItemScrudViewController.CountWhere </td>
<td>(</td>
<td class="paramtype">[FromBody] dynamic </td>
<td class="paramname"><em>filters</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Counts the number of compound item scrud views using the supplied filter(s). </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">filters</td><td>The list of filter conditions.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the count of filtered compound item scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="a045e31f653fe06263c153cdf7f4d4072"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_peta_poco_1_1_display_field.html">DisplayField</a>> MixERP.Net.Api.Core.CompoundItemScrudViewController.GetDisplayFields </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Displayfield is a lightweight key/value collection of compound item scrud views. </p>
<dl class="section return"><dt>Returns</dt><dd>Returns an enumerable key/value collection of compound item scrud views.</dd></dl>
</div>
</div>
<a class="anchor" id="a612594132c90438b140d48670d457cf3"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a>> MixERP.Net.Api.Core.CompoundItemScrudViewController.GetFiltered </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>pageNumber</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">string </td>
<td class="paramname"><em>filterName</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a filtered and paginated collection containing 25 compound item scrud views on each page, sorted by the property . </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">pageNumber</td><td>Enter the page number to produce the resultset.</td></tr>
<tr><td class="paramname">filterName</td><td>The named filter.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the requested page from the collection using the supplied filters.</dd></dl>
</div>
</div>
<a class="anchor" id="af66e55acd766135a377246f117fe0a04"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a>> MixERP.Net.Api.Core.CompoundItemScrudViewController.GetPagedResult </td>
<td>(</td>
<td class="paramname"></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a paginated collection containing 25 compound item scrud views on each page, sorted by the property . </p>
<dl class="section return"><dt>Returns</dt><dd>Returns the first page from the collection.</dd></dl>
</div>
</div>
<a class="anchor" id="aebebec03fcd0d51c1774d463f0e64b0f"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a>> MixERP.Net.Api.Core.CompoundItemScrudViewController.GetPagedResult </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>pageNumber</em></td><td>)</td>
<td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a paginated collection containing 25 compound item scrud views on each page, sorted by the property . </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">pageNumber</td><td>Enter the page number to produce the resultset.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the requested page from the collection.</dd></dl>
</div>
</div>
<a class="anchor" id="a3cb7b9e0cfba348abd339892b9d59250"></a>
<div class="memitem">
<div class="memproto">
<table class="memname">
<tr>
<td class="memname">IEnumerable<<a class="el" href="class_mix_e_r_p_1_1_net_1_1_entities_1_1_core_1_1_compound_item_scrud_view.html">MixERP.Net.Entities.Core.CompoundItemScrudView</a>> MixERP.Net.Api.Core.CompoundItemScrudViewController.GetWhere </td>
<td>(</td>
<td class="paramtype">long </td>
<td class="paramname"><em>pageNumber</em>, </td>
</tr>
<tr>
<td class="paramkey"></td>
<td></td>
<td class="paramtype">[FromBody] dynamic </td>
<td class="paramname"><em>filters</em> </td>
</tr>
<tr>
<td></td>
<td>)</td>
<td></td><td></td>
</tr>
</table>
</div><div class="memdoc">
<p>Creates a filtered and paginated collection containing 25 compound item scrud views on each page, sorted by the property . </p>
<dl class="params"><dt>Parameters</dt><dd>
<table class="params">
<tr><td class="paramname">pageNumber</td><td>Enter the page number to produce the resultset.</td></tr>
<tr><td class="paramname">filters</td><td>The list of filter conditions.</td></tr>
</table>
</dd>
</dl>
<dl class="section return"><dt>Returns</dt><dd>Returns the requested page from the collection using the supplied filters.</dd></dl>
</div>
</div>
<hr/>The documentation for this class was generated from the following file:<ul>
<li>C:/Users/nirvan/Desktop/mixerp/0. GitHub/src/Libraries/Web API/Core/CompoundItemScrudViewController.cs</li>
</ul>
</div><!-- contents -->
</div><!-- doc-content -->
<!-- start footer part -->
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
<ul>
<li class="navelem"><a class="el" href="namespace_mix_e_r_p.html">MixERP</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net.html">Net</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api.html">Api</a></li><li class="navelem"><a class="el" href="namespace_mix_e_r_p_1_1_net_1_1_api_1_1_core.html">Core</a></li><li class="navelem"><a class="el" href="class_mix_e_r_p_1_1_net_1_1_api_1_1_core_1_1_compound_item_scrud_view_controller.html">CompoundItemScrudViewController</a></li>
<li class="footer">Generated by
<a href="http://www.doxygen.org/index.html">
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.10 </li>
</ul>
</div>
</body>
</html>
|
src/background.html | nrich/uBlock | <!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>uBlock Origin</title>
</head>
<body>
<script src="lib/punycode.js"></script>
<script src="lib/publicsuffixlist.js"></script>
<script src="lib/yamd5.js"></script>
<script src="js/vapi-common.js"></script>
<script src="js/vapi-background.js"></script>
<script src="js/background.js"></script>
<script src="js/async.js"></script>
<script src="js/utils.js"></script>
<script src="js/uritools.js"></script>
<script src="js/assets.js"></script>
<script src="js/dynamic-net-filtering.js"></script>
<script src="js/static-net-filtering.js"></script>
<script src="js/url-net-filtering.js"></script>
<script src="js/cosmetic-filtering.js"></script>
<script src="js/hnswitches.js"></script>
<script src="js/ublock.js"></script>
<script src="js/messaging.js"></script>
<script src="js/profiler.js"></script>
<script src="js/storage.js"></script>
<script src="js/logger.js"></script>
<script src="js/pagestore.js"></script>
<script src="js/tab.js"></script>
<script src="js/traffic.js"></script>
<script src="js/contextmenu.js"></script>
<script src="js/reverselookup.js"></script>
<script src="js/start.js"></script>
</body>
</html>
|
spec/index.html | Automattic/webfontloader | <!doctype html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Webfontloader tests</title>
<link rel="stylesheet" href="../tools/jasmine/jasmine.css">
<link rel="stylesheet" href="fixtures/fonts/nullfont.css">
<link rel="stylesheet" href="fixtures/fonts/nullfont1.css">
<link rel="stylesheet" href="fixtures/fonts/nullfont2.css">
<link rel="stylesheet" href="fixtures/fonts/nullfont3.css">
<link rel="stylesheet" href="fixtures/fonts/sourcesansa.css">
</head>
<body>
<script>
CLOSURE_NO_DEPS = true;
</script>
<script src="../tools/jasmine/jasmine.js"></script>
<script src="../tools/jasmine/jasmine-html.js"></script>
<script src="../tools/jasmine-phantomjs/terminal-reporter.js"></script>
<script src="../tools/jasmine-browserstack/jasmine-browserstack.js"></script>
<script src="../tools/compiler/base.js"></script>
<script src="../spec/deps.js"></script>
<script>
goog.require('webfont');
</script>
<script src="../spec/core/domhelper_spec.js"></script>
<script src="../spec/core/cssclassname_spec.js"></script>
<script src="../spec/core/useragentparser_spec.js"></script>
<script src="../spec/core/fontmoduleloader_spec.js"></script>
<script src="../spec/core/eventdispatcher_spec.js"></script>
<script src="../spec/core/font_spec.js"></script>
<script src="../spec/core/fontruler_spec.js"></script>
<script src="../spec/core/fontwatchrunner_spec.js"></script>
<script src="../spec/core/fontwatcher_spec.js"></script>
<script src="../spec/core/webfont_spec.js"></script>
<script src="../spec/core/version_spec.js"></script>
<script src="../spec/modules/google/fontapiparser_spec.js"></script>
<script src="../spec/modules/google/fontapiurlbuilder_spec.js"></script>
<script src="../spec/modules/google/googlefontapi_spec.js"></script>
<script src="../spec/modules/custom_spec.js"></script>
<script src="../spec/modules/fontdeck_spec.js"></script>
<script src="../spec/modules/monotype_spec.js"></script>
<script src="../spec/modules/typekit_spec.js"></script>
<script>
(function () {
var env = jasmine.getEnv();
env.updateInterval = 1000;
var htmlReporter = new jasmine.HtmlReporter(),
terminalReporter = new jasmine.TerminalReporter({
verbosity: 3,
color: true
}),
browserStackReporter = new jasmine.BrowserStackReporter();
if (/PhantomJS/.test(navigator.userAgent)) {
env.addReporter(terminalReporter);
}
env.addReporter(htmlReporter);
env.addReporter(browserStackReporter);
env.specFilter = function (spec) {
return htmlReporter.specFilter(spec);
};
var currentOnload = window.onload;
window.onload = function () {
if (currentOnload) {
currentOnload();
}
env.execute();
};
}());
</script>
</body>
</html>
|
vendor/cappuccino/Tools/capp/Resources/Templates/Application/index.html | i5ting/mdpreview | <!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">
<!--
index.html
__project.name__
Created by __user.name__ on __project.date__.
Copyright __project.year__, __organization.name__ All rights reserved.
-->
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7, chrome=1" />
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link rel="apple-touch-icon" href="Resources/icon.png" />
<link rel="apple-touch-startup-image" href="Resources/default.png" />
<title>__project.name__</title>
<script type="text/javascript">
OBJJ_MAIN_FILE = "main.j";
</script>
<script type="text/javascript" src="Frameworks/Objective-J/Objective-J.js" charset="UTF-8"></script>
<style type="text/css">
body{margin:0; padding:0;}
#container {position: absolute; top:50%; left:50%;}
#content {width:800px; text-align:center; margin-left: -400px; height:50px; margin-top:-25px; line-height: 50px;}
#content {font-family: "Helvetica", "Arial", sans-serif; font-size: 18px; color: black; text-shadow: 0px 1px 0px white; }
#loadgraphic {margin-right: 0.2em; margin-bottom:-2px;}
</style>
<!--[if lt IE 7]>
<STYLE type="text/css">
#container { position: relative; top: 50%; }
#content { position: relative;}
</STYLE>
<![endif]-->
</head>
<body style="">
<div id="cappuccino-body">
<div id="loadingcontainer" style="background-color: #eeeeee; overflow:hidden; width:100%; height:100%; position: absolute; top: 0; left: 0;">
<script type="text/javascript">
document.write("<div id='container'><p id='content'>" +
"<img id='loadgraphic' width='16' height='16' src='Resources/spinner.gif' /> " +
"Loading __project.name__...</p></div>");
</script>
<noscript>
<div id="container">
<div style="width: 440px; padding: 10px 25px 20px 25px; font-family: sans-serif; background-color: #ffffff; position: relative; left: -245px; top: -120px; text-align: center; -moz-border-radius: 20px; -webkit-border-radius: 20px; color: #555555">
<p style="line-height: 1.4em;">JavaScript is required for this site to work correctly but is either disabled or not supported by your browser.</p>
<p style="font-size:120%; padding:10px;"><a href="http://cappuccino.org/noscript">Show me how to enable JavaScript</a></p>
<p style="font-size:80%;">You may want to upgrade to a newer browser while you're at it:</p>
<ul style="margin:0;padding:0; text-align: center; font-size:80%;" >
<li style="display: inline;"><a href="http://www.apple.com/safari/download/">Safari</a></li>
<li style="display: inline;"><a href="http://www.mozilla.com/en-US/firefox/">Firefox</a></li>
<li style="display: inline;"><a href="http://www.google.com/chrome/">Chrome</a></li>
<li style="display: inline;"><a href="http://www.opera.com/download/">Opera</a></li>
<li style="display: inline;"><a href="http://www.microsoft.com/windows/downloads/ie/getitnow.mspx">Internet Explorer</a></li>
</ul>
</div>
</div>
</noscript>
</div>
</div>
</body>
</html>
|
www/include/common/javascript/modalbox.css | Tpo76/centreon | #MB_overlay {
position: absolute;
margin: auto;
top: 0; left: 0;
width: 100%; height: 100%;
z-index: 9999;
background-color: #000!important;
}
#MB_overlay[id] { position: fixed; }
#MB_window {
position: absolute;
top: 0;
border: 0 solid;
text-align: left;
z-index: 10000;
}
#MB_window[id] { position: fixed!important; }
#MB_frame {
position: relative;
background-color: #EFEFEF;
height: 100%;
}
#MB_header {
margin: 0;
padding: 0;
}
#MB_content {
padding: 6px .75em;
overflow: auto;
}
#MB_caption {
font: bold 100% "Lucida Grande", Arial, sans-serif;
text-shadow: #FFF 0 1px 0;
padding: .5em 2em .5em .75em;
margin: 0;
text-align: left;
}
#MB_close {
display: block;
position: absolute;
right: 5px; top: 4px;
padding: 2px 3px;
font-weight: bold;
text-decoration: none;
font-size: 13px;
}
#MB_close:hover {
background: transparent;
}
#MB_loading {
padding: 1.5em;
text-indent: -10000px;
background: transparent url(spinner.gif) 50% 0 no-repeat;
}
/* Color scheme */
#MB_frame {
padding-bottom: 7px;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
}
#MB_window {
background-color: #EFEFEF;
color: #000;
-webkit-box-shadow: 0 8px 64px #000;
-moz-box-shadow: 0 0 64px #000;
box-shadow: 0 0 64px #000;
-webkit-border-radius: 7px;
-moz-border-radius: 7px;
border-radius: 7px;
}
#MB_content { border-top: 1px solid #F9F9F9; }
#MB_header {
background-color: #DDD;
border-bottom: 1px solid #CCC;
}
#MB_caption { color: #000 }
#MB_close { color: #777 }
#MB_close:hover { color: #000 }
/* Alert message */
.MB_alert {
margin: 10px 0;
text-align: center;
} |
tests/wpt/web-platform-tests/css/css-text/text-align/text-align-justifyall-003.html | UK992/servo | <!DOCTYPE html>
<html lang="en" >
<head>
<meta charset="utf-8">
<title>text-align: justify-all, dir=rtl</title>
<link rel='author' title='Richard Ishida' href='mailto:ishida@w3.org'>
<link rel='help' href='https://drafts.csswg.org/css-text-3/#text-align-property'>
<link rel='match' href='reference/text-align-justifyall-ref-003.html'>
<meta name="assert" content="text-align:justify-all aligns text in order to exactly fill the line box, forcing the last line to justify as well.">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style type='text/css'>
.test { text-align: justify-all; }
/* the CSS below is not part of the test */
.test, .ref { border: 1px solid orange; margin: 20px; width: 399px; color: orange; font: 24px/24px Ahem; }
.ref { text-align: right; position: relative; height:72px; }
.rb { position: absolute; background-color: orange; width: 72px; }
#rb1 { top: 0; left: 0; height: 48px; }
#rb2 { top: 0; left: 109px; height: 48px; }
#rb3 { top: 0; left: 218px; height: 48px; }
#rb4 { top: 0; left: 327px; height: 72px; }
#rb5 { top: 48px; right: 96px; height: 24px; }
#rb6 { top: 48px; right: 192px; height: 24px; }
</style>
</head>
<body>
<div id='instructions'>Test passes if the shading in both orange boxes is the same.</div>
<div class="test" dir="rtl">XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX </div>
<div class="ref"><div class="rb" id="rb1"></div><div class="rb" id="rb2"></div><div class="rb" id="rb3"></div><div class="rb" id="rb4"></div><div class="rb" id="rb5"></div><div class="rb" id="rb6"></div></div>
</body>
</html> |
java/java-tests/testData/codeInsight/javadocIG/fieldInitializedWithSizedArray.html | siosio/intellij-community | <html><head><base href="placeholder"></head><body><div class='definition'><pre><a href="psi_element://A"><code>A</code></a><br>public static int[] <b>x</b> = new int[1]</pre></div><table class='sections'></table> |
docs/libc/unix/notbsd/EPIPE.v.html | nitro-devs/nitro-game-engine | <!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="refresh" content="0;URL=constant.EPIPE.html">
</head>
<body>
<p>Redirecting to <a href="constant.EPIPE.html">constant.EPIPE.html</a>...</p>
<script>location.replace("constant.EPIPE.html" + location.search + location.hash);</script>
</body>
</html> |
usecase/usecase-apptools-tests/samples-android/CheckApkSize/index.html | yhe39/crosswalk-test-suite | <!DOCTYPE html>
<!--
Copyright (c) 2016 Intel Corporation.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
* Redistributions of works must retain the original copyright notice, this list
of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the original copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of Intel Corporation nor the names of its contributors
may be used to endorse or promote products derived from this work without
specific prior written permission.
THIS SOFTWARE IS PROVIDED BY INTEL CORPORATION "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE DISCLAIMED. IN NO EVENT SHALL INTEL CORPORATION BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-->
<meta charset="utf-8" />
<meta name="viewport" content="initial-scale=1.0, maximum-scale=1.0, width=device-width" />
<link rel="author" title="Intel" href="http://www.intel.com">
<link rel="author" title="Yunx Liu" href="mailto:yunx.liu@intel.com">
<link rel="stylesheet" type="text/css" href="../../css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="../../css/main.css">
<script src="../../js/jquery-2.1.3.min.js"></script>
<script src="../../js/bootstrap.min.js"></script>
<script src="../../js/common.js"></script>
<script src="../../js/tests.js"></script>
<div id="header">
<h3 id="main_page_title"></h3>
</div>
<div class="content">
<h4>Precondition</h4>
<ol>
<li>Please refer to README file</li>
</ol>
<h4>Test Steps</h4>
<ol>
<li>Check the size of basicapp and remotedebugging apk</li>
</ol>
</div>
<div class="footer">
<div id="footer"></div>
</div>
<div class="modal fade" id="popup_info">
<p>Purpose:</p>
<p>Verifies if the size of basicapp and remotedebugging apk are nearly, and the size is less than 25M</p>
<p>Expected Result:</p>
<ol>
<li>The size of basicapp and remotedebugging apk are nearly, and the size is less than 25M</li>
</ol>
</div>
|
src/main/twirl/issues/editcomment.scala.html | emag/gitbucket | @(content: String, commentId: Int, owner: String, repository: String)(implicit context: app.Context)
@import context._
<span id="error-edit-content-@commentId" class="error"></span>
<textarea style="width: 680px; height: 100px;" id="edit-content-@commentId">@content</textarea>
<div>
<input type="button" id="update-comment-@commentId" class="btn btn-small" value="Update Comment"/>
<input type="button" id="cancel-comment-@commentId" class="btn btn-small btn-danger pull-right" value="Cancel"/>
</div>
<script>
$(function(){
var callback = function(data){
$('#commentContent-@commentId').empty().html(data.content);
};
$('#update-comment-@commentId').click(function(){
$.ajax({
url: '@path/@owner/@repository/issue_comments/edit/@commentId',
type: 'POST',
data: {
issueId : 0, // TODO
content : $('#edit-content-@commentId').val()
}
}).done(
callback
).fail(function(req) {
$('#error-edit-content-@commentId').text($.parseJSON(req.responseText).content);
});
});
$('#cancel-comment-@commentId').click(function(){
$.get('@path/@owner/@repository/issue_comments/_data/@commentId', callback);
return false;
});
});
</script>
|
doc/source/_templates/sidebar-nav-bs.html | e-q/scipy | <nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
{% if pagename.startswith("reference") %}
{{ generate_nav_html("sidebar", maxdepth=1, collapse=True, includehidden=True, titles_only=True) }}
{% else %}
{{ generate_nav_html("sidebar", maxdepth=2, collapse=True, includehidden=True, titles_only=True) }}
{% endif %}
</div>
</nav>
|
util/management/assets/css/table.css | ehein6/stinger | /*
* File: demo_table.css
* CVS: $Id$
* Description: CSS descriptions for DataTables demo pages
* Author: Allan Jardine
* Created: Tue May 12 06:47:22 BST 2009
* Modified: $Date$ by $Author$
* Language: CSS
* Project: DataTables
*
* Copyright 2009 Allan Jardine. All Rights Reserved.
*
* ***************************************************************************
* DESCRIPTION
*
* The styles given here are suitable for the demos that are used with the standard DataTables
* distribution (see www.datatables.net). You will most likely wish to modify these styles to
* meet the layout requirements of your site.
*
* Common issues:
* 'full_numbers' pagination - I use an extra selector on the body tag to ensure that there is
* no conflict between the two pagination types. If you want to use full_numbers pagination
* ensure that you either have "example_alt_pagination" as a body class name, or better yet,
* modify that selector.
* Note that the path used for Images is relative. All images are by default located in
* ../images/ - relative to this CSS file.
*/
/* GENERAL */
body {
background-color:silver;
}
table thead tr {
background:#353535;
height: 30px;
}
table thead th {
border-right: 1px solid #ccc;
color: #b2c831;
font-size: 12px;
}
table thead th:last-of-type { border-right: none; }
table tbody {
border-top: 1px solid #bbb;
border-bottom: 1px solid #bbb;
}
table tr.odd { background-color: #fff; }
table tr.even { background-color: #f6f6f6; }
table td { padding: 8px 10px; border-right: 1px solid #ccc; }
table tbody tr:hover { background-color: #ddd; }
.display { width: 100%; }
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables features
*/
.dataTables_wrapper {
position: relative;
clear: both;
zoom: 1; /* Feeling sorry for IE */
}
.dataTables_processing {
position: absolute;
top: 50%;
left: 50%;
width: 250px;
height: 30px;
margin-left: -125px;
margin-top: -15px;
padding: 14px 0 2px 0;
border: 1px solid #ddd;
text-align: center;
color: #999;
font-size: 14px;
background-color: white;
}
.dataTables_length {
width: 40%;
float: left;
}
.dataTables_filter {
width: 50%;
float: right;
text-align: right;
}
.dataTables_info {
width: 60%;
float: left;
}
.dataTables_paginate {
float: right;
text-align: right;
}
/* Pagination nested */
.paginate_disabled_previous, .paginate_enabled_previous,
.paginate_disabled_next, .paginate_enabled_next {
height: 19px;
float: left;
cursor: pointer;
*cursor: hand;
color: #111 !important;
}
.paginate_disabled_previous:hover, .paginate_enabled_previous:hover,
.paginate_disabled_next:hover, .paginate_enabled_next:hover {
text-decoration: none !important;
}
.paginate_disabled_previous:active, .paginate_enabled_previous:active,
.paginate_disabled_next:active, .paginate_enabled_next:active {
outline: none;
}
.paginate_disabled_previous,
.paginate_disabled_next {
color: #666 !important;
}
.paginate_disabled_previous, .paginate_enabled_previous {
padding-left: 23px;
}
.paginate_disabled_next, .paginate_enabled_next {
padding-right: 23px;
margin-left: 10px;
}
.paginate_disabled_previous {
background: url('../images/back_disabled.png') no-repeat top left;
}
.paginate_enabled_previous {
background: url('../images/back_enabled.png') no-repeat top left;
}
.paginate_enabled_previous:hover {
background: url('../images/back_enabled_hover.png') no-repeat top left;
}
.paginate_disabled_next {
background: url('../images/forward_disabled.png') no-repeat top right;
}
.paginate_enabled_next {
background: url('../images/forward_enabled.png') no-repeat top right;
}
.paginate_enabled_next:hover {
background: url('../images/forward_enabled_hover.png') no-repeat top right;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables display
*/
table.display {
margin: 0 auto;
clear: both;
width: 100%;
/* Note Firefox 3.5 and before have a bug with border-collapse
* ( https://bugzilla.mozilla.org/show%5Fbug.cgi?id=155955 )
* border-spacing: 0; is one possible option. Conditional-css.com is
* useful for this kind of thing
*
* Further note IE 6/7 has problems when calculating widths with border width.
* It subtracts one px relative to the other browsers from the first column, and
* adds one to the end...
*
* If you want that effect I'd suggest setting a border-top/left on th/td's and
* then filling in the gaps with other borders.
*/
}
table.display thead th {
padding: 3px 18px 3px 10px;
border-bottom: 1px solid black;
font-weight: bold;
cursor: pointer;
* cursor: hand;
}
table.display tfoot th {
padding: 3px 18px 3px 10px;
border-top: 1px solid black;
font-weight: bold;
}
table.display tr.heading2 td {
border-bottom: 1px solid #aaa;
}
table.display td {
padding: 3px 10px;
}
table.display td.center {
text-align: center;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* DataTables row classes
*/
table.display tr.odd.gradeA {
background-color: #ddffdd;
}
table.display tr.even.gradeA {
background-color: #eeffee;
}
table.display tr.odd.gradeC {
background-color: #ddddff;
}
table.display tr.even.gradeC {
background-color: #eeeeff;
}
table.display tr.odd.gradeX {
background-color: #ffdddd;
}
table.display tr.even.gradeX {
background-color: #ffeeee;
}
table.display tr.odd.gradeU {
background-color: #ddd;
}
table.display tr.even.gradeU {
background-color: #eee;
}
tr.odd {
background-color: #E2E4FF;
}
tr.even {
background-color: white;
}
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Misc
*/
.dataTables_scroll {
clear: both;
}
.dataTables_scrollBody {
*margin-top: -1px;
-webkit-overflow-scrolling: touch;
}
.top, .bottom {
padding: 15px;
background-color: #F5F5F5;
border: 1px solid #CCCCCC;
}
.top .dataTables_info {
float: none;
}
.clear {
clear: both;
}
.dataTables_empty {
text-align: center;
}
tfoot input {
margin: 0.5em 0;
width: 100%;
color: #444;
}
tfoot input.search_init {
color: #999;
}
td.group {
background-color: #d1cfd0;
border-bottom: 2px solid #A19B9E;
border-top: 2px solid #A19B9E;
}
td.details {
background-color: #d1cfd0;
border: 2px solid #A19B9E;
}
.example_alt_pagination div.dataTables_info {
width: 40%;
}
.paging_full_numbers {
width: 400px;
height: 22px;
line-height: 22px;
}
.paging_full_numbers a:active {
outline: none
}
.paging_full_numbers a:hover {
text-decoration: none;
}
.paging_full_numbers a.paginate_button,
.paging_full_numbers a.paginate_active {
border: 1px solid #aaa;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
padding: 2px 5px;
margin: 0 3px;
cursor: pointer;
*cursor: hand;
color: #333 !important;
}
.paging_full_numbers a.paginate_button {
background-color: #ddd;
}
.paging_full_numbers a.paginate_button:hover {
background-color: #ccc;
text-decoration: none !important;
}
.paging_full_numbers a.paginate_active {
background-color: #99B3FF;
}
table.display tr.even.row_selected td {
background-color: #B0BED9;
}
table.display tr.odd.row_selected td {
background-color: #9FAFD1;
}
/*
* Sorting classes for columns
*/
/* For the standard odd/even */
tr.odd td.sorting_1 {
background-color: #D3D6FF;
}
tr.odd td.sorting_2 {
background-color: #DADCFF;
}
tr.odd td.sorting_3 {
background-color: #E0E2FF;
}
tr.even td.sorting_1 {
background-color: #EAEBFF;
}
tr.even td.sorting_2 {
background-color: #F2F3FF;
}
tr.even td.sorting_3 {
background-color: #F9F9FF;
}
/* For the Conditional-CSS grading rows */
/*
Colour calculations (based off the main row colours)
Level 1:
dd > c4
ee > d5
Level 2:
dd > d1
ee > e2
*/
tr.odd.gradeA td.sorting_1 {
background-color: #c4ffc4;
}
tr.odd.gradeA td.sorting_2 {
background-color: #d1ffd1;
}
tr.odd.gradeA td.sorting_3 {
background-color: #d1ffd1;
}
tr.even.gradeA td.sorting_1 {
background-color: #d5ffd5;
}
tr.even.gradeA td.sorting_2 {
background-color: #e2ffe2;
}
tr.even.gradeA td.sorting_3 {
background-color: #e2ffe2;
}
tr.odd.gradeC td.sorting_1 {
background-color: #c4c4ff;
}
tr.odd.gradeC td.sorting_2 {
background-color: #d1d1ff;
}
tr.odd.gradeC td.sorting_3 {
background-color: #d1d1ff;
}
tr.even.gradeC td.sorting_1 {
background-color: #d5d5ff;
}
tr.even.gradeC td.sorting_2 {
background-color: #e2e2ff;
}
tr.even.gradeC td.sorting_3 {
background-color: #e2e2ff;
}
tr.odd.gradeX td.sorting_1 {
background-color: #ffc4c4;
}
tr.odd.gradeX td.sorting_2 {
background-color: #ffd1d1;
}
tr.odd.gradeX td.sorting_3 {
background-color: #ffd1d1;
}
tr.even.gradeX td.sorting_1 {
background-color: #ffd5d5;
}
tr.even.gradeX td.sorting_2 {
background-color: #ffe2e2;
}
tr.even.gradeX td.sorting_3 {
background-color: #ffe2e2;
}
tr.odd.gradeU td.sorting_1 {
background-color: #c4c4c4;
}
tr.odd.gradeU td.sorting_2 {
background-color: #d1d1d1;
}
tr.odd.gradeU td.sorting_3 {
background-color: #d1d1d1;
}
tr.even.gradeU td.sorting_1 {
background-color: #d5d5d5;
}
tr.even.gradeU td.sorting_2 {
background-color: #e2e2e2;
}
tr.even.gradeU td.sorting_3 {
background-color: #e2e2e2;
}
/*
* Row highlighting example
*/
.ex_highlight #example tbody tr.even:hover, #example tbody tr.even td.highlighted {
background-color: #ECFFB3;
}
.ex_highlight #example tbody tr.odd:hover, #example tbody tr.odd td.highlighted {
background-color: #E6FF99;
}
.ex_highlight_row #example tr.even:hover {
background-color: #ECFFB3;
}
.ex_highlight_row #example tr.even:hover td.sorting_1 {
background-color: #DDFF75;
}
.ex_highlight_row #example tr.even:hover td.sorting_2 {
background-color: #E7FF9E;
}
.ex_highlight_row #example tr.even:hover td.sorting_3 {
background-color: #E2FF89;
}
.ex_highlight_row #example tr.odd:hover {
background-color: #E6FF99;
}
.ex_highlight_row #example tr.odd:hover td.sorting_1 {
background-color: #D6FF5C;
}
.ex_highlight_row #example tr.odd:hover td.sorting_2 {
background-color: #E0FF84;
}
.ex_highlight_row #example tr.odd:hover td.sorting_3 {
background-color: #DBFF70;
}
/*
* KeyTable
*/
table.KeyTable td {
border: 3px solid transparent;
}
table.KeyTable td.focus {
border: 3px solid #3366FF;
}
table.display tr.gradeA {
background-color: #eeffee;
}
table.display tr.gradeC {
background-color: #ddddff;
}
table.display tr.gradeX {
background-color: #ffdddd;
}
table.display tr.gradeU {
background-color: #ddd;
}
div.box {
height: 100px;
padding: 10px;
overflow: auto;
border: 1px solid #8080FF;
background-color: #E5E5FF;
}
/*****************************************************************************************
**********************************PRICE TABLES CONFIGURATION******************************
*****************************************************************************************/
#hosting-table {
width: 100%;
height: 100%;
font-size: 12px;
color:#787878;
margin-bottom:15px;
}
#hosting-table .clear {
clear:both;
}
#hosting-table > div
{
margin-bottom:5em;
}
/* ---- Lists ---- */
#hosting-table ul {
margin: 0;
padding: 0;
list-style-type: none;
}
#hosting-table ul li {
margin: 0;
position:relative;
padding:1em .3em;
list-style-type: none;
}
#hosting-table ul {
position:relative;
border-bottom:10px solid #000;
}
#hosting-table .column li {
min-height:1em;
color:#000;
background:#e6e6e6;
border-right:1px solid #b6b6b6;
border-bottom:1px solid #b6b6b6;
}
#hosting-table .column ul li:first-child {
padding: .5em .3em .8em;
font-size: 13px;
font-weight: 100;
color: #ffffff;
background:#353535;
/* W3C */
/* IE5.5 - 7 */
/* IE8 */
/* IE9 */
/* Firefox */
/* Opera 11 */
/* Chrome 11 */
/* Chrome 10, Safari */
*border-left-style: none;
border-left-color: inherit;
border-left-width: medium;
border-bottom-style: none;
border-bottom-color: inherit;
border-bottom-width: medium;
}
#hosting-table .column li:after {
position:absolute;
content:'/';
font-size:12px;
overflow:hidden;
left:12px;
top:10px;
}
#hosting-table .column:first-child ul {
border-left:1px solid #b6b6b6;
}
#hosting-table .column ul li:first-child:after {
display:none;
}
#hosting-table .column li:first-child {
border-right:1px solid transparent;
}
#hosting-table .column .header_row:after {
display:none;
}
#hosting-table .header_row span {
color:#fff;
font-size:12px;
}
/* --- heading --- */
#hosting-table .column h1 {
text-transform:uppercase;
font-size:36px;
font-weight: bolder;
line-height:1.3em;
color:#fff;
}
/* ---- footer row ---- */
#hosting-table .column .footer_row{
height: 80px;
display: block;
padding: 2em 0 .2em 0;
text-align: center;
/* IE5.5 - 7 */
/* IE8 */
/* IE9 */
/* Firefox */
/* Opera 11 */
/* Chrome 11 */
/* Chrome 10, Safari */
}
#hosting-table .column .footer_row:after {
display:none;
}
/* ---- hover ---- */
#hosting-table .column:hover {
-moz-transform: scale(1.15);
-webkit-transform: scale(1.15);
-o-transform:scale(1.15);
-moz-transition:all .2s linear 0s;
-webkit-transition:all .2s linear 0s;
-o-transition:all .2s linear 0s;
z-index:5;
}
#hosting-table .column:hover ul li.header_row,
#hosting-table .column:hover ul li:first-child {
border-left: 1px solid transparent;
border-left: none \0/;
*border-left: none;
}
#hosting-table .column:hover:first-child ul {
border-left: none;
border-left: 1px solid #B6B6B6 \0/;
*border-left: 1px solid #B6B6B6;
}
#hosting-table .column:hover ul li {
border-left: 1px solid #B6B6B6;
border-left: none \0/;
*border-left: none;
}
#hosting-table .column .header_row {
height:6em;
display:block;
border-right:1px solid transparent;
*border-right:none;
padding:.7em 0 .5em 0;
text-align:center;
}
#hosting-table .column {
text-align:center;
position:relative;
}
/* ---- button ---- */
#hosting-table .hosting-button {
-moz-border-radius:8px;
-webkit-border-radius:8px;
border-radius:8px;
text-decoration:none;
display:inline-block;
padding:.7em 1.8em 1em 1.8em;
padding:.7em 1.8em .6em 1.8em \0/;
*padding:.7em 1.8em .6em 1.8em;
font-size:16px;
color:#fff;
position:relative;
}
/* --- button active --- */
#hosting-table .column:hover .hosting-button:active {
top:3px;
-moz-transition:all .2ms ease-in-out 0s;
-webkit-transition:all .2ms ease-in-out 0s;
-o-transition:all .2ms ease-in-out 0s;
}
/* ---- bubble tooltip ----*/
#hosting-table a.tt {
position:relative;
z-index:24;
font-size:10px;
color: #8e8b8b;
text-decoration:none;
}
#hosting-table a.tt span { display: none; }
#hosting-table a.tt:hover { z-index:25; color: #000;}
#hosting-table a.tt:hover span.tooltip {
display:block;
position:absolute;
bottom:0;
*bottom:-10px;
left:-44px;
width:200px;
color: #787878;
text-align: center;
filter: alpha(opacity:95);
KHTMLOpacity: 0.95;
MozOpacity: 0.95;
opacity: 0.95;
}
#hosting-table a.tt:hover span.triangle-obtuse {
display:block;
position:relative;
padding:8px;
margin:1em 0 3em;
color:#333;
background:#fff;
/* css3 */
-webkit-border-radius:5px;
-moz-border-radius:5px;
border-radius:5px;
}
#hosting-table a.tt:hover span.triangle-obtuse:before {
content:"";
position:absolute;
bottom:-9px; /* value = - border-top-width - border-bottom-width */
left:39px; /* controls horizontal position */
border-width:10px 10px 0;
border-style:solid;
border-color:#fff transparent;
/* reduce the damage in FF3.0 */
display:block;
width:0;
}
/* creates the narrower right-angled triangle */
#hosting-table a.tt:hover span.triangle-obtuse:after {
content:"";
position:absolute;
bottom:-9px; /* value = - border-top-width - border-bottom-width */
left:40px; /* value = (:before left) + (:before border-left) - (:after border-left) */
border-width:10px 10px 0;
border-style:solid;
border-color:#fff transparent;
/* reduce the damage in FF3.0 */
display:block;
width:0;
}
/* =============== STYLE 4 =============== */
#hosting-table .table_style4 .column .header_row {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b2c831', endColorstr='#a9c600'); /* IE5.5 - 7 */
background: -ms-linear-gradient(top, #b2c831, #a9c600); /* IE9 */
background: -moz-linear-gradient(top, #b2c831, #a9c600); /* Firefox */
background: -o-linear-gradient(top, #b2c831, #a9c600); /* Opera 11 */
background: -webkit-linear-gradient(top, #b2c831, #a9c600); /* Chrome 11 */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b2c831), color-stop(1, #a9c600)); /* Chrome 10, Safari */
}
#hosting-table .table_style4 .column:hover ul li.header_row {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6a958e', endColorstr='#3d4f49'); /* IE5.5 - 7 */
background-size: 40px 40px;
display:block;
background-color: #fa1d2d;
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
transparent 75%, transparent);
background-image: -moz-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
transparent 75%, transparent);
background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
transparent 75%, transparent);
background-image: linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%,
transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%,
transparent 75%, transparent);
}
/* ---- button ---- */
#hosting-table .table_style4 .hosting-button {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b2c831', endColorstr='#a9c600'); /* IE5.5 - 7 */
background: -ms-linear-gradient(top, #b2c831, #a9c600); /* IE9 */
background: -moz-linear-gradient(top, #b2c831, #a9c600); /* Firefox */
background: -o-linear-gradient(top, #b2c831, #a9c600); /* Opera 11 */
background: -webkit-linear-gradient(top, #b2c831, #a9c600); /* Chrome 11 */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b2c831), color-stop(1, #a9c600)); /* Chrome 10, Safari */
-moz-box-shadow:inset 0 -5px 0 #cada69;
-webkit-box-shadow:inset 0 -5px 0 #cada69;
box-shadow:inset 0 -5px 0 #cada69;
}
/* --- button hover --- */
#hosting-table .table_style4 .column:hover ul li a.hosting-button {
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#6a958e', endColorstr='#3d4f49'); /* IE5.5 - 7 */
background: -ms-linear-gradient(top, #6a958e, #3d4f49); /* IE9 */
background: -moz-linear-gradient(top, #6a958e, #3d4f49); /* Firefox */
background: -o-linear-gradient(top, #6a958e, #3d4f49); /* Opera 11 */
background: -webkit-linear-gradient(top, #6a958e, #3d4f49); /* Chrome 11 */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #6a958e), color-stop(1, #3d4f49)); /* Chrome 10, Safari */
-moz-box-shadow:inset 0 -5px 0 #25352f;
-webkit-box-shadow:inset 0 -5px 0 #25352f;
box-shadow:inset 0 -5px 0 #25352f;
}
/* --- button active --- */
#hosting-table .table_style4 .column:hover .hosting-button:active {
-moz-box-shadow:inset 0 -1px 0 #25352f;
-webkit-box-shadow:inset 0 -1px 0 #25352f;
box-shadow:inset 0 -1px 0 #25352f;
}
|
ajax/libs/froala-editor/2.6.6/css/plugins/fullscreen.min.css | seogi1004/cdnjs | /*!
* froala_editor v2.6.6 (https://www.froala.com/wysiwyg-editor)
* License https://froala.com/wysiwyg-editor/terms/
* Copyright 2014-2017 Froala Labs
*/
body.fr-fullscreen{overflow:hidden;height:100%;width:100%;position:fixed}.fr-box.fr-fullscreen{margin:0!important;position:fixed;top:0;left:0;bottom:0;right:0;z-index:9990!important;width:auto!important}.fr-box.fr-fullscreen .fr-toolbar.fr-top{top:0!important}.fr-box.fr-fullscreen .fr-toolbar.fr-bottom{bottom:0!important} |
wp-admin/css/customize-controls-rtl.css | pcutler/stoneopen | body {
overflow: hidden;
-webkit-text-size-adjust: 100%;
}
.customize-controls-close,
.widget-control-actions a {
text-decoration: none;
}
#customize-controls h3 {
font-size: 14px;
}
#customize-controls img {
max-width: 100%;
}
#customize-controls .submit {
text-align: center;
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked {
background-color: rgba( 0, 0, 0, 0.7 );
padding: 25px;
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .customize-changeset-locked-message {
margin-right: auto;
margin-left: auto;
max-width: 366px;
min-height: 64px;
width: auto;
padding: 25px 109px 25px 25px;
position: relative;
background: #fff;
box-shadow: 0 3px 6px rgba( 0, 0, 0, 0.3 );
line-height: 1.5;
overflow-y: auto;
text-align: right;
top: calc( 50% - 100px );
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .currently-editing {
margin-top: 0;
}
#customize-controls #customize-notifications-area .notice.notification-overlay.notification-changeset-locked .action-buttons {
margin-bottom: 0;
}
.customize-changeset-locked-avatar {
width: 64px;
position: absolute;
right: 25px;
top: 25px;
}
.wp-core-ui.wp-customizer .customize-changeset-locked-message a.button {
margin-left: 10px;
margin-top: 0;
}
#customize-controls .description {
color: #555d66;
}
#customize-save-button-wrapper {
float: left;
margin-top: 9px;
}
body:not(.ready) #customize-save-button-wrapper .save {
visibility: hidden;
}
#customize-save-button-wrapper .save {
float: right;
border-radius: 3px;
box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */
margin-top: 0;
}
#customize-save-button-wrapper .save:focus, #publish-settings:focus {
box-shadow: 0 1px 0 #0073aa, 0 0 2px 1px #33b3db; /* This is default box shadow for focus */
}
#customize-save-button-wrapper .save.has-next-sibling {
border-radius: 0 3px 3px 0;
}
#customize-sidebar-outer-content {
position: absolute;
top: 0;
bottom: 0;
right: 0;
visibility: hidden;
overflow-x: hidden;
overflow-y: auto;
width: 100%;
margin: 0;
z-index: -1;
background: #eee;
transition: right .18s;
border-left: 1px solid #ddd;
border-right: 1px solid #ddd;
height: 100%;
}
#customize-theme-controls .control-section-outer {
display: none !important;
}
#customize-outer-theme-controls .accordion-section-content {
padding: 12px;
}
#customize-outer-theme-controls .accordion-section-content.open {
display: block;
}
.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content {
visibility: visible;
right: 100%;
transition: right .18s;
}
.customize-outer-pane-parent {
margin: 0;
}
.outer-section-open .wp-full-overlay.expanded .wp-full-overlay-main {
right: 300px;
opacity: 0.4;
}
.outer-section-open .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,
.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,
.adding-menu-items .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,
.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,
.adding-widget .wp-full-overlay.expanded.preview-tablet .wp-full-overlay-main,
.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main {
right: 64%;
}
#customize-outer-theme-controls li.notice {
padding-top: 8px;
padding-bottom: 8px;
margin-right: 0;
margin-bottom: 10px;
}
#publish-settings {
text-indent: 0;
border-radius: 3px 0 0 3px;
padding-right: 0;
padding-left: 0;
box-shadow: none; /* @todo Adjust box shadow based on the disable states of paired button. */
font-size: 14px;
width: 30px;
float: right;
transform: none;
margin-top: 0;
}
body:not(.ready) #publish-settings,
body.trashing #customize-save-button-wrapper .save,
body.trashing #publish-settings {
display: none;
}
#customize-header-actions .spinner {
margin-top: 13px;
margin-left: 4px;
}
.saving #customize-header-actions .spinner,
.trashing #customize-header-actions .spinner {
visibility: visible;
}
#customize-header-actions {
border-bottom: 1px solid #ddd;
}
#customize-controls .wp-full-overlay-sidebar-content {
overflow-y: auto;
overflow-x: hidden;
}
.outer-section-open #customize-controls .wp-full-overlay-sidebar-content {
background: #eee;
}
#customize-controls .customize-info {
border: none;
border-bottom: 1px solid #ddd;
margin-bottom: 15px;
}
#customize-control-changeset_status .customize-inside-control-row,
#customize-control-changeset_preview_link input {
background-color: #ffffff;
border-bottom: 1px solid #ddd;
box-sizing: content-box;
width: 100%;
margin-right: -12px;
padding-right: 12px;
padding-left: 12px;
}
#customize-control-trash_changeset {
margin-top: 20px;
}
#customize-control-trash_changeset .button-link {
position: relative;
padding-right: 24px;
display: inline-block;
}
#customize-control-trash_changeset .button-link:before {
content: "\f182";
font: normal 22px dashicons;
text-decoration: none;
position: absolute;
right: 0;
top: -2px;
}
#customize-controls .date-input:invalid {
border-color: #dc3232;
}
#customize-control-changeset_status .customize-inside-control-row {
padding-top: 10px;
padding-bottom: 10px;
font-weight: 500;
}
#customize-control-changeset_status .customize-inside-control-row:first-of-type {
border-top: 1px solid #ddd;
}
#customize-control-changeset_status .customize-control-title {
margin-bottom: 6px;
}
#customize-control-changeset_status input {
margin-right: 0;
}
#customize-control-changeset_preview_link {
position: relative;
display: block;
}
.preview-link-wrapper .customize-copy-preview-link.preview-control-element.button {
margin: 0;
position: absolute;
bottom: 9px;
left: 0;
}
.preview-link-wrapper {
position: relative;
}
.customize-copy-preview-link:before,
.customize-copy-preview-link:after {
content: "";
height: 28px;
position: absolute;
background: #ffffff;
top: -1px;
}
.customize-copy-preview-link:before {
right: -10px;
width: 9px;
opacity: 0.75;
}
.customize-copy-preview-link:after {
right: -5px;
width: 4px;
opacity: 0.8;
}
#customize-control-changeset_preview_link input {
line-height: 2.5;
border-top: 1px solid #ddd;
border-right: none;
border-left: none;
text-indent: -999px;
color: #fff;
}
#customize-control-changeset_preview_link label {
position: relative;
display: block;
}
#customize-control-changeset_preview_link a {
display: inline-block;
position: absolute;
white-space: nowrap;
overflow: hidden;
width: 90%;
bottom: 14px;
font-size: 14px;
text-decoration: none;
}
#customize-control-changeset_preview_link a.disabled,
#customize-control-changeset_preview_link a.disabled:active,
#customize-control-changeset_preview_link a.disabled:focus,
#customize-control-changeset_preview_link a.disabled:visited {
color: black;
opacity: 0.4;
cursor: default;
outline: none;
box-shadow: none;
}
#sub-accordion-section-publish_settings .customize-section-description-container {
display: none;
}
#customize-controls .customize-info.section-meta {
margin-bottom: 15px;
}
.customize-control-date_time .customize-control-description + .date-time-fields.includes-time {
margin-top: 10px;
}
.customize-control.customize-control-date_time .date-time-fields .date-input.day {
margin-left: 0;
}
.date-time-fields .date-input.month {
width: auto;
margin: 0;
}
.date-time-fields .date-input.day,
.date-time-fields .date-input.hour,
.date-time-fields .date-input.minute {
width: 46px;
}
.date-time-fields .date-input.year {
width: 60px;
}
.date-time-fields .date-input.meridian {
width: auto;
margin: 0;
}
.date-time-fields .time-row {
margin-top: 12px;
}
.date-time-fields .date-timezone {
line-height: 2.2;
text-decoration: none;
}
#customize-control-changeset_preview_link {
margin-top: 6px;
}
#customize-control-changeset_status {
margin-bottom: 0;
padding-bottom: 0;
}
#customize-control-changeset_scheduled_date {
box-sizing: content-box;
width: 100%;
margin-right: -12px;
padding: 12px;
background: #ffffff;
border-bottom: 1px solid #ddd;
margin-bottom: 0;
}
#customize-control-changeset_scheduled_date .customize-control-description {
font-style: normal;
}
#customize-controls .customize-info.is-in-view,
#customize-controls .customize-section-title.is-in-view {
position: absolute;
z-index: 9;
width: 100%;
box-shadow: 0 1px 0 rgba(0, 0, 0, .1);
}
#customize-controls .customize-section-title.is-in-view {
margin-top: 0;
}
#customize-controls .customize-info.is-in-view + .accordion-section {
margin-top: 15px;
}
#customize-controls .customize-info.is-sticky,
#customize-controls .customize-section-title.is-sticky {
position: fixed;
top: 46px;
}
#customize-controls .customize-info .accordion-section-title {
background: #fff;
color: #555d66;
border-right: none;
border-left: none;
border-bottom: none;
cursor: default;
}
#customize-controls .customize-info.open .accordion-section-title:after,
#customize-controls .customize-info .accordion-section-title:hover:after,
#customize-controls .customize-info .accordion-section-title:focus:after {
color: #32373c;
}
#customize-controls .customize-info .accordion-section-title:after {
display: none;
}
#customize-controls .customize-info .preview-notice {
font-size: 13px;
line-height: 24px;
}
#customize-controls .customize-pane-child .customize-section-title h3,
#customize-controls .customize-pane-child h3.customize-section-title,
#customize-outer-theme-controls .customize-pane-child .customize-section-title h3,
#customize-outer-theme-controls .customize-pane-child h3.customize-section-title,
#customize-controls .customize-info .panel-title {
font-size: 20px;
font-weight: 200;
line-height: 26px;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#customize-controls .customize-section-title span.customize-action {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#customize-controls .customize-info .customize-help-toggle {
position: absolute;
top: 4px;
left: 1px;
padding: 20px 10px 10px 20px;
width: 20px;
height: 20px;
cursor: pointer;
box-shadow: none;
-webkit-appearance: none;
background: transparent;
color: #555d66;
border: none;
}
#customize-controls .customize-info .customize-help-toggle:before {
position: absolute;
top: 5px;
right: 6px;
}
#customize-controls .customize-info.open .customize-help-toggle,
#customize-controls .customize-info .customize-help-toggle:focus,
#customize-controls .customize-info .customize-help-toggle:hover {
color: #0073aa;
}
#customize-controls .customize-info .customize-panel-description,
#customize-controls .customize-info .customize-section-description,
#customize-outer-theme-controls .customize-info .customize-section-description,
#customize-controls .no-widget-areas-rendered-notice {
color: #555d66;
display: none;
background: #fff;
padding: 12px 15px;
border-top: 1px solid #ddd;
}
#customize-controls .customize-info .customize-panel-description.open + .no-widget-areas-rendered-notice {
border-top: none;
}
.no-widget-areas-rendered-notice {
font-style: italic;
}
.no-widget-areas-rendered-notice p:first-child {
margin-top: 0;
}
.no-widget-areas-rendered-notice p:last-child {
margin-bottom: 0;
}
#customize-controls .customize-info .customize-section-description {
margin-bottom: 15px;
}
#customize-controls .customize-info .customize-panel-description p:first-child,
#customize-controls .customize-info .customize-section-description p:first-child {
margin-top: 0;
}
#customize-controls .customize-info .customize-panel-description p:last-child,
#customize-controls .customize-info .customize-section-description p:last-child {
margin-bottom: 0;
}
#customize-controls .current-panel .control-section > h3.accordion-section-title {
padding-left: 30px;
}
#customize-theme-controls .control-section,
#customize-outer-theme-controls .control-section {
border: none;
}
#customize-theme-controls .accordion-section-title,
#customize-outer-theme-controls .accordion-section-title {
color: #555d66;
background-color: #fff;
border-bottom: 1px solid #ddd;
border-right: 4px solid #fff;
transition: .15s color ease-in-out,
.15s background-color ease-in-out,
.15s border-color ease-in-out;
}
#customize-controls #customize-theme-controls .customize-themes-panel .accordion-section-title {
color: #555;
background-color: #fff;
border-right: 4px solid #fff;
}
#customize-theme-controls .accordion-section-title:after,
#customize-outer-theme-controls .accordion-section-title:after {
content: "\f341";
color: #a0a5aa;
}
#customize-theme-controls .accordion-section-content,
#customize-outer-theme-controls .accordion-section-content {
color: #555d66;
background: transparent;
}
#customize-controls .control-section:hover > .accordion-section-title,
#customize-controls .control-section .accordion-section-title:hover,
#customize-controls .control-section.open .accordion-section-title,
#customize-controls .control-section .accordion-section-title:focus {
color: #0073aa;
background: #f3f3f5;
border-right-color: #0073aa;
}
#accordion-section-themes + .control-section {
border-top: 1px solid #ddd;
}
.js .control-section:hover .accordion-section-title,
.js .control-section .accordion-section-title:hover,
.js .control-section.open .accordion-section-title,
.js .control-section .accordion-section-title:focus {
background: #f3f3f5;
}
#customize-theme-controls .control-section:hover > .accordion-section-title:after,
#customize-theme-controls .control-section .accordion-section-title:hover:after,
#customize-theme-controls .control-section.open .accordion-section-title:after,
#customize-theme-controls .control-section .accordion-section-title:focus:after,
#customize-outer-theme-controls .control-section:hover > .accordion-section-title:after,
#customize-outer-theme-controls .control-section .accordion-section-title:hover:after,
#customize-outer-theme-controls .control-section.open .accordion-section-title:after,
#customize-outer-theme-controls .control-section .accordion-section-title:focus:after {
color: #0073aa;
}
#customize-theme-controls .control-section.open {
border-bottom: 1px solid #eee;
}
#customize-theme-controls .control-section.open .accordion-section-title,
#customize-outer-theme-controls .control-section.open .accordion-section-title {
border-bottom-color: #eee !important;
}
#customize-theme-controls .control-section:last-of-type.open,
#customize-theme-controls .control-section:last-of-type > .accordion-section-title {
border-bottom-color: #ddd;
}
#customize-theme-controls .control-panel-content:not(.control-panel-nav_menus) .control-section:nth-child(2),
#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu,
#customize-theme-controls .control-section-nav_menu_locations .accordion-section-title {
border-top: 1px solid #ddd;
}
#customize-theme-controls .control-panel-nav_menus .control-section-nav_menu + .control-section-nav_menu {
border-top: none;
}
#customize-theme-controls > ul {
margin: 0;
}
#customize-theme-controls .accordion-section-content {
position: absolute;
top: 0;
right: 100%;
width: 100%;
margin: 0;
padding: 12px;
box-sizing: border-box;
}
#customize-info,
#customize-theme-controls .customize-pane-parent,
#customize-theme-controls .customize-pane-child {
overflow: visible;
width: 100%;
margin: 0;
padding: 0;
box-sizing: border-box;
transition: 0.18s transform cubic-bezier(0.645, 0.045, 0.355, 1); /* easeInOutCubic */
}
#customize-theme-controls .customize-pane-child.skip-transition {
transition: none;
}
#customize-info,
#customize-theme-controls .customize-pane-parent {
position: relative;
visibility: visible;
height: auto;
max-height: none;
overflow: auto;
transform: none;
}
#customize-theme-controls .customize-pane-child {
position: absolute;
top: 0;
right: 0;
visibility: hidden;
height: 0;
max-height: none;
overflow: hidden;
transform: translateX(-100%);
}
#customize-theme-controls .customize-pane-child.open,
#customize-theme-controls .customize-pane-child.current-panel {
transform: none;
}
.section-open #customize-theme-controls .customize-pane-parent,
.in-sub-panel #customize-theme-controls .customize-pane-parent,
.section-open #customize-info,
.in-sub-panel #customize-info,
.in-sub-panel.section-open #customize-theme-controls .customize-pane-child.current-panel {
visibility: hidden;
height: 0;
overflow: hidden;
transform: translateX(100%);
}
.section-open #customize-theme-controls .customize-pane-parent.busy,
.in-sub-panel #customize-theme-controls .customize-pane-parent.busy,
.section-open #customize-info.busy,
.in-sub-panel #customize-info.busy,
.busy.section-open.in-sub-panel #customize-theme-controls .customize-pane-child.current-panel,
#customize-theme-controls .customize-pane-child.open,
#customize-theme-controls .customize-pane-child.current-panel,
#customize-theme-controls .customize-pane-child.busy {
visibility: visible;
height: auto;
overflow: auto;
}
#customize-theme-controls .customize-pane-child.accordion-section-content,
#customize-theme-controls .customize-pane-child.accordion-sub-container {
display: block;
overflow-x: hidden;
}
#customize-theme-controls .customize-pane-child.accordion-section-content {
padding: 12px;
}
#customize-theme-controls .customize-pane-child.menu li {
position: static;
}
.customize-section-description-container,
.control-section-nav_menu .customize-section-description-container,
.control-section-new_menu .customize-section-description-container {
margin-bottom: 15px;
}
.control-section-nav_menu .customize-control,
.control-section-new_menu .customize-control {
/* Override default `margin-bottom` for `.customize-control` */
margin-bottom: 0;
}
.customize-section-title {
margin: -12px -12px 0 -12px;
border-bottom: 1px solid #ddd;
background: #fff;
}
div.customize-section-description {
margin-top: 22px;
}
.customize-info div.customize-section-description {
margin-top: 0;
}
div.customize-section-description p:first-child {
margin-top: 0;
}
div.customize-section-description p:last-child {
margin-bottom: 0;
}
#customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
border-bottom: 1px solid #ddd;
padding: 12px 12px 12px 12px;
}
.ios #customize-theme-controls .customize-themes-panel h3.customize-section-title:first-child {
padding: 12px 12px 13px 12px;
}
.customize-section-title h3,
h3.customize-section-title {
padding: 10px 14px 12px 10px;
margin: 0;
line-height: 21px;
color: #555d66;
}
.accordion-sub-container.control-panel-content {
display: none;
position: absolute;
top: 0;
width: 100%;
}
.accordion-sub-container.control-panel-content.busy {
display: block;
}
.current-panel .accordion-sub-container.control-panel-content {
width: 100%;
}
.customize-controls-close {
display: block;
position: absolute;
top: 0;
right: 0;
width: 45px;
height: 41px;
padding: 0 0 0 2px;
background: #eee;
border: none;
border-top: 4px solid #eee;
border-left: 1px solid #ddd;
color: #444;
text-align: right;
cursor: pointer;
transition: color .15s ease-in-out,
border-color .15s ease-in-out,
background .15s ease-in-out;
box-sizing: content-box;
}
.customize-panel-back,
.customize-section-back {
display: block;
float: right;
width: 48px;
height: 71px;
padding: 0 0 0 24px;
margin: 0;
background: #fff;
border: none;
border-left: 1px solid #ddd;
border-right: 4px solid #fff;
box-shadow: none;
cursor: pointer;
transition: color .15s ease-in-out,
border-color .15s ease-in-out,
background .15s ease-in-out;
}
.customize-section-back {
height: 74px;
}
.ios .customize-panel-back {
display: none;
}
.ios .expanded.in-sub-panel .customize-panel-back {
display: block;
}
#customize-controls .panel-meta.customize-info .accordion-section-title {
margin-right: 48px;
border-right: none;
}
#customize-controls .panel-meta.customize-info .accordion-section-title:hover,
#customize-controls .cannot-expand:hover .accordion-section-title {
background: #fff;
color: #555d66;
border-right-color: #fff;
}
.customize-controls-close:focus,
.customize-controls-close:hover,
.customize-controls-preview-toggle:focus,
.customize-controls-preview-toggle:hover {
background: #fff;
color: #0073aa;
border-top-color: #0073aa;
outline: none;
box-shadow: none;
}
.customize-panel-back:hover,
.customize-panel-back:focus,
.customize-section-back:hover,
.customize-section-back:focus {
color: #0073aa;
background: #f3f3f5;
border-right-color: #0073aa;
outline: none;
box-shadow: none;
}
.customize-controls-close:before {
font: normal 22px/45px dashicons;
content: "\f335";
position: relative;
top: -3px;
right: 13px;
}
.customize-panel-back:before,
.customize-section-back:before {
font: normal 20px/72px dashicons;
content: "\f345";
position: relative;
right: 9px;
}
.wp-full-overlay-sidebar .wp-full-overlay-header {
background-color: #eee;
transition: padding ease-in-out .18s;
}
.in-sub-panel .wp-full-overlay-sidebar .wp-full-overlay-header {
padding-right: 62px;
}
p.customize-section-description {
font-style: normal;
margin-top: 22px;
margin-bottom: 0;
}
.customize-section-description ul {
margin-right: 1em;
}
.customize-section-description ul > li {
list-style: disc;
}
.section-description-buttons {
text-align: left;
}
.section-description-buttons button.button-link {
color: #0073aa;
text-decoration: underline;
}
.customize-control {
width: 100%;
float: right;
clear: both;
margin-bottom: 12px;
}
.customize-control select,
.customize-control input[type="radio"],
.customize-control input[type="checkbox"] {
line-height: 28px;
}
.customize-control input[type="text"],
.customize-control input[type="password"],
.customize-control input[type="email"],
.customize-control input[type="number"],
.customize-control input[type="search"],
.customize-control input[type="tel"],
.customize-control input[type="url"] {
width: 100%;
line-height: 18px;
margin: 0;
}
.customize-control-hidden {
margin: 0;
}
.customize-control-textarea textarea {
width: 100%;
resize: vertical;
}
.customize-control select {
width: 100%;
height: 28px;
line-height: 28px;
}
.customize-control select[multiple] {
height: auto;
}
.customize-control-title {
display: block;
font-size: 14px;
line-height: 24px;
font-weight: 600;
margin-bottom: 4px;
}
.customize-control-description {
display: block;
font-style: italic;
line-height: 18px;
margin-top: 0;
margin-bottom: 5px;
}
.customize-section-description a.external-link:after {
font: 16px/11px dashicons;
content: "\f310";
top: 3px;
position: relative;
padding-right: 3px;
display: inline-block;
text-decoration: none;
}
.customize-control-color .color-picker,
.customize-control-upload div {
line-height: 28px;
}
.customize-control .customize-inside-control-row {
line-height: 20px;
display: block;
margin-right: 24px;
padding-top: 6px;
padding-bottom: 6px;
}
.customize-control-radio input,
.customize-control-checkbox input,
.customize-control-nav_menu_auto_add input {
margin-left: 4px;
margin-right: -24px;
}
.customize-control-radio {
padding: 5px 0 10px;
}
.customize-control-radio .customize-control-title {
margin-bottom: 0;
line-height: 22px;
}
.customize-control-radio .customize-control-title + .customize-control-description {
margin-top: 7px;
}
.customize-control-radio label,
.customize-control-checkbox label {
vertical-align: top;
}
.customize-control .attachment-thumb.type-icon {
float: right;
margin: 10px;
width: auto;
}
.customize-control .attachment-title {
font-weight: 600;
margin: 0;
padding: 5px 10px;
}
.customize-control .attachment-meta {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
margin: 0;
padding: 0 10px;
}
.customize-control .attachment-meta-title {
padding-top: 7px;
}
/* Remove descender space. */
.customize-control .thumbnail-image,
.customize-control-header .current,
.customize-control .wp-media-wrapper.wp-video {
line-height: 0;
}
/* Remove descender space. */
.customize-control-site_icon .favicon-preview .browser-preview {
vertical-align: top;
}
.customize-control .thumbnail-image img {
cursor: pointer;
}
#customize-controls .thumbnail-audio .thumbnail {
max-width: 64px;
max-height: 64px;
margin: 10px;
float: right;
}
#available-menu-items .accordion-section-content .new-content-item,
.customize-control-dropdown-pages .new-content-item {
width: calc(100% - 30px);
padding: 8px 15px;
position: absolute;
bottom: 0;
z-index: 10;
background: #eee;
display: flex;
}
.customize-control-dropdown-pages .new-content-item {
width: 100%;
padding: 5px 1px 5px 0;
position: relative;
}
#available-menu-items .new-content-item .create-item-input,
.customize-control-dropdown-pages .new-content-item .create-item-input {
flex-grow: 10;
}
#available-menu-items .new-content-item .add-content,
.customize-control-dropdown-pages .new-content-item .add-content {
margin: 2px 6px 2px 0;
flex-grow: 1;
}
.customize-control-dropdown-pages .new-content-item .create-item-input.invalid {
border: 1px solid #dc3232;
}
.customize-control-dropdown-pages .add-new-toggle {
margin-right: 1px;
font-weight: 600;
line-height: 28px;
}
#customize-preview iframe {
width: 100%;
height: 100%;
position: absolute;
}
#customize-preview iframe + iframe {
visibility: hidden;
}
.wp-full-overlay-sidebar {
background: #eee;
border-left: 1px solid #ddd;
}
/**
* Notifications
*/
#customize-controls .customize-control-notifications-container { /* Scoped to #customize-controls for specificity over notification styles in common.css. */
margin: 4px 0 8px 0;
padding: 0;
cursor: default;
}
#customize-controls .customize-control-widget_form.has-error .widget .widget-top,
.customize-control-nav_menu_item.has-error .menu-item-bar .menu-item-handle {
box-shadow: inset 0 0 0 2px #dc3232;
transition: .15s box-shadow linear;
}
#customize-controls .customize-control-notifications-container li.notice {
list-style: none;
margin: 0 0 6px 0;
padding: 9px 14px;
overflow: hidden;
}
#customize-controls .customize-control-notifications-container .notice.is-dismissible {
padding-left: 38px;
}
.customize-control-notifications-container li.notice:last-child {
margin-bottom: 0;
}
#customize-controls .customize-control-nav_menu_item .customize-control-notifications-container {
margin-top: 0;
}
#customize-controls .customize-control-widget_form .customize-control-notifications-container {
margin-top: 8px;
}
.customize-control-text.has-error input {
outline: 2px solid #dc3232;
}
#customize-controls #customize-notifications-area {
position: absolute;
top: 46px;
width: 100%;
border-bottom: 1px solid #ddd;
display: block;
padding: 0;
margin: 0;
}
.wp-full-overlay.collapsed #customize-controls #customize-notifications-area {
display: none !important;
}
#customize-controls #customize-notifications-area:not(.has-overlay-notifications),
#customize-controls .customize-section-title > .customize-control-notifications-container:not(.has-overlay-notifications),
#customize-controls .panel-meta > .customize-control-notifications-container:not(.has-overlay-notifications) {
max-height: 210px;
overflow-x: hidden;
overflow-y: auto;
}
#customize-controls #customize-notifications-area > ul,
#customize-controls #customize-notifications-area .notice,
#customize-controls .panel-meta > .customize-control-notifications-container,
#customize-controls .panel-meta > .customize-control-notifications-container .notice,
#customize-controls .customize-section-title > .customize-control-notifications-container,
#customize-controls .customize-section-title > .customize-control-notifications-container .notice {
margin: 0;
}
#customize-controls .panel-meta > .customize-control-notifications-container,
#customize-controls .customize-section-title > .customize-control-notifications-container {
border-top: 1px solid #ddd;
}
#customize-controls #customize-notifications-area .notice,
#customize-controls .panel-meta > .customize-control-notifications-container .notice,
#customize-controls .customize-section-title > .customize-control-notifications-container .notice {
padding: 9px 14px;
}
#customize-controls #customize-notifications-area .notice.is-dismissible,
#customize-controls .panel-meta > .customize-control-notifications-container .notice.is-dismissible,
#customize-controls .customize-section-title > .customize-control-notifications-container .notice.is-dismissible {
padding-left: 38px;
}
#customize-controls #customize-notifications-area .notice + .notice,
#customize-controls .panel-meta > .customize-control-notifications-container .notice + .notice,
#customize-controls .customize-section-title > .customize-control-notifications-container .notice + .notice {
margin-top: 1px;
}
@keyframes customize-fade-in {
0% { opacity: 0; }
100% { opacity: 1; }
}
#customize-controls .notice.notification-overlay,
#customize-controls #customize-notifications-area .notice.notification-overlay {
margin: 0;
border-right: 0; /* @todo Appropriate styles could be added for notice-error, notice-warning, notice-success, etc */
}
#customize-controls .customize-control-notifications-container.has-overlay-notifications {
animation: customize-fade-in 0.5s;
z-index: 30;
}
/* Note: Styles for this are also defined in themes.css */
#customize-controls #customize-notifications-area .notice.notification-overlay .notification-message {
clear: both;
color: #191e23;
font-size: 18px;
font-style: normal;
margin: 0;
padding: 2em 0;
text-align: center;
width: 100%;
display: block;
top: 50%;
position: relative;
}
/* Style for custom settings */
/**
* Static front page
*/
#customize-control-show_on_front.has-error {
margin-bottom: 0;
}
#customize-control-show_on_front.has-error .customize-control-notifications-container {
margin-top: 12px;
}
/**
* Dropdowns
*/
.accordion-section .dropdown {
float: right;
display: block;
position: relative;
cursor: pointer;
}
.accordion-section .dropdown-content {
overflow: hidden;
float: right;
min-width: 30px;
height: 16px;
line-height: 16px;
margin-left: 16px;
padding: 4px 5px;
border: 2px solid #eee;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
/* @todo maybe no more used? */
.customize-control .dropdown-arrow {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 20px;
background: #eee;
}
.customize-control .dropdown-arrow:after {
content: "\f140";
font: normal 20px/1 dashicons;
speak: none;
display: block;
padding: 0;
text-indent: 0;
text-align: center;
position: relative;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-decoration: none !important;
color: #32373c;
}
.customize-control .dropdown-status {
color: #32373c;
background: #eee;
display: none;
max-width: 112px;
}
.customize-control-color .dropdown {
margin-left: 5px;
margin-bottom: 5px;
}
.customize-control-color .dropdown .dropdown-content {
background-color: #555d66;
border: 1px solid rgba(0, 0, 0, 0.15);
}
.customize-control-color .dropdown:hover .dropdown-content {
border-color: rgba(0, 0, 0, 0.25);
}
/**
* iOS can't scroll iframes,
* instead it expands the iframe size to match the size of the content
*/
.ios .wp-full-overlay {
position: relative;
}
.ios #customize-controls .wp-full-overlay-sidebar-content {
-webkit-overflow-scrolling: touch;
}
/* Media controls */
.customize-control .actions .button {
margin-top: 12px;
}
.customize-control-header .actions,
.customize-control-header .uploaded {
margin-bottom: 18px;
}
.customize-control-header .uploaded button:not(.random),
.customize-control-header .default button:not(.random) {
width: 100%;
padding: 0;
margin: 0;
background: none;
border: none;
color: inherit;
cursor: pointer;
}
.customize-control-header button img {
display: block;
}
.customize-control .attachment-media-view .remove-button,
.customize-control .attachment-media-view .default-button,
.customize-control .attachment-media-view .upload-button,
.customize-control-header button.new,
.customize-control-header button.remove {
width: auto;
height: auto;
white-space: normal;
}
.customize-control .attachment-media-view .thumbnail,
.customize-control-header .current .container {
overflow: hidden;
}
.customize-control .attachment-media-view .placeholder,
.customize-control-header .placeholder {
width: 100%;
position: relative;
text-align: center;
cursor: default;
border: 1px dashed #b4b9be;
box-sizing: border-box;
padding: 9px 0;
line-height: 20px;
}
.customize-control-header .inner {
display: none;
position: absolute;
width: 100%;
color: #555d66;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
.customize-control-header .inner,
.customize-control-header .inner .dashicons {
line-height: 20px;
top: 8px;
}
.customize-control-header .list .inner,
.customize-control-header .list .inner .dashicons {
top: 9px;
}
.customize-control-header .header-view {
position: relative;
width: 100%;
margin-bottom: 12px;
}
.customize-control-header .header-view:last-child {
margin-bottom: 0px;
}
/* Convoluted, but 'outline' support isn't good enough yet */
.customize-control-header .header-view:after {
border: 0;
}
.customize-control-header .header-view.selected .choice:focus {
outline: none;
}
.customize-control-header .header-view.selected:after {
content: '';
position: absolute;
height: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
border: 4px solid #00a0d2;
border-radius: 2px;
}
.customize-control-header .header-view.button.selected {
border: 0;
}
/* Header control: overlay "close" button */
.customize-control-header .uploaded .header-view .close {
font-size: 20px;
color: #fff;
background: #555d66;
background: rgba(0, 0, 0, 0.5);
position: absolute;
top: 10px;
right: -999px;
z-index: 1;
width: 26px;
height: 26px;
cursor: pointer;
}
.customize-control-header .header-view:hover .close,
.customize-control-header .header-view .close:focus {
right: auto;
left: 10px;
}
.customize-control-header .header-view .close:focus {
outline: 1px solid #5b9dd9;
}
/* Header control: randomiz(s)er */
.customize-control-header .random.placeholder {
cursor: pointer;
border-radius: 2px;
height: 40px;
}
.customize-control-header button.random {
width: 100%;
height: auto;
min-height: 40px;
white-space: normal;
}
.customize-control-header button.random .dice {
margin-top: 4px;
}
.customize-control-header .placeholder:hover .dice,
.customize-control-header .header-view:hover > button.random .dice {
animation: dice-color-change 3s infinite;
}
.button-see-me {
animation: bounce .7s 1;
transform-origin: center bottom;
}
@keyframes bounce {
from, 20%, 53%, 80%, to {
animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
transform: translate3d(0,0,0);
}
40%, 43% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -12px, 0);
}
70% {
animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
transform: translate3d(0, -6px, 0);
}
90% {
transform: translate3d(0,-1px,0);
}
}
.customize-control-header .choice {
position: relative;
display: block;
margin-bottom: 9px;
}
.customize-control-header .choice:focus {
outline: none;
box-shadow:
0 0 0 1px #5b9dd9,
0 0 3px 1px rgba(30, 140, 190, .8);
}
.customize-control-header .uploaded div:last-child > .choice {
margin-bottom: 0;
}
.customize-control .attachment-media-view .thumbnail-image img,
.customize-control-header img {
max-width: 100%;
}
.customize-control .attachment-media-view .remove-button,
.customize-control .attachment-media-view .default-button,
.customize-control-header .remove {
margin-left: 8px;
}
/* Background position control */
.customize-control-background_position .background-position-control .button-group {
display: block;
}
/**
* Code Editor Control and Custom CSS Section
*
* Modifications to the Section Container to make the textarea full-width and
* full-height, if the control is the only control in the section.
*/
.customize-control-code_editor textarea {
width: 100%;
font-family: Consolas, Monaco, monospace;
font-size: 12px;
padding: 6px 8px;
-moz-tab-size: 2;
-o-tab-size: 2;
tab-size: 2;
}
.customize-control-code_editor textarea,
.customize-control-code_editor .CodeMirror {
height: 14em;
}
#customize-controls .customize-section-description-container.section-meta.customize-info {
border-bottom: none;
}
#sub-accordion-section-custom_css .customize-control-notifications-container {
margin-bottom: 15px;
}
#customize-control-custom_css textarea {
display: block;
height: 500px;
}
.customize-section-description-container + #customize-control-custom_css .customize-control-title {
margin-right: 12px;
}
.customize-section-description-container + #customize-control-custom_css:last-child textarea {
border-left: 0;
border-right: 0;
height: calc( 100vh - 185px );
resize: none;
}
.customize-section-description-container + #customize-control-custom_css:last-child {
margin-right: -12px;
width: 299px;
width: calc( 100% + 24px );
margin-bottom: -12px;
}
.customize-section-description-container + #customize-control-custom_css:last-child .CodeMirror {
height: calc( 100vh - 185px );
}
.CodeMirror-lint-tooltip,
.CodeMirror-hints {
z-index: 500000 !important;
}
.customize-section-description-container + #customize-control-custom_css:last-child .customize-control-notifications-container {
margin-right: 12px;
margin-left: 12px;
}
.theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions {
padding: 10px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
}
@media screen and ( max-width: 640px ) {
.customize-section-description-container + #customize-control-custom_css:last-child {
margin-left: 0;
}
.customize-section-description-container + #customize-control-custom_css:last-child textarea {
height: calc( 100vh - 140px );
}
}
/**
* Themes
*/
#customize-theme-controls .control-panel-themes {
border-bottom: none;
}
#customize-theme-controls .control-panel-themes > .accordion-section-title:hover, /* Not a focusable element. */
#customize-theme-controls .control-panel-themes > .accordion-section-title {
cursor: default;
background: #fff;
color: #555d66;
border-top: 1px solid #ddd;
border-bottom: 1px solid #ddd;
border-right: none;
border-left: none;
margin: 0 0 15px 0;
padding-left: 100px; /* Space for the button */
}
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child:hover, /* Not a focusable element. */
#customize-theme-controls .control-section-themes .customize-themes-panel .accordion-section-title:first-child {
border-top: 0;
}
#customize-theme-controls .control-section-themes > .accordion-section-title:hover, /* Not a focusable element. */
#customize-theme-controls .control-section-themes > .accordion-section-title {
margin: 0 0 15px;
}
#customize-controls .customize-themes-panel .accordion-section-title:hover,
#customize-controls .customize-themes-panel .accordion-section-title {
margin: 15px -8px;
}
#customize-controls .control-section-themes .accordion-section-title,
#customize-controls .customize-themes-panel .accordion-section-title {
padding-left: 100px; /* Space for the button */
}
.control-panel-themes .accordion-section-title span.customize-action,
#customize-controls .customize-section-title span.customize-action,
#customize-controls .control-section-themes .accordion-section-title span.customize-action,
#customize-controls .customize-section-title span.customize-action {
font-size: 13px;
display: block;
font-weight: 400;
}
#customize-theme-controls .control-panel-themes .accordion-section-title .change-theme {
position: absolute;
left: 10px;
top: 50%;
margin-top: -14px;
font-weight: 400;
}
#customize-theme-controls .control-panel-themes > .accordion-section-title:after {
display: none;
}
.control-panel-themes .customize-themes-full-container {
position: fixed;
top: 0;
right: 0;
transition: .18s right ease-in-out;
margin: 0 300px 0 0;
padding: 71px 0 25px;
overflow-y: scroll;
width: calc(100% - 300px);
height: calc(100% - 96px);
background: #eee;
z-index: 20;
}
@media screen and (min-width: 1670px) {
.control-panel-themes .customize-themes-full-container {
width: 82%;
left: 0;
right: initial;
}
}
.modal-open .control-panel-themes .customize-themes-full-container {
overflow-y: visible;
}
/* Animations for opening the themes panel */
#customize-save-button-wrapper,
#customize-header-actions .spinner,
#customize-header-actions .customize-controls-preview-toggle {
transition: .18s margin ease-in-out;
}
#customize-footer-actions,
#customize-footer-actions .collapse-sidebar {
bottom: 0;
transition: .18s bottom ease-in-out;
}
.in-themes-panel:not(.animating) #customize-header-actions .spinner,
.in-themes-panel:not(.animating) #customize-header-actions .customize-controls-preview-toggle,
.in-themes-panel:not(.animating) #customize-preview,
.in-themes-panel:not(.animating) #customize-footer-actions {
visibility: hidden;
}
.wp-full-overlay.in-themes-panel {
background: #eee; /* Prevents a black flash when fading in the panel */
}
.in-themes-panel #customize-save-button-wrapper,
.in-themes-panel #customize-header-actions .spinner,
.in-themes-panel #customize-header-actions .customize-controls-preview-toggle {
margin-top: -46px; /* Height of header actions bar */
}
.in-themes-panel #customize-footer-actions,
.in-themes-panel #customize-footer-actions .collapse-sidebar {
bottom: -45px;
}
/* Don't show the theme count while the panel opens, as it's in the wrong place during the animation */
.in-themes-panel.animating .control-panel-themes .filter-themes-count {
display: none;
}
.in-themes-panel.wp-full-overlay .wp-full-overlay-sidebar-content {
bottom: 0;
}
.themes-filter-bar .feature-filter-toggle {
float: left;
margin: 3px 25px 3px 0;
}
.themes-filter-bar .feature-filter-toggle:before {
content: "\f111";
margin: 0 0 0 5px;
font: normal 16px/1 dashicons;
vertical-align: text-bottom;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.themes-filter-bar .feature-filter-toggle.open {
background: #eee;
border-color: #999;
box-shadow: inset 0 2px 5px -3px rgba( 0, 0, 0, 0.5 );
transform: translateY(1px);
}
.themes-filter-bar .feature-filter-toggle .filter-count-filters {
display: none;
}
.filter-drawer {
box-sizing: border-box;
width: 100%;
position: absolute;
top: 46px;
right: 0;
padding: 25px 25px 25px 0;
border-top: 0;
margin: 0;
background: #eee;
border-bottom: 1px solid #ddd;
}
.filter-drawer .filter-group {
margin: 0 0 0 25px;
width: calc( (100% - 75px) / 3);
min-width: 200px;
max-width: 320px;
}
/* Adds a delay before fading in to avoid it "jumping" */
@keyframes themes-fade-in {
0% {
opacity: 0;
}
50% {
opacity: 0;
}
100% {
opacity: 1;
}
}
.control-panel-themes .customize-themes-full-container.animate {
animation: .6s themes-fade-in 1;
}
.in-themes-panel:not(.animating) .control-panel-themes .filter-themes-count {
animation: .6s themes-fade-in 1;
}
.control-panel-themes .filter-themes-count {
position: relative;
float: left;
line-height: 34px;
}
.control-panel-themes .filter-themes-count .themes-displayed {
font-weight: 600;
color: #555d66;
}
.customize-themes-notifications {
margin: 0;
}
.control-panel-themes .customize-themes-notifications .notice {
margin: 0 0 25px 0;
}
.customize-themes-full-container .customize-themes-section {
display: none !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */
overflow: hidden;
}
.customize-themes-full-container .customize-themes-section.current-section {
display: list-item !important; /* There is unknown JS that perpetually tries to show all theme sections when more items are added. */
}
.control-section .customize-section-text-before {
padding: 0 15px 8px 0;
margin: 15px 0 0 0;
line-height: 16px;
border-bottom: 1px solid #ddd;
color: #555d66;
}
.control-panel-themes .customize-themes-section-title {
width: 100%;
background: #fff;
box-shadow: none;
outline: none;
border-top: none;
border-bottom: 1px solid #ddd;
border-right: 4px solid #fff;
border-left: none;
cursor: pointer;
padding: 10px 15px;
position: relative;
text-align: right;
font-size: 14px;
font-weight: 600;
color: #555d66;
text-shadow: none;
}
.control-panel-themes #accordion-section-installed_themes {
border-top: 1px solid #ddd;
}
.control-panel-themes .theme-section {
margin: 0;
position: relative;
}
.control-panel-themes .customize-themes-section-title:focus,
.control-panel-themes .customize-themes-section-title:hover {
border-right-color: #0073aa;
color: #0073aa;
background: #f5f5f5;
}
.customize-themes-section-title:not(.selected):after {
content: "";
display: block;
position: absolute;
top: 9px;
left: 15px;
width: 18px;
height: 18px;
border-radius: 100%;
border: 1px solid #ccc;
background: #fff;
}
.control-panel-themes .theme-section .customize-themes-section-title.selected:after {
content: "\f147";
font: 16px/1 dashicons;
box-sizing: border-box;
width: 20px;
height: 20px;
padding: 3px 1px 1px 3px; /* Re-align the icon to the smaller grid */
border-radius: 100%;
position: absolute;
top: 9px;
left: 15px;
background: #0073aa;
color: #fff;
}
.control-panel-themes .customize-themes-section-title.selected {
color: #0073aa;
}
#customize-theme-controls .themes.accordion-section-content {
position: relative;
right: 0;
padding: 0;
width: 100%;
}
.loading .customize-themes-section .spinner {
display: block;
visibility: visible;
position: relative;
clear: both;
width: 20px;
height: 20px;
right: calc(50% - 10px);
float: none;
margin-top: 50px;
}
.customize-themes-section .no-themes,
.customize-themes-section .no-themes-local {
display: none;
}
.themes-section-installed_themes .theme .notice-success:not(.updated-message) {
display: none; /* Hide "installed" notice on installed themes tab. */
}
.customize-control-theme .theme {
width: 100%;
margin: 0;
border: 1px solid #ddd;
background: #fff;
}
.customize-control-theme .theme .theme-name, .customize-control-theme .theme .theme-actions {
background: #fff;
border: none;
}
.customize-control.customize-control-theme { /* override most properties on .customize-control */
box-sizing: border-box;
width: 25%;
max-width: 600px; /* Max. screenshot size / 2 */
margin: 0 0 25px 25px;
padding: 0;
clear: none;
}
/* 5 columns above 2100px */
@media screen and (min-width: 2101px) {
.customize-control.customize-control-theme {
width: calc( ( 100% - 125px ) / 5 - 1px ); /* 1px offset accounts for browser rounding, typical all grids */
}
}
/* 4 columns up to 2100px */
@media screen and (min-width: 1601px) and (max-width: 2100px) {
.customize-control.customize-control-theme {
width: calc( ( 100% - 100px ) / 4 - 1px );
}
}
/* 3 columns up to 1600px */
@media screen and (min-width: 1201px) and (max-width: 1600px) {
.customize-control.customize-control-theme {
width: calc( ( 100% - 75px ) / 3 - 1px );
}
}
/* 2 columns up to 1200px */
@media screen and (min-width: 851px) and (max-width: 1200px) {
.customize-control.customize-control-theme {
width: calc( ( 100% - 50px ) / 2 - 1px );
}
}
/* 1 column up to 850 px */
@media screen and (max-width: 850px) {
.customize-control.customize-control-theme {
width: 100%;
}
}
.wp-customizer .theme-browser .themes {
padding: 0 25px 25px 0;
transition: .18s margin-top linear;
}
.wp-customizer .theme-browser .theme .theme-actions {
opacity: 1;
}
#customize-controls h3.theme-name {
font-size: 15px;
}
#customize-controls .theme-overlay .theme-name {
font-size: 32px;
}
.customize-preview-header.themes-filter-bar {
position: fixed;
top: 0;
right: 300px;
width: calc(100% - 300px);
height: 46px;
background: #eee;
z-index: 10;
padding: 6px 25px;
box-sizing: border-box;
border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 1670px) {
.customize-preview-header.themes-filter-bar {
width: 82%;
left: 0;
right: initial;
}
}
.themes-filter-bar .themes-filter-container {
margin: 0;
padding: 0;
}
.themes-filter-bar .wp-filter-search {
line-height: 25px;
padding: 6px 30px 6px 10px;
max-width: 100%;
width: 40%;
min-width: 300px;
position: absolute;
top: 6px;
right: 25px;
height: 32px;
margin: 1px 0;
}
/* Unstick the filter bar on short windows/screens. This breakpoint is based on the
current length of .org feature filters assuming translations do not wrap lines. */
@media screen and (max-height:540px), screen and (max-width:1018px) {
.customize-preview-header.themes-filter-bar {
position: relative;
right: 0;
width: 100%;
margin: 0 0 25px 0;
}
.filter-drawer {
top: 46px;
}
.wp-customizer .theme-browser .themes {
padding: 0 25px 25px 0;
overflow: hidden;
}
.control-panel-themes .customize-themes-full-container {
margin-top: 0;
padding: 0;
height: 100%;
width: calc(100% - 300px);
}
}
@media screen and (max-width:1018px) {
.filter-drawer .filter-group {
width: calc( (100% - 50px) / 2);
}
}
@media screen and (max-width:900px) {
.customize-preview-header.themes-filter-bar {
height: 86px;
padding-top: 46px;
}
.themes-filter-bar .wp-filter-search {
width: calc(100% - 50px);
margin: 0;
min-width: 200px;
}
.filter-drawer {
top: 86px;
}
.control-panel-themes .filter-themes-count {
float: right;
}
}
@media screen and (max-width:792px) {
.filter-drawer .filter-group {
width: calc( 100% - 25px);
}
}
.control-panel-themes .customize-themes-mobile-back {
display: none;
}
/* Mobile - toggle between themes and filters */
@media screen and (max-width:600px) {
.filter-drawer {
top: 132px;
}
.wp-full-overlay.showing-themes .control-panel-themes .filter-themes-count .filter-themes {
display: block;
float: left;
}
.control-panel-themes .customize-themes-full-container {
width: 100%;
margin: 0;
padding-top: 46px;
height: calc(100% - 46px);
z-index: 1;
display: none;
}
.showing-themes .control-panel-themes .customize-themes-full-container {
display: block;
}
.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back {
display: block;
position: fixed;
top: 0;
right: 0;
background: #eee;
color: #444;
border-radius: 0;
box-shadow: none;
border: none;
height: 46px;
width: 100%;
z-index: 10;
text-align: right;
text-shadow: none;
border-bottom: 1px solid #ddd;
border-right: 4px solid transparent;
margin: 0;
padding: 0;
font-size: 0;
overflow: hidden;
}
.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:before {
right: 0;
top: 0;
height: 46px;
width: 26px;
display: block;
line-height: 46px;
padding: 0 8px 0 8px;
border-left: 1px solid #ddd;
}
.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:hover,
.wp-customizer .showing-themes .control-panel-themes .customize-themes-mobile-back:focus {
color: #0073aa;
background: #f3f3f5;
border-right-color: #0073aa;
outline: none;
box-shadow: none;
}
.showing-themes #customize-header-actions {
display: none;
}
#customize-controls {
width: 100%;
}
}
/* Details View */
.wp-customizer .theme-overlay {
display: none;
}
.wp-customizer.modal-open .theme-overlay {
position: fixed;
right: 0;
top: 0;
left: 0;
bottom: 0;
z-index: 109;
}
/* Avoid a z-index war by resetting elements that should be under the overlay.
This is likely required because of the way that sections and panels are positioned. */
.wp-customizer.modal-open #customize-header-actions,
.wp-customizer.modal-open .control-panel-themes .filter-themes-count,
.wp-customizer.modal-open .control-panel-themes .customize-themes-section-title.selected:after {
z-index: -1;
}
.wp-full-overlay.in-themes-panel.themes-panel-expanded #customize-controls .wp-full-overlay-sidebar-content {
overflow: visible;
}
.wp-customizer .theme-overlay .theme-backdrop {
background: rgba( 238, 238, 238, 0.75 );
position: fixed;
z-index: 110;
}
.wp-customizer .theme-overlay .star-rating {
float: right;
margin-left: 8px;
}
.wp-customizer .theme-rating .num-ratings {
line-height: 20px;
}
.wp-customizer .theme-overlay .theme-wrap {
right: 90px;
left: 90px;
top: 45px;
bottom: 45px;
z-index: 120;
}
.wp-customizer .theme-overlay .theme-actions {
text-align: left; /* Because there're only one or two actions, match the UI pattern of media modals and right-align the action. */
padding: 10px 25px;
background: #eee;
border-top: 1px solid #ddd;
}
.wp-customizer .theme-overlay .theme-actions .theme-install.preview {
margin-right: 8px;
}
.control-panel-themes .theme-actions .delete-theme {
right: 15px; /* these override themes.css on mobile */
left: auto;
bottom: auto;
position: absolute;
}
.modal-open .in-themes-panel #customize-controls .wp-full-overlay-sidebar-content {
overflow: visible; /* Prevent the top-level Customizer controls from becoming visible when elements on the right of the details modal are focused. */
}
.wp-customizer .theme-header {
background: #eee;
}
.wp-customizer .theme-overlay .theme-header button,
.wp-customizer .theme-overlay .theme-header .close:before {
color: #444;
}
.wp-customizer .theme-overlay .theme-header .close:focus,
.wp-customizer .theme-overlay .theme-header .close:hover,
.wp-customizer .theme-overlay .theme-header .right:focus,
.wp-customizer .theme-overlay .theme-header .right:hover,
.wp-customizer .theme-overlay .theme-header .left:focus,
.wp-customizer .theme-overlay .theme-header .left:hover {
background: #fff;
border-bottom: 4px solid #0073aa;
color: #0073aa;
}
.wp-customizer .theme-overlay .theme-header .close:focus:before,
.wp-customizer .theme-overlay .theme-header .close:hover:before {
color: #0073aa;
}
.wp-customizer .theme-overlay .theme-header button.disabled,
.wp-customizer .theme-overlay .theme-header button.disabled:hover,
.wp-customizer .theme-overlay .theme-header button.disabled:focus {
border-bottom: none;
background: transparent;
color: #ccc;
}
/* Small Screens */
@media (max-width:850px), (max-height:472px) {
.wp-customizer .theme-overlay .theme-wrap {
right: 0;
left: 0;
top: 0;
bottom: 0;
}
.wp-customizer .theme-browser .themes {
padding-left: 25px;
}
}
/* Handle cheaters. */
body.cheatin {
font-size: medium;
height: auto;
background: #fff;
margin: 50px auto 2em;
padding: 1em 2em;
max-width: 700px;
min-width: 0;
box-shadow: 0 1px 3px rgba(0,0,0,0.13);
}
body.cheatin h1 {
border-bottom: 1px solid #ddd;
clear: both;
color: #555d66;
font-size: 24px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
margin: 30px 0 0 0;
padding: 0;
padding-bottom: 7px;
}
body.cheatin p {
font-size: 14px;
line-height: 1.5;
margin: 25px 0 20px;
}
/**
* Widgets and Menus common styles
*/
/* higher specificity than .wp-core-ui .button */
#customize-theme-controls .add-new-widget,
#customize-theme-controls .add-new-menu-item {
cursor: pointer;
float: left;
margin: 0;
margin-right: 10px;
transition: all 0.2s;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
outline: none;
}
.reordering .add-new-widget,
.reordering .add-new-menu-item {
opacity: 0.2;
pointer-events: none;
cursor: not-allowed; /* doesn't work in conjunction with pointer-events */
}
.add-new-widget:before,
.add-new-menu-item:before,
#available-menu-items .new-content-item .add-content:before {
content: "\f132";
display: inline-block;
position: relative;
right: -2px;
top: 0;
font: normal 20px/1 dashicons;
vertical-align: middle;
transition: all 0.2s;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* Reordering */
.reorder-toggle {
float: left;
padding: 5px 8px;
text-decoration: none;
cursor: pointer;
outline: none;
}
.reorder,
.reordering .reorder-done {
display: block;
padding: 5px 8px;
}
.reorder-done,
.reordering .reorder {
display: none;
}
.widget-reorder-nav span,
.menu-item-reorder-nav button {
position: relative;
overflow: hidden;
float: right;
display: block;
width: 33px; /* was 42px for mobile */
height: 43px;
color: #82878c;
text-indent: -9999px;
cursor: pointer;
outline: none;
}
.menu-item-reorder-nav button {
width: 30px;
height: 40px;
background: transparent;
border: none;
box-shadow: none;
}
.widget-reorder-nav span:before,
.menu-item-reorder-nav button:before {
display: inline-block;
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
font: normal 20px/43px dashicons;
text-align: center;
text-indent: 0;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.widget-reorder-nav span:hover,
.widget-reorder-nav span:focus,
.menu-item-reorder-nav button:hover,
.menu-item-reorder-nav button:focus {
color: #191e23;
background: #eee;
}
.move-widget-down:before,
.menus-move-down:before {
content: "\f347";
}
.move-widget-up:before,
.menus-move-up:before {
content: "\f343";
}
#customize-theme-controls .first-widget .move-widget-up,
#customize-theme-controls .last-widget .move-widget-down,
.move-up-disabled .menus-move-up,
.move-down-disabled .menus-move-down,
.move-right-disabled .menus-move-right,
.move-left-disabled .menus-move-left {
color: #d5d5d5;
background-color: #fff;
cursor: default;
pointer-events: none;
}
/**
* New widget and Add-menu-items modes and panels
*/
.wp-full-overlay-main {
left: auto; /* this overrides a right: 0; which causes the preview to resize, I'd rather have it go off screen at the normal size. */
width: 100%;
}
body.adding-widget .add-new-widget,
body.adding-widget .add-new-widget:hover,
.adding-menu-items .add-new-menu-item,
.adding-menu-items .add-new-menu-item:hover,
.add-menu-toggle.open,
.add-menu-toggle.open:hover {
background: #eee;
border-color: #929793;
color: #32373c;
box-shadow: inset 0 2px 5px -3px rgba(0, 0, 0, 0.5);
}
body.adding-widget .add-new-widget:before,
.adding-menu-items .add-new-menu-item:before,
#accordion-section-add_menu .add-new-menu-item.open:before {
transform: rotate(-45deg);
}
#available-widgets,
#available-menu-items {
position: absolute;
top: 0;
bottom: 0;
right: -301px;
visibility: hidden;
overflow-x: hidden;
overflow-y: auto;
width: 300px;
margin: 0;
z-index: 4;
background: #eee;
transition: right .18s;
border-left: 1px solid #ddd;
}
#available-widgets .customize-section-title,
#available-menu-items .customize-section-title {
display: none;
}
#available-widgets-list {
top: 60px;
position: absolute;
overflow: auto;
bottom: 0;
width: 100%;
border-top: 1px solid #ddd;
}
.no-widgets-found #available-widgets-list {
border-top: none;
}
#available-widgets-filter {
position: fixed;
top: 0;
z-index: 1;
width: 300px;
background: #eee;
}
/* search field container */
#available-widgets-filter,
#available-menu-items-search .accordion-section-title {
padding: 13px 15px;
box-sizing: border-box;
}
#available-widgets-filter input,
#available-menu-items-search input {
width: 100%;
height: 32px;
margin: 1px 0;
padding: 6px 30px;
}
#available-widgets-filter input::-ms-clear,
#available-menu-items-search input::-ms-clear {
display: none; /* remove the "x" in IE, which conflicts with the "x" icon on button.clear-results */
}
#available-menu-items-search .search-icon,
#available-widgets-filter .search-icon {
display: block;
position: absolute;
top: 15px; /* 13 container padding +1 input margin +1 input border */
right: 16px;
width: 30px;
height: 30px;
line-height: 28px;
text-align: center;
color: #72777c;
}
#available-widgets-filter .clear-results,
#available-menu-items-search .clear-results {
position: absolute;
top: 15px; /* 13 container padding +1 input margin +1 input border */
left: 16px;
width: 30px;
height: 30px;
padding: 0;
border: 0;
cursor: pointer;
background: none;
color: #a00;
text-decoration: none;
outline: 0;
}
#available-widgets-filter .clear-results,
#available-menu-items-search .clear-results,
#available-menu-items-search.loading .clear-results.is-visible {
display: none;
}
#available-widgets-filter .clear-results.is-visible,
#available-menu-items-search .clear-results.is-visible {
display: block;
}
#available-widgets-filter .clear-results:before,
#available-menu-items-search .clear-results:before {
content: "\f335";
font: normal 20px/1 dashicons;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
#available-widgets-filter .clear-results:hover,
#available-widgets-filter .clear-results:focus,
#available-menu-items-search .clear-results:hover,
#available-menu-items-search .clear-results:focus {
color: #dc3232;
}
#available-widgets-filter .clear-results:focus,
#available-menu-items-search .clear-results:focus {
box-shadow:
0 0 0 1px #5b9dd9,
0 0 2px 1px rgba(30, 140, 190, .8);
}
#available-menu-items-search .search-icon:after,
#available-widgets-filter .search-icon:after,
.themes-filter-bar .search-icon:after {
content: "\f179";
font: normal 20px/1 dashicons;
vertical-align: middle;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.themes-filter-bar .search-icon {
position: absolute;
top: 7px;
right: 26px;
z-index: 1;
color: #72777c;
height: 30px;
width: 30px;
line-height: 2;
text-align: center;
}
.no-widgets-found-message {
display: none;
margin: 0;
padding: 0 15px;
line-height: inherit;
}
.no-widgets-found .no-widgets-found-message {
display: block;
}
#available-widgets .widget-top,
#available-widgets .widget-top:hover,
#available-menu-items .item-top,
#available-menu-items .item-top:hover {
border: none;
background: transparent;
box-shadow: none;
}
#available-widgets .widget-tpl,
#available-menu-items .item-tpl {
position: relative;
padding: 15px 60px 15px 15px;
background: #fff;
border-bottom: 1px solid #ddd;
border-right: 4px solid #fff;
transition: .15s color ease-in-out,
.15s background-color ease-in-out,
.15s border-color ease-in-out;
cursor: pointer;
display: none;
}
#available-widgets .widget,
#available-menu-items .item {
position: static;
}
/* Responsive */
.customize-controls-preview-toggle {
display: none;
}
@media only screen and (max-width: 782px) {
.wp-customizer .theme:not(.active):hover .theme-actions,
.wp-customizer .theme:not(.active):focus .theme-actions {
display: block;
}
.wp-customizer .theme-browser .theme.active .theme-name span {
display: inline;
}
.customize-control-header button.random .dice {
margin-top: 0;
}
.customize-control-radio .customize-inside-control-row,
.customize-control-checkbox .customize-inside-control-row,
.customize-control-nav_menu_auto_add .customize-inside-control-row {
margin-right: 32px;
}
.customize-control-radio input,
.customize-control-checkbox input,
.customize-control-nav_menu_auto_add input {
margin-right: -32px;
}
.customize-control input[type="radio"] + label + br,
.customize-control input[type="checkbox"] + label + br {
line-height: 32px; /* For widgets checkboxes */
}
.customize-control .date-time-fields select {
height: 39px;
}
.date-time-fields .date-input.month {
width: 79px;
}
.date-time-fields .date-input.day,
.date-time-fields .date-input.hour,
.date-time-fields .date-input.minute {
width: 55px;
}
.date-time-fields .date-input.year {
width: 80px;
}
.date-time-fields .date-timezone {
line-height: 3.2;
}
#customize-control-changeset_preview_link a {
bottom: 16px;
}
.preview-link-wrapper .customize-copy-preview-link.preview-control-element.button {
bottom: 10px;
}
.media-widget-control .media-widget-buttons .button.edit-media,
.media-widget-control .media-widget-buttons .button.change-media,
.media-widget-control .media-widget-buttons .button.select-media {
margin-top: 12px;
}
.wp-core-ui .themes-filter-bar .feature-filter-toggle {
margin: 3px 25px 3px 0;
}
}
@media screen and ( max-width: 1200px ) {
.outer-section-open .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,
.adding-menu-items .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main,
.adding-widget .wp-full-overlay.expanded.preview-mobile .wp-full-overlay-main {
right: 67%;
}
}
@media screen and ( max-width: 640px ) {
/* when the sidebar is collapsed and switching to responsive view,
bring it back see ticket #35220 */
.wp-full-overlay.collapsed #customize-controls {
margin-right: 0;
}
.wp-full-overlay-sidebar .wp-full-overlay-sidebar-content {
bottom: 0;
}
.customize-controls-preview-toggle {
display: block;
position: absolute;
top: 0;
right: 48px;
line-height: 45px;
font-size: 14px;
padding: 0 12px;
margin: 0;
height: 45px;
background: #eee;
border: 0;
border-left: 1px solid #ddd;
color: #555d66;
cursor: pointer;
transition: color .1s ease-in-out, background .1s ease-in-out;
}
#customize-footer-actions,
/*#customize-preview,*/
.customize-controls-preview-toggle .controls,
.preview-only .wp-full-overlay-sidebar-content,
.preview-only .customize-controls-preview-toggle .preview {
display: none;
}
.preview-only #customize-save-button-wrapper {
margin-top: -46px;
}
.customize-controls-preview-toggle .preview:before,
.customize-controls-preview-toggle .controls:before {
font: normal 20px/1 dashicons;
content: "\f177";
position: relative;
top: 4px;
margin-left: 6px;
}
.customize-controls-preview-toggle .controls:before {
content: "\f540";
}
.preview-only #customize-controls {
height: 45px;
}
.preview-only #customize-preview,
.preview-only .customize-controls-preview-toggle .controls {
display: block;
}
.wp-core-ui.wp-customizer .button {
padding: 6px 14px;
line-height: normal;
font-size: 14px;
vertical-align: middle;
height: auto;
}
#publish-settings {
height: 31px;
}
#customize-control-changeset_status .customize-inside-control-row {
padding-top: 15px;
}
body.adding-widget div#available-widgets,
body.adding-menu-items div#available-menu-items,
body.outer-section-open div#customize-sidebar-outer-content {
width: 100%;
}
#available-widgets .customize-section-title,
#available-menu-items .customize-section-title {
display: block;
margin: 0;
}
#available-widgets .customize-section-back,
#available-menu-items .customize-section-back {
height: 69px;
}
#available-widgets .customize-section-title h3,
#available-menu-items .customize-section-title h3 {
font-size: 20px;
font-weight: 200;
padding: 9px 14px 12px 10px;
margin: 0;
line-height: 24px;
color: #555d66;
display: block;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#available-widgets .customize-section-title .customize-action,
#available-menu-items .customize-section-title .customize-action {
font-size: 13px;
display: block;
font-weight: 400;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
#available-widgets-filter {
position: relative;
width: 100%;
height: auto;
}
#available-widgets-list {
top: 130px;
}
#available-menu-items-search .clear-results,
#available-menu-items-search .search-icon {
top: 85px; /* 70 section title height + 13 container padding +1 input margin +1 input border */
}
.reorder,
.reordering .reorder-done {
padding: 8px;
}
.wp-core-ui .themes-filter-bar .feature-filter-toggle {
margin: 0;
}
.theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions {
padding: 9px 15px;
box-shadow: inset 0 1px 0 rgba(0,0,0,0.1);
}
}
@media screen and ( max-width: 600px ) {
.theme-browser .theme.active .theme-actions,
.wp-customizer .theme-browser .theme .theme-actions {
padding: 8px 15px;
box-shadow: none;
}
.wp-full-overlay.expanded {
margin-right: 0;
}
body.adding-widget div#available-widgets,
body.adding-menu-items div#available-menu-items,
body.outer-section-open div#customize-sidebar-outer-content {
top: 46px;
z-index: 10;
}
body.wp-customizer .wp-full-overlay.expanded #customize-sidebar-outer-content {
right: -100%;
}
body.wp-customizer.outer-section-open .wp-full-overlay.expanded #customize-sidebar-outer-content {
right: 0;
}
}
|
third_party/WebKit/LayoutTests/fast/css-grid-layout/absolute-positioning-grid-container-parent.html | hujiajie/chromium-crosswalk | <!DOCTYPE html>
<html>
<link href="resources/grid.css" rel="stylesheet">
<style>
.grid {
grid-template-columns: 50px 100px 150px;
grid-template-rows: 25px 50px 100px;
width: 300px;
height: 200px;
border: 5px solid black;
margin: 20px 30px;
padding: 5px 15px;
}
.container {
width: 500px;
height: 400px;
}
.relative {
/* Ensures that the element is the containing block of the absolutely positioned elements. */
position: relative;
}
.absolute {
position: absolute;
}
</style>
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.container')">
<p>This test checks the behavior of the absolutely positioned elements with a grid container as parent.</p>
<div class="container relative">
<div class="grid">
<div class="sizedToGridArea absolute autoRowAutoColumn" data-offset-x="50" data-offset-y="10" data-expected-width="500" data-expected-height="400"></div>
</div>
</div>
<div class="container relative">
<div class="grid">
<div class="sizedToGridArea absolute firstRowFirstColumn" data-offset-x="50" data-offset-y="10" data-expected-width="500" data-expected-height="400"></div>
</div>
</div>
<div class="container relative">
<div class="grid">
<div class="sizedToGridArea absolute secondRowSecondColumn" data-offset-x="50" data-offset-y="10" data-expected-width="500" data-expected-height="400"></div>
</div>
</div>
<div class="container">
<div class="grid relative">
<div class="sizedToGridArea absolute autoRowAutoColumn" data-offset-x="15" data-offset-y="5" data-expected-width="330" data-expected-height="210"></div>
</div>
</div>
<div class="container">
<div class="grid relative">
<div class="sizedToGridArea absolute firstRowFirstColumn" data-offset-x="15" data-offset-y="5" data-expected-width="315" data-expected-height="205"></div>
</div>
</div>
<div class="container">
<div class="grid relative">
<div class="sizedToGridArea absolute secondRowSecondColumn" data-offset-x="65" data-offset-y="30" data-expected-width="265" data-expected-height="180"></div>
</div>
</div>
</body>
</html>
|
scib/lib/python3.5/site-packages/astropy/io/ascii/tests/t/html2.html | piotroxp/scibibscan | <html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="Content-type" content="text/html;charset=UTF-8"/>
</head>
<body>
<table>
<tr>
Row with no data elements
</tr>
<tr>
<th colspan="2">A</th>
<th>B</th>
</tr>
<tr>
<td>1</td>
<td>2.5000000000000000001</td>
<td>3</td>
</tr>
<tr>
<td>1a</td>
<td>1</td>
<td>3.5</td>
<em> Some junk </em>
</tr>
</table>
</body>
</html>
|
site/examples/friendlycode/templates/nav-options.html | shamim8888/togetherjs | <div class="nav-options">
<div class="editor-pane-nav-options">
<!-- editor, undo, redo, text size, hinting -->
<div class="editor-nav-item nav-item">
<span class="icon"> </span>Editor
<div class="pane-indicator enabled"></div>
</div>
<div class="nav-item"><div class="breadcrumbs"></div></div>
<div class="undo-nav-item nav-item responsive"
data-restore-help="We've rescued your very recent changes to this page, but you can click this button to undo them."
title="Undo changes">
<span class="icon"> </span>Undo</div>
<div class="redo-nav-item nav-item responsive" title="Redo changes">
<span class="icon"> </span>Redo
</div>
<div class="text-nav-item nav-item responsive enabled" title="Change text size">
<span class="icon"> </span>Size
<ul class="text-size-options">
<li data-size="small">Small</li>
<li data-size="normal" data-default-size>Normal</li>
<li data-size="large">Large</li>
</ul>
</div>
<div class="hints-nav-item nav-item enabled" title="Disable HTML and CSS hints and suggestions">
<div class="checkbox on">✓</div> <div class="checkbox-label">Show hints</div></div>
</div>
<div class="preview-pane-nav-options">
<!-- previous, save draft, publish -->
<div class="preview-nav-item nav-item">
<span class="icon"> </span>Preview<span class="preview-title"></span><div class="pane-indicator enabled"></div>
</div>
<div class="nav-item buttons">
<div class="publish-button wm-button wm-button-blue short">Publish</div>
</div>
</div>
</div>
|
zeppelin-web/node_modules/grunt-dom-munger/test/fixtures/css1.css | nikste/visualizationDemo | .css1 {
} |
ajax/libs/pace/0.7.8/themes/silver/pace-theme-center-simple.min.css | joeyparrish/cdnjs | .pace{-webkit-pointer-events:none;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;z-index:2000;position:fixed;margin:auto;top:0;left:0;right:0;bottom:0;height:5px;width:200px;background:#fff;border:1px solid #d6d6d6}.pace .pace-progress{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);max-width:200px;position:fixed;z-index:2000;display:block;position:absolute;left:0;top:0;height:100%;background:#d6d6d6}.pace.pace-inactive{display:none}/*# sourceMappingURL=pace-theme-center-simple.min.css.map */ |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.