code
stringlengths
4
1.01M
language
stringclasses
2 values
<?php return array ( 'This user account is not approved yet!' => 'Tento účet ještě není aktivován!', 'User not found!' => 'Uživatel nebyl nalezen!', 'You need to login to view this user profile!' => 'Abyste mohli prohlížet tento profil, je potřeba se nejdříve přihlásit.', );
Java
#region copyright // Copyright (c) 2012, TIGWI // All rights reserved. // Distributed under BSD 2-Clause license #endregion using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace Tigwi.UI.Models.Storage { using Tigwi.Storage.Library; public class DuplicateUserException : Exception { public DuplicateUserException(string login, UserAlreadyExists innerException) : base("This username is already taken.", innerException) { } } public class UserNotFoundException : Exception { public UserNotFoundException(string login, UserNotFound innerException) : base("There is no user with the given login `" + login + "'.", innerException) { } public UserNotFoundException(Guid id, UserNotFound innerException) : base("There is no user with the given ID `" + id + "'.", innerException) { } } public class DuplicateAccountException : Exception { public DuplicateAccountException(string name, AccountAlreadyExists innerException) : base("There is already an account with the given name `" + name + "'.", innerException) { } } public class AccountNotFoundException : Exception { public AccountNotFoundException(string name, AccountNotFound innerException) : base("There is no account with the given name `" + name + "'.", innerException) { } } }
Java
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta name="generator" content="pandoc" /> <meta name="author" content="Copyright 2015 Intel Corporation All Rights Reserved." /> <title>IoT Services Orchestration Layer</title> <style type="text/css">code{white-space: pre;}</style> <link rel="stylesheet" href="styles/style.css" type="text/css" /> </head> <body> <div id="header"> <h1 class="title">IoT Services Orchestration Layer</h1> <h2 class="author">Copyright 2015 Intel Corporation All Rights Reserved.</h2> </div> <div id="TOC"> <ul> <li><a href="#email">email</a><ul> <li><a href="#sendmail">sendmail</a><ul> <li><a href="#description">Description</a></li> <li><a href="#config">Config</a></li> <li><a href="#inport">Inport</a></li> <li><a href="#outport">Outport</a></li> <li><a href="#example">Example</a></li> </ul></li> </ul></li> </ul> </div> <h1 id="email">email</h1> <h2 id="sendmail">sendmail</h2> <h3 id="description">Description</h3> <p>Send a message to the recipient via an email service provider.</p> <p>This service is implemented by <a href="https://github.com/nodemailer/nodemailer">nodemailer</a></p> <p>At this stage, only supports plain-text body, and don't support the network proxy.</p> <h3 id="config">Config</h3> <p><code>service</code>: String. your email service provider, such as Gmail,QQ,126,163,Hotmail,iCloud, see <a href="https://github.com/nodemailer/nodemailer-wellknown/blob/master/services.json">nodemailer-wellknown</a> for details.</p> <p><code>account</code>: String. the registered username of your email, probably it is your email address.</p> <p><code>passwd</code>: String. the password for the username (password for mail client, might be different from login's)</p> <p><code>receiver</code>: String. the email address of recipient.</p> <h3 id="inport">Inport</h3> <p><code>text</code>: String. the content of email.</p> <p><code>subject</code>: String. the subject of email.</p> <h3 id="outport">Outport</h3> <p><code>status</code>: Boolean. output <em>true</em> if send email successfully, otherwise output <em>false</em>.</p> <h3 id="example">Example</h3> <div class="figure"> <img src="./pic/email.jpg" /> </div> <p>In this case, user(hope@126.com) may send an email to hope@intel.com, which subject as “this is a title” and text as “this is a text”.</p> </body> </html>
Java
import requests class Status(object): SKIP_LOCALES = ['en_US'] def __init__(self, url, app=None, highlight=None): self.url = url self.app = app self.highlight = highlight or [] self.data = [] self.created = None def get_data(self): if self.data: return resp = requests.get(self.url) if resp.status_code != 200: resp.raise_for_status() self.data = resp.json() self.created = self.data[-1]['created'] def summary(self): """Generates summary data of today's state""" self.get_data() highlight = self.highlight last_item = self.data[-1] output = {} output['app'] = self.app or 'ALL' data = last_item['locales'] if self.app: get_item = lambda x: x['apps'][self.app] else: get_item = lambda x: x apps = data.items()[0][1]['apps'].keys() apps.sort() output['apps'] = apps items = [item for item in data.items() if item[0] not in highlight] hitems = [item for item in data.items() if item[0] in highlight] highlighted = [] if hitems: for loc, loc_data in sorted(hitems, key=lambda x: -x[1]['percent']): if loc in self.SKIP_LOCALES: continue item = get_item(loc_data) total = item.get('total', -1) translated = item.get('translated', -1) percent = item.get('percent', -1) untranslated_words = item.get('untranslated_words', -1) highlighted.append({ 'locale': loc, 'percent': percent, 'total': total, 'translated': translated, 'untranslated': total - translated, 'untranslated_words': untranslated_words }) output['highlighted'] = highlighted locales = [] for loc, loc_data in sorted(items, key=lambda x: -x[1]['percent']): if loc in self.SKIP_LOCALES: continue item = get_item(loc_data) total = item.get('total', -1) translated = item.get('translated', -1) percent = item.get('percent', -1) untranslated_words = item.get('untranslated_words', -1) locales.append({ 'locale': loc, 'percent': percent, 'total': total, 'translated': translated, 'untranslated': total - translated, 'untranslated_words': untranslated_words }) output['locales'] = locales output['created'] = self.created return output def _mark_movement(self, data): """For each item, converts to a tuple of (movement, item)""" ret = [] prev_day = None for i, day in enumerate(data): if i == 0: ret.append(('', day)) prev_day = day continue if prev_day > day: item = ('down', day) elif prev_day < day: item = ('up', day) else: item = ('equal', day) prev_day = day ret.append(item) return ret def history(self): self.get_data() data = self.data highlight = self.highlight app = self.app # Get a list of the locales we'll iterate through locales = sorted(data[-1]['locales'].keys()) num_days = 14 # Truncate the data to what we want to look at data = data[-num_days:] if app: get_data = lambda x: x['apps'][app]['percent'] else: get_data = lambda x: x['percent'] hlocales = [loc for loc in locales if loc in highlight] locales = [loc for loc in locales if loc not in highlight] output = {} output['app'] = self.app or 'All' output['headers'] = [item['created'] for item in data] output['highlighted'] = sorted( (loc, self._mark_movement(get_data(day['locales'][loc]) for day in data)) for loc in hlocales ) output['locales'] = sorted( (loc, self._mark_movement(get_data(day['locales'].get(loc, {'percent': 0.0})) for day in data)) for loc in locales ) output['created'] = self.created return output
Java
<?php /** * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@zend.com so we can send you a copy immediately. * * @category Zend * @package Zend_Cloud_StorageService * @subpackage Adapter * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ /** * namespace */ namespace Zend\Cloud\StorageService\Adapter; use Traversable, Zend\Cloud\StorageService\Adapter, Zend\Cloud\StorageService\Exception, Zend\Service\Rackspace\Exception as RackspaceException, Zend\Service\Rackspace\Files as RackspaceFile, Zend\Stdlib\ArrayUtils; /** * Adapter for Rackspace cloud storage * * @category Zend * @package Zend_Cloud_StorageService * @subpackage Adapter * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ class Rackspace implements Adapter { const USER = 'user'; const API_KEY = 'key'; const REMOTE_CONTAINER = 'container'; const DELETE_METADATA_KEY = 'ZF_metadata_deleted'; /** * The Rackspace adapter * @var RackspaceFile */ protected $rackspace; /** * Container in which files are stored * @var string */ protected $container = 'default'; /** * Constructor * * @param array|Traversable $options * @return void */ function __construct($options = array()) { if ($options instanceof Traversable) { $options = ArrayUtils::iteratorToArray($options); } if (!is_array($options) || empty($options)) { throw new Exception\InvalidArgumentException('Invalid options provided'); } try { $this->rackspace = new RackspaceFile($options[self::USER], $options[self::API_KEY]); } catch (RackspaceException $e) { throw new Exception\RuntimeException('Error on create: '.$e->getMessage(), $e->getCode(), $e); } if (isset($options[self::HTTP_ADAPTER])) { $this->rackspace->getHttpClient()->setAdapter($options[self::HTTP_ADAPTER]); } if (!empty($options[self::REMOTE_CONTAINER])) { $this->container = $options[self::REMOTE_CONTAINER]; } } /** * Get an item from the storage service. * * @param string $path * @param array $options * @return mixed */ public function fetchItem($path, $options = null) { $item = $this->rackspace->getObject($this->container,$path, $options); if (!$this->rackspace->isSuccessful() && ($this->rackspace->getErrorCode()!='404')) { throw new Exception\RuntimeException('Error on fetch: '.$this->rackspace->getErrorMsg()); } if (!empty($item)) { return $item->getContent(); } else { return false; } } /** * Store an item in the storage service. * * @param string $destinationPath * @param mixed $data * @param array $options * @return void */ public function storeItem($destinationPath, $data, $options = null) { $this->rackspace->storeObject($this->container,$destinationPath,$data,$options); if (!$this->rackspace->isSuccessful()) { throw new Exception\RuntimeException('Error on store: '.$this->rackspace->getErrorMsg()); } } /** * Delete an item in the storage service. * * @param string $path * @param array $options * @return void */ public function deleteItem($path, $options = null) { $this->rackspace->deleteObject($this->container,$path); if (!$this->rackspace->isSuccessful()) { throw new Exception\RuntimeException('Error on delete: '.$this->rackspace->getErrorMsg()); } } /** * Copy an item in the storage service to a given path. * * @param string $sourcePath * @param string $destination path * @param array $options * @return void */ public function copyItem($sourcePath, $destinationPath, $options = null) { $this->rackspace->copyObject($this->container,$sourcePath,$this->container,$destinationPath,$options); if (!$this->rackspace->isSuccessful()) { throw new Exception\RuntimeException('Error on copy: '.$this->rackspace->getErrorMsg()); } } /** * Move an item in the storage service to a given path. * WARNING: This operation is *very* expensive for services that do not * support moving an item natively. * * @param string $sourcePath * @param string $destination path * @param array $options * @return void */ public function moveItem($sourcePath, $destinationPath, $options = null) { try { $this->copyItem($sourcePath, $destinationPath, $options); } catch (Exception\RuntimeException $e) { throw new Exception\RuntimeException('Error on move: '.$e->getMessage()); } try { $this->deleteItem($sourcePath); } catch (Exception\RuntimeException $e) { $this->deleteItem($destinationPath); throw new Exception\RuntimeException('Error on move: '.$e->getMessage()); } } /** * Rename an item in the storage service to a given name. * * @param string $path * @param string $name * @param array $options * @return void */ public function renameItem($path, $name, $options = null) { throw new Exception\OperationNotAvailableException('Renaming not implemented'); } /** * Get a key/value array of metadata for the given path. * * @param string $path * @param array $options * @return array An associative array of key/value pairs specifying the metadata for this object. * If no metadata exists, an empty array is returned. */ public function fetchMetadata($path, $options = null) { $result = $this->rackspace->getMetadataObject($this->container,$path); if (!$this->rackspace->isSuccessful()) { throw new Exception\RuntimeException('Error on fetch metadata: '.$this->rackspace->getErrorMsg()); } $metadata = array(); if (isset($result['metadata'])) { $metadata = $result['metadata']; } // delete the self::DELETE_METADATA_KEY - this is a trick to remove all // the metadata information of an object (see deleteMetadata). // Rackspace doesn't have an API to remove the metadata of an object unset($metadata[self::DELETE_METADATA_KEY]); return $metadata; } /** * Store a key/value array of metadata at the given path. * WARNING: This operation overwrites any metadata that is located at * $destinationPath. * * @param string $destinationPath * @param array $metadata associative array specifying the key/value pairs for the metadata. * @param array $options * @return void */ public function storeMetadata($destinationPath, $metadata, $options = null) { $this->rackspace->setMetadataObject($this->container, $destinationPath, $metadata); if (!$this->rackspace->isSuccessful()) { throw new Exception\RuntimeException('Error on store metadata: '.$this->rackspace->getErrorMsg()); } } /** * Delete a key/value array of metadata at the given path. * * @param string $path * @param array $metadata - An associative array specifying the key/value pairs for the metadata * to be deleted. If null, all metadata associated with the object will * be deleted. * @param array $options * @return void */ public function deleteMetadata($path, $metadata = null, $options = null) { if (empty($metadata)) { $newMetadata = array(self::DELETE_METADATA_KEY => true); try { $this->storeMetadata($path, $newMetadata); } catch (Exception\RuntimeException $e) { throw new Exception\RuntimeException('Error on delete metadata: '.$e->getMessage()); } } else { try { $oldMetadata = $this->fetchMetadata($path); } catch (Exception\RuntimeException $e) { throw new Exception\RuntimeException('Error on delete metadata: '.$e->getMessage()); } $newMetadata = array_diff_assoc($oldMetadata, $metadata); try { $this->storeMetadata($path, $newMetadata); } catch (Exception\RuntimeException $e) { throw new Exception\RuntimeException('Error on delete metadata: '.$e->getMessage()); } } } /* * Recursively traverse all the folders and build an array that contains * the path names for each folder. * * @param string $path folder path to get the list of folders from. * @param array& $resultArray reference to the array that contains the path names * for each folder. * @return void */ private function getAllFolders($path, &$resultArray) { if (!empty($path)) { $options = array ( 'prefix' => $path ); } $files = $this->rackspace->getObjects($this->container,$options); if (!$this->rackspace->isSuccessful()) { throw new Exception\RuntimeException('Error on get all folders: '.$this->rackspace->getErrorMsg()); } $resultArray = array(); foreach ($files as $file) { $resultArray[dirname($file->getName())] = true; } $resultArray = array_keys($resultArray); } /** * Return an array of the items contained in the given path. The items * returned are the files or objects that in the specified path. * * @param string $path * @param array $options * @return array */ public function listItems($path, $options = null) { if (!empty($path)) { $options = array ( 'prefix' => $path ); } $files = $this->rackspace->getObjects($this->container,$options); if (!$this->rackspace->isSuccessful()) { throw new Exception\RuntimeException('Error on list items: '.$this->rackspace->getErrorMsg()); } $resultArray = array(); if (!empty($files)) { foreach ($files as $file) { $resultArray[] = $file->getName(); } } return $resultArray; } /** * Get the concrete client. * * @return RackspaceFile */ public function getClient() { return $this->rackspace; } }
Java
# -*-coding:Utf-8 -* # Copyright (c) 2010-2017 LE GOFF Vincent # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # * Redistributions of source code must retain the above copyright notice, this # list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above copyright notice, # this list of conditions and the following disclaimer in the documentation # and/or other materials provided with the distribution. # * Neither the name of the copyright holder nor the names of its contributors # may be used to endorse or promote products derived from this software # without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT OWNER OR CONTRIBUTORS BE # LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT # OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. """Package contenant la commande 'débarquer'.""" from math import sqrt from primaires.interpreteur.commande.commande import Commande from secondaires.navigation.constantes import * class CmdDebarquer(Commande): """Commande 'debarquer'""" def __init__(self): """Constructeur de la commande""" Commande.__init__(self, "debarquer", "debark") self.nom_categorie = "navire" self.aide_courte = "débarque du navire" self.aide_longue = \ "Cette commande permet de débarquer du navire sur lequel " \ "on se trouve. On doit se trouver assez prêt d'une côte " \ "pour débarquer dessus." def interpreter(self, personnage, dic_masques): """Méthode d'interprétation de commande""" salle = personnage.salle if not hasattr(salle, "navire") or salle.navire is None: personnage << "|err|Vous n'êtes pas sur un navire.|ff|" return navire = salle.navire if navire.etendue is None: personnage << "|err|Vous n'êtes pas sur un navire.|ff|" return personnage.agir("bouger") # On va chercher la salle la plus proche etendue = navire.etendue # On cherche la salle de nagvire la plus proche d_salle = None # la salle de destination distance = 2 x, y, z = salle.coords.tuple() for t_salle in etendue.cotes.values(): if t_salle.coords.z == z: t_x, t_y, t_z = t_salle.coords.tuple() t_distance = sqrt((x - t_x) ** 2 + (y - t_y) ** 2) if t_distance < distance and t_salle.nom_terrain in \ TERRAINS_ACCOSTABLES: d_salle = t_salle distance = t_distance if d_salle is None: personnage << "|err|Aucun quai n'a pu être trouvé à " \ "proximité.|ff|" return personnage.salle = d_salle personnage << "Vous sautez sur {}.".format( d_salle.titre.lower()) personnage << d_salle.regarder(personnage) d_salle.envoyer("{{}} arrive en sautant depuis {}.".format( navire.nom), personnage) salle.envoyer("{{}} saute sur {}.".format( d_salle.titre.lower()), personnage) importeur.hook["personnage:deplacer"].executer( personnage, d_salle, None, 0) if not hasattr(d_salle, "navire") or d_salle.navire is None: personnage.envoyer_tip("N'oubliez pas d'amarrer votre navire " \ "avec %amarre% %amarre:attacher%.")
Java
#include<iostream> using namespace std; int a[]={1,255,8,6,25,47,14,35,58,75,96,158,657}; const int len = sizeof(a)/sizeof(int); int b[10][len+1] = { 0 }; //将b全部置0 void bucketSort(int a[]);//桶排序函数 void distributeElments(int a[],int b[10][len+1],int digits); void collectElments(int a[],int b[10][len+1]); int numOfDigits(int a[]); void zeroBucket(int b[10][len+1]);//将b数组中的全部元素置0 int main() { cout<<"原始数组:"; for(int i=0;i<len;i++) cout<<a[i]<<","; cout<<endl; bucketSort(a); cout<<"排序后数组:"; for(int i=0;i<len;i++) cout<<a[i]<<","; cout<<endl; return 0; } void bucketSort(int a[]) { int digits=numOfDigits(a); for(int i=1;i<=digits;i++) { distributeElments(a,b,i); collectElments(a,b); if(i!=digits) zeroBucket(b); } } int numOfDigits(int a[]) { int largest=0; for(int i=0;i<len;i++)//获取最大值 if(a[i]>largest) largest=a[i]; int digits=0;//digits为最大值的位数 while(largest) { digits++; largest/=10; } return digits; } void distributeElments(int a[],int b[10][len+1],int digits) { int divisor=10;//除数 for(int i=1;i<digits;i++) divisor*=10; for(int j=0;j<len;j++) { int numOfDigist=(a[j]%divisor-a[j]%(divisor/10))/(divisor/10); //numOfDigits为相应的(divisor/10)位的值,如当divisor=10时,求的是个位数 int num=++b[numOfDigist][0];//用b中第一列的元素来储存每行中元素的个数 b[numOfDigist][num]=a[j]; } } void collectElments(int a[],int b[10][len+1]) { int k=0; for(int i=0;i<10;i++) for(int j=1;j<=b[i][0];j++) a[k++]=b[i][j]; } void zeroBucket(int b[][len+1]) { for(int i=0;i<10;i++) for(int j=0;j<len+1;j++) b[i][j]=0; }
Java
/* * ColorBasedROIExtractorRGB.h * * Created on: Dec 2, 2011 * Author: Pinaki Sunil Banerjee */ #ifndef BRICS_3D_COLORBASEDROIEXTRACTORRGB_H_ #define BRICS_3D_COLORBASEDROIEXTRACTORRGB_H_ #include "IFiltering.h" #include <stdlib.h> #include <cmath> #include <iostream> #include <stdio.h> #include <stdint.h> namespace brics_3d { /** * @brief Extracts subset of input point cloud based on color-properties in RGB color space * @ingroup filtering */ class ColorBasedROIExtractorRGB : public IFiltering { int red; int green; int blue; double distanceThresholdMinimum; double distanceThresholdMaximum; public: ColorBasedROIExtractorRGB(); virtual ~ColorBasedROIExtractorRGB(); void filter(PointCloud3D* originalPointCloud, PointCloud3D* resultPointCloud); // void extractColorBasedROI(brics_3d::ColoredPointCloud3D *in_cloud, brics_3d::ColoredPointCloud3D *out_cloud); // void extractColorBasedROI(brics_3d::ColoredPointCloud3D *in_cloud, brics_3d::PointCloud3D *out_cloud); int getBlue() const { return blue; } double getDistanceThresholdMinimum() const { return distanceThresholdMinimum; } void setDistanceThresholdMinimum(double distanceThreshold) { this->distanceThresholdMinimum = distanceThreshold; } double getDistanceThresholdMaximum() const { return distanceThresholdMaximum; } void setDistanceThresholdMaximum(double distanceThreshold) { this->distanceThresholdMaximum = distanceThreshold; } int getGreen() const { return green; } int getRed() const { return red; } void setBlue(int blue) { this->blue = blue; } void setGreen(int green) { this->green = green; } void setRed(int red) { this->red = red; } }; } #endif /* BRICS_3D_COLORBASEDROIEXTRACTORRGB_H_ */
Java
<!DOCTYPE html><html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;"> <meta charset="utf-8"> <title>Phing API Documentation » \DataTypeHandler</title> <meta name="author" content="Mike van Riel"> <meta name="description" content=""> <link href="../css/template.css" rel="stylesheet" media="all"> <script src="../js/jquery-1.7.1.min.js" type="text/javascript"></script><script src="../js/jquery-ui-1.8.2.custom.min.js" type="text/javascript"></script><script src="../js/jquery.mousewheel.min.js" type="text/javascript"></script><script src="../js/bootstrap.js" type="text/javascript"></script><script src="../js/template.js" type="text/javascript"></script><script src="../js/prettify/prettify.min.js" type="text/javascript"></script><link rel="shortcut icon" href="../img/favicon.ico"> <link rel="apple-touch-icon" href="../img/apple-touch-icon.png"> <link rel="apple-touch-icon" sizes="72x72" href="../img/apple-touch-icon-72x72.png"> <link rel="apple-touch-icon" sizes="114x114" href="../img/apple-touch-icon-114x114.png"> </head> <body> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"><div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span></a><a class="brand" href="../index.html">Phing API Documentation</a><div class="nav-collapse"><ul class="nav"> <li class="dropdown"> <a href="#api" class="dropdown-toggle" data-toggle="dropdown"> API Documentation <b class="caret"></b></a><ul class="dropdown-menu"> <li><a>Packages</a></li> <li><a href="../packages/Default.html"><i class="icon-folder-open"></i> Default</a></li> <li><a href="../packages/JSMin.html"><i class="icon-folder-open"></i> JSMin</a></li> <li><a href="../packages/Parallel.html"><i class="icon-folder-open"></i> Parallel</a></li> <li><a href="../packages/Phing.html"><i class="icon-folder-open"></i> Phing</a></li> <li><a href="../packages/phing.html"><i class="icon-folder-open"></i> phing</a></li> </ul> </li> <li class="dropdown" id="charts-menu"> <a href="#charts" class="dropdown-toggle" data-toggle="dropdown"> Charts <b class="caret"></b></a><ul class="dropdown-menu"><li><a href="../graph_class.html"><i class="icon-list-alt"></i> Class hierarchy diagram</a></li></ul> </li> <li class="dropdown" id="reports-menu"> <a href="#reports" class="dropdown-toggle" data-toggle="dropdown"> Reports <b class="caret"></b></a><ul class="dropdown-menu"> <li><a href="../errors.html"><i class="icon-remove-sign"></i> Errors  <span class="label label-info">2573</span></a></li> <li><a href="../markers.html"><i class="icon-map-marker"></i> Markers  <ul> <li>todo  <span class="label label-info">15</span> </li> <li>fixme  <span class="label label-info">8</span> </li> </ul></a></li> <li><a href="../deprecated.html"><i class="icon-stop"></i> Deprecated elements  <span class="label label-info">11</span></a></li> </ul> </li> </ul></div> </div></div> <div class="go_to_top"><a href="#___" style="color: inherit">Back to top  <i class="icon-upload icon-white"></i></a></div> </div> <div id="___" class="container"> <noscript><div class="alert alert-warning"> Javascript is disabled; several features are only available if Javascript is enabled. </div></noscript> <div class="row"> <div class="span4"> <span class="btn-group visibility" data-toggle="buttons-checkbox"><button class="btn public active" title="Show public elements">Public</button><button class="btn protected" title="Show protected elements">Protected</button><button class="btn private" title="Show private elements">Private</button><button class="btn inherited active" title="Show inherited elements">Inherited</button></span><div class="btn-group view pull-right" data-toggle="buttons-radio"> <button class="btn details" title="Show descriptions and method names"><i class="icon-list"></i></button><button class="btn simple" title="Show only method names"><i class="icon-align-justify"></i></button> </div> <ul class="side-nav nav nav-list"> <li class="nav-header"> <i class="icon-custom icon-method"></i> Methods <ul> <li class="method public "><a href="#method___construct" title="__construct :: Constructs a new DataTypeHandler and sets up everything."><span class="description">Constructs a new DataTypeHandler and sets up everything.</span><pre>__construct()</pre></a></li> <li class="method public "><a href="#method_characters" title="characters :: Handles character data."><span class="description">Handles character data.</span><pre>characters()</pre></a></li> <li class="method public "><a href="#method_endElement" title="endElement :: Overrides endElement for data types."><span class="description">Overrides endElement for data types.</span><pre>endElement()</pre></a></li> <li class="method public "><a href="#method_init" title="init :: Executes initialization actions required to setup the data structures related to the tag."><span class="description">Executes initialization actions required to setup the data structures related to the tag.</span><pre>init()</pre></a></li> <li class="method public "><a href="#method_startElement" title="startElement :: Checks for nested tags within the current one."><span class="description">Checks for nested tags within the current one.</span><pre>startElement()</pre></a></li> </ul> </li> <li class="nav-header protected">» Protected <ul><li class="method protected inherited"><a href="#method_finished" title="finished :: Gets invoked when element closes method."><span class="description">Gets invoked when element closes method.</span><pre>finished()</pre></a></li></ul> </li> <li class="nav-header"> <i class="icon-custom icon-property"></i> Properties <ul> <li class="property public inherited"><a href="#property_parentHandler" title="$parentHandler :: "><span class="description"></span><pre>$parentHandler</pre></a></li> <li class="property public inherited"><a href="#property_parser" title="$parser :: "><span class="description"></span><pre>$parser</pre></a></li> </ul> </li> <li class="nav-header private">» Private <ul> <li class="property private "><a href="#property_element" title="$element :: "><span class="description"></span><pre>$element</pre></a></li> <li class="property private "><a href="#property_target" title="$target :: "><span class="description"></span><pre>$target</pre></a></li> <li class="property private "><a href="#property_wrapper" title="$wrapper :: "><span class="description"></span><pre>$wrapper</pre></a></li> </ul> </li> </ul> </div> <div class="span8"> <a id="\DataTypeHandler"></a><ul class="breadcrumb"> <li> <a href="../index.html"><i class="icon-custom icon-class"></i></a><span class="divider">\</span> </li> <li><a href="../namespaces/global.html">global</a></li> <li class="active"> <span class="divider">\</span><a href="../classes/DataTypeHandler.html">DataTypeHandler</a> </li> </ul> <div class="element class"> <p class="short_description">Configures a Project (complete with Targets and Tasks) based on a XML build file.</p> <div class="details"> <div class="long_description"><p>&lt;</p> <p>p> Design/ZE2 migration note: If PHP would support nested classes. All the phing/parser/*Filter classes would be nested within this class</p></div> <table class="table table-bordered"> <tr> <th>author</th> <td><a href="mailto:andi@binarycloud.com">Andreas Aderhold</a></td> </tr> <tr> <th>copyright</th> <td>2001,2002 THYRELL. All rights reserved</td> </tr> <tr> <th>version</th> <td>$Id$</td> </tr> <tr> <th>access</th> <td>public</td> </tr> <tr> <th>package</th> <td><a href="../packages/phing.parser.html">phing.parser</a></td> </tr> </table> <h3> <i class="icon-custom icon-method"></i> Methods</h3> <a id="method___construct"></a><div class="element clickable method public method___construct" data-toggle="collapse" data-target=".method___construct .collapse"> <h2>Constructs a new DataTypeHandler and sets up everything.</h2> <pre>__construct(\AbstractSAXParser $parser, \AbstractHandler $parentHandler, \ProjectConfigurator $configurator, <a href="../classes/Target.html">\Target</a> $target) </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"><p>The constructor must be called by all derived classes.</p></div> <h3>Parameters</h3> <div class="subelement argument"> <h4>$parser</h4> <code><a href="../classes/AbstractSAXParser.html">\AbstractSAXParser</a></code><p>The XML parser (default: ExpatParser)</p> </div> <div class="subelement argument"> <h4>$parentHandler</h4> <code><a href="../classes/AbstractHandler.html">\AbstractHandler</a></code><p>The parent handler that invoked this handler.</p></div> <div class="subelement argument"> <h4>$configurator</h4> <code><a href="../classes/ProjectConfigurator.html">\ProjectConfigurator</a></code><p>The ProjectConfigurator object</p></div> <div class="subelement argument"> <h4>$target</h4> <code><a href="../classes/Target.html">\Target</a></code><p>The target object this datatype is contained in (null for top-level datatypes).</p> </div> </div></div> </div> <a id="method_characters"></a><div class="element clickable method public method_characters" data-toggle="collapse" data-target=".method_characters .collapse"> <h2>Handles character data.</h2> <pre>characters(string $data) </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <table class="table table-bordered"><tr> <th>access</th> <td>public</td> </tr></table> <h3>Parameters</h3> <div class="subelement argument"> <h4>$data</h4> <code>string</code><p>the CDATA that comes in</p></div> </div></div> </div> <a id="method_endElement"></a><div class="element clickable method public method_endElement" data-toggle="collapse" data-target=".method_endElement .collapse"> <h2>Overrides endElement for data types.</h2> <pre>endElement(string $name) : void</pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"><p>Tells the type handler that processing the element had been finished so handlers know they can perform actions that need to be based on the data contained within the element.</p></div> <h3>Parameters</h3> <div class="subelement argument"> <h4>$name</h4> <code>string</code><p>the name of the XML element</p></div> </div></div> </div> <a id="method_init"></a><div class="element clickable method public method_init" data-toggle="collapse" data-target=".method_init .collapse"> <h2>Executes initialization actions required to setup the data structures related to the tag.</h2> <pre>init(string $propType, array $attrs) </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"><p>&lt;</p> <p>p> This includes:</p> <ul> <li>creation of the datatype object</li> <li>calling the setters for attributes</li> <li>adding the type to the target object if any</li> <li>adding a reference to the task (if id attribute is given)</li> </ul></div> <table class="table table-bordered"><tr> <th>access</th> <td>public</td> </tr></table> <h3>Parameters</h3> <div class="subelement argument"> <h4>$propType</h4> <code>string</code><p>the tag that comes in</p></div> <div class="subelement argument"> <h4>$attrs</h4> <code>array</code><p>attributes the tag carries</p></div> <h3>Exceptions</h3> <table class="table table-bordered"><tr> <th><code><a href="../classes/ExpatParseException.html">\ExpatParseException</a></code></th> <td>if attributes are incomplete or invalid</td> </tr></table> </div></div> </div> <a id="method_startElement"></a><div class="element clickable method public method_startElement" data-toggle="collapse" data-target=".method_startElement .collapse"> <h2>Checks for nested tags within the current one.</h2> <pre>startElement(string $name, array $attrs) </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"><p>Creates and calls handlers respectively.</p></div> <table class="table table-bordered"><tr> <th>access</th> <td>public</td> </tr></table> <h3>Parameters</h3> <div class="subelement argument"> <h4>$name</h4> <code>string</code><p>the tag that comes in</p></div> <div class="subelement argument"> <h4>$attrs</h4> <code>array</code><p>attributes the tag carries</p></div> </div></div> </div> <a id="method_finished"></a><div class="element clickable method protected method_finished" data-toggle="collapse" data-target=".method_finished .collapse"> <h2>Gets invoked when element closes method.</h2> <pre>finished() </pre> <div class="labels"><span class="label">Inherited</span></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <table class="table table-bordered"><tr> <th>inherited_from</th> <td>\AbstractHandler::finished()</td> </tr></table> </div></div> </div> <h3> <i class="icon-custom icon-property"></i> Properties</h3> <a id="property_parentHandler"> </a><div class="element clickable property public property_parentHandler" data-toggle="collapse" data-target=".property_parentHandler .collapse"> <h2></h2> <pre>$parentHandler </pre> <div class="labels"><span class="label">Inherited</span></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <table class="table table-bordered"><tr> <th>inherited_from</th> <td>\AbstractHandler::$$parentHandler</td> </tr></table> </div></div> </div> <a id="property_parser"> </a><div class="element clickable property public property_parser" data-toggle="collapse" data-target=".property_parser .collapse"> <h2></h2> <pre>$parser </pre> <div class="labels"><span class="label">Inherited</span></div> <div class="row collapse"><div class="detail-description"> <div class="long_description"></div> <table class="table table-bordered"><tr> <th>inherited_from</th> <td>\AbstractHandler::$$parser</td> </tr></table> </div></div> </div> <a id="property_element"> </a><div class="element clickable property private property_element" data-toggle="collapse" data-target=".property_element .collapse"> <h2></h2> <pre>$element </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="property_target"> </a><div class="element clickable property private property_target" data-toggle="collapse" data-target=".property_target .collapse"> <h2></h2> <pre>$target </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> <a id="property_wrapper"> </a><div class="element clickable property private property_wrapper" data-toggle="collapse" data-target=".property_wrapper .collapse"> <h2></h2> <pre>$wrapper </pre> <div class="labels"></div> <div class="row collapse"><div class="detail-description"><div class="long_description"></div></div></div> </div> </div> </div> </div> </div> <div class="row"><footer class="span12"> Template is built using <a href="http://twitter.github.com/bootstrap/">Twitter Bootstrap 2</a> and icons provided by <a href="http://glyphicons.com/">Glyphicons</a>.<br> Documentation is powered by <a href="http://www.phpdoc.org/">phpDocumentor 2.0.0a11</a> and<br> generated on 2012-11-20T07:50:45+01:00.<br></footer></div> </div> </body> </html>
Java
# # GtkMain.py -- pygtk threading help routines. # # Eric Jeschke (eric@naoj.org) # # Copyright (c) Eric R. Jeschke. All rights reserved. # This is open-source software licensed under a BSD license. # Please see the file LICENSE.txt for details. # """ GUI threading help routines. Usage: import GtkMain # See constructor for GtkMain for options self.mygtk = GtkMain.GtkMain() # NOT THIS #gtk.main() # INSTEAD, main thread calls this: self.mygtk.mainloop() # (asynchronous call) self.mygtk.gui_do(method, arg1, arg2, ... argN, kwd1=val1, ..., kwdN=valN) # OR # (synchronous call) res = self.mygtk.gui_call(method, arg1, arg2, ... argN, kwd1=val1, ..., kwdN=valN) # To cause the GUI thread to terminate the mainloop self.mygtk.qui_quit() """ import sys, traceback import thread, threading import logging import Queue as que import gtk from ginga.misc import Task, Future class GtkMain(object): def __init__(self, queue=None, logger=None, ev_quit=None): # You can pass in a queue if you prefer to do so if not queue: queue = que.Queue() self.gui_queue = queue # You can pass in a logger if you prefer to do so if logger == None: logger = logging.getLogger('GtkHelper') self.logger = logger if not ev_quit: ev_quit = threading.Event() self.ev_quit = ev_quit self.gui_thread_id = None def update_pending(self, timeout=0.0): """Process all pending GTK events and return. _timeout_ is a tuning parameter for performance. """ # Process "out-of-band" GTK events try: while gtk.events_pending(): #gtk.main_iteration(False) gtk.main_iteration() finally: pass done = False while not done: # Process "in-band" GTK events try: future = self.gui_queue.get(block=True, timeout=timeout) # Execute the GUI method try: try: res = future.thaw(suppress_exception=False) except Exception, e: future.resolve(e) self.logger.error("gui error: %s" % str(e)) try: (type, value, tb) = sys.exc_info() tb_str = "".join(traceback.format_tb(tb)) self.logger.error("Traceback:\n%s" % (tb_str)) except Exception, e: self.logger.error("Traceback information unavailable.") finally: pass except que.Empty: done = True except Exception, e: self.logger.error("Main GUI loop error: %s" % str(e)) # Process "out-of-band" GTK events again try: while gtk.events_pending(): #gtk.main_iteration(False) gtk.main_iteration() finally: pass def gui_do(self, method, *args, **kwdargs): """General method for asynchronously calling into the GUI. It makes a future to call the given (method) with the given (args) and (kwdargs) inside the gui thread. If the calling thread is a non-gui thread the future is returned. """ future = Future.Future() future.freeze(method, *args, **kwdargs) self.gui_queue.put(future) my_id = thread.get_ident() if my_id != self.gui_thread_id: return future def gui_call(self, method, *args, **kwdargs): """General method for synchronously calling into the GUI. This waits until the method has completed before returning. """ my_id = thread.get_ident() if my_id == self.gui_thread_id: return method(*args, **kwdargs) else: future = self.gui_do(method, *args, **kwdargs) return future.wait() def gui_do_future(self, future): self.gui_queue.put(future) return future def nongui_do(self, method, *args, **kwdargs): task = Task.FuncTask(method, args, kwdargs, logger=self.logger) return self.nongui_do_task(task) def nongui_do_cb(self, tup, method, *args, **kwdargs): task = Task.FuncTask(method, args, kwdargs, logger=self.logger) task.register_callback(tup[0], args=tup[1:]) return self.nongui_do_task(task) def nongui_do_future(self, future): task = Task.FuncTask(future.thaw, (), {}, logger=self.logger) return self.nongui_do_task(task) def nongui_do_task(self, task): try: task.init_and_start(self) return task except Exception, e: self.logger.error("Error starting task: %s" % (str(e))) raise(e) def assert_gui_thread(self): my_id = thread.get_ident() assert my_id == self.gui_thread_id, \ Exception("Non-GUI thread (%d) is executing GUI code!" % ( my_id)) def assert_nongui_thread(self): my_id = thread.get_ident() assert my_id != self.gui_thread_id, \ Exception("GUI thread (%d) is executing non-GUI code!" % ( my_id)) def mainloop(self, timeout=0.001): # Mark our thread id self.gui_thread_id = thread.get_ident() while not self.ev_quit.isSet(): self.update_pending(timeout=timeout) def gui_quit(self): "Call this to cause the GUI thread to quit the mainloop.""" self.ev_quit.set() # END
Java
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $model backend\modules\inspection\models\InspectionHospitalMapSearch */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="inspection-hospital-map-search"> <?php $form = ActiveForm::begin([ 'action' => ['index'], 'method' => 'get', ]); ?> <?= $form->field($model, 'id') ?> <?= $form->field($model, 'insp_id') ?> <?= $form->field($model, 'hosp_id') ?> <?= $form->field($model, 'contact') ?> <?php // echo $form->field($model, 'isleaf') ?> <?php // echo $form->field($model, 'status') ?> <?php // echo $form->field($model, 'utime') ?> <?php // echo $form->field($model, 'uid') ?> <?php // echo $form->field($model, 'ctime') ?> <?php // echo $form->field($model, 'cid') ?> <div class="form-group"> <?= Html::submitButton('Search', ['class' => 'btn btn-primary']) ?> <?= Html::resetButton('Reset', ['class' => 'btn btn-default']) ?> </div> <?php ActiveForm::end(); ?> </div>
Java
/*! \ingroup PkgAABB_treeConcepts \cgalConcept The concept `AABBTraits` provides the geometric primitive types and methods for the class `CGAL::AABB_tree<AABBTraits>`. \cgalHasModel `CGAL::AABB_traits<AABBGeomTraits,AABBPrimitive>` \sa `CGAL::AABB_traits<AABBGeomTraits,AABBPrimitive>` \sa `CGAL::AABB_tree<AABBTraits>` \sa `AABBPrimitive` */ class AABBTraits { public: /// \name Types /// @{ /*! Value type of the `Squared_distance` functor. */ typedef unspecified_type FT; /*! Type of a 3D point. */ typedef unspecified_type Point_3; /*! Type of primitive. Must be a model of the concepts `AABBPrimitive` or `AABBPrimitiveWithSharedData`. */ typedef unspecified_type Primitive; /*! Bounding box type. */ typedef unspecified_type Bounding_box; /*! */ enum Axis { X_AXIS, Y_AXIS, Z_AXIS }; /*! */ typedef std::pair<Point_3, Primitive::Id> Point_and_primitive_id; /*! \deprecated This requirement is deprecated and is no longer needed. */ typedef std::pair<Object, Primitive::Id> Object_and_primitive_id; /*! A nested class template providing as a pair the intersection result of a `Query` object and a `Primitive::Datum`, together with the `Primitive::Id` of the primitive intersected. The type of the pair is `%Intersection_and_primitive_id<Query>::%Type`. */ template <typename Query> using Intersection_and_primitive_id = unspecified_type; /// @} /// \name Splitting /// During the construction of the AABB tree, the primitives are /// sorted according to some comparison functions related to the \f$x\f$, /// \f$ y\f$ or \f$ z\f$ coordinate axis: /// @{ /*! A functor object to split a range of primitives into two sub-ranges along the X-axis. Provides the operator: `void operator()(InputIterator first, InputIterator beyond);` %Iterator type `InputIterator` must be a model of RandomAccessIterator and have `Primitive` as value type. The operator is used for determining the primitives assigned to the two children nodes of a given node, assuming that the goal is to split the X-dimension of the bounding box of the node. The primitives assigned to this node are passed as argument to the operator. It should modify the iterator range in such a way that its first half and its second half correspond to the two children nodes. */ typedef unspecified_type Split_primitives_along_x_axis; /*! A functor object to split a range of primitives into two sub-ranges along the Y-axis. See `Split_primitives_along_x_axis` for the detailed description. */ typedef unspecified_type Split_primitives_along_y_axis; /*! A functor object to split a range of primitives into two sub-ranges along the Z-axis. See `Split_primitives_along_x_axis` for the detailed description. */ typedef unspecified_type Split_primitives_along_z_axis; /*! A functor object to compute the bounding box of a set of primitives. Provides the operator: `Bounding_box operator()(Input_iterator begin, Input_iterator beyond);` %Iterator type `InputIterator` must have `Primitive` as value type. */ typedef unspecified_type Compute_bbox; // remove as not used any where in the code: // A functor object to specify the direction along which the bounding box should be split: // `Axis operator()(const Bounding_box& bbox);` which returns the // direction used for splitting `bbox`. It is usually the axis aligned // with the longest edge of `bbox`. // typedef unspecified_type Splitting_direction; /// @} /// \name Intersections /// The following predicates are required for each type `Query` for /// which the class `CGAL::AABB_tree<AABBTraits>` may receive an intersection /// detection or computation query. /// @{ /*! A functor object to compute intersection predicates between the query and the nodes of the tree. Provides the operators: - `bool operator()(const Query & q, const Bounding_box & box);` which returns `true` iff the query intersects the bounding box - `bool operator()(const Query & q, const Primitive & primitive);` which returns `true` iff the query intersects the primitive */ typedef unspecified_type Do_intersect; /*! A functor object to compute the intersection of a query and a primitive. Provides the operator: `boost::optional<Intersection_and_primitive_id<Query>::%Type > operator()(const Query & q, const Primitive& primitive);` which returns the intersection as a pair composed of an object and a primitive id, iff the query intersects the primitive. \cgalHeading{Note on Backward Compatibility} Before the release 4.3 of \cgal, the return type of this function used to be `boost::optional<Object_and_primitive_id>`. */ typedef unspecified_type Intersect; /// \name Distance Queries /// The following predicates are required for each /// type `Query` for which the class `CGAL::AABB_tree<AABBTraits>` may receive a /// distance query. /// @{ /*! A functor object to compute distance comparisons between the query and the nodes of the tree. Provides the operators: - `bool operator()(const Query & query, const Bounding_box& box, const Point & closest);` which returns `true` iff the bounding box is closer to `query` than `closest` is - `bool operator()(const Query & query, const Primitive & primitive, const Point & closest);` which returns `true` iff `primitive` is closer to the `query` than `closest` is */ typedef unspecified_type Compare_distance; /*! A functor object to compute closest point from the query on a primitive. Provides the operator: `Point_3 operator()(const Query& query, const Primitive& primitive, const Point_3 & closest);` which returns the closest point to `query`, among `closest` and all points of the primitive. */ typedef unspecified_type Closest_point; /*! A functor object to compute the squared distance between two points. Provides the operator: `FT operator()(const Point& query, const Point_3 & p);` which returns the squared distance between `p` and `q`. */ typedef unspecified_type Squared_distance; /// @} /// \name Operations /// @{ /*! Returns the primitive splitting functor for the X axis. */ Split_primitives_along_x_axis split_primitives_along_x_axis_object(); /*! Returns the primitive splitting functor for the Y axis. */ Split_primitives_along_y_axis split_primitives_along_y_axis_object(); /*! Returns the primitive splitting functor for the Z axis. */ Split_primitives_along_z_axis split_primitives_along_z_axis_object(); /*! Returns the bounding box constructor. */ Compute_bbox compute_bbox_object(); /*! Returns the intersection detection functor. */ Do_intersect do_intersect_object(); /*! Returns the intersection constructor. */ Intersect intersect_object(); /*! Returns the distance comparison functor. */ Compare_distance compare_distance_object(); /*! Returns the closest point constructor. */ Closest_point closest_point_object(); /*! Returns the squared distance functor. */ Squared_distance squared_distance_object(); /// @} /// \name Primitive with Shared Data /// In addition, if `Primitive` is a model of the concept `AABBPrimitiveWithSharedData`, /// the following functions are part of the concept: /// @{ /*! the signature of that function must be the same as the static function `Primitive::construct_shared_data`. The type `Primitive` expects that the data constructed by a call to `Primitive::construct_shared_data(t...)` is the one given back when accessing the reference point and the datum of a primitive. */ template <class ... T> void set_shared_data(T ... t); {} /*! Returns the shared data of the primitive constructed after a call to `set_shared_data`. If no call to `set_shared_data` has been done, `Primitive::Shared_data()` is returned. */ const Primitive::Shared_data& shared_data() const; /// @} }; /* end AABBTraits */
Java
/*! jQuery UI - v1.11.4 - 2015-12-06 * http://jqueryui.com * Includes: core.js, datepicker.js * Copyright jQuery Foundation and other contributors; Licensed MIT */ (function( factory ) { if ( typeof define === "function" && define.amd ) { // AMD. Register as an anonymous module. define([ "jquery" ], factory ); } else { // Browser globals factory( jQuery ); } }(function( $ ) { /*! * jQuery UI Core 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/category/ui-core/ */ // $.ui might exist from components with no dependencies, e.g., $.ui.position $.ui = $.ui || {}; $.extend( $.ui, { version: "1.11.4", keyCode: { BACKSPACE: 8, COMMA: 188, DELETE: 46, DOWN: 40, END: 35, ENTER: 13, ESCAPE: 27, HOME: 36, LEFT: 37, PAGE_DOWN: 34, PAGE_UP: 33, PERIOD: 190, RIGHT: 39, SPACE: 32, TAB: 9, UP: 38 } }); // plugins $.fn.extend({ scrollParent: function( includeHidden ) { var position = this.css( "position" ), excludeStaticParent = position === "absolute", overflowRegex = includeHidden ? /(auto|scroll|hidden)/ : /(auto|scroll)/, scrollParent = this.parents().filter( function() { var parent = $( this ); if ( excludeStaticParent && parent.css( "position" ) === "static" ) { return false; } return overflowRegex.test( parent.css( "overflow" ) + parent.css( "overflow-y" ) + parent.css( "overflow-x" ) ); }).eq( 0 ); return position === "fixed" || !scrollParent.length ? $( this[ 0 ].ownerDocument || document ) : scrollParent; }, uniqueId: (function() { var uuid = 0; return function() { return this.each(function() { if ( !this.id ) { this.id = "ui-id-" + ( ++uuid ); } }); }; })(), removeUniqueId: function() { return this.each(function() { if ( /^ui-id-\d+$/.test( this.id ) ) { $( this ).removeAttr( "id" ); } }); } }); // selectors function focusable( element, isTabIndexNotNaN ) { var map, mapName, img, nodeName = element.nodeName.toLowerCase(); if ( "area" === nodeName ) { map = element.parentNode; mapName = map.name; if ( !element.href || !mapName || map.nodeName.toLowerCase() !== "map" ) { return false; } img = $( "img[usemap='#" + mapName + "']" )[ 0 ]; return !!img && visible( img ); } return ( /^(input|select|textarea|button|object)$/.test( nodeName ) ? !element.disabled : "a" === nodeName ? element.href || isTabIndexNotNaN : isTabIndexNotNaN) && // the element and all of its ancestors must be visible visible( element ); } function visible( element ) { return $.expr.filters.visible( element ) && !$( element ).parents().addBack().filter(function() { return $.css( this, "visibility" ) === "hidden"; }).length; } $.extend( $.expr[ ":" ], { data: $.expr.createPseudo ? $.expr.createPseudo(function( dataName ) { return function( elem ) { return !!$.data( elem, dataName ); }; }) : // support: jQuery <1.8 function( elem, i, match ) { return !!$.data( elem, match[ 3 ] ); }, focusable: function( element ) { return focusable( element, !isNaN( $.attr( element, "tabindex" ) ) ); }, tabbable: function( element ) { var tabIndex = $.attr( element, "tabindex" ), isTabIndexNaN = isNaN( tabIndex ); return ( isTabIndexNaN || tabIndex >= 0 ) && focusable( element, !isTabIndexNaN ); } }); // support: jQuery <1.8 if ( !$( "<a>" ).outerWidth( 1 ).jquery ) { $.each( [ "Width", "Height" ], function( i, name ) { var side = name === "Width" ? [ "Left", "Right" ] : [ "Top", "Bottom" ], type = name.toLowerCase(), orig = { innerWidth: $.fn.innerWidth, innerHeight: $.fn.innerHeight, outerWidth: $.fn.outerWidth, outerHeight: $.fn.outerHeight }; function reduce( elem, size, border, margin ) { $.each( side, function() { size -= parseFloat( $.css( elem, "padding" + this ) ) || 0; if ( border ) { size -= parseFloat( $.css( elem, "border" + this + "Width" ) ) || 0; } if ( margin ) { size -= parseFloat( $.css( elem, "margin" + this ) ) || 0; } }); return size; } $.fn[ "inner" + name ] = function( size ) { if ( size === undefined ) { return orig[ "inner" + name ].call( this ); } return this.each(function() { $( this ).css( type, reduce( this, size ) + "px" ); }); }; $.fn[ "outer" + name] = function( size, margin ) { if ( typeof size !== "number" ) { return orig[ "outer" + name ].call( this, size ); } return this.each(function() { $( this).css( type, reduce( this, size, true, margin ) + "px" ); }); }; }); } // support: jQuery <1.8 if ( !$.fn.addBack ) { $.fn.addBack = function( selector ) { return this.add( selector == null ? this.prevObject : this.prevObject.filter( selector ) ); }; } // support: jQuery 1.6.1, 1.6.2 (http://bugs.jquery.com/ticket/9413) if ( $( "<a>" ).data( "a-b", "a" ).removeData( "a-b" ).data( "a-b" ) ) { $.fn.removeData = (function( removeData ) { return function( key ) { if ( arguments.length ) { return removeData.call( this, $.camelCase( key ) ); } else { return removeData.call( this ); } }; })( $.fn.removeData ); } // deprecated $.ui.ie = !!/msie [\w.]+/.exec( navigator.userAgent.toLowerCase() ); $.fn.extend({ focus: (function( orig ) { return function( delay, fn ) { return typeof delay === "number" ? this.each(function() { var elem = this; setTimeout(function() { $( elem ).focus(); if ( fn ) { fn.call( elem ); } }, delay ); }) : orig.apply( this, arguments ); }; })( $.fn.focus ), disableSelection: (function() { var eventType = "onselectstart" in document.createElement( "div" ) ? "selectstart" : "mousedown"; return function() { return this.bind( eventType + ".ui-disableSelection", function( event ) { event.preventDefault(); }); }; })(), enableSelection: function() { return this.unbind( ".ui-disableSelection" ); }, zIndex: function( zIndex ) { if ( zIndex !== undefined ) { return this.css( "zIndex", zIndex ); } if ( this.length ) { var elem = $( this[ 0 ] ), position, value; while ( elem.length && elem[ 0 ] !== document ) { // Ignore z-index if position is set to a value where z-index is ignored by the browser // This makes behavior of this function consistent across browsers // WebKit always returns auto if the element is positioned position = elem.css( "position" ); if ( position === "absolute" || position === "relative" || position === "fixed" ) { // IE returns 0 when zIndex is not specified // other browsers return a string // we ignore the case of nested elements with an explicit value of 0 // <div style="z-index: -10;"><div style="z-index: 0;"></div></div> value = parseInt( elem.css( "zIndex" ), 10 ); if ( !isNaN( value ) && value !== 0 ) { return value; } } elem = elem.parent(); } } return 0; } }); // $.ui.plugin is deprecated. Use $.widget() extensions instead. $.ui.plugin = { add: function( module, option, set ) { var i, proto = $.ui[ module ].prototype; for ( i in set ) { proto.plugins[ i ] = proto.plugins[ i ] || []; proto.plugins[ i ].push( [ option, set[ i ] ] ); } }, call: function( instance, name, args, allowDisconnected ) { var i, set = instance.plugins[ name ]; if ( !set ) { return; } if ( !allowDisconnected && ( !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) ) { return; } for ( i = 0; i < set.length; i++ ) { if ( instance.options[ set[ i ][ 0 ] ] ) { set[ i ][ 1 ].apply( instance.element, args ); } } } }; /*! * jQuery UI Datepicker 1.11.4 * http://jqueryui.com * * Copyright jQuery Foundation and other contributors * Released under the MIT license. * http://jquery.org/license * * http://api.jqueryui.com/datepicker/ */ $.extend($.ui, { datepicker: { version: "1.11.4" } }); var datepicker_instActive; function datepicker_getZindex( elem ) { var position, value; while ( elem.length && elem[ 0 ] !== document ) { // Ignore z-index if position is set to a value where z-index is ignored by the browser // This makes behavior of this function consistent across browsers // WebKit always returns auto if the element is positioned position = elem.css( "position" ); if ( position === "absolute" || position === "relative" || position === "fixed" ) { // IE returns 0 when zIndex is not specified // other browsers return a string // we ignore the case of nested elements with an explicit value of 0 // <div style="z-index: -10;"><div style="z-index: 0;"></div></div> value = parseInt( elem.css( "zIndex" ), 10 ); if ( !isNaN( value ) && value !== 0 ) { return value; } } elem = elem.parent(); } return 0; } /* Date picker manager. Use the singleton instance of this class, $.datepicker, to interact with the date picker. Settings for (groups of) date pickers are maintained in an instance object, allowing multiple different settings on the same page. */ function Datepicker() { this._curInst = null; // The current instance in use this._keyEvent = false; // If the last event was a key event this._disabledInputs = []; // List of date picker inputs that have been disabled this._datepickerShowing = false; // True if the popup picker is showing , false if not this._inDialog = false; // True if showing within a "dialog", false if not this._mainDivId = "ui-datepicker-div"; // The ID of the main datepicker division this._inlineClass = "ui-datepicker-inline"; // The name of the inline marker class this._appendClass = "ui-datepicker-append"; // The name of the append marker class this._triggerClass = "ui-datepicker-trigger"; // The name of the trigger marker class this._dialogClass = "ui-datepicker-dialog"; // The name of the dialog marker class this._disableClass = "ui-datepicker-disabled"; // The name of the disabled covering marker class this._unselectableClass = "ui-datepicker-unselectable"; // The name of the unselectable cell marker class this._currentClass = "ui-datepicker-current-day"; // The name of the current day marker class this._dayOverClass = "ui-datepicker-days-cell-over"; // The name of the day hover marker class this.regional = []; // Available regional settings, indexed by language code this.regional[""] = { // Default regional settings closeText: "Done", // Display text for close link prevText: "Prev", // Display text for previous month link nextText: "Next", // Display text for next month link currentText: "Today", // Display text for current month link monthNames: ["January","February","March","April","May","June", "July","August","September","October","November","December"], // Names of months for drop-down and formatting monthNamesShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], // For formatting dayNames: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"], // For formatting dayNamesShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"], // For formatting dayNamesMin: ["Su","Mo","Tu","We","Th","Fr","Sa"], // Column headings for days starting at Sunday weekHeader: "Wk", // Column header for week of the year dateFormat: "mm/dd/yy", // See format options on parseDate firstDay: 0, // The first day of the week, Sun = 0, Mon = 1, ... isRTL: false, // True if right-to-left language, false if left-to-right showMonthAfterYear: false, // True if the year select precedes month, false for month then year yearSuffix: "" // Additional text to append to the year in the month headers }; this._defaults = { // Global defaults for all the date picker instances showOn: "focus", // "focus" for popup on focus, // "button" for trigger button, or "both" for either showAnim: "fadeIn", // Name of jQuery animation for popup showOptions: {}, // Options for enhanced animations defaultDate: null, // Used when field is blank: actual date, // +/-number for offset from today, null for today appendText: "", // Display text following the input box, e.g. showing the format buttonText: "...", // Text for trigger button buttonImage: "", // URL for trigger button image buttonImageOnly: false, // True if the image appears alone, false if it appears on a button hideIfNoPrevNext: false, // True to hide next/previous month links // if not applicable, false to just disable them navigationAsDateFormat: false, // True if date formatting applied to prev/today/next links gotoCurrent: false, // True if today link goes back to current selection instead changeMonth: false, // True if month can be selected directly, false if only prev/next changeYear: false, // True if year can be selected directly, false if only prev/next yearRange: "c-10:c+10", // Range of years to display in drop-down, // either relative to today's year (-nn:+nn), relative to currently displayed year // (c-nn:c+nn), absolute (nnnn:nnnn), or a combination of the above (nnnn:-n) showOtherMonths: false, // True to show dates in other months, false to leave blank selectOtherMonths: false, // True to allow selection of dates in other months, false for unselectable showWeek: false, // True to show week of the year, false to not show it calculateWeek: this.iso8601Week, // How to calculate the week of the year, // takes a Date and returns the number of the week for it shortYearCutoff: "+10", // Short year values < this are in the current century, // > this are in the previous century, // string value starting with "+" for current year + value minDate: null, // The earliest selectable date, or null for no limit maxDate: null, // The latest selectable date, or null for no limit duration: "fast", // Duration of display/closure beforeShowDay: null, // Function that takes a date and returns an array with // [0] = true if selectable, false if not, [1] = custom CSS class name(s) or "", // [2] = cell title (optional), e.g. $.datepicker.noWeekends beforeShow: null, // Function that takes an input field and // returns a set of custom settings for the date picker onSelect: null, // Define a callback function when a date is selected onChangeMonthYear: null, // Define a callback function when the month or year is changed onClose: null, // Define a callback function when the datepicker is closed numberOfMonths: 1, // Number of months to show at a time showCurrentAtPos: 0, // The position in multipe months at which to show the current month (starting at 0) stepMonths: 1, // Number of months to step back/forward stepBigMonths: 12, // Number of months to step back/forward for the big links altField: "", // Selector for an alternate field to store selected dates into altFormat: "", // The date format to use for the alternate field constrainInput: true, // The input is constrained by the current date format showButtonPanel: false, // True to show button panel, false to not show it autoSize: false, // True to size the input for the date format, false to leave as is disabled: false // The initial disabled state }; $.extend(this._defaults, this.regional[""]); this.regional.en = $.extend( true, {}, this.regional[ "" ]); this.regional[ "en-US" ] = $.extend( true, {}, this.regional.en ); this.dpDiv = datepicker_bindHover($("<div id='" + this._mainDivId + "' class='ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")); } $.extend(Datepicker.prototype, { /* Class name added to elements to indicate already configured with a date picker. */ markerClassName: "hasDatepicker", //Keep track of the maximum number of rows displayed (see #7043) maxRows: 4, // TODO rename to "widget" when switching to widget factory _widgetDatepicker: function() { return this.dpDiv; }, /* Override the default settings for all instances of the date picker. * @param settings object - the new settings to use as defaults (anonymous object) * @return the manager object */ setDefaults: function(settings) { datepicker_extendRemove(this._defaults, settings || {}); return this; }, /* Attach the date picker to a jQuery selection. * @param target element - the target input field or division or span * @param settings object - the new settings to use for this date picker instance (anonymous) */ _attachDatepicker: function(target, settings) { var nodeName, inline, inst; nodeName = target.nodeName.toLowerCase(); inline = (nodeName === "div" || nodeName === "span"); if (!target.id) { this.uuid += 1; target.id = "dp" + this.uuid; } inst = this._newInst($(target), inline); inst.settings = $.extend({}, settings || {}); if (nodeName === "input") { this._connectDatepicker(target, inst); } else if (inline) { this._inlineDatepicker(target, inst); } }, /* Create a new instance object. */ _newInst: function(target, inline) { var id = target[0].id.replace(/([^A-Za-z0-9_\-])/g, "\\\\$1"); // escape jQuery meta chars return {id: id, input: target, // associated target selectedDay: 0, selectedMonth: 0, selectedYear: 0, // current selection drawMonth: 0, drawYear: 0, // month being drawn inline: inline, // is datepicker inline or not dpDiv: (!inline ? this.dpDiv : // presentation div datepicker_bindHover($("<div class='" + this._inlineClass + " ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all'></div>")))}; }, /* Attach the date picker to an input field. */ _connectDatepicker: function(target, inst) { var input = $(target); inst.append = $([]); inst.trigger = $([]); if (input.hasClass(this.markerClassName)) { return; } this._attachments(input, inst); input.addClass(this.markerClassName).keydown(this._doKeyDown). keypress(this._doKeyPress).keyup(this._doKeyUp); this._autoSize(inst); $.data(target, "datepicker", inst); //If disabled option is true, disable the datepicker once it has been attached to the input (see ticket #5665) if( inst.settings.disabled ) { this._disableDatepicker( target ); } }, /* Make attachments based on settings. */ _attachments: function(input, inst) { var showOn, buttonText, buttonImage, appendText = this._get(inst, "appendText"), isRTL = this._get(inst, "isRTL"); if (inst.append) { inst.append.remove(); } if (appendText) { inst.append = $("<span class='" + this._appendClass + "'>" + appendText + "</span>"); input[isRTL ? "before" : "after"](inst.append); } input.unbind("focus", this._showDatepicker); if (inst.trigger) { inst.trigger.remove(); } showOn = this._get(inst, "showOn"); if (showOn === "focus" || showOn === "both") { // pop-up date picker when in the marked field input.focus(this._showDatepicker); } if (showOn === "button" || showOn === "both") { // pop-up date picker when button clicked buttonText = this._get(inst, "buttonText"); buttonImage = this._get(inst, "buttonImage"); inst.trigger = $(this._get(inst, "buttonImageOnly") ? $("<img/>").addClass(this._triggerClass). attr({ src: buttonImage, alt: buttonText, title: buttonText }) : $("<button type='button'></button>").addClass(this._triggerClass). html(!buttonImage ? buttonText : $("<img/>").attr( { src:buttonImage, alt:buttonText, title:buttonText }))); input[isRTL ? "before" : "after"](inst.trigger); inst.trigger.click(function() { if ($.datepicker._datepickerShowing && $.datepicker._lastInput === input[0]) { $.datepicker._hideDatepicker(); } else if ($.datepicker._datepickerShowing && $.datepicker._lastInput !== input[0]) { $.datepicker._hideDatepicker(); $.datepicker._showDatepicker(input[0]); } else { $.datepicker._showDatepicker(input[0]); } return false; }); } }, /* Apply the maximum length for the date format. */ _autoSize: function(inst) { if (this._get(inst, "autoSize") && !inst.inline) { var findMax, max, maxI, i, date = new Date(2009, 12 - 1, 20), // Ensure double digits dateFormat = this._get(inst, "dateFormat"); if (dateFormat.match(/[DM]/)) { findMax = function(names) { max = 0; maxI = 0; for (i = 0; i < names.length; i++) { if (names[i].length > max) { max = names[i].length; maxI = i; } } return maxI; }; date.setMonth(findMax(this._get(inst, (dateFormat.match(/MM/) ? "monthNames" : "monthNamesShort")))); date.setDate(findMax(this._get(inst, (dateFormat.match(/DD/) ? "dayNames" : "dayNamesShort"))) + 20 - date.getDay()); } inst.input.attr("size", this._formatDate(inst, date).length); } }, /* Attach an inline date picker to a div. */ _inlineDatepicker: function(target, inst) { var divSpan = $(target); if (divSpan.hasClass(this.markerClassName)) { return; } divSpan.addClass(this.markerClassName).append(inst.dpDiv); $.data(target, "datepicker", inst); this._setDate(inst, this._getDefaultDate(inst), true); this._updateDatepicker(inst); this._updateAlternate(inst); //If disabled option is true, disable the datepicker before showing it (see ticket #5665) if( inst.settings.disabled ) { this._disableDatepicker( target ); } // Set display:block in place of inst.dpDiv.show() which won't work on disconnected elements // http://bugs.jqueryui.com/ticket/7552 - A Datepicker created on a detached div has zero height inst.dpDiv.css( "display", "block" ); }, /* Pop-up the date picker in a "dialog" box. * @param input element - ignored * @param date string or Date - the initial date to display * @param onSelect function - the function to call when a date is selected * @param settings object - update the dialog date picker instance's settings (anonymous object) * @param pos int[2] - coordinates for the dialog's position within the screen or * event - with x/y coordinates or * leave empty for default (screen centre) * @return the manager object */ _dialogDatepicker: function(input, date, onSelect, settings, pos) { var id, browserWidth, browserHeight, scrollX, scrollY, inst = this._dialogInst; // internal instance if (!inst) { this.uuid += 1; id = "dp" + this.uuid; this._dialogInput = $("<input type='text' id='" + id + "' style='position: absolute; top: -100px; width: 0px;'/>"); this._dialogInput.keydown(this._doKeyDown); $("body").append(this._dialogInput); inst = this._dialogInst = this._newInst(this._dialogInput, false); inst.settings = {}; $.data(this._dialogInput[0], "datepicker", inst); } datepicker_extendRemove(inst.settings, settings || {}); date = (date && date.constructor === Date ? this._formatDate(inst, date) : date); this._dialogInput.val(date); this._pos = (pos ? (pos.length ? pos : [pos.pageX, pos.pageY]) : null); if (!this._pos) { browserWidth = document.documentElement.clientWidth; browserHeight = document.documentElement.clientHeight; scrollX = document.documentElement.scrollLeft || document.body.scrollLeft; scrollY = document.documentElement.scrollTop || document.body.scrollTop; this._pos = // should use actual width/height below [(browserWidth / 2) - 100 + scrollX, (browserHeight / 2) - 150 + scrollY]; } // move input on screen for focus, but hidden behind dialog this._dialogInput.css("left", (this._pos[0] + 20) + "px").css("top", this._pos[1] + "px"); inst.settings.onSelect = onSelect; this._inDialog = true; this.dpDiv.addClass(this._dialogClass); this._showDatepicker(this._dialogInput[0]); if ($.blockUI) { $.blockUI(this.dpDiv); } $.data(this._dialogInput[0], "datepicker", inst); return this; }, /* Detach a datepicker from its control. * @param target element - the target input field or division or span */ _destroyDatepicker: function(target) { var nodeName, $target = $(target), inst = $.data(target, "datepicker"); if (!$target.hasClass(this.markerClassName)) { return; } nodeName = target.nodeName.toLowerCase(); $.removeData(target, "datepicker"); if (nodeName === "input") { inst.append.remove(); inst.trigger.remove(); $target.removeClass(this.markerClassName). unbind("focus", this._showDatepicker). unbind("keydown", this._doKeyDown). unbind("keypress", this._doKeyPress). unbind("keyup", this._doKeyUp); } else if (nodeName === "div" || nodeName === "span") { $target.removeClass(this.markerClassName).empty(); } if ( datepicker_instActive === inst ) { datepicker_instActive = null; } }, /* Enable the date picker to a jQuery selection. * @param target element - the target input field or division or span */ _enableDatepicker: function(target) { var nodeName, inline, $target = $(target), inst = $.data(target, "datepicker"); if (!$target.hasClass(this.markerClassName)) { return; } nodeName = target.nodeName.toLowerCase(); if (nodeName === "input") { target.disabled = false; inst.trigger.filter("button"). each(function() { this.disabled = false; }).end(). filter("img").css({opacity: "1.0", cursor: ""}); } else if (nodeName === "div" || nodeName === "span") { inline = $target.children("." + this._inlineClass); inline.children().removeClass("ui-state-disabled"); inline.find("select.ui-datepicker-month, select.ui-datepicker-year"). prop("disabled", false); } this._disabledInputs = $.map(this._disabledInputs, function(value) { return (value === target ? null : value); }); // delete entry }, /* Disable the date picker to a jQuery selection. * @param target element - the target input field or division or span */ _disableDatepicker: function(target) { var nodeName, inline, $target = $(target), inst = $.data(target, "datepicker"); if (!$target.hasClass(this.markerClassName)) { return; } nodeName = target.nodeName.toLowerCase(); if (nodeName === "input") { target.disabled = true; inst.trigger.filter("button"). each(function() { this.disabled = true; }).end(). filter("img").css({opacity: "0.5", cursor: "default"}); } else if (nodeName === "div" || nodeName === "span") { inline = $target.children("." + this._inlineClass); inline.children().addClass("ui-state-disabled"); inline.find("select.ui-datepicker-month, select.ui-datepicker-year"). prop("disabled", true); } this._disabledInputs = $.map(this._disabledInputs, function(value) { return (value === target ? null : value); }); // delete entry this._disabledInputs[this._disabledInputs.length] = target; }, /* Is the first field in a jQuery collection disabled as a datepicker? * @param target element - the target input field or division or span * @return boolean - true if disabled, false if enabled */ _isDisabledDatepicker: function(target) { if (!target) { return false; } for (var i = 0; i < this._disabledInputs.length; i++) { if (this._disabledInputs[i] === target) { return true; } } return false; }, /* Retrieve the instance data for the target control. * @param target element - the target input field or division or span * @return object - the associated instance data * @throws error if a jQuery problem getting data */ _getInst: function(target) { try { return $.data(target, "datepicker"); } catch (err) { throw "Missing instance data for this datepicker"; } }, /* Update or retrieve the settings for a date picker attached to an input field or division. * @param target element - the target input field or division or span * @param name object - the new settings to update or * string - the name of the setting to change or retrieve, * when retrieving also "all" for all instance settings or * "defaults" for all global defaults * @param value any - the new value for the setting * (omit if above is an object or to retrieve a value) */ _optionDatepicker: function(target, name, value) { var settings, date, minDate, maxDate, inst = this._getInst(target); if (arguments.length === 2 && typeof name === "string") { return (name === "defaults" ? $.extend({}, $.datepicker._defaults) : (inst ? (name === "all" ? $.extend({}, inst.settings) : this._get(inst, name)) : null)); } settings = name || {}; if (typeof name === "string") { settings = {}; settings[name] = value; } if (inst) { if (this._curInst === inst) { this._hideDatepicker(); } date = this._getDateDatepicker(target, true); minDate = this._getMinMaxDate(inst, "min"); maxDate = this._getMinMaxDate(inst, "max"); datepicker_extendRemove(inst.settings, settings); // reformat the old minDate/maxDate values if dateFormat changes and a new minDate/maxDate isn't provided if (minDate !== null && settings.dateFormat !== undefined && settings.minDate === undefined) { inst.settings.minDate = this._formatDate(inst, minDate); } if (maxDate !== null && settings.dateFormat !== undefined && settings.maxDate === undefined) { inst.settings.maxDate = this._formatDate(inst, maxDate); } if ( "disabled" in settings ) { if ( settings.disabled ) { this._disableDatepicker(target); } else { this._enableDatepicker(target); } } this._attachments($(target), inst); this._autoSize(inst); this._setDate(inst, date); this._updateAlternate(inst); this._updateDatepicker(inst); } }, // change method deprecated _changeDatepicker: function(target, name, value) { this._optionDatepicker(target, name, value); }, /* Redraw the date picker attached to an input field or division. * @param target element - the target input field or division or span */ _refreshDatepicker: function(target) { var inst = this._getInst(target); if (inst) { this._updateDatepicker(inst); } }, /* Set the dates for a jQuery selection. * @param target element - the target input field or division or span * @param date Date - the new date */ _setDateDatepicker: function(target, date) { var inst = this._getInst(target); if (inst) { this._setDate(inst, date); this._updateDatepicker(inst); this._updateAlternate(inst); } }, /* Get the date(s) for the first entry in a jQuery selection. * @param target element - the target input field or division or span * @param noDefault boolean - true if no default date is to be used * @return Date - the current date */ _getDateDatepicker: function(target, noDefault) { var inst = this._getInst(target); if (inst && !inst.inline) { this._setDateFromField(inst, noDefault); } return (inst ? this._getDate(inst) : null); }, /* Handle keystrokes. */ _doKeyDown: function(event) { var onSelect, dateStr, sel, inst = $.datepicker._getInst(event.target), handled = true, isRTL = inst.dpDiv.is(".ui-datepicker-rtl"); inst._keyEvent = true; if ($.datepicker._datepickerShowing) { switch (event.keyCode) { case 9: $.datepicker._hideDatepicker(); handled = false; break; // hide on tab out case 13: sel = $("td." + $.datepicker._dayOverClass + ":not(." + $.datepicker._currentClass + ")", inst.dpDiv); if (sel[0]) { $.datepicker._selectDay(event.target, inst.selectedMonth, inst.selectedYear, sel[0]); } onSelect = $.datepicker._get(inst, "onSelect"); if (onSelect) { dateStr = $.datepicker._formatDate(inst); // trigger custom callback onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); } else { $.datepicker._hideDatepicker(); } return false; // don't submit the form case 27: $.datepicker._hideDatepicker(); break; // hide on escape case 33: $.datepicker._adjustDate(event.target, (event.ctrlKey ? -$.datepicker._get(inst, "stepBigMonths") : -$.datepicker._get(inst, "stepMonths")), "M"); break; // previous month/year on page up/+ ctrl case 34: $.datepicker._adjustDate(event.target, (event.ctrlKey ? +$.datepicker._get(inst, "stepBigMonths") : +$.datepicker._get(inst, "stepMonths")), "M"); break; // next month/year on page down/+ ctrl case 35: if (event.ctrlKey || event.metaKey) { $.datepicker._clearDate(event.target); } handled = event.ctrlKey || event.metaKey; break; // clear on ctrl or command +end case 36: if (event.ctrlKey || event.metaKey) { $.datepicker._gotoToday(event.target); } handled = event.ctrlKey || event.metaKey; break; // current on ctrl or command +home case 37: if (event.ctrlKey || event.metaKey) { $.datepicker._adjustDate(event.target, (isRTL ? +1 : -1), "D"); } handled = event.ctrlKey || event.metaKey; // -1 day on ctrl or command +left if (event.originalEvent.altKey) { $.datepicker._adjustDate(event.target, (event.ctrlKey ? -$.datepicker._get(inst, "stepBigMonths") : -$.datepicker._get(inst, "stepMonths")), "M"); } // next month/year on alt +left on Mac break; case 38: if (event.ctrlKey || event.metaKey) { $.datepicker._adjustDate(event.target, -7, "D"); } handled = event.ctrlKey || event.metaKey; break; // -1 week on ctrl or command +up case 39: if (event.ctrlKey || event.metaKey) { $.datepicker._adjustDate(event.target, (isRTL ? -1 : +1), "D"); } handled = event.ctrlKey || event.metaKey; // +1 day on ctrl or command +right if (event.originalEvent.altKey) { $.datepicker._adjustDate(event.target, (event.ctrlKey ? +$.datepicker._get(inst, "stepBigMonths") : +$.datepicker._get(inst, "stepMonths")), "M"); } // next month/year on alt +right break; case 40: if (event.ctrlKey || event.metaKey) { $.datepicker._adjustDate(event.target, +7, "D"); } handled = event.ctrlKey || event.metaKey; break; // +1 week on ctrl or command +down default: handled = false; } } else if (event.keyCode === 36 && event.ctrlKey) { // display the date picker on ctrl+home $.datepicker._showDatepicker(this); } else { handled = false; } if (handled) { event.preventDefault(); event.stopPropagation(); } }, /* Filter entered characters - based on date format. */ _doKeyPress: function(event) { var chars, chr, inst = $.datepicker._getInst(event.target); if ($.datepicker._get(inst, "constrainInput")) { chars = $.datepicker._possibleChars($.datepicker._get(inst, "dateFormat")); chr = String.fromCharCode(event.charCode == null ? event.keyCode : event.charCode); return event.ctrlKey || event.metaKey || (chr < " " || !chars || chars.indexOf(chr) > -1); } }, /* Synchronise manual entry and field/alternate field. */ _doKeyUp: function(event) { var date, inst = $.datepicker._getInst(event.target); if (inst.input.val() !== inst.lastVal) { try { date = $.datepicker.parseDate($.datepicker._get(inst, "dateFormat"), (inst.input ? inst.input.val() : null), $.datepicker._getFormatConfig(inst)); if (date) { // only if valid $.datepicker._setDateFromField(inst); $.datepicker._updateAlternate(inst); $.datepicker._updateDatepicker(inst); } } catch (err) { } } return true; }, /* Pop-up the date picker for a given input field. * If false returned from beforeShow event handler do not show. * @param input element - the input field attached to the date picker or * event - if triggered by focus */ _showDatepicker: function(input) { input = input.target || input; if (input.nodeName.toLowerCase() !== "input") { // find from button/image trigger input = $("input", input.parentNode)[0]; } if ($.datepicker._isDisabledDatepicker(input) || $.datepicker._lastInput === input) { // already here return; } var inst, beforeShow, beforeShowSettings, isFixed, offset, showAnim, duration; inst = $.datepicker._getInst(input); if ($.datepicker._curInst && $.datepicker._curInst !== inst) { $.datepicker._curInst.dpDiv.stop(true, true); if ( inst && $.datepicker._datepickerShowing ) { $.datepicker._hideDatepicker( $.datepicker._curInst.input[0] ); } } beforeShow = $.datepicker._get(inst, "beforeShow"); beforeShowSettings = beforeShow ? beforeShow.apply(input, [input, inst]) : {}; if(beforeShowSettings === false){ return; } datepicker_extendRemove(inst.settings, beforeShowSettings); inst.lastVal = null; $.datepicker._lastInput = input; $.datepicker._setDateFromField(inst); if ($.datepicker._inDialog) { // hide cursor input.value = ""; } if (!$.datepicker._pos) { // position below input $.datepicker._pos = $.datepicker._findPos(input); $.datepicker._pos[1] += input.offsetHeight; // add the height } isFixed = false; $(input).parents().each(function() { isFixed |= $(this).css("position") === "fixed"; return !isFixed; }); offset = {left: $.datepicker._pos[0], top: $.datepicker._pos[1]}; $.datepicker._pos = null; //to avoid flashes on Firefox inst.dpDiv.empty(); // determine sizing offscreen inst.dpDiv.css({position: "absolute", display: "block", top: "-1000px"}); $.datepicker._updateDatepicker(inst); // fix width for dynamic number of date pickers // and adjust position before showing offset = $.datepicker._checkOffset(inst, offset, isFixed); inst.dpDiv.css({position: ($.datepicker._inDialog && $.blockUI ? "static" : (isFixed ? "fixed" : "absolute")), display: "none", left: offset.left + "px", top: offset.top + "px"}); if (!inst.inline) { showAnim = $.datepicker._get(inst, "showAnim"); duration = $.datepicker._get(inst, "duration"); inst.dpDiv.css( "z-index", datepicker_getZindex( $( input ) ) + 1 ); $.datepicker._datepickerShowing = true; if ( $.effects && $.effects.effect[ showAnim ] ) { inst.dpDiv.show(showAnim, $.datepicker._get(inst, "showOptions"), duration); } else { inst.dpDiv[showAnim || "show"](showAnim ? duration : null); } if ( $.datepicker._shouldFocusInput( inst ) ) { inst.input.focus(); } $.datepicker._curInst = inst; } }, /* Generate the date picker content. */ _updateDatepicker: function(inst) { this.maxRows = 4; //Reset the max number of rows being displayed (see #7043) datepicker_instActive = inst; // for delegate hover events inst.dpDiv.empty().append(this._generateHTML(inst)); this._attachHandlers(inst); var origyearshtml, numMonths = this._getNumberOfMonths(inst), cols = numMonths[1], width = 17, activeCell = inst.dpDiv.find( "." + this._dayOverClass + " a" ); if ( activeCell.length > 0 ) { datepicker_handleMouseover.apply( activeCell.get( 0 ) ); } inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width(""); if (cols > 1) { inst.dpDiv.addClass("ui-datepicker-multi-" + cols).css("width", (width * cols) + "em"); } inst.dpDiv[(numMonths[0] !== 1 || numMonths[1] !== 1 ? "add" : "remove") + "Class"]("ui-datepicker-multi"); inst.dpDiv[(this._get(inst, "isRTL") ? "add" : "remove") + "Class"]("ui-datepicker-rtl"); if (inst === $.datepicker._curInst && $.datepicker._datepickerShowing && $.datepicker._shouldFocusInput( inst ) ) { inst.input.focus(); } // deffered render of the years select (to avoid flashes on Firefox) if( inst.yearshtml ){ origyearshtml = inst.yearshtml; setTimeout(function(){ //assure that inst.yearshtml didn't change. if( origyearshtml === inst.yearshtml && inst.yearshtml ){ inst.dpDiv.find("select.ui-datepicker-year:first").replaceWith(inst.yearshtml); } origyearshtml = inst.yearshtml = null; }, 0); } }, // #6694 - don't focus the input if it's already focused // this breaks the change event in IE // Support: IE and jQuery <1.9 _shouldFocusInput: function( inst ) { return inst.input && inst.input.is( ":visible" ) && !inst.input.is( ":disabled" ) && !inst.input.is( ":focus" ); }, /* Check positioning to remain on screen. */ _checkOffset: function(inst, offset, isFixed) { var dpWidth = inst.dpDiv.outerWidth(), dpHeight = inst.dpDiv.outerHeight(), inputWidth = inst.input ? inst.input.outerWidth() : 0, inputHeight = inst.input ? inst.input.outerHeight() : 0, viewWidth = document.documentElement.clientWidth + (isFixed ? 0 : $(document).scrollLeft()), viewHeight = document.documentElement.clientHeight + (isFixed ? 0 : $(document).scrollTop()); offset.left -= (this._get(inst, "isRTL") ? (dpWidth - inputWidth) : 0); offset.left -= (isFixed && offset.left === inst.input.offset().left) ? $(document).scrollLeft() : 0; offset.top -= (isFixed && offset.top === (inst.input.offset().top + inputHeight)) ? $(document).scrollTop() : 0; // now check if datepicker is showing outside window viewport - move to a better place if so. offset.left -= Math.min(offset.left, (offset.left + dpWidth > viewWidth && viewWidth > dpWidth) ? Math.abs(offset.left + dpWidth - viewWidth) : 0); offset.top -= Math.min(offset.top, (offset.top + dpHeight > viewHeight && viewHeight > dpHeight) ? Math.abs(dpHeight + inputHeight) : 0); return offset; }, /* Find an object's position on the screen. */ _findPos: function(obj) { var position, inst = this._getInst(obj), isRTL = this._get(inst, "isRTL"); while (obj && (obj.type === "hidden" || obj.nodeType !== 1 || $.expr.filters.hidden(obj))) { obj = obj[isRTL ? "previousSibling" : "nextSibling"]; } position = $(obj).offset(); return [position.left, position.top]; }, /* Hide the date picker from view. * @param input element - the input field attached to the date picker */ _hideDatepicker: function(input) { var showAnim, duration, postProcess, onClose, inst = this._curInst; if (!inst || (input && inst !== $.data(input, "datepicker"))) { return; } if (this._datepickerShowing) { showAnim = this._get(inst, "showAnim"); duration = this._get(inst, "duration"); postProcess = function() { $.datepicker._tidyDialog(inst); }; // DEPRECATED: after BC for 1.8.x $.effects[ showAnim ] is not needed if ( $.effects && ( $.effects.effect[ showAnim ] || $.effects[ showAnim ] ) ) { inst.dpDiv.hide(showAnim, $.datepicker._get(inst, "showOptions"), duration, postProcess); } else { inst.dpDiv[(showAnim === "slideDown" ? "slideUp" : (showAnim === "fadeIn" ? "fadeOut" : "hide"))]((showAnim ? duration : null), postProcess); } if (!showAnim) { postProcess(); } this._datepickerShowing = false; onClose = this._get(inst, "onClose"); if (onClose) { onClose.apply((inst.input ? inst.input[0] : null), [(inst.input ? inst.input.val() : ""), inst]); } this._lastInput = null; if (this._inDialog) { this._dialogInput.css({ position: "absolute", left: "0", top: "-100px" }); if ($.blockUI) { $.unblockUI(); $("body").append(this.dpDiv); } } this._inDialog = false; } }, /* Tidy up after a dialog display. */ _tidyDialog: function(inst) { inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar"); }, /* Close date picker if clicked elsewhere. */ _checkExternalClick: function(event) { if (!$.datepicker._curInst) { return; } var $target = $(event.target), inst = $.datepicker._getInst($target[0]); if ( ( ( $target[0].id !== $.datepicker._mainDivId && $target.parents("#" + $.datepicker._mainDivId).length === 0 && !$target.hasClass($.datepicker.markerClassName) && !$target.closest("." + $.datepicker._triggerClass).length && $.datepicker._datepickerShowing && !($.datepicker._inDialog && $.blockUI) ) ) || ( $target.hasClass($.datepicker.markerClassName) && $.datepicker._curInst !== inst ) ) { $.datepicker._hideDatepicker(); } }, /* Adjust one of the date sub-fields. */ _adjustDate: function(id, offset, period) { var target = $(id), inst = this._getInst(target[0]); if (this._isDisabledDatepicker(target[0])) { return; } this._adjustInstDate(inst, offset + (period === "M" ? this._get(inst, "showCurrentAtPos") : 0), // undo positioning period); this._updateDatepicker(inst); }, /* Action for current link. */ _gotoToday: function(id) { var date, target = $(id), inst = this._getInst(target[0]); if (this._get(inst, "gotoCurrent") && inst.currentDay) { inst.selectedDay = inst.currentDay; inst.drawMonth = inst.selectedMonth = inst.currentMonth; inst.drawYear = inst.selectedYear = inst.currentYear; } else { date = new Date(); inst.selectedDay = date.getDate(); inst.drawMonth = inst.selectedMonth = date.getMonth(); inst.drawYear = inst.selectedYear = date.getFullYear(); } this._notifyChange(inst); this._adjustDate(target); }, /* Action for selecting a new month/year. */ _selectMonthYear: function(id, select, period) { var target = $(id), inst = this._getInst(target[0]); inst["selected" + (period === "M" ? "Month" : "Year")] = inst["draw" + (period === "M" ? "Month" : "Year")] = parseInt(select.options[select.selectedIndex].value,10); this._notifyChange(inst); this._adjustDate(target); }, /* Action for selecting a day. */ _selectDay: function(id, month, year, td) { var inst, target = $(id); if ($(td).hasClass(this._unselectableClass) || this._isDisabledDatepicker(target[0])) { return; } inst = this._getInst(target[0]); inst.selectedDay = inst.currentDay = $("a", td).html(); inst.selectedMonth = inst.currentMonth = month; inst.selectedYear = inst.currentYear = year; this._selectDate(id, this._formatDate(inst, inst.currentDay, inst.currentMonth, inst.currentYear)); }, /* Erase the input field and hide the date picker. */ _clearDate: function(id) { var target = $(id); this._selectDate(target, ""); }, /* Update the input field with the selected date. */ _selectDate: function(id, dateStr) { var onSelect, target = $(id), inst = this._getInst(target[0]); dateStr = (dateStr != null ? dateStr : this._formatDate(inst)); if (inst.input) { inst.input.val(dateStr); } this._updateAlternate(inst); onSelect = this._get(inst, "onSelect"); if (onSelect) { onSelect.apply((inst.input ? inst.input[0] : null), [dateStr, inst]); // trigger custom callback } else if (inst.input) { inst.input.trigger("change"); // fire the change event } if (inst.inline){ this._updateDatepicker(inst); } else { this._hideDatepicker(); this._lastInput = inst.input[0]; if (typeof(inst.input[0]) !== "object") { inst.input.focus(); // restore focus } this._lastInput = null; } }, /* Update any alternate field to synchronise with the main field. */ _updateAlternate: function(inst) { var altFormat, date, dateStr, altField = this._get(inst, "altField"); if (altField) { // update alternate field too altFormat = this._get(inst, "altFormat") || this._get(inst, "dateFormat"); date = this._getDate(inst); dateStr = this.formatDate(altFormat, date, this._getFormatConfig(inst)); $(altField).each(function() { $(this).val(dateStr); }); } }, /* Set as beforeShowDay function to prevent selection of weekends. * @param date Date - the date to customise * @return [boolean, string] - is this date selectable?, what is its CSS class? */ noWeekends: function(date) { var day = date.getDay(); return [(day > 0 && day < 6), ""]; }, /* Set as calculateWeek to determine the week of the year based on the ISO 8601 definition. * @param date Date - the date to get the week for * @return number - the number of the week within the year that contains this date */ iso8601Week: function(date) { var time, checkDate = new Date(date.getTime()); // Find Thursday of this week starting on Monday checkDate.setDate(checkDate.getDate() + 4 - (checkDate.getDay() || 7)); time = checkDate.getTime(); checkDate.setMonth(0); // Compare with Jan 1 checkDate.setDate(1); return Math.floor(Math.round((time - checkDate) / 86400000) / 7) + 1; }, /* Parse a string value into a date object. * See formatDate below for the possible formats. * * @param format string - the expected format of the date * @param value string - the date in the above format * @param settings Object - attributes include: * shortYearCutoff number - the cutoff year for determining the century (optional) * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) * dayNames string[7] - names of the days from Sunday (optional) * monthNamesShort string[12] - abbreviated names of the months (optional) * monthNames string[12] - names of the months (optional) * @return Date - the extracted date value or null if value is blank */ parseDate: function (format, value, settings) { if (format == null || value == null) { throw "Invalid arguments"; } value = (typeof value === "object" ? value.toString() : value + ""); if (value === "") { return null; } var iFormat, dim, extra, iValue = 0, shortYearCutoffTemp = (settings ? settings.shortYearCutoff : null) || this._defaults.shortYearCutoff, shortYearCutoff = (typeof shortYearCutoffTemp !== "string" ? shortYearCutoffTemp : new Date().getFullYear() % 100 + parseInt(shortYearCutoffTemp, 10)), dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort, dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames, monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort, monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames, year = -1, month = -1, day = -1, doy = -1, literal = false, date, // Check whether a format character is doubled lookAhead = function(match) { var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match); if (matches) { iFormat++; } return matches; }, // Extract a number from the string value getNumber = function(match) { var isDoubled = lookAhead(match), size = (match === "@" ? 14 : (match === "!" ? 20 : (match === "y" && isDoubled ? 4 : (match === "o" ? 3 : 2)))), minSize = (match === "y" ? size : 1), digits = new RegExp("^\\d{" + minSize + "," + size + "}"), num = value.substring(iValue).match(digits); if (!num) { throw "Missing number at position " + iValue; } iValue += num[0].length; return parseInt(num[0], 10); }, // Extract a name from the string value and convert to an index getName = function(match, shortNames, longNames) { var index = -1, names = $.map(lookAhead(match) ? longNames : shortNames, function (v, k) { return [ [k, v] ]; }).sort(function (a, b) { return -(a[1].length - b[1].length); }); $.each(names, function (i, pair) { var name = pair[1]; if (value.substr(iValue, name.length).toLowerCase() === name.toLowerCase()) { index = pair[0]; iValue += name.length; return false; } }); if (index !== -1) { return index + 1; } else { throw "Unknown name at position " + iValue; } }, // Confirm that a literal character matches the string value checkLiteral = function() { if (value.charAt(iValue) !== format.charAt(iFormat)) { throw "Unexpected literal at position " + iValue; } iValue++; }; for (iFormat = 0; iFormat < format.length; iFormat++) { if (literal) { if (format.charAt(iFormat) === "'" && !lookAhead("'")) { literal = false; } else { checkLiteral(); } } else { switch (format.charAt(iFormat)) { case "d": day = getNumber("d"); break; case "D": getName("D", dayNamesShort, dayNames); break; case "o": doy = getNumber("o"); break; case "m": month = getNumber("m"); break; case "M": month = getName("M", monthNamesShort, monthNames); break; case "y": year = getNumber("y"); break; case "@": date = new Date(getNumber("@")); year = date.getFullYear(); month = date.getMonth() + 1; day = date.getDate(); break; case "!": date = new Date((getNumber("!") - this._ticksTo1970) / 10000); year = date.getFullYear(); month = date.getMonth() + 1; day = date.getDate(); break; case "'": if (lookAhead("'")){ checkLiteral(); } else { literal = true; } break; default: checkLiteral(); } } } if (iValue < value.length){ extra = value.substr(iValue); if (!/^\s+/.test(extra)) { throw "Extra/unparsed characters found in date: " + extra; } } if (year === -1) { year = new Date().getFullYear(); } else if (year < 100) { year += new Date().getFullYear() - new Date().getFullYear() % 100 + (year <= shortYearCutoff ? 0 : -100); } if (doy > -1) { month = 1; day = doy; do { dim = this._getDaysInMonth(year, month - 1); if (day <= dim) { break; } month++; day -= dim; } while (true); } date = this._daylightSavingAdjust(new Date(year, month - 1, day)); if (date.getFullYear() !== year || date.getMonth() + 1 !== month || date.getDate() !== day) { throw "Invalid date"; // E.g. 31/02/00 } return date; }, /* Standard date formats. */ ATOM: "yy-mm-dd", // RFC 3339 (ISO 8601) COOKIE: "D, dd M yy", ISO_8601: "yy-mm-dd", RFC_822: "D, d M y", RFC_850: "DD, dd-M-y", RFC_1036: "D, d M y", RFC_1123: "D, d M yy", RFC_2822: "D, d M yy", RSS: "D, d M y", // RFC 822 TICKS: "!", TIMESTAMP: "@", W3C: "yy-mm-dd", // ISO 8601 _ticksTo1970: (((1970 - 1) * 365 + Math.floor(1970 / 4) - Math.floor(1970 / 100) + Math.floor(1970 / 400)) * 24 * 60 * 60 * 10000000), /* Format a date object into a string value. * The format can be combinations of the following: * d - day of month (no leading zero) * dd - day of month (two digit) * o - day of year (no leading zeros) * oo - day of year (three digit) * D - day name short * DD - day name long * m - month of year (no leading zero) * mm - month of year (two digit) * M - month name short * MM - month name long * y - year (two digit) * yy - year (four digit) * @ - Unix timestamp (ms since 01/01/1970) * ! - Windows ticks (100ns since 01/01/0001) * "..." - literal text * '' - single quote * * @param format string - the desired format of the date * @param date Date - the date value to format * @param settings Object - attributes include: * dayNamesShort string[7] - abbreviated names of the days from Sunday (optional) * dayNames string[7] - names of the days from Sunday (optional) * monthNamesShort string[12] - abbreviated names of the months (optional) * monthNames string[12] - names of the months (optional) * @return string - the date in the above format */ formatDate: function (format, date, settings) { if (!date) { return ""; } var iFormat, dayNamesShort = (settings ? settings.dayNamesShort : null) || this._defaults.dayNamesShort, dayNames = (settings ? settings.dayNames : null) || this._defaults.dayNames, monthNamesShort = (settings ? settings.monthNamesShort : null) || this._defaults.monthNamesShort, monthNames = (settings ? settings.monthNames : null) || this._defaults.monthNames, // Check whether a format character is doubled lookAhead = function(match) { var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match); if (matches) { iFormat++; } return matches; }, // Format a number, with leading zero if necessary formatNumber = function(match, value, len) { var num = "" + value; if (lookAhead(match)) { while (num.length < len) { num = "0" + num; } } return num; }, // Format a name, short or long as requested formatName = function(match, value, shortNames, longNames) { return (lookAhead(match) ? longNames[value] : shortNames[value]); }, output = "", literal = false; if (date) { for (iFormat = 0; iFormat < format.length; iFormat++) { if (literal) { if (format.charAt(iFormat) === "'" && !lookAhead("'")) { literal = false; } else { output += format.charAt(iFormat); } } else { switch (format.charAt(iFormat)) { case "d": output += formatNumber("d", date.getDate(), 2); break; case "D": output += formatName("D", date.getDay(), dayNamesShort, dayNames); break; case "o": output += formatNumber("o", Math.round((new Date(date.getFullYear(), date.getMonth(), date.getDate()).getTime() - new Date(date.getFullYear(), 0, 0).getTime()) / 86400000), 3); break; case "m": output += formatNumber("m", date.getMonth() + 1, 2); break; case "M": output += formatName("M", date.getMonth(), monthNamesShort, monthNames); break; case "y": output += (lookAhead("y") ? date.getFullYear() : (date.getYear() % 100 < 10 ? "0" : "") + date.getYear() % 100); break; case "@": output += date.getTime(); break; case "!": output += date.getTime() * 10000 + this._ticksTo1970; break; case "'": if (lookAhead("'")) { output += "'"; } else { literal = true; } break; default: output += format.charAt(iFormat); } } } } return output; }, /* Extract all possible characters from the date format. */ _possibleChars: function (format) { var iFormat, chars = "", literal = false, // Check whether a format character is doubled lookAhead = function(match) { var matches = (iFormat + 1 < format.length && format.charAt(iFormat + 1) === match); if (matches) { iFormat++; } return matches; }; for (iFormat = 0; iFormat < format.length; iFormat++) { if (literal) { if (format.charAt(iFormat) === "'" && !lookAhead("'")) { literal = false; } else { chars += format.charAt(iFormat); } } else { switch (format.charAt(iFormat)) { case "d": case "m": case "y": case "@": chars += "0123456789"; break; case "D": case "M": return null; // Accept anything case "'": if (lookAhead("'")) { chars += "'"; } else { literal = true; } break; default: chars += format.charAt(iFormat); } } } return chars; }, /* Get a setting value, defaulting if necessary. */ _get: function(inst, name) { return inst.settings[name] !== undefined ? inst.settings[name] : this._defaults[name]; }, /* Parse existing date and initialise date picker. */ _setDateFromField: function(inst, noDefault) { if (inst.input.val() === inst.lastVal) { return; } var dateFormat = this._get(inst, "dateFormat"), dates = inst.lastVal = inst.input ? inst.input.val() : null, defaultDate = this._getDefaultDate(inst), date = defaultDate, settings = this._getFormatConfig(inst); try { date = this.parseDate(dateFormat, dates, settings) || defaultDate; } catch (event) { dates = (noDefault ? "" : dates); } inst.selectedDay = date.getDate(); inst.drawMonth = inst.selectedMonth = date.getMonth(); inst.drawYear = inst.selectedYear = date.getFullYear(); inst.currentDay = (dates ? date.getDate() : 0); inst.currentMonth = (dates ? date.getMonth() : 0); inst.currentYear = (dates ? date.getFullYear() : 0); this._adjustInstDate(inst); }, /* Retrieve the default date shown on opening. */ _getDefaultDate: function(inst) { return this._restrictMinMax(inst, this._determineDate(inst, this._get(inst, "defaultDate"), new Date())); }, /* A date may be specified as an exact value or a relative one. */ _determineDate: function(inst, date, defaultDate) { var offsetNumeric = function(offset) { var date = new Date(); date.setDate(date.getDate() + offset); return date; }, offsetString = function(offset) { try { return $.datepicker.parseDate($.datepicker._get(inst, "dateFormat"), offset, $.datepicker._getFormatConfig(inst)); } catch (e) { // Ignore } var date = (offset.toLowerCase().match(/^c/) ? $.datepicker._getDate(inst) : null) || new Date(), year = date.getFullYear(), month = date.getMonth(), day = date.getDate(), pattern = /([+\-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g, matches = pattern.exec(offset); while (matches) { switch (matches[2] || "d") { case "d" : case "D" : day += parseInt(matches[1],10); break; case "w" : case "W" : day += parseInt(matches[1],10) * 7; break; case "m" : case "M" : month += parseInt(matches[1],10); day = Math.min(day, $.datepicker._getDaysInMonth(year, month)); break; case "y": case "Y" : year += parseInt(matches[1],10); day = Math.min(day, $.datepicker._getDaysInMonth(year, month)); break; } matches = pattern.exec(offset); } return new Date(year, month, day); }, newDate = (date == null || date === "" ? defaultDate : (typeof date === "string" ? offsetString(date) : (typeof date === "number" ? (isNaN(date) ? defaultDate : offsetNumeric(date)) : new Date(date.getTime())))); newDate = (newDate && newDate.toString() === "Invalid Date" ? defaultDate : newDate); if (newDate) { newDate.setHours(0); newDate.setMinutes(0); newDate.setSeconds(0); newDate.setMilliseconds(0); } return this._daylightSavingAdjust(newDate); }, /* Handle switch to/from daylight saving. * Hours may be non-zero on daylight saving cut-over: * > 12 when midnight changeover, but then cannot generate * midnight datetime, so jump to 1AM, otherwise reset. * @param date (Date) the date to check * @return (Date) the corrected date */ _daylightSavingAdjust: function(date) { if (!date) { return null; } date.setHours(date.getHours() > 12 ? date.getHours() + 2 : 0); return date; }, /* Set the date(s) directly. */ _setDate: function(inst, date, noChange) { var clear = !date, origMonth = inst.selectedMonth, origYear = inst.selectedYear, newDate = this._restrictMinMax(inst, this._determineDate(inst, date, new Date())); inst.selectedDay = inst.currentDay = newDate.getDate(); inst.drawMonth = inst.selectedMonth = inst.currentMonth = newDate.getMonth(); inst.drawYear = inst.selectedYear = inst.currentYear = newDate.getFullYear(); if ((origMonth !== inst.selectedMonth || origYear !== inst.selectedYear) && !noChange) { this._notifyChange(inst); } this._adjustInstDate(inst); if (inst.input) { inst.input.val(clear ? "" : this._formatDate(inst)); } }, /* Retrieve the date(s) directly. */ _getDate: function(inst) { var startDate = (!inst.currentYear || (inst.input && inst.input.val() === "") ? null : this._daylightSavingAdjust(new Date( inst.currentYear, inst.currentMonth, inst.currentDay))); return startDate; }, /* Attach the onxxx handlers. These are declared statically so * they work with static code transformers like Caja. */ _attachHandlers: function(inst) { var stepMonths = this._get(inst, "stepMonths"), id = "#" + inst.id.replace( /\\\\/g, "\\" ); inst.dpDiv.find("[data-handler]").map(function () { var handler = { prev: function () { $.datepicker._adjustDate(id, -stepMonths, "M"); }, next: function () { $.datepicker._adjustDate(id, +stepMonths, "M"); }, hide: function () { $.datepicker._hideDatepicker(); }, today: function () { $.datepicker._gotoToday(id); }, selectDay: function () { $.datepicker._selectDay(id, +this.getAttribute("data-month"), +this.getAttribute("data-year"), this); return false; }, selectMonth: function () { $.datepicker._selectMonthYear(id, this, "M"); return false; }, selectYear: function () { $.datepicker._selectMonthYear(id, this, "Y"); return false; } }; $(this).bind(this.getAttribute("data-event"), handler[this.getAttribute("data-handler")]); }); }, /* Generate the HTML for the current state of the date picker. */ _generateHTML: function(inst) { var maxDraw, prevText, prev, nextText, next, currentText, gotoDate, controls, buttonPanel, firstDay, showWeek, dayNames, dayNamesMin, monthNames, monthNamesShort, beforeShowDay, showOtherMonths, selectOtherMonths, defaultDate, html, dow, row, group, col, selectedDate, cornerClass, calender, thead, day, daysInMonth, leadDays, curRows, numRows, printDate, dRow, tbody, daySettings, otherMonth, unselectable, tempDate = new Date(), today = this._daylightSavingAdjust( new Date(tempDate.getFullYear(), tempDate.getMonth(), tempDate.getDate())), // clear time isRTL = this._get(inst, "isRTL"), showButtonPanel = this._get(inst, "showButtonPanel"), hideIfNoPrevNext = this._get(inst, "hideIfNoPrevNext"), navigationAsDateFormat = this._get(inst, "navigationAsDateFormat"), numMonths = this._getNumberOfMonths(inst), showCurrentAtPos = this._get(inst, "showCurrentAtPos"), stepMonths = this._get(inst, "stepMonths"), isMultiMonth = (numMonths[0] !== 1 || numMonths[1] !== 1), currentDate = this._daylightSavingAdjust((!inst.currentDay ? new Date(9999, 9, 9) : new Date(inst.currentYear, inst.currentMonth, inst.currentDay))), minDate = this._getMinMaxDate(inst, "min"), maxDate = this._getMinMaxDate(inst, "max"), drawMonth = inst.drawMonth - showCurrentAtPos, drawYear = inst.drawYear; if (drawMonth < 0) { drawMonth += 12; drawYear--; } if (maxDate) { maxDraw = this._daylightSavingAdjust(new Date(maxDate.getFullYear(), maxDate.getMonth() - (numMonths[0] * numMonths[1]) + 1, maxDate.getDate())); maxDraw = (minDate && maxDraw < minDate ? minDate : maxDraw); while (this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1)) > maxDraw) { drawMonth--; if (drawMonth < 0) { drawMonth = 11; drawYear--; } } } inst.drawMonth = drawMonth; inst.drawYear = drawYear; prevText = this._get(inst, "prevText"); prevText = (!navigationAsDateFormat ? prevText : this.formatDate(prevText, this._daylightSavingAdjust(new Date(drawYear, drawMonth - stepMonths, 1)), this._getFormatConfig(inst))); prev = (this._canAdjustMonth(inst, -1, drawYear, drawMonth) ? "<a class='ui-datepicker-prev ui-corner-all' data-handler='prev' data-event='click'" + " title='" + prevText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w") + "'>" + prevText + "</span></a>" : (hideIfNoPrevNext ? "" : "<a class='ui-datepicker-prev ui-corner-all ui-state-disabled' title='"+ prevText +"'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "e" : "w") + "'>" + prevText + "</span></a>")); nextText = this._get(inst, "nextText"); nextText = (!navigationAsDateFormat ? nextText : this.formatDate(nextText, this._daylightSavingAdjust(new Date(drawYear, drawMonth + stepMonths, 1)), this._getFormatConfig(inst))); next = (this._canAdjustMonth(inst, +1, drawYear, drawMonth) ? "<a class='ui-datepicker-next ui-corner-all' data-handler='next' data-event='click'" + " title='" + nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e") + "'>" + nextText + "</span></a>" : (hideIfNoPrevNext ? "" : "<a class='ui-datepicker-next ui-corner-all ui-state-disabled' title='"+ nextText + "'><span class='ui-icon ui-icon-circle-triangle-" + ( isRTL ? "w" : "e") + "'>" + nextText + "</span></a>")); currentText = this._get(inst, "currentText"); gotoDate = (this._get(inst, "gotoCurrent") && inst.currentDay ? currentDate : today); currentText = (!navigationAsDateFormat ? currentText : this.formatDate(currentText, gotoDate, this._getFormatConfig(inst))); controls = (!inst.inline ? "<button type='button' class='ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all' data-handler='hide' data-event='click'>" + this._get(inst, "closeText") + "</button>" : ""); buttonPanel = (showButtonPanel) ? "<div class='ui-datepicker-buttonpane ui-widget-content'>" + (isRTL ? controls : "") + (this._isInRange(inst, gotoDate) ? "<button type='button' class='ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all' data-handler='today' data-event='click'" + ">" + currentText + "</button>" : "") + (isRTL ? "" : controls) + "</div>" : ""; firstDay = parseInt(this._get(inst, "firstDay"),10); firstDay = (isNaN(firstDay) ? 0 : firstDay); showWeek = this._get(inst, "showWeek"); dayNames = this._get(inst, "dayNames"); dayNamesMin = this._get(inst, "dayNamesMin"); monthNames = this._get(inst, "monthNames"); monthNamesShort = this._get(inst, "monthNamesShort"); beforeShowDay = this._get(inst, "beforeShowDay"); showOtherMonths = this._get(inst, "showOtherMonths"); selectOtherMonths = this._get(inst, "selectOtherMonths"); defaultDate = this._getDefaultDate(inst); html = ""; dow; for (row = 0; row < numMonths[0]; row++) { group = ""; this.maxRows = 4; for (col = 0; col < numMonths[1]; col++) { selectedDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, inst.selectedDay)); cornerClass = " ui-corner-all"; calender = ""; if (isMultiMonth) { calender += "<div class='ui-datepicker-group"; if (numMonths[1] > 1) { switch (col) { case 0: calender += " ui-datepicker-group-first"; cornerClass = " ui-corner-" + (isRTL ? "right" : "left"); break; case numMonths[1]-1: calender += " ui-datepicker-group-last"; cornerClass = " ui-corner-" + (isRTL ? "left" : "right"); break; default: calender += " ui-datepicker-group-middle"; cornerClass = ""; break; } } calender += "'>"; } calender += "<div class='ui-datepicker-header ui-widget-header ui-helper-clearfix" + cornerClass + "'>" + (/all|left/.test(cornerClass) && row === 0 ? (isRTL ? next : prev) : "") + (/all|right/.test(cornerClass) && row === 0 ? (isRTL ? prev : next) : "") + this._generateMonthYearHeader(inst, drawMonth, drawYear, minDate, maxDate, row > 0 || col > 0, monthNames, monthNamesShort) + // draw month headers "</div><table class='ui-datepicker-calendar'><thead>" + "<tr>"; thead = (showWeek ? "<th class='ui-datepicker-week-col'>" + this._get(inst, "weekHeader") + "</th>" : ""); for (dow = 0; dow < 7; dow++) { // days of the week day = (dow + firstDay) % 7; thead += "<th scope='col'" + ((dow + firstDay + 6) % 7 >= 5 ? " class='ui-datepicker-week-end'" : "") + ">" + "<span title='" + dayNames[day] + "'>" + dayNamesMin[day] + "</span></th>"; } calender += thead + "</tr></thead><tbody>"; daysInMonth = this._getDaysInMonth(drawYear, drawMonth); if (drawYear === inst.selectedYear && drawMonth === inst.selectedMonth) { inst.selectedDay = Math.min(inst.selectedDay, daysInMonth); } leadDays = (this._getFirstDayOfMonth(drawYear, drawMonth) - firstDay + 7) % 7; curRows = Math.ceil((leadDays + daysInMonth) / 7); // calculate the number of rows to generate numRows = (isMultiMonth ? this.maxRows > curRows ? this.maxRows : curRows : curRows); //If multiple months, use the higher number of rows (see #7043) this.maxRows = numRows; printDate = this._daylightSavingAdjust(new Date(drawYear, drawMonth, 1 - leadDays)); for (dRow = 0; dRow < numRows; dRow++) { // create date picker rows calender += "<tr>"; tbody = (!showWeek ? "" : "<td class='ui-datepicker-week-col'>" + this._get(inst, "calculateWeek")(printDate) + "</td>"); for (dow = 0; dow < 7; dow++) { // create date picker days daySettings = (beforeShowDay ? beforeShowDay.apply((inst.input ? inst.input[0] : null), [printDate]) : [true, ""]); otherMonth = (printDate.getMonth() !== drawMonth); unselectable = (otherMonth && !selectOtherMonths) || !daySettings[0] || (minDate && printDate < minDate) || (maxDate && printDate > maxDate); tbody += "<td class='" + ((dow + firstDay + 6) % 7 >= 5 ? " ui-datepicker-week-end" : "") + // highlight weekends (otherMonth ? " ui-datepicker-other-month" : "") + // highlight days from other months ((printDate.getTime() === selectedDate.getTime() && drawMonth === inst.selectedMonth && inst._keyEvent) || // user pressed key (defaultDate.getTime() === printDate.getTime() && defaultDate.getTime() === selectedDate.getTime()) ? // or defaultDate is current printedDate and defaultDate is selectedDate " " + this._dayOverClass : "") + // highlight selected day (unselectable ? " " + this._unselectableClass + " ui-state-disabled": "") + // highlight unselectable days (otherMonth && !showOtherMonths ? "" : " " + daySettings[1] + // highlight custom dates (printDate.getTime() === currentDate.getTime() ? " " + this._currentClass : "") + // highlight selected day (printDate.getTime() === today.getTime() ? " ui-datepicker-today" : "")) + "'" + // highlight today (if different) ((!otherMonth || showOtherMonths) && daySettings[2] ? " title='" + daySettings[2].replace(/'/g, "&#39;") + "'" : "") + // cell title (unselectable ? "" : " data-handler='selectDay' data-event='click' data-month='" + printDate.getMonth() + "' data-year='" + printDate.getFullYear() + "'") + ">" + // actions (otherMonth && !showOtherMonths ? "&#xa0;" : // display for other months (unselectable ? "<span class='ui-state-default'>" + printDate.getDate() + "</span>" : "<a class='ui-state-default" + (printDate.getTime() === today.getTime() ? " ui-state-highlight" : "") + (printDate.getTime() === currentDate.getTime() ? " ui-state-active" : "") + // highlight selected day (otherMonth ? " ui-priority-secondary" : "") + // distinguish dates from other months "' href='#'>" + printDate.getDate() + "</a>")) + "</td>"; // display selectable date printDate.setDate(printDate.getDate() + 1); printDate = this._daylightSavingAdjust(printDate); } calender += tbody + "</tr>"; } drawMonth++; if (drawMonth > 11) { drawMonth = 0; drawYear++; } calender += "</tbody></table>" + (isMultiMonth ? "</div>" + ((numMonths[0] > 0 && col === numMonths[1]-1) ? "<div class='ui-datepicker-row-break'></div>" : "") : ""); group += calender; } html += group; } html += buttonPanel; inst._keyEvent = false; return html; }, /* Generate the month and year header. */ _generateMonthYearHeader: function(inst, drawMonth, drawYear, minDate, maxDate, secondary, monthNames, monthNamesShort) { var inMinYear, inMaxYear, month, years, thisYear, determineYear, year, endYear, changeMonth = this._get(inst, "changeMonth"), changeYear = this._get(inst, "changeYear"), showMonthAfterYear = this._get(inst, "showMonthAfterYear"), html = "<div class='ui-datepicker-title'>", monthHtml = ""; // month selection if (secondary || !changeMonth) { monthHtml += "<span class='ui-datepicker-month'>" + monthNames[drawMonth] + "</span>"; } else { inMinYear = (minDate && minDate.getFullYear() === drawYear); inMaxYear = (maxDate && maxDate.getFullYear() === drawYear); monthHtml += "<select class='ui-datepicker-month' data-handler='selectMonth' data-event='change'>"; for ( month = 0; month < 12; month++) { if ((!inMinYear || month >= minDate.getMonth()) && (!inMaxYear || month <= maxDate.getMonth())) { monthHtml += "<option value='" + month + "'" + (month === drawMonth ? " selected='selected'" : "") + ">" + monthNamesShort[month] + "</option>"; } } monthHtml += "</select>"; } if (!showMonthAfterYear) { html += monthHtml + (secondary || !(changeMonth && changeYear) ? "&#xa0;" : ""); } // year selection if ( !inst.yearshtml ) { inst.yearshtml = ""; if (secondary || !changeYear) { html += "<span class='ui-datepicker-year'>" + drawYear + "</span>"; } else { // determine range of years to display years = this._get(inst, "yearRange").split(":"); thisYear = new Date().getFullYear(); determineYear = function(value) { var year = (value.match(/c[+\-].*/) ? drawYear + parseInt(value.substring(1), 10) : (value.match(/[+\-].*/) ? thisYear + parseInt(value, 10) : parseInt(value, 10))); return (isNaN(year) ? thisYear : year); }; year = determineYear(years[0]); endYear = Math.max(year, determineYear(years[1] || "")); year = (minDate ? Math.max(year, minDate.getFullYear()) : year); endYear = (maxDate ? Math.min(endYear, maxDate.getFullYear()) : endYear); inst.yearshtml += "<select class='ui-datepicker-year' data-handler='selectYear' data-event='change'>"; for (; year <= endYear; year++) { inst.yearshtml += "<option value='" + year + "'" + (year === drawYear ? " selected='selected'" : "") + ">" + year + "</option>"; } inst.yearshtml += "</select>"; html += inst.yearshtml; inst.yearshtml = null; } } html += this._get(inst, "yearSuffix"); if (showMonthAfterYear) { html += (secondary || !(changeMonth && changeYear) ? "&#xa0;" : "") + monthHtml; } html += "</div>"; // Close datepicker_header return html; }, /* Adjust one of the date sub-fields. */ _adjustInstDate: function(inst, offset, period) { var year = inst.drawYear + (period === "Y" ? offset : 0), month = inst.drawMonth + (period === "M" ? offset : 0), day = Math.min(inst.selectedDay, this._getDaysInMonth(year, month)) + (period === "D" ? offset : 0), date = this._restrictMinMax(inst, this._daylightSavingAdjust(new Date(year, month, day))); inst.selectedDay = date.getDate(); inst.drawMonth = inst.selectedMonth = date.getMonth(); inst.drawYear = inst.selectedYear = date.getFullYear(); if (period === "M" || period === "Y") { this._notifyChange(inst); } }, /* Ensure a date is within any min/max bounds. */ _restrictMinMax: function(inst, date) { var minDate = this._getMinMaxDate(inst, "min"), maxDate = this._getMinMaxDate(inst, "max"), newDate = (minDate && date < minDate ? minDate : date); return (maxDate && newDate > maxDate ? maxDate : newDate); }, /* Notify change of month/year. */ _notifyChange: function(inst) { var onChange = this._get(inst, "onChangeMonthYear"); if (onChange) { onChange.apply((inst.input ? inst.input[0] : null), [inst.selectedYear, inst.selectedMonth + 1, inst]); } }, /* Determine the number of months to show. */ _getNumberOfMonths: function(inst) { var numMonths = this._get(inst, "numberOfMonths"); return (numMonths == null ? [1, 1] : (typeof numMonths === "number" ? [1, numMonths] : numMonths)); }, /* Determine the current maximum date - ensure no time components are set. */ _getMinMaxDate: function(inst, minMax) { return this._determineDate(inst, this._get(inst, minMax + "Date"), null); }, /* Find the number of days in a given month. */ _getDaysInMonth: function(year, month) { return 32 - this._daylightSavingAdjust(new Date(year, month, 32)).getDate(); }, /* Find the day of the week of the first of a month. */ _getFirstDayOfMonth: function(year, month) { return new Date(year, month, 1).getDay(); }, /* Determines if we should allow a "next/prev" month display change. */ _canAdjustMonth: function(inst, offset, curYear, curMonth) { var numMonths = this._getNumberOfMonths(inst), date = this._daylightSavingAdjust(new Date(curYear, curMonth + (offset < 0 ? offset : numMonths[0] * numMonths[1]), 1)); if (offset < 0) { date.setDate(this._getDaysInMonth(date.getFullYear(), date.getMonth())); } return this._isInRange(inst, date); }, /* Is the given date in the accepted range? */ _isInRange: function(inst, date) { var yearSplit, currentYear, minDate = this._getMinMaxDate(inst, "min"), maxDate = this._getMinMaxDate(inst, "max"), minYear = null, maxYear = null, years = this._get(inst, "yearRange"); if (years){ yearSplit = years.split(":"); currentYear = new Date().getFullYear(); minYear = parseInt(yearSplit[0], 10); maxYear = parseInt(yearSplit[1], 10); if ( yearSplit[0].match(/[+\-].*/) ) { minYear += currentYear; } if ( yearSplit[1].match(/[+\-].*/) ) { maxYear += currentYear; } } return ((!minDate || date.getTime() >= minDate.getTime()) && (!maxDate || date.getTime() <= maxDate.getTime()) && (!minYear || date.getFullYear() >= minYear) && (!maxYear || date.getFullYear() <= maxYear)); }, /* Provide the configuration settings for formatting/parsing. */ _getFormatConfig: function(inst) { var shortYearCutoff = this._get(inst, "shortYearCutoff"); shortYearCutoff = (typeof shortYearCutoff !== "string" ? shortYearCutoff : new Date().getFullYear() % 100 + parseInt(shortYearCutoff, 10)); return {shortYearCutoff: shortYearCutoff, dayNamesShort: this._get(inst, "dayNamesShort"), dayNames: this._get(inst, "dayNames"), monthNamesShort: this._get(inst, "monthNamesShort"), monthNames: this._get(inst, "monthNames")}; }, /* Format the given date for display. */ _formatDate: function(inst, day, month, year) { if (!day) { inst.currentDay = inst.selectedDay; inst.currentMonth = inst.selectedMonth; inst.currentYear = inst.selectedYear; } var date = (day ? (typeof day === "object" ? day : this._daylightSavingAdjust(new Date(year, month, day))) : this._daylightSavingAdjust(new Date(inst.currentYear, inst.currentMonth, inst.currentDay))); return this.formatDate(this._get(inst, "dateFormat"), date, this._getFormatConfig(inst)); } }); /* * Bind hover events for datepicker elements. * Done via delegate so the binding only occurs once in the lifetime of the parent div. * Global datepicker_instActive, set by _updateDatepicker allows the handlers to find their way back to the active picker. */ function datepicker_bindHover(dpDiv) { var selector = "button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a"; return dpDiv.delegate(selector, "mouseout", function() { $(this).removeClass("ui-state-hover"); if (this.className.indexOf("ui-datepicker-prev") !== -1) { $(this).removeClass("ui-datepicker-prev-hover"); } if (this.className.indexOf("ui-datepicker-next") !== -1) { $(this).removeClass("ui-datepicker-next-hover"); } }) .delegate( selector, "mouseover", datepicker_handleMouseover ); } function datepicker_handleMouseover() { if (!$.datepicker._isDisabledDatepicker( datepicker_instActive.inline? datepicker_instActive.dpDiv.parent()[0] : datepicker_instActive.input[0])) { $(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover"); $(this).addClass("ui-state-hover"); if (this.className.indexOf("ui-datepicker-prev") !== -1) { $(this).addClass("ui-datepicker-prev-hover"); } if (this.className.indexOf("ui-datepicker-next") !== -1) { $(this).addClass("ui-datepicker-next-hover"); } } } /* jQuery extend now ignores nulls! */ function datepicker_extendRemove(target, props) { $.extend(target, props); for (var name in props) { if (props[name] == null) { target[name] = props[name]; } } return target; } /* Invoke the datepicker functionality. @param options string - a command, optionally followed by additional parameters or Object - settings for attaching new datepicker functionality @return jQuery object */ $.fn.datepicker = function(options){ /* Verify an empty collection wasn't passed - Fixes #6976 */ if ( !this.length ) { return this; } /* Initialise the date picker. */ if (!$.datepicker.initialized) { $(document).mousedown($.datepicker._checkExternalClick); $.datepicker.initialized = true; } /* Append datepicker main container to body if not exist. */ if ($("#"+$.datepicker._mainDivId).length === 0) { $("body").append($.datepicker.dpDiv); } var otherArgs = Array.prototype.slice.call(arguments, 1); if (typeof options === "string" && (options === "isDisabled" || options === "getDate" || options === "widget")) { return $.datepicker["_" + options + "Datepicker"]. apply($.datepicker, [this[0]].concat(otherArgs)); } if (options === "option" && arguments.length === 2 && typeof arguments[1] === "string") { return $.datepicker["_" + options + "Datepicker"]. apply($.datepicker, [this[0]].concat(otherArgs)); } return this.each(function() { typeof options === "string" ? $.datepicker["_" + options + "Datepicker"]. apply($.datepicker, [this].concat(otherArgs)) : $.datepicker._attachDatepicker(this, options); }); }; $.datepicker = new Datepicker(); // singleton instance $.datepicker.initialized = false; $.datepicker.uuid = new Date().getTime(); $.datepicker.version = "1.11.4"; var datepicker = $.datepicker; }));
Java
#!/bin/bash #This program calculates the core count for each result row and updates the #results. This is a work around due to a current limitation of #HdpHBencher/HsBencher. #Author: Blair Archibald function usage { echo "Usage: processResults.sh <resultsFile>" exit -1 } test -z $1 && usage resultsFile="$1" #Find the results column flags=$(awk -F, ' NR == 1 { for (i = 1; i <= NF; i++) { if ($i == "RUNTIME_FLAGS") { cid = i; } } } NR > 1 { if (cid > 0) { print $cid } } ' $resultsFile) #Get the thread count and the processor count. j=0 declare -a Lines while read i; do procs=$(echo $i | egrep -o "numProcs: [0-9]+" | egrep -o "[0-9]+") threads=$(echo $i | egrep -o "numThreads: [0-9]+" | egrep -o "[0-9]+") cores=$(($procs * $threads)) Lines[j]=$cores let "j += 1" done <<< "$flags" #Could also use sed or awk here. line=-1 tmp=$(mktemp) while read l; do #First line we add a new header if [[ $line == -1 ]]; then echo "$l,NUM_CORES" > $tmp else echo "$l,${Lines[$line]}" >> $tmp fi let "line += 1" done < "$resultsFile" cp $resultsFile ${resultsFile}.bak cp $tmp $resultsFile
Java
var sbModule = angular.module('sbServices', ['ngResource']); sbModule.factory('App', function($resource) { return $resource('/api/v1/app/:name', { q: '' }, { get: { method: 'GET' }, //isArray: false }, query: { method: 'GET'} //, params: { q: '' }//, isArray: false } }); });
Java
// Copyright 2015 The Cobalt Authors. All Rights Reserved. // // 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. #ifndef COBALT_BINDINGS_TESTING_GLOBAL_INTERFACE_PARENT_H_ #define COBALT_BINDINGS_TESTING_GLOBAL_INTERFACE_PARENT_H_ #include "cobalt/script/wrappable.h" namespace cobalt { namespace bindings { namespace testing { class GlobalInterfaceParent : public script::Wrappable { public: virtual void ParentOperation() {} DEFINE_WRAPPABLE_TYPE(GlobalInterfaceParent); }; } // namespace testing } // namespace bindings } // namespace cobalt #endif // COBALT_BINDINGS_TESTING_GLOBAL_INTERFACE_PARENT_H_
Java
# coding: utf-8 # This file is part of Thomas Aquinas. # # Thomas Aquinas is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # Thomas Aquinas is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with Thomas Aquinas. If not, see <http://www.gnu.org/licenses/>. # # veni, Sancte Spiritus. import ctypes import logging
Java
/*- * Copyright (c) 2006 The FreeBSD Project * 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. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND 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 THE AUTHOR OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include <sys/cdefs.h> __FBSDID("$FreeBSD: releng/9.3/sys/dev/tdfx/tdfx_linux.c 224778 2011-08-11 12:30:23Z rwatson $"); #include <sys/param.h> #include <sys/capability.h> #include <sys/file.h> #include <sys/kernel.h> #include <sys/module.h> #include <sys/proc.h> #include <sys/systm.h> #include <dev/tdfx/tdfx_linux.h> LINUX_IOCTL_SET(tdfx, LINUX_IOCTL_TDFX_MIN, LINUX_IOCTL_TDFX_MAX); /* * Linux emulation IOCTL for /dev/tdfx */ static int linux_ioctl_tdfx(struct thread *td, struct linux_ioctl_args* args) { int error = 0; u_long cmd = args->cmd & 0xffff; /* The structure passed to ioctl has two shorts, one int and one void*. */ char d_pio[2*sizeof(short) + sizeof(int) + sizeof(void*)]; struct file *fp; if ((error = fget(td, args->fd, CAP_IOCTL, &fp)) != 0) return (error); /* We simply copy the data and send it right to ioctl */ copyin((caddr_t)args->arg, &d_pio, sizeof(d_pio)); error = fo_ioctl(fp, cmd, (caddr_t)&d_pio, td->td_ucred, td); fdrop(fp, td); return error; } static int tdfx_linux_modevent(struct module *mod __unused, int what, void *arg __unused) { switch (what) { case MOD_LOAD: case MOD_UNLOAD: return (0); } return (EOPNOTSUPP); } static moduledata_t tdfx_linux_mod = { "tdfx_linux", tdfx_linux_modevent, 0 }; /* As in SYSCALL_MODULE */ DECLARE_MODULE(tdfx_linux, tdfx_linux_mod, SI_SUB_DRIVERS, SI_ORDER_MIDDLE); MODULE_VERSION(tdfx_linux, 1); MODULE_DEPEND(tdfx_linux, tdfx, 1, 1, 1); MODULE_DEPEND(tdfx_linux, linux, 1, 1, 1);
Java
module Mistral.Schedule.Value ( Env , groupEnv , lookupEnv , bindType , bindValue , bindParam , NodeTags , bindNode , lookupTag, lookupTags , Value(..) , SNetwork(..), mapWhen, modifyNode , SNode(..), addTask , STask(..), hasConstraints , SConstraint(..), target ) where import Mistral.TypeCheck.AST import Mistral.Utils.PP import Mistral.Utils.Panic ( panic ) import Mistral.Utils.SCC ( Group ) import qualified Data.Foldable as Fold import qualified Data.Map as Map import Data.Monoid ( Monoid(..) ) import qualified Data.Set as Set sPanic :: [String] -> a sPanic = panic "Mistral.Schedule.Value" -- Environments ---------------------------------------------------------------- data Env = Env { envValues :: Map.Map Name Value , envTypes :: Map.Map TParam Type } instance Monoid Env where mempty = Env { envValues = mempty, envTypes = mempty } mappend l r = mconcat [l,r] -- merge the two environments, preferring things from the left mconcat envs = Env { envValues = Map.unions (map envValues envs) , envTypes = Map.unions (map envTypes envs) } lookupEnv :: Name -> Env -> Value lookupEnv n env = case Map.lookup n (envValues env) of Just v -> v Nothing -> sPanic [ "no value for: " ++ pretty n ] bindType :: TParam -> Type -> Env -> Env bindType p ty env = env { envTypes = Map.insert p ty (envTypes env) } bindValue :: Name -> Value -> Env -> Env bindValue n v env = env { envValues = Map.insert n v (envValues env) } bindParam :: Param -> Value -> Env -> Env bindParam p v env = bindValue (pName p) v env groupEnv :: (a -> Env) -> (Group a -> Env) groupEnv = Fold.foldMap -- Node Tags ------------------------------------------------------------------- newtype NodeTags = NodeTags { getNodeTags :: Map.Map Atom (Set.Set Name) } instance Monoid NodeTags where mempty = NodeTags mempty mappend l r = mconcat [l,r] mconcat nts = NodeTags (Map.unionsWith Set.union (map getNodeTags nts)) bindNode :: SNode -> NodeTags bindNode sn = mempty { getNodeTags = foldl add mempty allTags } where name = snName sn allTags = [ (tag, Set.singleton name) | tag <- snTags sn ] add nodes (tag, s) = Map.insertWith Set.union tag s nodes -- | Try to resolve a single tag to set of Node names. lookupTag :: Atom -> NodeTags -> Set.Set Name lookupTag tag env = case Map.lookup tag (getNodeTags env) of Just nodes -> nodes Nothing -> Set.empty -- | Lookup the nodes that have all of the tags given. lookupTags :: [Atom] -> NodeTags -> [Name] lookupTags tags env | null tags = [] -- XXX maybe all nodes? | otherwise = Set.toList (foldl1 Set.intersection (map (`lookupTag` env) tags)) -- Values ---------------------------------------------------------------------- data Value = VTFun (Type -> Value) -- ^ Type abstractions | VFun (Value -> Value) -- ^ Value abstractions | VCon Name [Value] -- ^ Constructor use | VLit Literal -- ^ Literals | VSched [SNetwork] -- ^ Evaluted schedules | VTopo SNetwork -- ^ Nodes and links | VNode SNode -- ^ Nodes | VLink Link -- ^ Links | VTasks (NodeTags -> [STask]) | VTask STask instance Show Value where show val = case val of VTFun _ -> "<function>" VFun _ -> "<type-function>" VCon n vs -> "(" ++ unwords (pretty n : map show vs) ++ ")" VLit lit -> "(VLit " ++ show lit ++ ")" VSched nets -> show nets VTopo net -> show net VNode n -> show n VLink l -> show l VTasks _ -> "<tasks>" VTask t -> show t -- | Scheduling network. data SNetwork = SNetwork { snNodes :: [SNode] , snLinks :: [Link] } deriving (Show) instance Monoid SNetwork where mempty = SNetwork { snNodes = [] , snLinks = [] } mappend l r = SNetwork { snNodes = Fold.foldMap snNodes [l,r] , snLinks = Fold.foldMap snLinks [l,r] } mapWhen :: (a -> Bool) -> (a -> a) -> [a] -> [a] mapWhen p f = go where go as = case as of a:rest | p a -> f a : rest | otherwise -> a : go rest [] -> [] -- | Modify the first occurrence of node n. -- -- INVARIANT: This relies on the assumption that the renamer has given fresh -- names to all nodes. modifyNode :: Name -> (SNode -> SNode) -> (SNetwork -> SNetwork) modifyNode n f net = net { snNodes = mapWhen nameMatches f (snNodes net) } where nameMatches sn = snName sn == n data SNode = SNode { snName :: Name , snSpec :: Expr , snType :: Type , snTags :: [Atom] , snTasks :: [STask] } deriving (Show) addTask :: STask -> (SNode -> SNode) addTask task sn = sn { snTasks = task : snTasks sn } data STask = STask { stName :: Name , stTask :: Task , stTags :: [Atom] , stConstraints :: [SConstraint] } deriving (Show) hasConstraints :: STask -> Bool hasConstraints t = not (null (stConstraints t)) data SConstraint = SCOn Name -- ^ On this node deriving (Show) -- XXX This won't work for constraints that specify relative information like: -- "I need to be able to communicate with X" target :: SConstraint -> Name target (SCOn n) = n
Java
/* * 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. * * Jordan K. Hubbard * 29 August 1998 * * $FreeBSD: src/sys/boot/common/interp_backslash.c,v 1.4 1999/08/28 00:39:47 peter Exp $ * * Routine for doing backslash elimination. */ #include <stand.h> #include <string.h> #define DIGIT(x) (isdigit(x) ? (x) - '0' : islower(x) ? (x) + 10 - 'a' : (x) + 10 - 'A') /* * backslash: Return malloc'd copy of str with all standard "backslash * processing" done on it. Original can be free'd if desired. */ char * backslash(char *str) { /* * Remove backslashes from the strings. Turn \040 etc. into a single * character (we allow eight bit values). Currently NUL is not * allowed. * * Turn "\n" and "\t" into '\n' and '\t' characters. Etc. * */ char *new_str; int seenbs = 0; int i = 0; if ((new_str = strdup(str)) == NULL) return NULL; while (*str) { if (seenbs) { seenbs = 0; switch (*str) { case '\\': new_str[i++] = '\\'; str++; break; /* preserve backslashed quotes, dollar signs */ case '\'': case '"': case '$': new_str[i++] = '\\'; new_str[i++] = *str++; break; case 'b': new_str[i++] = '\b'; str++; break; case 'f': new_str[i++] = '\f'; str++; break; case 'r': new_str[i++] = '\r'; str++; break; case 'n': new_str[i++] = '\n'; str++; break; case 's': new_str[i++] = ' '; str++; break; case 't': new_str[i++] = '\t'; str++; break; case 'v': new_str[i++] = '\13'; str++; break; case 'z': str++; break; case '0': case '1': case '2': case '3': case '4': case '5': case '6': case '7': case '8': case '9': { char val; /* Three digit octal constant? */ if (*str >= '0' && *str <= '3' && *(str + 1) >= '0' && *(str + 1) <= '7' && *(str + 2) >= '0' && *(str + 2) <= '7') { val = (DIGIT(*str) << 6) + (DIGIT(*(str + 1)) << 3) + DIGIT(*(str + 2)); /* Allow null value if user really wants to shoot at feet, but beware! */ new_str[i++] = val; str += 3; break; } /* One or two digit hex constant? * If two are there they will both be taken. * Use \z to split them up if this is not wanted. */ if (*str == '0' && (*(str + 1) == 'x' || *(str + 1) == 'X') && isxdigit(*(str + 2))) { val = DIGIT(*(str + 2)); if (isxdigit(*(str + 3))) { val = (val << 4) + DIGIT(*(str + 3)); str += 4; } else str += 3; /* Yep, allow null value here too */ new_str[i++] = val; break; } } break; default: new_str[i++] = *str++; break; } } else { if (*str == '\\') { seenbs = 1; str++; } else new_str[i++] = *str++; } } if (seenbs) { /* * The final character was a '\'. Put it in as a single backslash. */ new_str[i++] = '\\'; } new_str[i] = '\0'; return new_str; }
Java
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to license@zend.com so we can send you a copy immediately. * * @category Zend * @package Zend_Validate * @subpackage UnitTests * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @version $Id: AllTests.php 24594 2012-01-05 21:27:01Z matthew $ */ if (!defined('PHPUnit_MAIN_METHOD')) { define('PHPUnit_MAIN_METHOD', 'Zend_Validate_Sitemap_AllTests::main'); } require_once 'Zend/Validate/Sitemap/ChangefreqTest.php'; require_once 'Zend/Validate/Sitemap/LastmodTest.php'; require_once 'Zend/Validate/Sitemap/LocTest.php'; require_once 'Zend/Validate/Sitemap/PriorityTest.php'; /** * @category Zend * @package Zend_Validate * @subpackage UnitTests * @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License * @group Zend_Validate * @group Zend_Validate_Sitemap */ class Zend_Validate_Sitemap_AllTests { public static function main() { PHPUnit_TextUI_TestRunner::run(self::suite()); } public static function suite() { $suite = new PHPUnit_Framework_TestSuite('Zend Framework - Zend_Validate_Sitemap'); $suite->addTestSuite('Zend_Validate_Sitemap_ChangefreqTest'); $suite->addTestSuite('Zend_Validate_Sitemap_LastmodTest'); $suite->addTestSuite('Zend_Validate_Sitemap_LocTest'); $suite->addTestSuite('Zend_Validate_Sitemap_PriorityTest'); return $suite; } } if (PHPUnit_MAIN_METHOD == 'Zend_Validate_Sitemap_AllTests::main') { Zend_Validate_Sitemap_AllTests::main(); }
Java
#include "ADTFPinMessageEncoder.h" using namespace A2O; ADTFPinMessageEncoder::ADTFPinMessageEncoder(IAction::Ptr action, ICarMetaModel::ConstPtr carMetaModel) : _action(action) { // Create output pins const std::vector<IServoDriveConfig::ConstPtr>& servoDriveConfigs = carMetaModel->getServoDriveConfigs(); for (unsigned int i = 0; i < servoDriveConfigs.size(); i++) { _pins.push_back(OutputPin(servoDriveConfigs[i]->getEffectorName(), "tSignalValue")); } std::vector<IActuatorConfig::ConstPtr> actuatorConfigs = carMetaModel->getMotorConfigs(); for (unsigned int i = 0; i < actuatorConfigs.size(); i++) { _pins.push_back(OutputPin(actuatorConfigs[i]->getEffectorName(), "tSignalValue")); } actuatorConfigs = carMetaModel->getLightConfigs(); for (unsigned int i = 0; i < actuatorConfigs.size(); i++) { _pins.push_back(OutputPin(actuatorConfigs[i]->getEffectorName(), "tBoolSignalValue")); } actuatorConfigs = carMetaModel->getManeuverStatusConfigs(); for (unsigned int i = 0; i < actuatorConfigs.size(); i++) { _pins.push_back(OutputPin(actuatorConfigs[i]->getEffectorName(), "tDriverStruct")); } } ADTFPinMessageEncoder::~ADTFPinMessageEncoder() { } int ADTFPinMessageEncoder::indexOfPin(OutputPin pin) const { for (unsigned int i = 0; i < _pins.size(); i++) { if (_pins[i] == pin) { return i; } } return -1; } const std::vector<OutputPin>& ADTFPinMessageEncoder::getOutputPins() { return _pins; } bool ADTFPinMessageEncoder::encode(const OutputPin& pin, adtf::IMediaTypeDescription* mediaTypeDescription, adtf::IMediaSample* mediaSample) { int pinIndex = indexOfPin(pin); bool toTransmit = false; if (pinIndex >= 0) { cObjectPtr<adtf::IMediaSerializer> serializer; mediaTypeDescription->GetMediaSampleSerializer(&serializer); tInt size = serializer->GetDeserializedSize(); mediaSample->AllocBuffer(size); cObjectPtr<adtf::IMediaCoder> mediaCoder; tUInt32 timestamp = 0; if (pin.signalType == "tBoolSignalValue") { IBoolValueEffector::Ptr boolEffector = _action->getLightEffector(pin.name); if (boolEffector) { __adtf_sample_write_lock_mediadescription(mediaTypeDescription, mediaSample, mediaCoder); if(!mediaCoder) { return false; } tBool value = boolEffector->getValue(); mediaCoder->Set("bValue", (tVoid*)&value); mediaCoder->Set("ui32ArduinoTimestamp", (tVoid*)&timestamp); toTransmit = true; } } else if (pin.signalType == "tSignalValue") { IDoubleValueEffector::Ptr valueEffector = boost::dynamic_pointer_cast<IDoubleValueEffector>(_action->getEffector(pin.name)); if (valueEffector) { __adtf_sample_write_lock_mediadescription(mediaTypeDescription, mediaSample, mediaCoder); if(!mediaCoder) { return false; } tFloat32 value = valueEffector->getValue(); mediaCoder->Set("f32Value", (tVoid*)&value); mediaCoder->Set("ui32ArduinoTimestamp", (tVoid*)&timestamp); toTransmit = true; } } else if (pin.signalType == "tDriverStruct") { IManeuverStatusEffector::Ptr valueEffector = boost::dynamic_pointer_cast<IManeuverStatusEffector>(_action->getEffector(pin.name)); if (valueEffector) { __adtf_sample_write_lock_mediadescription(mediaTypeDescription, mediaSample, mediaCoder); if(!mediaCoder) { return false; } int state = valueEffector->getStatus(); int maneuverId = valueEffector->getManeuverId(); mediaCoder->Set("i8StateID", (tVoid*)&state); mediaCoder->Set("i16ManeuverEntry", (tVoid*)&maneuverId); toTransmit = true; } } } return toTransmit; }
Java
<?php namespace Exchange\EWSType; use Exchange\EWSType; /** * Contains EWSType_TentativelyAcceptItemType. */ /** * Represents a Tentative reply to a meeting request. * * @package php-ews\Types * * @todo Extend EWSType_WellKnownResponseObjectType. */ class EWSType_TentativelyAcceptItemType extends EWSType { /** * Contains the item or file that is attached to an item in the Exchange * store. * * @since Exchange 2007 * * @var EWSType_ArrayOfAttachmentsType */ public $Attachments; /** * Represents a collection of recipients to receive a blind carbon copy * (Bcc) of an e-mail. * * @since Exchange 2007 * * @var EWSType_ArrayOfRecipientsType */ public $BccRecipients; /** * Represents the actual body content of a message. * * @since Exchange 2007 * * @var EWSType_BodyType */ public $Body; /** * Represents a collection of recipients that will receive a copy of the * message. * * @since Exchange 2007 * * @var EWSType_ArrayOfRecipientsType */ public $CcRecipients; /** * Represents the Internet message header name for a given header within the * headers collection. * * @since Exchange 2007 * * @var EWSType_NonEmptyArrayOfInternetHeadersType */ public $InternetMessageHeaders; /** * Indicates whether the sender of an item requests a delivery receipt. * * @since Exchange 2007 * * @var boolean */ public $IsDeliveryReceiptRequested; /** * Indicates whether the sender of an item requests a read receipt. * * @since Exchange 2007 * * @var boolean */ public $IsReadReceiptRequested; /** * Represents the message class of an item. * * @since Exchange 2007 * * @var EWSType_ItemClassType */ public $ItemClass; /** * Identifies the delegate in a delegate access scenario. * * @since Exchange 2007 SP1 * * @var EWSType_SingleRecipientType */ public $ReceivedBy; /** * Identifies the principal in a delegate access scenario. * * @since Exchange 2007 SP1 * * @var EWSType_SingleRecipientType */ public $ReceivedRepresenting; /** * Identifies the item to which the response object refers. * * @since Exchange 2007 * * @var EWSType_ItemIdType */ public $ReferenceItemId; /** * Identifies the sender of an item. * * @since Exchange 2007 * * @var EWSType_SingleRecipientType */ public $Sender; /** * Identifies the sensitivity of an item. * * @since Exchange 2007 * * @var EWSType_SensitivityChoicesType */ public $Sensitivity; /** * Contains a set of recipients of an item. * * These are the primary recipients of an item. * * @since Exchange 2007 * * @var EWSType_ArrayOfRecipientsType */ public $ToRecipients; }
Java
# Running JupyterHub itself in docker This is a simple example of running jupyterhub in a docker container. This example will: - create a docker network - run jupyterhub in a container - enable 'dummy authenticator' for testing - run users in their own containers It does not: - enable persistent storage for users or the hub - run the proxy in its own container ## Initial setup The first thing we are going to do is create a network for jupyterhub to use. ```bash docker network create jupyterhub ``` Second, we are going to build our hub image: ```bash docker build -t hub . ``` We also want to pull the image that will be used: ```bash docker pull jupyter/base-notebook ``` ## Start the hub To start the hub, we want to: - run it on the docker network - expose port 8000 - mount the host docker socket ```bash docker run --rm -it -v /var/run/docker.sock:/var/run/docker.sock --net jupyterhub --name jupyterhub -p8000:8000 hub ``` Now we should have jupyterhub running on port 8000 on our docker host. ## Further goals This shows the *very basics* of running the Hub in a docker container (mainly setting up the network). To run for real, you will want to: - mount a volume (or a database) for the hub state - mount volumes for user storage so they don't lose data on each shutdown - pick a real authenticator - run the proxy in a separate container so that reloading hub configuration doesn't disrupt users [jupyterhub-deploy-docker](https://github.com/jupyterhub/jupyterhub-deploy-docker) does all of these things.
Java
{-# LANGUAGE ParallelListComp #-} module OldHMM (Prob, HMM(..), train, bestSequence, sequenceProb) where import qualified Data.Map as M import Data.List (sort, groupBy, maximumBy, foldl') import Data.Maybe (fromMaybe, fromJust) import Data.Ord (comparing) import Data.Function (on) import Control.Monad import Data.Number.LogFloat type Prob = LogFloat -- | The type of Hidden Markov Models. data HMM state observation = HMM [state] [Prob] [[Prob]] (observation -> [Prob]) instance (Show state, Show observation) => Show (HMM state observation) where show (HMM states probs tpm _) = "HMM " ++ show states ++ " " ++ show probs ++ " " ++ show tpm ++ " <func>" -- | Perform a single step in the Viterbi algorithm. -- -- Takes a list of path probabilities, and an observation, and returns the updated -- list of (surviving) paths with probabilities. viterbi :: HMM state observation -> [(Prob, [state])] -> observation -> [(Prob, [state])] viterbi (HMM states _ state_transitions observations) prev x = deepSeq prev `seq` [maximumBy (comparing fst) [(transition_prob * prev_prob * observation_prob, new_state:path) | transition_prob <- transition_probs | (prev_prob, path) <- prev | observation_prob <- observation_probs] | transition_probs <- state_transitions | new_state <- states] where observation_probs = observations x deepSeq ((x, y:ys):xs) = x `seq` y `seq` (deepSeq xs) deepSeq ((x, _):xs) = x `seq` (deepSeq xs) deepSeq [] = [] -- | The initial value for the Viterbi algorithm viterbi_init :: HMM state observation -> [(Prob, [state])] viterbi_init (HMM states state_probs _ _) = zip state_probs (map (:[]) states) -- | Perform a single step of the forward algorithm -- -- Each item in the input and output list is the probability that the system -- ended in the respective state. forward :: HMM state observation -> [Prob] -> observation -> [Prob] forward (HMM _ _ state_transitions observations) prev x = last prev `seq` [sum [transition_prob * prev_prob * observation_prob | transition_prob <- transition_probs | prev_prob <- prev | observation_prob <- observation_probs] | transition_probs <- state_transitions] where observation_probs = observations x -- | The initial value for the forward algorithm forward_init :: HMM state observation -> [Prob] forward_init (HMM _ state_probs _ _) = state_probs learn_states :: (Ord state, Fractional prob) => [(observation, state)] -> M.Map state prob learn_states xs = histogram $ map snd xs learn_transitions :: (Ord state, Fractional prob) => [(observation, state)] -> M.Map (state, state) prob learn_transitions xs = let xs' = map snd xs in histogram $ zip xs' (tail xs') learn_observations :: (Ord state, Ord observation, Fractional prob) => M.Map state prob -> [(observation, state)] -> M.Map (observation, state) prob learn_observations state_prob = M.mapWithKey (\ (observation, state) prob -> prob / (fromJust $ M.lookup state state_prob)) . histogram histogram :: (Ord a, Fractional prob) => [a] -> M.Map a prob histogram xs = let hist = foldl' (flip $ flip (M.insertWith (+)) 1) M.empty xs in M.map (/ M.fold (+) 0 hist) hist -- | Calculate the parameters of an HMM from a list of observations -- and the corresponding states. train :: (Ord observation, Ord state) => [(observation, state)] -> HMM state observation train sample = model where states = learn_states sample state_list = M.keys states transitions = learn_transitions sample trans_prob_mtx = [[fromMaybe 1e-10 $ M.lookup (old_state, new_state) transitions | old_state <- state_list] | new_state <- state_list] observations = learn_observations states sample observation_probs = fromMaybe (fill state_list []) . (flip M.lookup $ M.fromList $ map (\ (e, xs) -> (e, fill state_list xs)) $ map (\ xs -> (fst $ head xs, map snd xs)) $ groupBy ((==) `on` fst) [(observation, (state, prob)) | ((observation, state), prob) <- M.toAscList observations]) initial = map (\ state -> (fromJust $ M.lookup state states, [state])) state_list model = HMM state_list (fill state_list $ M.toAscList states) trans_prob_mtx observation_probs fill :: Eq state => [state] -> [(state, Prob)] -> [Prob] fill states [] = map (const 1e-10) states fill (s:states) xs@((s', p):xs') = if s /= s' then 1e-10 : fill states xs else p : fill states xs' -- | Calculate the most likely sequence of states for a given sequence of observations -- using Viterbi's algorithm bestSequence :: (Ord observation) => HMM state observation -> [observation] -> [state] bestSequence hmm = (reverse . tail . snd . (maximumBy (comparing fst))) . (foldl' (viterbi hmm) (viterbi_init hmm)) -- | Calculate the probability of a given sequence of observations -- using the forward algorithm. sequenceProb :: (Ord observation) => HMM state observation -> [observation] -> Prob sequenceProb hmm = sum . (foldl' (forward hmm) (forward_init hmm))
Java
<?php namespace app\modules\admin\models; use Yii; use yii\base\Model; use yii\data\ActiveDataProvider; use app\models\Trigger; /** * TriggerSearch represents the model behind the search form about `app\models\Trigger`. */ class TriggerSearch extends Trigger { /** * @inheritdoc */ public function rules() { return [ [['id', 'type', 'item_id', 'active'], 'integer'], [['date', 'time', 'weekdays', 'item_value', 'name'], 'safe'], ]; } /** * @inheritdoc */ public function scenarios() { // bypass scenarios() implementation in the parent class return Model::scenarios(); } /** * Creates data provider instance with search query applied * * @param array $params * * @return ActiveDataProvider */ public function search($params) { $query = Trigger::find(); // add conditions that should always apply here $dataProvider = new ActiveDataProvider([ 'query' => $query, ]); $this->load($params); if (!$this->validate()) { // uncomment the following line if you do not want to return any records when validation fails // $query->where('0=1'); return $dataProvider; } // grid filtering conditions $query->andFilterWhere([ 'id' => $this->id, 'type' => $this->type, 'item_id' => $this->item_id, 'active' => $this->active, ]); $query->andFilterWhere(['like', 'date', $this->date]) ->andFilterWhere(['like', 'time', $this->time]) ->andFilterWhere(['like', 'weekdays', $this->weekdays]) ->andFilterWhere(['like', 'item_value', $this->item_value]) ->andFilterWhere(['like', 'name', $this->name]); return $dataProvider; } }
Java
// Copyright (c) 2011 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include <stdlib.h> #include "base/basictypes.h" #include "base/file_util.h" #include "base/path_service.h" #include "base/strings/string_util.h" #include "base/strings/utf_string_conversions.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/net/url_fixer_upper.h" #include "net/base/net_util.h" #include "testing/gtest/include/gtest/gtest.h" #include "url/gurl.h" #include "url/url_parse.h" namespace { class URLFixerUpperTest : public testing::Test { }; }; namespace url_parse { std::ostream& operator<<(std::ostream& os, const Component& part) { return os << "(begin=" << part.begin << ", len=" << part.len << ")"; } } // namespace url_parse struct SegmentCase { const std::string input; const std::string result; const url_parse::Component scheme; const url_parse::Component username; const url_parse::Component password; const url_parse::Component host; const url_parse::Component port; const url_parse::Component path; const url_parse::Component query; const url_parse::Component ref; }; static const SegmentCase segment_cases[] = { { "http://www.google.com/", "http", url_parse::Component(0, 4), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(7, 14), // host url_parse::Component(), // port url_parse::Component(21, 1), // path url_parse::Component(), // query url_parse::Component(), // ref }, { "aBoUt:vErSiOn", "about", url_parse::Component(0, 5), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(6, 7), // host url_parse::Component(), // port url_parse::Component(), // path url_parse::Component(), // query url_parse::Component(), // ref }, { "about:host/path?query#ref", "about", url_parse::Component(0, 5), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(6, 4), // host url_parse::Component(), // port url_parse::Component(10, 5), // path url_parse::Component(16, 5), // query url_parse::Component(22, 3), // ref }, { "about://host/path?query#ref", "about", url_parse::Component(0, 5), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(8, 4), // host url_parse::Component(), // port url_parse::Component(12, 5), // path url_parse::Component(18, 5), // query url_parse::Component(24, 3), // ref }, { "chrome:host/path?query#ref", "chrome", url_parse::Component(0, 6), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(7, 4), // host url_parse::Component(), // port url_parse::Component(11, 5), // path url_parse::Component(17, 5), // query url_parse::Component(23, 3), // ref }, { "chrome://host/path?query#ref", "chrome", url_parse::Component(0, 6), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(9, 4), // host url_parse::Component(), // port url_parse::Component(13, 5), // path url_parse::Component(19, 5), // query url_parse::Component(25, 3), // ref }, { " www.google.com:124?foo#", "http", url_parse::Component(), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(4, 14), // host url_parse::Component(19, 3), // port url_parse::Component(), // path url_parse::Component(23, 3), // query url_parse::Component(27, 0), // ref }, { "user@www.google.com", "http", url_parse::Component(), // scheme url_parse::Component(0, 4), // username url_parse::Component(), // password url_parse::Component(5, 14), // host url_parse::Component(), // port url_parse::Component(), // path url_parse::Component(), // query url_parse::Component(), // ref }, { "ftp:/user:P:a$$Wd@..ftp.google.com...::23///pub?foo#bar", "ftp", url_parse::Component(0, 3), // scheme url_parse::Component(5, 4), // username url_parse::Component(10, 7), // password url_parse::Component(18, 20), // host url_parse::Component(39, 2), // port url_parse::Component(41, 6), // path url_parse::Component(48, 3), // query url_parse::Component(52, 3), // ref }, { "[2001:db8::1]/path", "http", url_parse::Component(), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(0, 13), // host url_parse::Component(), // port url_parse::Component(13, 5), // path url_parse::Component(), // query url_parse::Component(), // ref }, { "[::1]", "http", url_parse::Component(), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(0, 5), // host url_parse::Component(), // port url_parse::Component(), // path url_parse::Component(), // query url_parse::Component(), // ref }, // Incomplete IPv6 addresses (will not canonicalize). { "[2001:4860:", "http", url_parse::Component(), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(0, 11), // host url_parse::Component(), // port url_parse::Component(), // path url_parse::Component(), // query url_parse::Component(), // ref }, { "[2001:4860:/foo", "http", url_parse::Component(), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(0, 11), // host url_parse::Component(), // port url_parse::Component(11, 4), // path url_parse::Component(), // query url_parse::Component(), // ref }, { "http://:b005::68]", "http", url_parse::Component(0, 4), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(7, 10), // host url_parse::Component(), // port url_parse::Component(), // path url_parse::Component(), // query url_parse::Component(), // ref }, // Can't do anything useful with this. { ":b005::68]", "", url_parse::Component(0, 0), // scheme url_parse::Component(), // username url_parse::Component(), // password url_parse::Component(), // host url_parse::Component(), // port url_parse::Component(), // path url_parse::Component(), // query url_parse::Component(), // ref }, }; TEST(URLFixerUpperTest, SegmentURL) { std::string result; url_parse::Parsed parts; for (size_t i = 0; i < arraysize(segment_cases); ++i) { SegmentCase value = segment_cases[i]; result = URLFixerUpper::SegmentURL(value.input, &parts); EXPECT_EQ(value.result, result); EXPECT_EQ(value.scheme, parts.scheme); EXPECT_EQ(value.username, parts.username); EXPECT_EQ(value.password, parts.password); EXPECT_EQ(value.host, parts.host); EXPECT_EQ(value.port, parts.port); EXPECT_EQ(value.path, parts.path); EXPECT_EQ(value.query, parts.query); EXPECT_EQ(value.ref, parts.ref); } } // Creates a file and returns its full name as well as the decomposed // version. Example: // full_path = "c:\foo\bar.txt" // dir = "c:\foo" // file_name = "bar.txt" static bool MakeTempFile(const base::FilePath& dir, const base::FilePath& file_name, base::FilePath* full_path) { *full_path = dir.Append(file_name); return file_util::WriteFile(*full_path, "", 0) == 0; } // Returns true if the given URL is a file: URL that matches the given file static bool IsMatchingFileURL(const std::string& url, const base::FilePath& full_file_path) { if (url.length() <= 8) return false; if (std::string("file:///") != url.substr(0, 8)) return false; // no file:/// prefix if (url.find('\\') != std::string::npos) return false; // contains backslashes base::FilePath derived_path; net::FileURLToFilePath(GURL(url), &derived_path); return base::FilePath::CompareEqualIgnoreCase(derived_path.value(), full_file_path.value()); } struct FixupCase { const std::string input; const std::string desired_tld; const std::string output; } fixup_cases[] = { {"www.google.com", "", "http://www.google.com/"}, {" www.google.com ", "", "http://www.google.com/"}, {" foo.com/asdf bar", "", "http://foo.com/asdf%20%20bar"}, {"..www.google.com..", "", "http://www.google.com./"}, {"http://......", "", "http://....../"}, {"http://host.com:ninety-two/", "", "http://host.com:ninety-two/"}, {"http://host.com:ninety-two?foo", "", "http://host.com:ninety-two/?foo"}, {"google.com:123", "", "http://google.com:123/"}, {"about:", "", "chrome://version/"}, {"about:foo", "", "chrome://foo/"}, {"about:version", "", "chrome://version/"}, {"about:usr:pwd@hst/pth?qry#ref", "", "chrome://usr:pwd@hst/pth?qry#ref"}, {"about://usr:pwd@hst/pth?qry#ref", "", "chrome://usr:pwd@hst/pth?qry#ref"}, {"chrome:usr:pwd@hst/pth?qry#ref", "", "chrome://usr:pwd@hst/pth?qry#ref"}, {"chrome://usr:pwd@hst/pth?qry#ref", "", "chrome://usr:pwd@hst/pth?qry#ref"}, {"www:123", "", "http://www:123/"}, {" www:123", "", "http://www:123/"}, {"www.google.com?foo", "", "http://www.google.com/?foo"}, {"www.google.com#foo", "", "http://www.google.com/#foo"}, {"www.google.com?", "", "http://www.google.com/?"}, {"www.google.com#", "", "http://www.google.com/#"}, {"www.google.com:123?foo#bar", "", "http://www.google.com:123/?foo#bar"}, {"user@www.google.com", "", "http://user@www.google.com/"}, {"\xE6\xB0\xB4.com" , "", "http://xn--1rw.com/"}, // It would be better if this next case got treated as http, but I don't see // a clean way to guess this isn't the new-and-exciting "user" scheme. {"user:passwd@www.google.com:8080/", "", "user:passwd@www.google.com:8080/"}, // {"file:///c:/foo/bar%20baz.txt", "", "file:///C:/foo/bar%20baz.txt"}, {"ftp.google.com", "", "ftp://ftp.google.com/"}, {" ftp.google.com", "", "ftp://ftp.google.com/"}, {"FTP.GooGle.com", "", "ftp://ftp.google.com/"}, {"ftpblah.google.com", "", "http://ftpblah.google.com/"}, {"ftp", "", "http://ftp/"}, {"google.ftp.com", "", "http://google.ftp.com/"}, // URLs which end with 0x85 (NEL in ISO-8859). { "http://google.com/search?q=\xd0\x85", "", "http://google.com/search?q=%D0%85" }, { "http://google.com/search?q=\xec\x97\x85", "", "http://google.com/search?q=%EC%97%85" }, { "http://google.com/search?q=\xf0\x90\x80\x85", "", "http://google.com/search?q=%F0%90%80%85" }, // URLs which end with 0xA0 (non-break space in ISO-8859). { "http://google.com/search?q=\xd0\xa0", "", "http://google.com/search?q=%D0%A0" }, { "http://google.com/search?q=\xec\x97\xa0", "", "http://google.com/search?q=%EC%97%A0" }, { "http://google.com/search?q=\xf0\x90\x80\xa0", "", "http://google.com/search?q=%F0%90%80%A0" }, // URLs containing IPv6 literals. {"[2001:db8::2]", "", "http://[2001:db8::2]/"}, {"[::]:80", "", "http://[::]/"}, {"[::]:80/path", "", "http://[::]/path"}, {"[::]:180/path", "", "http://[::]:180/path"}, // TODO(pmarks): Maybe we should parse bare IPv6 literals someday. {"::1", "", "::1"}, // Semicolon as scheme separator for standard schemes. {"http;//www.google.com/", "", "http://www.google.com/"}, {"about;chrome", "", "chrome://chrome/"}, // Semicolon left as-is for non-standard schemes. {"whatsup;//fool", "", "whatsup://fool"}, // Semicolon left as-is in URL itself. {"http://host/port?query;moar", "", "http://host/port?query;moar"}, // Fewer slashes than expected. {"http;www.google.com/", "", "http://www.google.com/"}, {"http;/www.google.com/", "", "http://www.google.com/"}, // Semicolon at start. {";http://www.google.com/", "", "http://%3Bhttp//www.google.com/"}, }; TEST(URLFixerUpperTest, FixupURL) { for (size_t i = 0; i < arraysize(fixup_cases); ++i) { FixupCase value = fixup_cases[i]; EXPECT_EQ(value.output, URLFixerUpper::FixupURL(value.input, value.desired_tld).possibly_invalid_spec()) << "input: " << value.input; } // Check the TLD-appending functionality FixupCase tld_cases[] = { {"google", "com", "http://www.google.com/"}, {"google.", "com", "http://www.google.com/"}, {"google..", "com", "http://www.google.com/"}, {".google", "com", "http://www.google.com/"}, {"www.google", "com", "http://www.google.com/"}, {"google.com", "com", "http://google.com/"}, {"http://google", "com", "http://www.google.com/"}, {"..google..", "com", "http://www.google.com/"}, {"http://www.google", "com", "http://www.google.com/"}, {"9999999999999999", "com", "http://www.9999999999999999.com/"}, {"google/foo", "com", "http://www.google.com/foo"}, {"google.com/foo", "com", "http://google.com/foo"}, {"google/?foo=.com", "com", "http://www.google.com/?foo=.com"}, {"www.google/?foo=www.", "com", "http://www.google.com/?foo=www."}, {"google.com/?foo=.com", "com", "http://google.com/?foo=.com"}, {"http://www.google.com", "com", "http://www.google.com/"}, {"google:123", "com", "http://www.google.com:123/"}, {"http://google:123", "com", "http://www.google.com:123/"}, }; for (size_t i = 0; i < arraysize(tld_cases); ++i) { FixupCase value = tld_cases[i]; EXPECT_EQ(value.output, URLFixerUpper::FixupURL(value.input, value.desired_tld).possibly_invalid_spec()); } } // Test different types of file inputs to URIFixerUpper::FixupURL. This // doesn't go into the nice array of fixups above since the file input // has to exist. TEST(URLFixerUpperTest, FixupFile) { // this "original" filename is the one we tweak to get all the variations base::FilePath dir; base::FilePath original; ASSERT_TRUE(PathService::Get(chrome::DIR_APP, &dir)); ASSERT_TRUE(MakeTempFile( dir, base::FilePath(FILE_PATH_LITERAL("url fixer upper existing file.txt")), &original)); // reference path GURL golden(net::FilePathToFileURL(original)); // c:\foo\bar.txt -> file:///c:/foo/bar.txt (basic) #if defined(OS_WIN) GURL fixedup(URLFixerUpper::FixupURL(base::WideToUTF8(original.value()), std::string())); #elif defined(OS_POSIX) GURL fixedup(URLFixerUpper::FixupURL(original.value(), std::string())); #endif EXPECT_EQ(golden, fixedup); // TODO(port): Make some equivalent tests for posix. #if defined(OS_WIN) // c|/foo\bar.txt -> file:///c:/foo/bar.txt (pipe allowed instead of colon) std::string cur(base::WideToUTF8(original.value())); EXPECT_EQ(':', cur[1]); cur[1] = '|'; EXPECT_EQ(golden, URLFixerUpper::FixupURL(cur, std::string())); FixupCase file_cases[] = { {"c:\\This%20is a non-existent file.txt", "", "file:///C:/This%2520is%20a%20non-existent%20file.txt"}, // \\foo\bar.txt -> file://foo/bar.txt // UNC paths, this file won't exist, but since there are no escapes, it // should be returned just converted to a file: URL. {"\\\\SomeNonexistentHost\\foo\\bar.txt", "", "file://somenonexistenthost/foo/bar.txt"}, // We do this strictly, like IE8, which only accepts this form using // backslashes and not forward ones. Turning "//foo" into "http" matches // Firefox and IE, silly though it may seem (it falls out of adding "http" // as the default protocol if you haven't entered one). {"//SomeNonexistentHost\\foo/bar.txt", "", "http://somenonexistenthost/foo/bar.txt"}, {"file:///C:/foo/bar", "", "file:///C:/foo/bar"}, // Much of the work here comes from GURL's canonicalization stage. {"file://C:/foo/bar", "", "file:///C:/foo/bar"}, {"file:c:", "", "file:///C:/"}, {"file:c:WINDOWS", "", "file:///C:/WINDOWS"}, {"file:c|Program Files", "", "file:///C:/Program%20Files"}, {"file:/file", "", "file://file/"}, {"file:////////c:\\foo", "", "file:///C:/foo"}, {"file://server/folder/file", "", "file://server/folder/file"}, // These are fixups we don't do, but could consider: // // {"file:///foo:/bar", "", "file://foo/bar"}, // {"file:/\\/server\\folder/file", "", "file://server/folder/file"}, }; #elif defined(OS_POSIX) #if defined(OS_MACOSX) #define HOME "/Users/" #else #define HOME "/home/" #endif URLFixerUpper::home_directory_override = "/foo"; FixupCase file_cases[] = { // File URLs go through GURL, which tries to escape intelligently. {"/This%20is a non-existent file.txt", "", "file:///This%2520is%20a%20non-existent%20file.txt"}, // A plain "/" refers to the root. {"/", "", "file:///"}, // These rely on the above home_directory_override. {"~", "", "file:///foo"}, {"~/bar", "", "file:///foo/bar"}, // References to other users' homedirs. {"~foo", "", "file://" HOME "foo"}, {"~x/blah", "", "file://" HOME "x/blah"}, }; #endif for (size_t i = 0; i < arraysize(file_cases); i++) { EXPECT_EQ(file_cases[i].output, URLFixerUpper::FixupURL(file_cases[i].input, file_cases[i].desired_tld).possibly_invalid_spec()); } EXPECT_TRUE(base::DeleteFile(original, false)); } TEST(URLFixerUpperTest, FixupRelativeFile) { base::FilePath full_path, dir; base::FilePath file_part( FILE_PATH_LITERAL("url_fixer_upper_existing_file.txt")); ASSERT_TRUE(PathService::Get(chrome::DIR_APP, &dir)); ASSERT_TRUE(MakeTempFile(dir, file_part, &full_path)); full_path = base::MakeAbsoluteFilePath(full_path); ASSERT_FALSE(full_path.empty()); // make sure we pass through good URLs for (size_t i = 0; i < arraysize(fixup_cases); ++i) { FixupCase value = fixup_cases[i]; base::FilePath input = base::FilePath::FromUTF8Unsafe(value.input); EXPECT_EQ(value.output, URLFixerUpper::FixupRelativeFile(dir, input).possibly_invalid_spec()); } // make sure the existing file got fixed-up to a file URL, and that there // are no backslashes EXPECT_TRUE(IsMatchingFileURL(URLFixerUpper::FixupRelativeFile(dir, file_part).possibly_invalid_spec(), full_path)); EXPECT_TRUE(base::DeleteFile(full_path, false)); // create a filename we know doesn't exist and make sure it doesn't get // fixed up to a file URL base::FilePath nonexistent_file( FILE_PATH_LITERAL("url_fixer_upper_nonexistent_file.txt")); std::string fixedup(URLFixerUpper::FixupRelativeFile(dir, nonexistent_file).possibly_invalid_spec()); EXPECT_NE(std::string("file:///"), fixedup.substr(0, 8)); EXPECT_FALSE(IsMatchingFileURL(fixedup, nonexistent_file)); // make a subdir to make sure relative paths with directories work, also // test spaces: // "app_dir\url fixer-upper dir\url fixer-upper existing file.txt" base::FilePath sub_dir(FILE_PATH_LITERAL("url fixer-upper dir")); base::FilePath sub_file( FILE_PATH_LITERAL("url fixer-upper existing file.txt")); base::FilePath new_dir = dir.Append(sub_dir); base::CreateDirectory(new_dir); ASSERT_TRUE(MakeTempFile(new_dir, sub_file, &full_path)); full_path = base::MakeAbsoluteFilePath(full_path); ASSERT_FALSE(full_path.empty()); // test file in the subdir base::FilePath relative_file = sub_dir.Append(sub_file); EXPECT_TRUE(IsMatchingFileURL(URLFixerUpper::FixupRelativeFile(dir, relative_file).possibly_invalid_spec(), full_path)); // test file in the subdir with different slashes and escaping. base::FilePath::StringType relative_file_str = sub_dir.value() + FILE_PATH_LITERAL("/") + sub_file.value(); ReplaceSubstringsAfterOffset(&relative_file_str, 0, FILE_PATH_LITERAL(" "), FILE_PATH_LITERAL("%20")); EXPECT_TRUE(IsMatchingFileURL(URLFixerUpper::FixupRelativeFile(dir, base::FilePath(relative_file_str)).possibly_invalid_spec(), full_path)); // test relative directories and duplicate slashes // (should resolve to the same file as above) relative_file_str = sub_dir.value() + FILE_PATH_LITERAL("/../") + sub_dir.value() + FILE_PATH_LITERAL("///./") + sub_file.value(); EXPECT_TRUE(IsMatchingFileURL(URLFixerUpper::FixupRelativeFile(dir, base::FilePath(relative_file_str)).possibly_invalid_spec(), full_path)); // done with the subdir EXPECT_TRUE(base::DeleteFile(full_path, false)); EXPECT_TRUE(base::DeleteFile(new_dir, true)); // Test that an obvious HTTP URL isn't accidentally treated as an absolute // file path (on account of system-specific craziness). base::FilePath empty_path; base::FilePath http_url_path(FILE_PATH_LITERAL("http://../")); EXPECT_TRUE(URLFixerUpper::FixupRelativeFile( empty_path, http_url_path).SchemeIs("http")); }
Java
#<pycode(py_choose)> class Choose: """ Choose - class for choose() with callbacks """ def __init__(self, list, title, flags=0, deflt=1, icon=37): self.list = list self.title = title self.flags = flags self.x0 = -1 self.x1 = -1 self.y0 = -1 self.y1 = -1 self.width = -1 self.deflt = deflt self.icon = icon # HACK: Add a circular reference for non-modal choosers. This prevents the GC # from collecting the class object the callbacks need. Unfortunately this means # that the class will never be collected, unless refhack is set to None explicitly. if (flags & Choose2.CH_MODAL) == 0: self.refhack = self def sizer(self): """ Callback: sizer - returns the length of the list """ return len(self.list) def getl(self, n): """ Callback: getl - get one item from the list """ if n == 0: return self.title if n <= self.sizer(): return str(self.list[n-1]) else: return "<Empty>" def ins(self): pass def update(self, n): pass def edit(self, n): pass def enter(self, n): print "enter(%d) called" % n def destroy(self): pass def get_icon(self, n): pass def choose(self): """ choose - Display the choose dialogue """ old = set_script_timeout(0) n = _idaapi.choose_choose( self, self.flags, self.x0, self.y0, self.x1, self.y1, self.width, self.deflt, self.icon) set_script_timeout(old) return n #</pycode(py_choose)>
Java
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace Zend\Console; /** * A static, utility class for interacting with Console environment. * Declared abstract to prevent from instantiating. */ abstract class Console { /** * @var Adapter\AdapterInterface */ protected static $instance; /** * Allow overriding whether or not we're in a console env. If set, and * boolean, returns that value from isConsole(). * @var bool */ protected static $isConsole; /** * Create and return Adapter\AdapterInterface instance. * * @param null|string $forceAdapter Optional adapter class name. Can be absolute namespace or class name * relative to Zend\Console\Adapter\. If not provided, a best matching * adapter will be automatically selected. * @param null|string $forceCharset optional charset name can be absolute namespace or class name relative to * Zend\Console\Charset\. If not provided, charset will be detected * automatically. * @throws Exception\InvalidArgumentException * @throws Exception\RuntimeException * @return Adapter\AdapterInterface */ public static function getInstance($forceAdapter = null, $forceCharset = null) { if (static::$instance instanceof Adapter\AdapterInterface) { return static::$instance; } // Create instance if ($forceAdapter !== null) { // Use the supplied adapter class if (substr($forceAdapter, 0, 1) == '\\') { $className = $forceAdapter; } elseif (stristr($forceAdapter, '\\')) { $className = __NAMESPACE__ . '\\' . ltrim($forceAdapter, '\\'); } else { $className = __NAMESPACE__ . '\\Adapter\\' . $forceAdapter; } if (!class_exists($className)) { throw new Exception\InvalidArgumentException(sprintf( 'Cannot find Console adapter class "%s"', $className )); } } else { // Try to detect best instance for console $className = static::detectBestAdapter(); // Check if we were able to detect console adapter if (!$className) { throw new Exception\RuntimeException('Cannot create Console adapter - am I running in a console?'); } } // Create adapter instance static::$instance = new $className(); // Try to use the supplied charset class if ($forceCharset !== null) { if (substr($forceCharset, 0, 1) == '\\') { $className = $forceCharset; } elseif (stristr($forceAdapter, '\\')) { $className = __NAMESPACE__ . '\\' . ltrim($forceCharset, '\\'); } else { $className = __NAMESPACE__ . '\\Charset\\' . $forceCharset; } if (!class_exists($className)) { throw new Exception\InvalidArgumentException(sprintf( 'Cannot find Charset class "%s"', $className )); } // Set adapter charset static::$instance->setCharset(new $className()); } return static::$instance; } /** * Reset the console instance */ public static function resetInstance() { static::$instance = null; } /** * Check if currently running under MS Windows * * @see http://stackoverflow.com/questions/738823/possible-values-for-php-os * @return bool */ public static function isWindows() { return (defined('PHP_OS') && (substr_compare(PHP_OS, 'win', 0, 3, true) === 0)) || (getenv('OS') != false && substr_compare(getenv('OS'), 'windows', 0, 7, true)) ; } /** * Check if running under MS Windows Ansicon * * @return bool */ public static function isAnsicon() { return getenv('ANSICON') !== false; } /** * Check if running in a console environment (CLI) * * By default, returns value of PHP_SAPI global constant. If $isConsole is * set, and a boolean value, that value will be returned. * * @return bool */ public static function isConsole() { if (null === static::$isConsole) { static::$isConsole = (PHP_SAPI == 'cli'); } return static::$isConsole; } /** * Override the "is console environment" flag * * @param null|bool $flag */ public static function overrideIsConsole($flag) { if (null != $flag) { $flag = (bool) $flag; } static::$isConsole = $flag; } /** * Try to detect best matching adapter * @return string|null */ public static function detectBestAdapter() { // Check if we are in a console environment if (!static::isConsole()) { return null; } // Check if we're on windows if (static::isWindows()) { if (static::isAnsicon()) { $className = __NAMESPACE__ . '\Adapter\WindowsAnsicon'; } else { $className = __NAMESPACE__ . '\Adapter\Windows'; } return $className; } // Default is a Posix console $className = __NAMESPACE__ . '\Adapter\Posix'; return $className; } /** * Pass-thru static call to current AdapterInterface instance. * * @param $funcName * @param $arguments * @return mixed */ public static function __callStatic($funcName, $arguments) { $instance = static::getInstance(); return call_user_func_array(array($instance, $funcName), $arguments); } }
Java
<dom-module id="my-scientists-list"> <template> <firebase-collection data="{{scientists}}" location="https://radiant-fire-9062.firebaseio.com/users"> </firebase-collection> <template is="dom-repeat" items="[[scientists]]" as="scientist"> <p>Element: <span>[[index]]</span></p> <p class="">Name: <a href="[[_itemUrl(scientist)]]"><span>[[scientist.firstName]]</span> <span>[[scientist.lastName]]</span></a></p> <my-group-essentials group-id="[[scientist.groupId]]" keywords-ids="[[scientist.keywordsIds]]"></my-group-essentials> <!-- profile should be in the menu bar --> <a href="/profile/georg">profile of georg</a> <p>//////////////////////////////</p> </template> </template> <script> (function () { Polymer({ is: 'my-scientists-list', _itemUrl: function(obj) { return '/scientist/' + obj.firstName.replace(/ /g, '') + obj.lastName.replace(/ /g, '') + '/' + obj.__firebaseKey__; }, }); })(); </script> </dom-module>
Java
using System.Collections.Generic; using System.Web; using System.Web.UI; using ServiceStack.Common.Web; namespace ServiceStack.WebHost.Endpoints.Support.Metadata.Controls { internal class Soap12OperationControl : OperationControl { public Soap12OperationControl() { EndpointType = EndpointType.Soap12; } public override string RequestUri { get { var endpointConfig = MetadataConfig.GetEndpointConfig(EndpointType); var endpontPath = ResponseMessage != null ? endpointConfig.SyncReplyUri : endpointConfig.AsyncOneWayUri; return string.Format("/{0}", endpontPath); } } public override string HttpRequestTemplate { get { return string.Format( @"POST {0} HTTP/1.1 Host: {1} Content-Type: text/xml; charset=utf-8 Content-Length: <span class=""value"">length</span> {2}", RequestUri, HostName, HttpUtility.HtmlEncode(RequestMessage)); } } } }
Java
<?php /** * inerface INewsDB * содержит основные методы для работы с новостной лентой */ interface INewsDB{ /** * Добавление новой записи в новостную ленту * * @param string $title - заголовок новости * @param string $category - категория новости * @param string $description - текст новости * @param string $source - источник новости * * @return boolean - результат успех/ошибка */ function saveNews($t, $c, $d, $s); /** * Выборка всех записей из новостной ленты * * @return array - результат выборки в виде массива */ function getNews(); /** * Удаление записи из новостной ленты * * @param integer $id - идентификатор удаляемой записи * * @return boolean - результат успех/ошибка */ function deleteNews($id); } ?>
Java
// Copyright 2020 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_ASH_CROSTINI_CROSTINI_ENGAGEMENT_METRICS_SERVICE_H_ #define CHROME_BROWSER_ASH_CROSTINI_CROSTINI_ENGAGEMENT_METRICS_SERVICE_H_ #include "base/macros.h" #include "base/no_destructor.h" #include "components/guest_os/guest_os_engagement_metrics.h" #include "components/keyed_service/content/browser_context_keyed_service_factory.h" #include "components/keyed_service/core/keyed_service.h" class Profile; namespace crostini { // A KeyedService for tracking engagement with Crostini, reporting values as // per GuestOsEngagementMetrics. class CrostiniEngagementMetricsService : public KeyedService { public: class Factory : public BrowserContextKeyedServiceFactory { public: static CrostiniEngagementMetricsService* GetForProfile(Profile* profile); static Factory* GetInstance(); private: friend class base::NoDestructor<Factory>; Factory(); ~Factory() override; // BrowserContextKeyedServiceFactory: KeyedService* BuildServiceInstanceFor( content::BrowserContext* context) const override; bool ServiceIsCreatedWithBrowserContext() const override; bool ServiceIsNULLWhileTesting() const override; }; explicit CrostiniEngagementMetricsService(Profile* profile); CrostiniEngagementMetricsService(const CrostiniEngagementMetricsService&) = delete; CrostiniEngagementMetricsService& operator=( const CrostiniEngagementMetricsService&) = delete; ~CrostiniEngagementMetricsService() override; // This needs to be called when Crostini starts and stops being active so we // can correctly track background active time. void SetBackgroundActive(bool background_active); private: std::unique_ptr<guest_os::GuestOsEngagementMetrics> guest_os_engagement_metrics_; }; } // namespace crostini #endif // CHROME_BROWSER_ASH_CROSTINI_CROSTINI_ENGAGEMENT_METRICS_SERVICE_H_
Java
<!DOCTYPE html> <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>second_derivative &mdash; MetPy 0.8</title> <link rel="shortcut icon" href="../../_static/metpy_32x32.ico"/> <link rel="canonical" href="https://unidata.github.io/MetPy/latest/api/generated/metpy.calc.second_derivative.html"/> <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" /> <link rel="stylesheet" href="../../_static/gallery.css" type="text/css" /> <link rel="stylesheet" href="../../_static/theme_override.css" type="text/css" /> <link rel="index" title="Index" href="../../genindex.html"/> <link rel="search" title="Search" href="../../search.html"/> <link rel="top" title="MetPy 0.8" href="../../index.html"/> <link rel="up" title="calc" href="metpy.calc.html"/> <link rel="next" title="shearing_deformation" href="metpy.calc.shearing_deformation.html"/> <link rel="prev" title="saturation_vapor_pressure" href="metpy.calc.saturation_vapor_pressure.html"/> <script src="../../_static/js/modernizr.min.js"></script> </head> <body class="wy-body-for-nav" role="document"> <div class="wy-grid-for-nav"> <nav data-toggle="wy-nav-shift" class="wy-nav-side"> <div class="wy-side-scroll"> <div class="wy-side-nav-search"> <a href="../../index.html" class="icon icon-home"> MetPy <img src="../../_static/metpy_150x150.png" class="logo" /> </a> <div class="version"> <div class="version-dropdown"> <select class="version-list" id="version-list"> <option value=''>0.8</option> <option value="../latest">latest</option> <option value="../dev">dev</option> </select> </div> </div> <div role="search"> <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get"> <input type="text" name="q" placeholder="Search docs" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> <ul class="current"> <li class="toctree-l1"><a class="reference internal" href="../../installguide.html">Installation Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../units.html">Unit Support</a></li> <li class="toctree-l1"><a class="reference internal" href="../../examples/index.html">MetPy Examples</a></li> <li class="toctree-l1"><a class="reference internal" href="../../tutorials/index.html">MetPy Tutorials</a></li> <li class="toctree-l1 current"><a class="reference internal" href="../index.html">The MetPy API</a><ul class="current"> <li class="toctree-l2"><a class="reference internal" href="metpy.constants.html">constants</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.units.html">units</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.io.html">io</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.io.cdm.html">cdm</a></li> <li class="toctree-l2 current"><a class="reference internal" href="metpy.calc.html">calc</a><ul class="current"> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.absolute_vorticity.html">absolute_vorticity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.add_height_to_pressure.html">add_height_to_pressure</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.add_pressure_to_height.html">add_pressure_to_height</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.advection.html">advection</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.ageostrophic_wind.html">ageostrophic_wind</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.apparent_temperature.html">apparent_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.brunt_vaisala_frequency.html">brunt_vaisala_frequency</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.brunt_vaisala_frequency_squared.html">brunt_vaisala_frequency_squared</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.brunt_vaisala_period.html">brunt_vaisala_period</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.bulk_shear.html">bulk_shear</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.bunkers_storm_motion.html">bunkers_storm_motion</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.cape_cin.html">cape_cin</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.convergence_vorticity.html">convergence_vorticity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.coriolis_parameter.html">coriolis_parameter</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.critical_angle.html">critical_angle</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.density.html">density</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.dewpoint.html">dewpoint</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.dewpoint_from_specific_humidity.html">dewpoint_from_specific_humidity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.dewpoint_rh.html">dewpoint_rh</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.divergence.html">divergence</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.dry_lapse.html">dry_lapse</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.dry_static_energy.html">dry_static_energy</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.el.html">el</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.equivalent_potential_temperature.html">equivalent_potential_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.exner_function.html">exner_function</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.find_bounding_indices.html">find_bounding_indices</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.find_intersections.html">find_intersections</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.first_derivative.html">first_derivative</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.friction_velocity.html">friction_velocity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.frontogenesis.html">frontogenesis</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.geopotential_to_height.html">geopotential_to_height</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.geostrophic_wind.html">geostrophic_wind</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.get_layer.html">get_layer</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.get_layer_heights.html">get_layer_heights</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.get_perturbation.html">get_perturbation</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.get_wind_components.html">get_wind_components</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.get_wind_dir.html">get_wind_dir</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.get_wind_speed.html">get_wind_speed</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.gradient.html">gradient</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.h_convergence.html">h_convergence</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.heat_index.html">heat_index</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.height_to_geopotential.html">height_to_geopotential</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.height_to_pressure_std.html">height_to_pressure_std</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.inertial_advective_wind.html">inertial_advective_wind</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.interp.html">interp</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.interpolate_nans.html">interpolate_nans</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.isentropic_interpolation.html">isentropic_interpolation</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.kinematic_flux.html">kinematic_flux</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.laplacian.html">laplacian</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.lat_lon_grid_deltas.html">lat_lon_grid_deltas</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.lat_lon_grid_spacing.html">lat_lon_grid_spacing</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.lcl.html">lcl</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.lfc.html">lfc</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.log_interp.html">log_interp</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.mean_pressure_weighted.html">mean_pressure_weighted</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.mixed_layer.html">mixed_layer</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.mixed_parcel.html">mixed_parcel</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.mixing_ratio.html">mixing_ratio</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.mixing_ratio_from_relative_humidity.html">mixing_ratio_from_relative_humidity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.mixing_ratio_from_specific_humidity.html">mixing_ratio_from_specific_humidity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.moist_lapse.html">moist_lapse</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.moist_static_energy.html">moist_static_energy</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.montgomery_streamfunction.html">montgomery_streamfunction</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.most_unstable_cape_cin.html">most_unstable_cape_cin</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.most_unstable_parcel.html">most_unstable_parcel</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.nearest_intersection_idx.html">nearest_intersection_idx</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.parcel_profile.html">parcel_profile</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.parse_angle.html">parse_angle</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.potential_temperature.html">potential_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.potential_vorticity_baroclinic.html">potential_vorticity_baroclinic</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.potential_vorticity_barotropic.html">potential_vorticity_barotropic</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.precipitable_water.html">precipitable_water</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.pressure_to_height_std.html">pressure_to_height_std</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.psychrometric_vapor_pressure_wet.html">psychrometric_vapor_pressure_wet</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.q_vector.html">q_vector</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.reduce_point_density.html">reduce_point_density</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.relative_humidity_from_dewpoint.html">relative_humidity_from_dewpoint</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.relative_humidity_from_mixing_ratio.html">relative_humidity_from_mixing_ratio</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.relative_humidity_from_specific_humidity.html">relative_humidity_from_specific_humidity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.relative_humidity_wet_psychrometric.html">relative_humidity_wet_psychrometric</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.resample_nn_1d.html">resample_nn_1d</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.saturation_equivalent_potential_temperature.html">saturation_equivalent_potential_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.saturation_mixing_ratio.html">saturation_mixing_ratio</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.saturation_vapor_pressure.html">saturation_vapor_pressure</a></li> <li class="toctree-l3 current"><a class="current reference internal" href="#">second_derivative</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.shearing_deformation.html">shearing_deformation</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.shearing_stretching_deformation.html">shearing_stretching_deformation</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.sigma_to_pressure.html">sigma_to_pressure</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.significant_tornado.html">significant_tornado</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.specific_humidity_from_mixing_ratio.html">specific_humidity_from_mixing_ratio</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.static_stability.html">static_stability</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.storm_relative_helicity.html">storm_relative_helicity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.stretching_deformation.html">stretching_deformation</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.supercell_composite.html">supercell_composite</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.surface_based_cape_cin.html">surface_based_cape_cin</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.temperature_from_potential_temperature.html">temperature_from_potential_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.thickness_hydrostatic.html">thickness_hydrostatic</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.thickness_hydrostatic_from_relative_humidity.html">thickness_hydrostatic_from_relative_humidity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.tke.html">tke</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.total_deformation.html">total_deformation</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.v_vorticity.html">v_vorticity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.vapor_pressure.html">vapor_pressure</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.virtual_potential_temperature.html">virtual_potential_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.virtual_temperature.html">virtual_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.vorticity.html">vorticity</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.wet_bulb_temperature.html">wet_bulb_temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.windchill.html">windchill</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="metpy.plots.html">plots</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.plots.ctables.html">ctables</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.gridding.html">gridding</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../../gempak.html">GEMPAK Conversion Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../CONTRIBUTING.html">Contributors Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../infrastructureguide.html">Infrastructure Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../citing.html">Citing MetPy</a></li> <li class="toctree-l1"><a class="reference internal" href="../../references.html">References</a></li> </ul> </div> </div> </nav> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> <nav class="wy-nav-top" role="navigation" aria-label="top navigation"> <i data-toggle="wy-nav-top" class="fa fa-bars"></i> <a href="../../index.html">MetPy</a> </nav> <div class="wy-nav-content"> <div class="rst-content"> <div role="navigation" aria-label="breadcrumbs navigation"> <ul class="wy-breadcrumbs"> <li><a href="../../index.html">Docs</a> &raquo;</li> <li><a href="../index.html">The MetPy API</a> &raquo;</li> <li><a href="metpy.calc.html">calc</a> &raquo;</li> <li>second_derivative</li> <li class="source-link"> <a href="https://github.com/Unidata/MetPy/issues/new?title=Suggested%20improvement%20for%20api/generated/metpy.calc.second_derivative&body=Please%20describe%20what%20could%20be%20improved%20about%20this%20page%20or%20the%20typo/mistake%20that%20you%20found%3A" class="fa fa-github"> Improve this page</a> </li> </ul> <hr/> </div> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> <div itemprop="articleBody"> <div class="section" id="second-derivative"> <h1>second_derivative<a class="headerlink" href="#second-derivative" title="Permalink to this headline">¶</a></h1> <dl class="function"> <dt id="metpy.calc.second_derivative"> <code class="descclassname">metpy.calc.</code><code class="descname">second_derivative</code><span class="sig-paren">(</span><em>f</em>, <em>**kwargs</em><span class="sig-paren">)</span><a class="reference internal" href="../../_modules/metpy/calc/tools.html#second_derivative"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#metpy.calc.second_derivative" title="Permalink to this definition">¶</a></dt> <dd><p>Calculate the second derivative of a grid of values.</p> <p>Works for both regularly-spaced data and grids with varying spacing.</p> <p>Either <em class="xref py py-obj">x</em> or <em class="xref py py-obj">delta</em> must be specified.</p> <p>Either <em class="xref py py-obj">x</em> or <em class="xref py py-obj">delta</em> must be specified. This uses 3 points to calculate the derivative, using forward or backward at the edges of the grid as appropriate, and centered elsewhere. The irregular spacing is handled explicitly, using the formulation as specified by <a class="reference internal" href="../../references.html#bowen2005" id="id1">[Bowen2005]</a>.</p> <table class="docutils field-list" frame="void" rules="none"> <col class="field-name" /> <col class="field-body" /> <tbody valign="top"> <tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><ul class="first simple"> <li><strong>f</strong> (<em>array-like</em>) – Array of values of which to calculate the derivative</li> <li><strong>axis</strong> (<a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.6)"><em>int</em></a><em>, </em><em>optional</em>) – The array axis along which to take the derivative. Defaults to 0.</li> <li><strong>x</strong> (<em>array-like</em><em>, </em><em>optional</em>) – The coordinate values corresponding to the grid points in <em class="xref py py-obj">f</em>.</li> <li><strong>delta</strong> (<em>array-like</em><em>, </em><em>optional</em>) – Spacing between the grid points in <em class="xref py py-obj">f</em>. There should be one item less than the size of <em class="xref py py-obj">f</em> along <em class="xref py py-obj">axis</em>.</li> </ul> </td> </tr> <tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last"><em>array-like</em> – The second derivative calculated along the selected axis.</p> </td> </tr> </tbody> </table> <div class="admonition seealso"> <p class="first admonition-title">See also</p> <p class="last"><a class="reference internal" href="metpy.calc.first_derivative.html#metpy.calc.first_derivative" title="metpy.calc.first_derivative"><code class="xref py py-func docutils literal notranslate"><span class="pre">first_derivative()</span></code></a></p> </div> </dd></dl> <div style='clear:both'></div></div> </div> <div class="articleComments"> </div> </div> <footer> <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation"> <a href="metpy.calc.shearing_deformation.html" class="btn btn-neutral float-right" title="shearing_deformation" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a> <a href="metpy.calc.saturation_vapor_pressure.html" class="btn btn-neutral" title="saturation_vapor_pressure" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a> </div> <hr/> <div role="contentinfo"> <p> &copy; Copyright 2017, MetPy Developers. Last updated on May 17, 2018 at 20:56:37. </p> </div> Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-92978945-1', 'auto'); ga('send', 'pageview'); </script> <script>var version_json_loc = "../../../versions.json";</script> <p>Do you enjoy using MetPy? <a href="https://saythanks.io/to/unidata" class="btn btn-neutral" title="Say Thanks!" accesskey="n">Say Thanks!</a> </p> </footer> </div> </div> </section> </div> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../../', VERSION:'0.8.0', LANGUAGE:'None', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true, SOURCELINK_SUFFIX: '.txt' }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../_static/pop_ver.js"></script> <script type="text/javascript" src="../../_static/js/theme.js"></script> <script type="text/javascript"> jQuery(function () { SphinxRtdTheme.StickyNav.enable(); }); </script> </body> </html>
Java
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #include "ABI41_0_0AndroidDialogPickerProps.h" #include <ABI41_0_0React/components/image/conversions.h> #include <ABI41_0_0React/core/propsConversions.h> namespace ABI41_0_0facebook { namespace ABI41_0_0React { AndroidDialogPickerProps::AndroidDialogPickerProps( const AndroidDialogPickerProps &sourceProps, const RawProps &rawProps) : ViewProps(sourceProps, rawProps), color(convertRawProp(rawProps, "color", sourceProps.color, {})), enabled(convertRawProp(rawProps, "enabled", sourceProps.enabled, {true})), items(convertRawProp(rawProps, "items", sourceProps.items, {})), prompt(convertRawProp(rawProps, "prompt", sourceProps.prompt, {""})), selected( convertRawProp(rawProps, "selected", sourceProps.selected, {0})) {} } // namespace ABI41_0_0React } // namespace ABI41_0_0facebook
Java
// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/drive/drive_api_util.h" #include <string> #include "base/files/file.h" #include "base/logging.h" #include "base/md5.h" #include "base/strings/string16.h" #include "base/strings/string_util.h" #include "base/strings/stringprintf.h" #include "base/strings/utf_string_conversions.h" #include "base/values.h" #include "content/public/browser/browser_thread.h" #include "google_apis/drive/drive_api_parser.h" #include "google_apis/drive/gdata_wapi_parser.h" #include "net/base/escape.h" #include "third_party/re2/re2/re2.h" #include "url/gurl.h" namespace drive { namespace util { namespace { // Google Apps MIME types: const char kGoogleDocumentMimeType[] = "application/vnd.google-apps.document"; const char kGoogleDrawingMimeType[] = "application/vnd.google-apps.drawing"; const char kGooglePresentationMimeType[] = "application/vnd.google-apps.presentation"; const char kGoogleSpreadsheetMimeType[] = "application/vnd.google-apps.spreadsheet"; const char kGoogleTableMimeType[] = "application/vnd.google-apps.table"; const char kGoogleFormMimeType[] = "application/vnd.google-apps.form"; const char kDriveFolderMimeType[] = "application/vnd.google-apps.folder"; std::string GetMimeTypeFromEntryKind(google_apis::DriveEntryKind kind) { switch (kind) { case google_apis::ENTRY_KIND_DOCUMENT: return kGoogleDocumentMimeType; case google_apis::ENTRY_KIND_SPREADSHEET: return kGoogleSpreadsheetMimeType; case google_apis::ENTRY_KIND_PRESENTATION: return kGooglePresentationMimeType; case google_apis::ENTRY_KIND_DRAWING: return kGoogleDrawingMimeType; case google_apis::ENTRY_KIND_TABLE: return kGoogleTableMimeType; case google_apis::ENTRY_KIND_FORM: return kGoogleFormMimeType; default: return std::string(); } } ScopedVector<std::string> CopyScopedVectorString( const ScopedVector<std::string>& source) { ScopedVector<std::string> result; result.reserve(source.size()); for (size_t i = 0; i < source.size(); ++i) result.push_back(new std::string(*source[i])); return result.Pass(); } // Converts AppIcon (of GData WAPI) to DriveAppIcon. scoped_ptr<google_apis::DriveAppIcon> ConvertAppIconToDriveAppIcon(const google_apis::AppIcon& app_icon) { scoped_ptr<google_apis::DriveAppIcon> resource( new google_apis::DriveAppIcon); switch (app_icon.category()) { case google_apis::AppIcon::ICON_UNKNOWN: resource->set_category(google_apis::DriveAppIcon::UNKNOWN); break; case google_apis::AppIcon::ICON_DOCUMENT: resource->set_category(google_apis::DriveAppIcon::DOCUMENT); break; case google_apis::AppIcon::ICON_APPLICATION: resource->set_category(google_apis::DriveAppIcon::APPLICATION); break; case google_apis::AppIcon::ICON_SHARED_DOCUMENT: resource->set_category(google_apis::DriveAppIcon::SHARED_DOCUMENT); break; default: NOTREACHED(); } resource->set_icon_side_length(app_icon.icon_side_length()); resource->set_icon_url(app_icon.GetIconURL()); return resource.Pass(); } // Converts InstalledApp to AppResource. scoped_ptr<google_apis::AppResource> ConvertInstalledAppToAppResource( const google_apis::InstalledApp& installed_app) { scoped_ptr<google_apis::AppResource> resource(new google_apis::AppResource); resource->set_application_id(installed_app.app_id()); resource->set_name(installed_app.app_name()); resource->set_object_type(installed_app.object_type()); resource->set_supports_create(installed_app.supports_create()); { ScopedVector<std::string> primary_mimetypes( CopyScopedVectorString(installed_app.primary_mimetypes())); resource->set_primary_mimetypes(primary_mimetypes.Pass()); } { ScopedVector<std::string> secondary_mimetypes( CopyScopedVectorString(installed_app.secondary_mimetypes())); resource->set_secondary_mimetypes(secondary_mimetypes.Pass()); } { ScopedVector<std::string> primary_file_extensions( CopyScopedVectorString(installed_app.primary_extensions())); resource->set_primary_file_extensions(primary_file_extensions.Pass()); } { ScopedVector<std::string> secondary_file_extensions( CopyScopedVectorString(installed_app.secondary_extensions())); resource->set_secondary_file_extensions(secondary_file_extensions.Pass()); } { const ScopedVector<google_apis::AppIcon>& app_icons = installed_app.app_icons(); ScopedVector<google_apis::DriveAppIcon> icons; icons.reserve(app_icons.size()); for (size_t i = 0; i < app_icons.size(); ++i) { icons.push_back(ConvertAppIconToDriveAppIcon(*app_icons[i]).release()); } resource->set_icons(icons.Pass()); } // supports_import, installed and authorized are not supported in // InstalledApp. return resource.Pass(); } // Returns the argument string. std::string Identity(const std::string& resource_id) { return resource_id; } } // namespace std::string EscapeQueryStringValue(const std::string& str) { std::string result; result.reserve(str.size()); for (size_t i = 0; i < str.size(); ++i) { if (str[i] == '\\' || str[i] == '\'') { result.push_back('\\'); } result.push_back(str[i]); } return result; } std::string TranslateQuery(const std::string& original_query) { // In order to handle non-ascii white spaces correctly, convert to UTF16. base::string16 query = base::UTF8ToUTF16(original_query); const base::string16 kDelimiter( base::kWhitespaceUTF16 + base::string16(1, static_cast<base::char16>('"'))); std::string result; for (size_t index = query.find_first_not_of(base::kWhitespaceUTF16); index != base::string16::npos; index = query.find_first_not_of(base::kWhitespaceUTF16, index)) { bool is_exclusion = (query[index] == '-'); if (is_exclusion) ++index; if (index == query.length()) { // Here, the token is '-' and it should be ignored. continue; } size_t begin_token = index; base::string16 token; if (query[begin_token] == '"') { // Quoted query. ++begin_token; size_t end_token = query.find('"', begin_token); if (end_token == base::string16::npos) { // This is kind of syntax error, since quoted string isn't finished. // However, the query is built by user manually, so here we treat // whole remaining string as a token as a fallback, by appending // a missing double-quote character. end_token = query.length(); query.push_back('"'); } token = query.substr(begin_token, end_token - begin_token); index = end_token + 1; // Consume last '"', too. } else { size_t end_token = query.find_first_of(kDelimiter, begin_token); if (end_token == base::string16::npos) { end_token = query.length(); } token = query.substr(begin_token, end_token - begin_token); index = end_token; } if (token.empty()) { // Just ignore an empty token. continue; } if (!result.empty()) { // If there are two or more tokens, need to connect with "and". result.append(" and "); } // The meaning of "fullText" should include title, description and content. base::StringAppendF( &result, "%sfullText contains \'%s\'", is_exclusion ? "not " : "", EscapeQueryStringValue(base::UTF16ToUTF8(token)).c_str()); } return result; } std::string ExtractResourceIdFromUrl(const GURL& url) { return net::UnescapeURLComponent(url.ExtractFileName(), net::UnescapeRule::URL_SPECIAL_CHARS); } std::string CanonicalizeResourceId(const std::string& resource_id) { // If resource ID is in the old WAPI format starting with a prefix like // "document:", strip it and return the remaining part. std::string stripped_resource_id; if (RE2::FullMatch(resource_id, "^[a-z-]+(?::|%3A)([\\w-]+)$", &stripped_resource_id)) return stripped_resource_id; return resource_id; } ResourceIdCanonicalizer GetIdentityResourceIdCanonicalizer() { return base::Bind(&Identity); } const char kDocsListScope[] = "https://docs.google.com/feeds/"; const char kDriveAppsScope[] = "https://www.googleapis.com/auth/drive.apps"; void ParseShareUrlAndRun(const google_apis::GetShareUrlCallback& callback, google_apis::GDataErrorCode error, scoped_ptr<base::Value> value) { DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); if (!value) { callback.Run(error, GURL()); return; } // Parsing ResourceEntry is cheap enough to do on UI thread. scoped_ptr<google_apis::ResourceEntry> entry = google_apis::ResourceEntry::ExtractAndParse(*value); if (!entry) { callback.Run(google_apis::GDATA_PARSE_ERROR, GURL()); return; } const google_apis::Link* share_link = entry->GetLinkByType(google_apis::Link::LINK_SHARE); callback.Run(error, share_link ? share_link->href() : GURL()); } scoped_ptr<google_apis::AboutResource> ConvertAccountMetadataToAboutResource( const google_apis::AccountMetadata& account_metadata, const std::string& root_resource_id) { scoped_ptr<google_apis::AboutResource> resource( new google_apis::AboutResource); resource->set_largest_change_id(account_metadata.largest_changestamp()); resource->set_quota_bytes_total(account_metadata.quota_bytes_total()); resource->set_quota_bytes_used(account_metadata.quota_bytes_used()); resource->set_root_folder_id(root_resource_id); return resource.Pass(); } scoped_ptr<google_apis::AppList> ConvertAccountMetadataToAppList( const google_apis::AccountMetadata& account_metadata) { scoped_ptr<google_apis::AppList> resource(new google_apis::AppList); const ScopedVector<google_apis::InstalledApp>& installed_apps = account_metadata.installed_apps(); ScopedVector<google_apis::AppResource> app_resources; app_resources.reserve(installed_apps.size()); for (size_t i = 0; i < installed_apps.size(); ++i) { app_resources.push_back( ConvertInstalledAppToAppResource(*installed_apps[i]).release()); } resource->set_items(app_resources.Pass()); // etag is not supported in AccountMetadata. return resource.Pass(); } scoped_ptr<google_apis::FileResource> ConvertResourceEntryToFileResource( const google_apis::ResourceEntry& entry) { scoped_ptr<google_apis::FileResource> file(new google_apis::FileResource); file->set_file_id(entry.resource_id()); file->set_title(entry.title()); file->set_created_date(entry.published_time()); if (std::find(entry.labels().begin(), entry.labels().end(), "shared-with-me") != entry.labels().end()) { // Set current time to mark the file is shared_with_me, since ResourceEntry // doesn't have |shared_with_me_date| equivalent. file->set_shared_with_me_date(base::Time::Now()); } file->set_shared(std::find(entry.labels().begin(), entry.labels().end(), "shared") != entry.labels().end()); if (entry.is_folder()) { file->set_mime_type(kDriveFolderMimeType); } else { std::string mime_type = GetMimeTypeFromEntryKind(entry.kind()); if (mime_type.empty()) mime_type = entry.content_mime_type(); file->set_mime_type(mime_type); } file->set_md5_checksum(entry.file_md5()); file->set_file_size(entry.file_size()); file->mutable_labels()->set_trashed(entry.deleted()); file->set_etag(entry.etag()); google_apis::ImageMediaMetadata* image_media_metadata = file->mutable_image_media_metadata(); image_media_metadata->set_width(entry.image_width()); image_media_metadata->set_height(entry.image_height()); image_media_metadata->set_rotation(entry.image_rotation()); std::vector<google_apis::ParentReference>* parents = file->mutable_parents(); for (size_t i = 0; i < entry.links().size(); ++i) { using google_apis::Link; const Link& link = *entry.links()[i]; switch (link.type()) { case Link::LINK_PARENT: { google_apis::ParentReference parent; parent.set_parent_link(link.href()); std::string file_id = drive::util::ExtractResourceIdFromUrl(link.href()); parent.set_file_id(file_id); parent.set_is_root(file_id == kWapiRootDirectoryResourceId); parents->push_back(parent); break; } case Link::LINK_ALTERNATE: file->set_alternate_link(link.href()); break; default: break; } } file->set_modified_date(entry.updated_time()); file->set_last_viewed_by_me_date(entry.last_viewed_time()); return file.Pass(); } google_apis::DriveEntryKind GetKind( const google_apis::FileResource& file_resource) { if (file_resource.IsDirectory()) return google_apis::ENTRY_KIND_FOLDER; const std::string& mime_type = file_resource.mime_type(); if (mime_type == kGoogleDocumentMimeType) return google_apis::ENTRY_KIND_DOCUMENT; if (mime_type == kGoogleSpreadsheetMimeType) return google_apis::ENTRY_KIND_SPREADSHEET; if (mime_type == kGooglePresentationMimeType) return google_apis::ENTRY_KIND_PRESENTATION; if (mime_type == kGoogleDrawingMimeType) return google_apis::ENTRY_KIND_DRAWING; if (mime_type == kGoogleTableMimeType) return google_apis::ENTRY_KIND_TABLE; if (mime_type == kGoogleFormMimeType) return google_apis::ENTRY_KIND_FORM; if (mime_type == "application/pdf") return google_apis::ENTRY_KIND_PDF; return google_apis::ENTRY_KIND_FILE; } scoped_ptr<google_apis::ResourceEntry> ConvertFileResourceToResourceEntry( const google_apis::FileResource& file_resource) { scoped_ptr<google_apis::ResourceEntry> entry(new google_apis::ResourceEntry); // ResourceEntry entry->set_resource_id(file_resource.file_id()); entry->set_id(file_resource.file_id()); entry->set_kind(GetKind(file_resource)); entry->set_title(file_resource.title()); entry->set_published_time(file_resource.created_date()); std::vector<std::string> labels; if (!file_resource.shared_with_me_date().is_null()) labels.push_back("shared-with-me"); if (file_resource.shared()) labels.push_back("shared"); entry->set_labels(labels); // This should be the url to download the file_resource. { google_apis::Content content; content.set_mime_type(file_resource.mime_type()); entry->set_content(content); } // TODO(kochi): entry->resource_links_ // For file entries entry->set_filename(file_resource.title()); entry->set_suggested_filename(file_resource.title()); entry->set_file_md5(file_resource.md5_checksum()); entry->set_file_size(file_resource.file_size()); // If file is removed completely, that information is only available in // ChangeResource, and is reflected in |removed_|. If file is trashed, the // file entry still exists but with its "trashed" label true. entry->set_deleted(file_resource.labels().is_trashed()); // ImageMediaMetadata entry->set_image_width(file_resource.image_media_metadata().width()); entry->set_image_height(file_resource.image_media_metadata().height()); entry->set_image_rotation(file_resource.image_media_metadata().rotation()); // CommonMetadata entry->set_etag(file_resource.etag()); // entry->authors_ // entry->links_. ScopedVector<google_apis::Link> links; for (size_t i = 0; i < file_resource.parents().size(); ++i) { google_apis::Link* link = new google_apis::Link; link->set_type(google_apis::Link::LINK_PARENT); link->set_href(file_resource.parents()[i].parent_link()); links.push_back(link); } if (!file_resource.alternate_link().is_empty()) { google_apis::Link* link = new google_apis::Link; link->set_type(google_apis::Link::LINK_ALTERNATE); link->set_href(file_resource.alternate_link()); links.push_back(link); } entry->set_links(links.Pass()); // entry->categories_ entry->set_updated_time(file_resource.modified_date()); entry->set_last_viewed_time(file_resource.last_viewed_by_me_date()); entry->FillRemainingFields(); return entry.Pass(); } scoped_ptr<google_apis::ResourceEntry> ConvertChangeResourceToResourceEntry( const google_apis::ChangeResource& change_resource) { scoped_ptr<google_apis::ResourceEntry> entry; if (change_resource.file()) entry = ConvertFileResourceToResourceEntry(*change_resource.file()).Pass(); else entry.reset(new google_apis::ResourceEntry); entry->set_resource_id(change_resource.file_id()); // If |is_deleted()| returns true, the file is removed from Drive. entry->set_removed(change_resource.is_deleted()); entry->set_changestamp(change_resource.change_id()); entry->set_modification_date(change_resource.modification_date()); return entry.Pass(); } scoped_ptr<google_apis::ResourceList> ConvertFileListToResourceList(const google_apis::FileList& file_list) { scoped_ptr<google_apis::ResourceList> feed(new google_apis::ResourceList); const ScopedVector<google_apis::FileResource>& items = file_list.items(); ScopedVector<google_apis::ResourceEntry> entries; for (size_t i = 0; i < items.size(); ++i) entries.push_back(ConvertFileResourceToResourceEntry(*items[i]).release()); feed->set_entries(entries.Pass()); ScopedVector<google_apis::Link> links; if (!file_list.next_link().is_empty()) { google_apis::Link* link = new google_apis::Link; link->set_type(google_apis::Link::LINK_NEXT); link->set_href(file_list.next_link()); links.push_back(link); } feed->set_links(links.Pass()); return feed.Pass(); } scoped_ptr<google_apis::ResourceList> ConvertChangeListToResourceList(const google_apis::ChangeList& change_list) { scoped_ptr<google_apis::ResourceList> feed(new google_apis::ResourceList); const ScopedVector<google_apis::ChangeResource>& items = change_list.items(); ScopedVector<google_apis::ResourceEntry> entries; for (size_t i = 0; i < items.size(); ++i) { entries.push_back( ConvertChangeResourceToResourceEntry(*items[i]).release()); } feed->set_entries(entries.Pass()); feed->set_largest_changestamp(change_list.largest_change_id()); ScopedVector<google_apis::Link> links; if (!change_list.next_link().is_empty()) { google_apis::Link* link = new google_apis::Link; link->set_type(google_apis::Link::LINK_NEXT); link->set_href(change_list.next_link()); links.push_back(link); } feed->set_links(links.Pass()); return feed.Pass(); } std::string GetMd5Digest(const base::FilePath& file_path) { const int kBufferSize = 512 * 1024; // 512kB. base::File file(file_path, base::File::FLAG_OPEN | base::File::FLAG_READ); if (!file.IsValid()) return std::string(); base::MD5Context context; base::MD5Init(&context); int64 offset = 0; scoped_ptr<char[]> buffer(new char[kBufferSize]); while (true) { int result = file.Read(offset, buffer.get(), kBufferSize); if (result < 0) { // Found an error. return std::string(); } if (result == 0) { // End of file. break; } offset += result; base::MD5Update(&context, base::StringPiece(buffer.get(), result)); } base::MD5Digest digest; base::MD5Final(&digest, &context); return MD5DigestToBase16(digest); } const char kWapiRootDirectoryResourceId[] = "folder:root"; } // namespace util } // namespace drive
Java
class Vehicletype < ActiveRecord::Base has_many :vehicles attr_accessible :capacity, :fuel, :maintcycle, :name validates :name, :uniqueness => true end
Java
The jStar Eclipse Plug-in ============================= There is a tutorial for the plugin: doc/jstar eclipse tutorial/jstar eclipse tutorial.pdf For more information, see [http://www.jstarverifier.org](https://web.archive.org/web/20141217130023/http://jstarverifier.org/) ___ This repository contains information related to the tool jStar-Eclipse presented in Foundations of Software Engineering, 2011. The tool was originally presented in this [paper](http://www.cl.cam.ac.uk/~mb741/papers/fse11.pdf). This repository <b><i>IS NOT</i></b> the original repository for this tool. Here are some links to the original project: * [A Video of the Tool](https://www.youtube.com/watch?v=2QRbdlppgrk) * [jStar-Eclipse plugin](https://github.com/seplogic/jstar-eclipse/tree/master/com.jstar.eclipse.update.site) * [jStar repository](https://github.com/seplogic/jstar) * [Corestar repository](https://github.com/seplogic/corestar) In this repository, for jStar-Eclipse you will find: * :white_check_mark: Source code (available [here](https://github.com/SoftwareEngineeringToolDemos/FSE-2011-jstar-eclipse/tree/master/com.jstar.eclipse/src/com/jstar/eclipse) * :white_check_mark: The original tool (available [here](https://github.com/SoftwareEngineeringToolDemos/FSE-2011-jstar-eclipse/tree/master/com.jstar.eclipse.update.site))<br> * :white_check_mark: Binaries (available [here](https://github.com/SoftwareEngineeringToolDemos/FSE-2011-jstar-eclipse/tree/master/bin)) * :white_check_mark: [Virtual machine containing tool](http://go.ncsu.edu/SE-tool-VMs) This repository was constructed by [Sumeet Agarwal](https://github.com/sumeet29) under the supervision of [Dr. Emerson Murphy-Hill](https://github.com/CaptainEmerson).<br> Thanks to Daiva Naudziuniene, Matko Botincan, Dino Distefano, Mike Dodds, Radu Grigore and Matthew Parkinson for their help in establishing this repository.
Java
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head> <title>DIRECTION-TOWARDS-OTHERS</title> </head> <body> <h3><i>I update my desired direction to head toward those in my local interaction zone if not in my personal space.</i> </h3> <font size="2" color="gray">Begin micro-behaviour</font> <p><b>DIRECTION-TOWARDS-OTHERS</b></p> <font size="2" color="gray">Begin NetLogo code:</font> <pre>substitute-text-area-for cycle-duration 1 do-every cycle-duration [ask all-individuals with [distance-between the-personal-space the-local-interaction] [set my-next-desired-direction add my-next-desired-direction unit-vector subtract location myself my-location]] </pre> <font size="2" color="gray">End NetLogo code</font> <h2>Variants</h2> <p>The variable <i>the-personal-space</i> in the above is the value of &#945; in [1]. It can be defined and changed by a slider defined in <a title="CREATE-SLIDER-FOR-PERSONAL-SPACE" href="CREATE-SLIDER-FOR-PERSONAL-SPACE.html"> CREATE-SLIDER-FOR-PERSONAL-SPACE</a>. The variable <i>the-local-interaction</i> is the zone of local interaction or the value of &#961; in [1]. It is defined by the slider in <a title="CREATE-SLIDER-FOR-LOCAL-INTERACTION" href="CREATE-SLIDER-FOR-LOCAL-INTERACTION.html"> CREATE-SLIDER-FOR-LOCAL-INTERACTION</a>.</p> <p>If you add <i>and abs angle-from-me &lt;= cone-of-vision</i> to <i> distance-between the-personal-space the-local-interaction</i> then only those who are within my cone of vision will be considered. <i>cone-of-vision</i> can be defined by a slider as a variable that ranges from 0 to 180 degrees.</p> <p>You can change the frequency that this runs by changing the <i>1</i>.</p> <h2>Related Micro-behaviours</h2> <p> <a title="DIRECTION-TO-AVOID-OTHERS" href="DIRECTION-TO-AVOID-OTHERS.html"> DIRECTION-TO-AVOID-OTHERS</a> sets my desired direction away from those too close to me. <a title="DIRECTION-TO-ALIGN-WITH-OTHERS" href="DIRECTION-TO-ALIGN-WITH-OTHERS.html"> DIRECTION-TO-ALIGN-WITH-OTHERS</a> aligns with those within my local interaction range and <a title="INFORMED-DIRECTION" href="INFORMED-DIRECTION.html"> INFORMED-DIRECTION</a> implements a preferred direction.</p> <p>Note that the desired-direction is used by <a title="TURN-IN-DIRECTION-AT-MAXIMUM-SPEED" href="TURN-IN-DIRECTION-AT-MAXIMUM-SPEED.html"> TURN-IN-DIRECTION-AT-MAXIMUM-SPEED</a> to turn me.</p> <p> <a title="DIRECTION-TOWARDS-OTHERS-DELAYED" href="DIRECTION-TOWARDS-OTHERS-DELAYED.html"> DIRECTION-TOWARDS-OTHERS-DELAYED</a> runs this with a delay.</p> <h2>How this works</h2> <p>This adds a vector to me from each of the others whose distance is between the <i>the-personal-space</i> and <i>the-local-interaction</i>. It implements part of equation 2 in [1].</p> <p> <img alt="Image:couzin_formula2.png" src="images/Couzin_formula2.png" border="0" width="431" height="56"> </p> <h2>History</h2> <p>This was implemented by Ken Kahn.</p> <h2>References</h2> <p>[1] Couzin, I.D., Krause, J., Franks, N.R. &amp; Levin, S.A.(2005) <a class="external text" title="http://www.princeton.edu/~icouzin/Couzinetal2005.pdf" rel="nofollow" href="http://www.princeton.edu/~icouzin/Couzinetal2005.pdf"> Effective leadership and decision making in animal groups on the move</a> Nature 433, 513-516.</p> </body> </html>
Java
'use strict'; describe('Directive: searchFilters', function () { // load the directive's module beforeEach(module('searchApp')); var element, scope; beforeEach(inject(function ($rootScope) { scope = $rootScope.$new(); })); it('should make hidden element visible', inject(function ($compile) { element = angular.element('<search-filters></search-filters>'); element = $compile(element)(scope); expect(element.text()).toBe('this is the searchFilters directive'); })); });
Java
<?php use yii\helpers\Html; use yii\widgets\ActiveForm; /* @var $this yii\web\View */ /* @var $model app\models\Fahrtenbuch */ /* @var $form yii\widgets\ActiveForm */ ?> <div class="fahrtenbuch-form"> <?php $form = ActiveForm::begin(); ?> <?= $form->field($model, 'fahrer')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'fahrzeug')->textInput(['maxlength' => true]) ?> <?= $form->field($model, 'start')->textInput() ?> <?= $form->field($model, 'ende')->textInput() ?> <div class="form-group"> <?= Html::submitButton($model->isNewRecord ? 'Create' : 'Update', ['class' => $model->isNewRecord ? 'btn btn-success' : 'btn btn-primary']) ?> </div> <?php ActiveForm::end(); ?> </div>
Java
/* * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ #import <UIKit/UIKit.h> #import <ABI42_0_0React/ABI42_0_0RCTView.h> @interface ABI42_0_0RCTMaskedView : ABI42_0_0RCTView @end
Java
# This code is free software; you can redistribute it and/or modify it under # the terms of the new BSD License. # # Copyright (c) 2011, Sebastian Staudt require 'fixtures' require 'helper' class TestGitHub < Test::Unit::TestCase context 'The GitHub implementation' do should 'not support file stats' do assert_not Metior::GitHub.supports? :file_stats end should 'not support line stats' do assert_not Metior::GitHub.supports? :line_stats end end context 'A GitHub repository' do setup do @repo = Metior::GitHub::Repository.new 'mojombo', 'grit' api_response = Fixtures.commits_as_rashies(''..'master') @commits_stub = Octokit.stubs :commits 14.times { @commits_stub.returns api_response.shift(35) } @commits_stub.then.raises Octokit::NotFound.new(nil) end should 'be able to load all commits from the repository\'s default branch' do commits = @repo.commits assert_equal 460, commits.size assert commits.all? { |commit| commit.is_a? Metior::GitHub::Commit } head = commits.first assert_equal '1b2fe77', head.id end should 'be able to load a range of commits from the repository' do @commits_stub = Octokit.stubs :commits api_response = Fixtures.commits_as_rashies(''..'4c592b4') 14.times { @commits_stub.returns api_response.shift(35) } @commits_stub.raises Octokit::NotFound.new(nil) api_response = Fixtures.commits_as_rashies(''..'ef2870b') 13.times { @commits_stub.returns api_response.shift(35) } @commits_stub.then.raises Octokit::NotFound.new(nil) commits = @repo.commits 'ef2870b'..'4c592b4' assert_equal 6, commits.size assert commits.all? { |commit| commit.is_a? Metior::GitHub::Commit } assert_equal '4c592b4', commits.first.id assert_equal 'f0cc7f7', commits.last.id end should 'know the authors of the repository' do authors = @repo.authors assert_equal 37, authors.size assert authors.values.all? { |author| author.is_a? Metior::GitHub::Actor } assert_equal %w{ adam@therealadam.com aman@tmm1.net antonin@hildebrand.cz bobbywilson0@gmail.com bryce@worldmedia.net cehoffman@gmail.com chapados@sciencegeeks.org cho45@lowreal.net chris@ozmm.org davetron5000@gmail.com david.kowis@rackspace.com dustin@spy.net engel@engel.uk.to evil@che.lu gram.gibson@uky.edu hiroshi3110@gmail.com igor@wiedler.ch johan@johansorensen.com jos@catnook.com jpriddle@nevercraft.net kamal.fariz@gmail.com koraktor@gmail.com mtraverso@acm.org ohnobinki@ohnopublishing.net paul+git@mjr.org pjhyett@gmail.com rsanheim@gmail.com rtomayko@gmail.com schacon@gmail.com scott@railsnewbie.com technoweenie@gmail.com tim@dysinger.net tim@spork.in tom@mojombo.com tom@taco.(none) voker57@gmail.com wayne@larsen.st }, authors.keys.sort end should 'know the committers of the repository' do committers = @repo.committers assert_equal 29, committers.size assert committers.values.all? { |committer| committer.is_a? Metior::GitHub::Actor } assert_equal %w{ adam@therealadam.com aman@tmm1.net antonin@hildebrand.cz bobbywilson0@gmail.com bryce@worldmedia.net chris@ozmm.org davetron5000@gmail.com david.kowis@rackspace.com dustin@spy.net engel@engel.uk.to evil@che.lu hiroshi3110@gmail.com johan@johansorensen.com jos@catnook.com kamal.fariz@gmail.com koraktor@gmail.com mtraverso@acm.org ohnobinki@ohnopublishing.net paul+git@mjr.org pjhyett@gmail.com rsanheim@gmail.com rtomayko@gmail.com schacon@gmail.com technoweenie@gmail.com tim@dysinger.net tim@spork.in tom@mojombo.com tom@taco.(none) voker57@gmail.com }, committers.keys.sort end should 'know the top authors of the repository' do authors = @repo.top_authors assert_equal 3, authors.size assert authors.all? { |author| author.is_a? Metior::GitHub::Actor } assert_equal [ "tom@mojombo.com", "schacon@gmail.com", "technoweenie@gmail.com" ], authors.collect { |author| author.id } end should 'not be able to get file stats of a repository' do assert_raises UnsupportedError do @repo.file_stats end end should 'not be able to get the most significant authors of a repository' do assert_raises UnsupportedError do @repo.significant_authors end end should 'not be able to get the most significant commits of a repository' do assert_raises UnsupportedError do @repo.significant_commits end end should 'provide easy access to simple repository statistics' do stats = Metior.simple_stats :github, 'mojombo', 'grit' assert_equal 157, stats[:active_days].size assert_equal 460, stats[:commit_count] assert_in_delta 2.92993630573248, stats[:commits_per_active_day], 0.0001 assert_equal Time.at(1191997100), stats[:first_commit_date] assert_equal Time.at(1306794294), stats[:last_commit_date] assert_equal 5, stats[:top_contributors].size end end end
Java
--- id: 5900f4331000cf542c50ff45 challengeType: 5 title: 'Problem 198: Ambiguous Numbers' forumTopicId: 301836 --- ## Description <section id='description'> A best approximation to a real number x for the denominator bound d is a rational number r/s (in reduced form) with s ≤ d, so that any rational number p/q which is closer to x than r/s has q > d. Usually the best approximation to a real number is uniquely determined for all denominator bounds. However, there are some exceptions, e.g. 9/40 has the two best approximations 1/4 and 1/5 for the denominator bound 6. We shall call a real number x ambiguous, if there is at least one denominator bound for which x possesses two best approximations. Clearly, an ambiguous number is necessarily rational. How many ambiguous numbers x = p/q, 0 < x < 1/100, are there whose denominator q does not exceed 108? </section> ## Instructions <section id='instructions'> </section> ## Tests <section id='tests'> ```yml tests: - text: <code>euler198()</code> should return 52374425. testString: assert.strictEqual(euler198(), 52374425); ``` </section> ## Challenge Seed <section id='challengeSeed'> <div id='js-seed'> ```js function euler198() { // Good luck! return true; } euler198(); ``` </div> </section> ## Solution <section id='solution'> ```js // solution required ``` </section>
Java
/* * HE_Mesh Frederik Vanhoutte - www.wblut.com * * https://github.com/wblut/HE_Mesh * A Processing/Java library for for creating and manipulating polygonal meshes. * * Public Domain: http://creativecommons.org/publicdomain/zero/1.0/ * I , Frederik Vanhoutte, have waived all copyright and related or neighboring * rights. * * This work is published from Belgium. (http://creativecommons.org/publicdomain/zero/1.0/) * */ package wblut.geom; /** * Interface for implementing mutable mathematical operations on 3D coordinates. * * All of the operators defined in the interface change the calling object. All * operators use the label "Self", such as "addSelf" to indicate this. * * @author Frederik Vanhoutte * */ public interface WB_MutableCoordinateMath3D extends WB_CoordinateMath3D { /** * Add coordinate values. * * @param x * @return this */ public WB_Coord addSelf(final double... x); /** * Add coordinate values. * * @param p * @return this */ public WB_Coord addSelf(final WB_Coord p); /** * Subtract coordinate values. * * @param x * @return this */ public WB_Coord subSelf(final double... x); /** * Subtract coordinate values. * * @param p * @return this */ public WB_Coord subSelf(final WB_Coord p); /** * Multiply by factor. * * @param f * @return this */ public WB_Coord mulSelf(final double f); /** * Divide by factor. * * @param f * @return this */ public WB_Coord divSelf(final double f); /** * Add multiple of coordinate values. * * @param f * multiplier * @param x * @return this */ public WB_Coord addMulSelf(final double f, final double... x); /** * Add multiple of coordinate values. * * @param f * @param p * @return this */ public WB_Coord addMulSelf(final double f, final WB_Coord p); /** * Multiply this coordinate by factor f and add other coordinate values * multiplied by g. * * @param f * @param g * @param x * @return this */ public WB_Coord mulAddMulSelf(final double f, final double g, final double... x); /** * Multiply this coordinate by factor f and add other coordinate values * multiplied by g. * * @param f * @param g * @param p * @return this */ public WB_Coord mulAddMulSelf(final double f, final double g, final WB_Coord p); /** * * * @param p * @return this */ public WB_Coord crossSelf(final WB_Coord p); /** * Normalize this vector. Return the length before normalization. If this * vector is degenerate 0 is returned and the vector remains the zero * vector. * * @return this */ public double normalizeSelf(); /** * If vector is larger than given value, trim vector. * * @param d * @return this */ public WB_Coord trimSelf(final double d); }
Java
The *Control Freak* IDE provides already a sophisticated Editor which comes with auto completion and snippets by the default. Since most developers prefer their own editors and key bindings, the IDE allows also to write driver code outside of the IDE. All you you need to do is open the driver Javascript file and start coding. The IDE server will recognize file those changes and updates the running driver instance with your changes. Be aware that you will loose the auto-completion of the IDE which shows common methods by default. ### Recommended Editors - Best fit: WebStorm or PHPStorm with the "More Dojo" plugin enabled. - Sublime
Java
# -*- coding: utf-8 -*- ''' Production Configurations - Use djangosecure - Use Amazon's S3 for storing static files and uploaded media - Use sendgrid to send emails - Use MEMCACHIER on Heroku ''' from configurations import values # See: http://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html#settings try: from S3 import CallingFormat AWS_CALLING_FORMAT = CallingFormat.SUBDOMAIN except ImportError: # TODO: Fix this where even if in Dev this class is called. pass from .common import Common class Production(Common): # This ensures that Django will be able to detect a secure connection # properly on Heroku. SECURE_PROXY_SSL_HEADER = ('HTTP_X_FORWARDED_PROTO', 'https') # INSTALLED_APPS INSTALLED_APPS = Common.INSTALLED_APPS # END INSTALLED_APPS # SECRET KEY SECRET_KEY = values.SecretValue() # END SECRET KEY # django-secure INSTALLED_APPS += ("djangosecure", ) # set this to 60 seconds and then to 518400 when you can prove it works SECURE_HSTS_SECONDS = 60 SECURE_HSTS_INCLUDE_SUBDOMAINS = values.BooleanValue(True) SECURE_FRAME_DENY = values.BooleanValue(True) SECURE_CONTENT_TYPE_NOSNIFF = values.BooleanValue(True) SECURE_BROWSER_XSS_FILTER = values.BooleanValue(True) SESSION_COOKIE_SECURE = values.BooleanValue(False) SESSION_COOKIE_HTTPONLY = values.BooleanValue(True) SECURE_SSL_REDIRECT = values.BooleanValue(True) # end django-secure # SITE CONFIGURATION # Hosts/domain names that are valid for this site # See https://docs.djangoproject.com/en/1.6/ref/settings/#allowed-hosts ALLOWED_HOSTS = ["*"] # END SITE CONFIGURATION INSTALLED_APPS += ("gunicorn", ) # STORAGE CONFIGURATION # See: http://django-storages.readthedocs.org/en/latest/index.html INSTALLED_APPS += ( 'storages', ) # See: http://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html#settings STATICFILES_STORAGE = DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage' # See: http://django-storages.readthedocs.org/en/latest/backends/amazon-S3.html#settings AWS_ACCESS_KEY_ID = values.SecretValue() AWS_SECRET_ACCESS_KEY = values.SecretValue() AWS_STORAGE_BUCKET_NAME = values.SecretValue() AWS_AUTO_CREATE_BUCKET = True AWS_QUERYSTRING_AUTH = False # see: https://github.com/antonagestam/collectfast AWS_PRELOAD_METADATA = True INSTALLED_APPS += ('collectfast', ) # AWS cache settings, don't change unless you know what you're doing: AWS_EXPIRY = 60 * 60 * 24 * 7 AWS_HEADERS = { 'Cache-Control': 'max-age=%d, s-maxage=%d, must-revalidate' % ( AWS_EXPIRY, AWS_EXPIRY) } # See: https://docs.djangoproject.com/en/dev/ref/settings/#static-url STATIC_URL = 'https://s3.amazonaws.com/%s/' % AWS_STORAGE_BUCKET_NAME # END STORAGE CONFIGURATION # EMAIL DEFAULT_FROM_EMAIL = values.Value('tco2 <noreply@example.com>') EMAIL_HOST = values.Value('smtp.sendgrid.com') EMAIL_HOST_PASSWORD = values.SecretValue(environ_prefix="", environ_name="SENDGRID_PASSWORD") EMAIL_HOST_USER = values.SecretValue(environ_prefix="", environ_name="SENDGRID_USERNAME") EMAIL_PORT = values.IntegerValue(587, environ_prefix="", environ_name="EMAIL_PORT") EMAIL_SUBJECT_PREFIX = values.Value('[tco2] ', environ_name="EMAIL_SUBJECT_PREFIX") EMAIL_USE_TLS = True SERVER_EMAIL = EMAIL_HOST_USER # END EMAIL # TEMPLATE CONFIGURATION # See: https://docs.djangoproject.com/en/dev/ref/settings/#template-dirs TEMPLATE_LOADERS = ( ('django.template.loaders.cached.Loader', ( 'django.template.loaders.filesystem.Loader', 'django.template.loaders.app_directories.Loader', )), ) # END TEMPLATE CONFIGURATION # CACHING # Only do this here because thanks to django-pylibmc-sasl and pylibmc # memcacheify is painful to install on windows. try: # See: https://github.com/rdegges/django-heroku-memcacheify from memcacheify import memcacheify CACHES = memcacheify() except ImportError: CACHES = values.CacheURLValue(default="memcached://127.0.0.1:11211") # END CACHING # Your production stuff: Below this line define 3rd party library settings
Java
<?php /** * Locale data for 'tn'. * * This file is automatically generated by yiic cldr command. * * Copyright © 1991-2007 Unicode, Inc. All rights reserved. * Distributed under the Terms of Use in http://www.unicode.org/copyright.html. * * Copyright © 2008-2010 Yii Software LLC (http://www.yiiframework.com/license/) */ return array ( 'version' => '4123', 'numberSymbols' => array ( 'decimal' => ',', 'group' => ' ', 'list' => ';', 'percentSign' => '%', 'nativeZeroDigit' => '0', 'patternDigit' => '#', 'plusSign' => '+', 'minusSign' => '-', 'exponential' => 'E', 'perMille' => '‰', 'infinity' => '∞', 'nan' => 'NaN', ), 'decimalFormat' => '#,##0.###', 'scientificFormat' => '#E0', 'percentFormat' => '#,##0%', 'currencyFormat' => '¤#,##0.00', 'currencySymbols' => array ( 'AFN' => 'Af', 'ANG' => 'NAf.', 'AOA' => 'Kz', 'ARA' => '₳', 'ARL' => '$L', 'ARM' => 'm$n', 'ARS' => 'AR$', 'AUD' => 'AU$', 'AWG' => 'Afl.', 'AZN' => 'man.', 'BAM' => 'KM', 'BBD' => 'Bds$', 'BDT' => 'Tk', 'BEF' => 'BF', 'BHD' => 'BD', 'BIF' => 'FBu', 'BMD' => 'BD$', 'BND' => 'BN$', 'BOB' => 'Bs', 'BOP' => '$b.', 'BRL' => 'R$', 'BSD' => 'BS$', 'BTN' => 'Nu.', 'BWP' => 'BWP', 'BZD' => 'BZ$', 'CAD' => 'CA$', 'CDF' => 'CDF', 'CHF' => 'Fr.', 'CLE' => 'Eº', 'CLP' => 'CL$', 'CNY' => 'CN¥', 'COP' => 'CO$', 'CRC' => '₡', 'CUC' => 'CUC$', 'CUP' => 'CU$', 'CVE' => 'CV$', 'CYP' => 'CY£', 'CZK' => 'Kč', 'DEM' => 'DM', 'DJF' => 'Fdj', 'DKK' => 'Dkr', 'DOP' => 'RD$', 'DZD' => 'DA', 'EEK' => 'Ekr', 'EGP' => 'EG£', 'ERN' => 'Nfk', 'ESP' => 'Pts', 'ETB' => 'Br', 'EUR' => '€', 'FIM' => 'mk', 'FJD' => 'FJ$', 'FKP' => 'FK£', 'FRF' => '₣', 'GBP' => '£', 'GHC' => '₵', 'GHS' => 'GH₵', 'GIP' => 'GI£', 'GMD' => 'GMD', 'GNF' => 'FG', 'GRD' => '₯', 'GTQ' => 'GTQ', 'GYD' => 'GY$', 'HKD' => 'HK$', 'HNL' => 'HNL', 'HRK' => 'kn', 'HTG' => 'HTG', 'HUF' => 'Ft', 'IDR' => 'Rp', 'IEP' => 'IR£', 'ILP' => 'I£', 'ILS' => '₪', 'INR' => 'Rs', 'ISK' => 'Ikr', 'ITL' => 'IT₤', 'JMD' => 'J$', 'JOD' => 'JD', 'JPY' => 'JP¥', 'KES' => 'Ksh', 'KMF' => 'CF', 'KRW' => '₩', 'KWD' => 'KD', 'KYD' => 'KY$', 'LAK' => '₭', 'LBP' => 'LB£', 'LKR' => 'SLRs', 'LRD' => 'L$', 'LSL' => 'LSL', 'LTL' => 'Lt', 'LVL' => 'Ls', 'LYD' => 'LD', 'MMK' => 'MMK', 'MNT' => '₮', 'MOP' => 'MOP$', 'MRO' => 'UM', 'MTL' => 'Lm', 'MTP' => 'MT£', 'MUR' => 'MURs', 'MXP' => 'MX$', 'MYR' => 'RM', 'MZM' => 'Mt', 'MZN' => 'MTn', 'NAD' => 'N$', 'NGN' => '₦', 'NIO' => 'C$', 'NLG' => 'fl', 'NOK' => 'Nkr', 'NPR' => 'NPRs', 'NZD' => 'NZ$', 'PAB' => 'B/.', 'PEI' => 'I/.', 'PEN' => 'S/.', 'PGK' => 'PGK', 'PHP' => '₱', 'PKR' => 'PKRs', 'PLN' => 'zł', 'PTE' => 'Esc', 'PYG' => '₲', 'QAR' => 'QR', 'RHD' => 'RH$', 'RON' => 'RON', 'RSD' => 'din.', 'SAR' => 'SR', 'SBD' => 'SI$', 'SCR' => 'SRe', 'SDD' => 'LSd', 'SEK' => 'Skr', 'SGD' => 'S$', 'SHP' => 'SH£', 'SKK' => 'Sk', 'SLL' => 'Le', 'SOS' => 'Ssh', 'SRD' => 'SR$', 'SRG' => 'Sf', 'STD' => 'Db', 'SVC' => 'SV₡', 'SYP' => 'SY£', 'SZL' => 'SZL', 'THB' => '฿', 'TMM' => 'TMM', 'TND' => 'DT', 'TOP' => 'T$', 'TRL' => 'TRL', 'TRY' => 'TL', 'TTD' => 'TT$', 'TWD' => 'NT$', 'TZS' => 'TSh', 'UAH' => '₴', 'UGX' => 'USh', 'USD' => 'US$', 'UYU' => '$U', 'VEF' => 'Bs.F.', 'VND' => '₫', 'VUV' => 'VT', 'WST' => 'WS$', 'XAF' => 'FCFA', 'XCD' => 'EC$', 'XOF' => 'CFA', 'XPF' => 'CFPF', 'YER' => 'YR', 'ZAR' => 'R', 'ZMK' => 'ZK', 'ZRN' => 'NZ', 'ZRZ' => 'ZRZ', 'ZWD' => 'Z$', ), 'monthNames' => array ( 'wide' => array ( 1 => 'Ferikgong', 2 => 'Tlhakole', 3 => 'Mopitlo', 4 => 'Moranang', 5 => 'Motsheganang', 6 => 'Seetebosigo', 7 => 'Phukwi', 8 => 'Phatwe', 9 => 'Lwetse', 10 => 'Diphalane', 11 => 'Ngwanatsele', 12 => 'Sedimonthole', ), 'abbreviated' => array ( 1 => 'Fer', 2 => 'Tlh', 3 => 'Mop', 4 => 'Mor', 5 => 'Mot', 6 => 'See', 7 => 'Phu', 8 => 'Pha', 9 => 'Lwe', 10 => 'Dip', 11 => 'Ngw', 12 => 'Sed', ), ), 'monthNamesSA' => array ( 'narrow' => array ( 1 => '1', 2 => '2', 3 => '3', 4 => '4', 5 => '5', 6 => '6', 7 => '7', 8 => '8', 9 => '9', 10 => '10', 11 => '11', 12 => '12', ), ), 'weekDayNames' => array ( 'wide' => array ( 0 => 'Tshipi', 1 => 'Mosopulogo', 2 => 'Labobedi', 3 => 'Laboraro', 4 => 'Labone', 5 => 'Labotlhano', 6 => 'Matlhatso', ), 'abbreviated' => array ( 0 => 'Tsh', 1 => 'Mos', 2 => 'Bed', 3 => 'Rar', 4 => 'Ne', 5 => 'Tla', 6 => 'Mat', ), ), 'weekDayNamesSA' => array ( 'narrow' => array ( 0 => '1', 1 => '2', 2 => '3', 3 => '4', 4 => '5', 5 => '6', 6 => '7', ), ), 'eraNames' => array ( 'abbreviated' => array ( 0 => 'BC', 1 => 'AD', ), 'wide' => array ( 0 => 'BC', 1 => 'AD', ), 'narrow' => array ( 0 => 'BC', 1 => 'AD', ), ), 'dateFormats' => array ( 'full' => 'EEEE, y MMMM dd', 'long' => 'y MMMM d', 'medium' => 'y MMM d', 'short' => 'yy/MM/dd', ), 'timeFormats' => array ( 'full' => 'HH:mm:ss zzzz', 'long' => 'HH:mm:ss z', 'medium' => 'HH:mm:ss', 'short' => 'HH:mm', ), 'dateTimeFormat' => '{1} {0}', 'amName' => 'AM', 'pmName' => 'PM', );
Java
<?php // autoload_psr4.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( 'Zend\\View\\' => array($vendorDir . '/zendframework/zend-view/src'), 'Zend\\Validator\\' => array($vendorDir . '/zendframework/zend-validator/src'), 'Zend\\Uri\\' => array($vendorDir . '/zendframework/zend-uri/src'), 'Zend\\Stdlib\\' => array($vendorDir . '/zendframework/zend-stdlib/src'), 'Zend\\Session\\' => array($vendorDir . '/zendframework/zend-session/src'), 'Zend\\ServiceManager\\' => array($vendorDir . '/zendframework/zend-servicemanager/src'), 'Zend\\Router\\' => array($vendorDir . '/zendframework/zend-router/src'), 'Zend\\Mvc\\Plugin\\Prg\\' => array($vendorDir . '/zendframework/zend-mvc-plugin-prg/src'), 'Zend\\Mvc\\Plugin\\Identity\\' => array($vendorDir . '/zendframework/zend-mvc-plugin-identity/src'), 'Zend\\Mvc\\Plugin\\FlashMessenger\\' => array($vendorDir . '/zendframework/zend-mvc-plugin-flashmessenger/src'), 'Zend\\Mvc\\Plugin\\FilePrg\\' => array($vendorDir . '/zendframework/zend-mvc-plugin-fileprg/src'), 'Zend\\Mvc\\I18n\\' => array($vendorDir . '/zendframework/zend-mvc-i18n/src'), 'Zend\\Mvc\\' => array($vendorDir . '/zendframework/zend-mvc/src'), 'Zend\\ModuleManager\\' => array($vendorDir . '/zendframework/zend-modulemanager/src'), 'Zend\\Loader\\' => array($vendorDir . '/zendframework/zend-loader/src'), 'Zend\\Json\\' => array($vendorDir . '/zendframework/zend-json/src'), 'Zend\\InputFilter\\' => array($vendorDir . '/zendframework/zend-inputfilter/src'), 'Zend\\I18n\\' => array($vendorDir . '/zendframework/zend-i18n/src'), 'Zend\\Hydrator\\' => array($vendorDir . '/zendframework/zend-hydrator/src'), 'Zend\\Http\\' => array($vendorDir . '/zendframework/zend-http/src'), 'Zend\\Form\\' => array($vendorDir . '/zendframework/zend-form/src'), 'Zend\\Filter\\' => array($vendorDir . '/zendframework/zend-filter/src'), 'Zend\\EventManager\\' => array($vendorDir . '/zendframework/zend-eventmanager/src'), 'Zend\\Escaper\\' => array($vendorDir . '/zendframework/zend-escaper/src'), 'Zend\\Debug\\' => array($vendorDir . '/zendframework/zend-debug/src'), 'Zend\\Db\\' => array($vendorDir . '/zendframework/zend-db/src'), 'Zend\\Config\\' => array($vendorDir . '/zendframework/zend-config/src'), 'Zend\\ComponentInstaller\\' => array($vendorDir . '/zendframework/zend-component-installer/src'), 'Zend\\Code\\' => array($vendorDir . '/zendframework/zend-code/src'), 'Zend\\Authentication\\' => array($vendorDir . '/zendframework/zend-authentication/src'), 'ZendDeveloperTools\\' => array($vendorDir . '/zendframework/zend-developer-tools/src'), 'ZF\\DevelopmentMode\\' => array($vendorDir . '/zfcampus/zf-development-mode/src'), 'Pajakdaerah\\' => array($baseDir . '/module/Pajakdaerah/src'), 'Interop\\Container\\' => array($vendorDir . '/container-interop/container-interop/src/Interop/Container'), 'Application\\' => array($baseDir . '/module/Application/src'), 'ApplicationTest\\' => array($baseDir . '/module/Application/test'), );
Java
/* * Software License Agreement (New BSD License) * * Copyright (c) 2013, Keith Leung, Felipe Inostroza * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of the Advanced Mining Technology Center (AMTC), the * Universidad de Chile, nor the names of its contributors may be * used to endorse or promote products derived from this software without * specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE AMTC, UNIVERSIDAD DE CHILE, OR THE COPYRIGHT * HOLDERS 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. */ #include <assert.h> #include <boost/filesystem.hpp> #include "GaussianMixture.hpp" #include "Landmark.hpp" #include "COLA.hpp" #include "Particle.hpp" #include "Pose.hpp" #include <stdio.h> #include <string> #include <vector> typedef unsigned int uint; using namespace rfs; class MM : public Landmark2d{ public: MM(double x, double y, rfs::TimeStamp t = TimeStamp() ){ x_(0) = x; x_(1) = y; this->setTime(t); } ~MM(){} double operator-(const MM& other){ rfs::Landmark2d::Vec dx = x_ - other.x_; return dx.norm(); //return sqrt(mahalanobisDist2( other )); For Mahalanobis distance } }; struct COLA_Error{ double error; // combined average error double loc; // localization error double card; // cardinality error TimeStamp t; }; /** * \class LogFileReader2dSim * \brief A class for reading 2d sim log files and for calculating errors */ class LogFileReader2dSim { public: typedef Particle<Pose2d, GaussianMixture<Landmark2d> > TParticle; typedef std::vector< TParticle > TParticleSet; /** Constructor */ LogFileReader2dSim(const char* logDir){ std::string filename_gtpose( logDir ); std::string filename_gtlmk( logDir ); std::string filename_pose( logDir ); std::string filename_lmk( logDir ); std::string filename_dr( logDir ); filename_gtpose += "gtPose.dat"; filename_gtlmk += "gtLandmark.dat"; filename_pose += "particlePose.dat"; filename_lmk += "landmarkEst.dat"; filename_dr += "deadReckoning.dat"; pGTPoseFile = fopen(filename_gtpose.data(), "r"); pGTLandmarkFile = fopen(filename_gtlmk.data(), "r"); pParticlePoseFile = fopen(filename_pose.data(), "r"); pLandmarkEstFile = fopen(filename_lmk.data(), "r"); pDRFile = fopen(filename_dr.data(), "r"); readLandmarkGroundtruth(); int nread = fscanf(pParticlePoseFile, "%lf %d %lf %lf %lf %lf", &p_t_, &p_id_, &p_x_, &p_y_, &p_z_, &p_w_); //printf("n = %d\n", nread); //printf("t = %f [%d] %f %f %f\n", p_t_, p_id_, p_x_, p_y_, p_w_); nread = fscanf(pLandmarkEstFile, "%lf %d %lf %lf %lf %lf %lf %lf\n", &lmk_t_, &lmk_pid_, &lmk_x_, &lmk_y_, &lmk_sxx_, &lmk_sxy_, &lmk_syy_, &lmk_w_); //printf("n = %d\n", nread); //printf("t = %f [%d] %f %f %f\n", lmk_t_, lmk_pid_, lmk_x_, lmk_y_, lmk_w_); } /** Destructor */ ~LogFileReader2dSim(){ fclose(pGTPoseFile); fclose(pGTLandmarkFile); fclose(pParticlePoseFile); fclose(pLandmarkEstFile); fclose(pDRFile); } /** Read landmark groundtruth data * \return number of landmarks */ void readLandmarkGroundtruth(){ double x, y, t; while( fscanf(pGTLandmarkFile, "%lf %lf %lf", &x, &y, &t) == 3){ map_e_M_.push_back( MM( x, y, TimeStamp(t) ) ); } } /** Read data for the next timestep * \return time for which data was read */ double readNextStepData(){ if( fscanf(pGTPoseFile, "%lf %lf %lf %lf\n", &t_currentStep_, &rx_, &ry_, &rz_ ) == 4){ // Dead reckoning int rval = fscanf(pDRFile, "%lf %lf %lf %lf\n", &dr_t_, &dr_x_, &dr_y_, &dr_z_); // Particles particles_.clear(); particles_.reserve(200); w_sum_ = 0; double w_hi = 0; while(fabs(p_t_ - t_currentStep_) < 1e-12 ){ // printf("t = %f [%d] %f %f %f\n", p_t_, p_id_, p_x_, p_y_, p_w_); w_sum_ += p_w_; if( p_w_ > w_hi ){ i_hi_ = p_id_; w_hi = p_w_; } Pose2d p; p[0] = p_x_; p[1] = p_y_; p[2] = p_z_; TParticle particle(p_id_, p, p_w_); particles_.push_back( particle ); particles_[p_id_].setData( TParticle::PtrData( new GaussianMixture<Landmark2d> )); if( fscanf(pParticlePoseFile, "%lf %d %lf %lf %lf %lf", &p_t_, &p_id_, &p_x_, &p_y_, &p_z_, &p_w_) != 6) break; } // Landmark estimate from highest weighted particle double const W_THRESHOLD = 0.75; emap_e_M_.clear(); cardEst_ = 0; while(fabs(lmk_t_ - t_currentStep_) < 1e-12){ if( lmk_pid_ == i_hi_ ){ if( lmk_w_ >= W_THRESHOLD ){ MM m_e_M(lmk_x_, lmk_y_, lmk_t_); rfs::Landmark2d::Cov mCov; mCov << lmk_sxx_, lmk_sxy_, lmk_sxy_, lmk_syy_; m_e_M.setCov(mCov); emap_e_M_.push_back(m_e_M); } cardEst_ += lmk_w_; } if(fscanf(pLandmarkEstFile, "%lf %d %lf %lf %lf %lf %lf %lf\n", &lmk_t_, &lmk_pid_, &lmk_x_, &lmk_y_, &lmk_sxx_, &lmk_sxy_, &lmk_syy_, &lmk_w_) != 8) break; } return t_currentStep_; } return -1; } /** Calculate the cardinality error for landmark estimates * \param[out] nLandmarksObservable the actual number of observed landnmarks up to the current time * \return cardinality estimate */ double getCardinalityEst( int &nLandmarksObservable ){ std::vector<MM> map_e_k_M; // observed groundtruth map storage (for Mahananobis distance calculations) map_e_k_M.clear(); for(uint i = 0; i < map_e_M_.size(); i++){ if( map_e_M_[i].getTime().getTimeAsDouble() <= t_currentStep_ ){ map_e_k_M.push_back(map_e_M_[i]); } } nLandmarksObservable = map_e_k_M.size(); return cardEst_; } /** Caclculate the error for landmark estimates * \return COLA errors */ COLA_Error calcLandmarkError(){ double const cutoff = 0.20; // cola cutoff double const order = 1.0; // cola order std::vector<MM> map_e_k_M; // observed groundtruth map storage (for Mahananobis distance calculations) map_e_k_M.clear(); for(uint i = 0; i < map_e_M_.size(); i++){ if( map_e_M_[i].getTime().getTimeAsDouble() <= t_currentStep_ ){ map_e_k_M.push_back(map_e_M_[i]); } } COLA_Error e_cola; e_cola.t = t_currentStep_; COLA<MM> cola(emap_e_M_, map_e_k_M, cutoff, order); e_cola.error = cola.calcError(&(e_cola.loc), &(e_cola.card)); return e_cola; } /** Calculate the dead reckoning error */ void calcDRError(double &err_x, double &err_y, double &err_rot, double &err_dist){ err_x = dr_x_ - rx_; err_y = dr_y_ - ry_; err_rot = dr_z_ - rz_; if(err_rot > PI) err_rot -= 2*PI; else if(err_rot < -PI) err_rot += 2*PI; err_dist = sqrt(err_x * err_x + err_y * err_y); } /** Calculate the error for vehicle pose estimate */ void calcPoseError(double &err_x, double &err_y, double &err_rot, double &err_dist, bool getAverageError = true){ err_x = 0; err_y = 0; err_rot = 0; err_dist = 0; Pose2d poseEst; double w = 1; double ex; double ey; double er; for(int i = 0; i < particles_.size(); i++){ if( !getAverageError && i != i_hi_){ continue; } if( getAverageError ){ w = particles_[i].getWeight(); } poseEst = particles_[i]; ex = poseEst[0] - rx_; ey = poseEst[1] - ry_; er = poseEst[2] - rz_; if(er > PI) er -= 2 * PI; else if(er < -PI) er += 2 * PI; err_x += ex * w; err_y += ey * w; err_rot += er * w; err_dist += sqrt(ex * ex + ey * ey) * w; if( !getAverageError && i == i_hi_){ break; } } if( getAverageError ){ err_x /= w_sum_; err_y /= w_sum_; err_rot /= w_sum_; err_dist /= w_sum_; } } private: FILE* pGTPoseFile; /**< robot pose groundtruth file pointer */ FILE* pGTLandmarkFile; /**< landmark groundtruth file pointer */ FILE* pParticlePoseFile; /**< pose estimate file pointer */ FILE* pLandmarkEstFile; /**< landmark estimate file pointer */ FILE* pMapEstErrorFile; /**< landmark estimate error file pointer */ FILE* pDRFile; /**< Dead-reckoning file */ double mx_; /**< landmark x pos */ double my_; /**< landmark y pos */ double t_currentStep_; double rx_; double ry_; double rz_; double dr_x_; double dr_y_; double dr_z_; double dr_t_; double i_hi_; /** highest particle weight index */ double w_sum_; /** particle weight sum */ TParticleSet particles_; std::vector< Pose2d > pose_gt_; std::vector<MM> map_e_M_; // groundtruth map storage (for Mahananobis distance calculations) std::vector<MM> emap_e_M_; // estimated map storage (for Mahananobis distance calculations) double cardEst_; // cardinality estimate double p_t_; int p_id_; double p_x_; double p_y_; double p_z_; double p_w_; double lmk_t_; int lmk_pid_; double lmk_x_; double lmk_y_; double lmk_sxx_; double lmk_sxy_; double lmk_syy_; double lmk_w_; }; int main(int argc, char* argv[]){ if( argc != 2 ){ printf("Usage: analysis2dSim DATA_DIR/\n"); return 0; } const char* logDir = argv[1]; printf("Log directory: %s\n", logDir); boost::filesystem::path dir(logDir); if(!exists(dir)){ printf("Log directory %s does not exist\n", logDir); return 0; } std::string filenameLandmarkEstError( logDir ); std::string filenamePoseEstError( logDir ); std::string filenameDREstError( logDir ); filenameLandmarkEstError += "landmarkEstError.dat"; filenamePoseEstError += "poseEstError.dat"; filenameDREstError += "deadReckoningError.dat"; FILE* pMapEstErrorFile = fopen(filenameLandmarkEstError.data(), "w"); FILE* pPoseEstErrorFile = fopen(filenamePoseEstError.data(), "w"); FILE* pDREstErrorFile = fopen(filenameDREstError.data(), "w"); LogFileReader2dSim reader(logDir); double k = reader.readNextStepData(); while( k != -1){ //printf("Time: %f\n", k); double ex, ey, er, ed; reader.calcDRError( ex, ey, er, ed); fprintf(pDREstErrorFile, "%f %f %f %f %f\n", k, ex, ey, er, ed); reader.calcPoseError( ex, ey, er, ed, false ); fprintf(pPoseEstErrorFile, "%f %f %f %f %f\n", k, ex, ey, er, ed); //printf(" error x: %f error y: %f error rot: %f error dist: %f\n", ex, ey, er, ed); int nLandmarksObserved; double cardEst = reader.getCardinalityEst( nLandmarksObserved ); COLA_Error colaError = reader.calcLandmarkError(); fprintf(pMapEstErrorFile, "%f %d %f %f\n", k, nLandmarksObserved, cardEst, colaError.error); //printf(" nLandmarks: %d nLandmarks estimated: %f COLA error: %f\n", nLandmarksObserved, cardEst, colaError.loc + colaError.card); //printf("--------------------\n"); k = reader.readNextStepData(); } fclose(pPoseEstErrorFile); fclose(pMapEstErrorFile); fclose(pDREstErrorFile); return 0; }
Java
/* * Copyright (C) 2007 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. * * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``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 COMPUTER, INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * */ #include "config.h" #include "TextEvent.h" #include "DocumentFragment.h" #include "EventNames.h" namespace WebCore { PassRefPtr<TextEvent> TextEvent::create() { return adoptRef(new TextEvent); } PassRefPtr<TextEvent> TextEvent::create(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) { return adoptRef(new TextEvent(view, data, inputType)); } PassRefPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace) { return adoptRef(new TextEvent(view, data, 0, shouldSmartReplace, false)); } PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle) { return adoptRef(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle)); } PassRefPtr<TextEvent> TextEvent::createForDrop(PassRefPtr<AbstractView> view, const String& data) { return adoptRef(new TextEvent(view, data, TextEventInputDrop)); } PassRefPtr<TextEvent> TextEvent::createForDictation(PassRefPtr<AbstractView> view, const String& data, const Vector<DictationAlternative>& dictationAlternatives) { return adoptRef(new TextEvent(view, data, dictationAlternatives)); } TextEvent::TextEvent() : m_inputType(TextEventInputKeyboard) , m_shouldSmartReplace(false) , m_shouldMatchStyle(false) { } TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) : UIEvent(eventNames().textInputEvent, true, true, view, 0) , m_inputType(inputType) , m_data(data) , m_pastingFragment(0) , m_shouldSmartReplace(false) , m_shouldMatchStyle(false) { } TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment, bool shouldSmartReplace, bool shouldMatchStyle) : UIEvent(eventNames().textInputEvent, true, true, view, 0) , m_inputType(TextEventInputPaste) , m_data(data) , m_pastingFragment(pastingFragment) , m_shouldSmartReplace(shouldSmartReplace) , m_shouldMatchStyle(shouldMatchStyle) { } TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, const Vector<DictationAlternative>& dictationAlternatives) : UIEvent(eventNames().textInputEvent, true, true, view, 0) , m_inputType(TextEventInputDictation) , m_data(data) , m_shouldSmartReplace(false) , m_shouldMatchStyle(false) , m_dictationAlternatives(dictationAlternatives) { } TextEvent::~TextEvent() { } void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) { if (dispatched()) return; initUIEvent(type, canBubble, cancelable, view, 0); m_data = data; } EventInterface TextEvent::eventInterface() const { return TextEventInterfaceType; } } // namespace WebCore
Java
/* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ export default {"viewBox":"0 0 52 52","xmlns":"http://www.w3.org/2000/svg","path":[{"d":"M43.3 6h-1.73a.74.74 0 00-.67.8V10a6.37 6.37 0 01-6.3 6.4H17.4a6.37 6.37 0 01-6.3-6.4V6.67a.74.74 0 00-.8-.67H8.7A4.77 4.77 0 004 10.8v34.4A4.77 4.77 0 008.7 50h34.6a4.77 4.77 0 004.7-4.8V10.8A4.77 4.77 0 0043.3 6zM25.92 45a12 12 0 01.16-24 12 12 0 01-.16 24z"},{"d":"M16.91 11.6h17.86a1.59 1.59 0 001.63-1.55V6.8A4.81 4.81 0 0031.6 2H20.4a4.82 4.82 0 00-4.8 4.8V10a1.47 1.47 0 001.31 1.6zM32.23 27.2A9.09 9.09 0 0026 24.4v8.8h8.77a7.32 7.32 0 00-2.54-6z"}]};
Java
// 1000-page badge // Awarded when total read page count exceeds 1000. var sys = require('sys'); var _ = require('underscore'); var users = require('../../users'); var badge_template = require('./badge'); // badge key, must be unique. var name = "1000page"; exports.badge_info = { id: name, name: "1,000 Pages", achievement: "Reading over 1,000 pages." } // the in-work state of a badge for a user function Badge (userid) { badge_template.Badge.apply(this,arguments); this.id = name; this.page_goal = 1000; }; // inherit from the badge template sys.inherits(Badge, badge_template.Badge); // Steps to perform when a book is added or modified in the read list Badge.prototype.add_reading_transform = function(reading,callback) { var pages = parseInt(reading.book.pages); if (_.isNumber(pages)) { this.state[reading.book_id] = pages } callback(); }; // Steps to perform when a book is removed from the read list. Badge.prototype.remove_book_transform = function(book,callback) { delete(this.state[book.id]); callback(); }; // determine if the badge should be awarded, and if yes, do so Badge.prototype.should_award = function(callback) { // sum all page counts in state var pagecount = 0; for (bookid in this.state) { pagecount += this.state[bookid] } return (pagecount >= this.page_goal); } exports.Badge = Badge;
Java
/*================================================================================ Copyright (c) 2012 Steve Jin. All Rights Reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of VMware, Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 VMWARE, INC. OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ================================================================================*/ package com.vmware.vim25; /** * @author Steve Jin (http://www.doublecloud.org) * @version 5.1 */ @SuppressWarnings("all") public class StaticRouteProfile extends ApplyProfile { public String key; public String getKey() { return this.key; } public void setKey(String key) { this.key=key; } }
Java
#ifndef MTF_MC_RSCV_H #define MTF_MC_RSCV_H #include "RSCV.h" _MTF_BEGIN_NAMESPACE class MCRSCV : public RSCV{ public: MCRSCV(const ParamType *rscv_params = nullptr); }; _MTF_END_NAMESPACE #endif
Java
// Copyright 2014 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chrome/browser/chromeos/timezone/timezone_request.h" #include <string> #include "base/json/json_reader.h" #include "base/metrics/histogram.h" #include "base/metrics/sparse_histogram.h" #include "base/strings/string_number_conversions.h" #include "base/strings/stringprintf.h" #include "base/time/time.h" #include "base/values.h" #include "content/public/common/geoposition.h" #include "google_apis/google_api_keys.h" #include "net/base/escape.h" #include "net/base/load_flags.h" #include "net/http/http_status_code.h" #include "net/url_request/url_fetcher.h" #include "net/url_request/url_request_context_getter.h" #include "net/url_request/url_request_status.h" namespace chromeos { namespace { const char kDefaultTimezoneProviderUrl[] = "https://maps.googleapis.com/maps/api/timezone/json?"; const char kKeyString[] = "key"; // Language parameter is unsupported for now. // const char kLanguageString[] = "language"; const char kLocationString[] = "location"; const char kSensorString[] = "sensor"; const char kTimestampString[] = "timestamp"; const char kDstOffsetString[] = "dstOffset"; const char kRawOffsetString[] = "rawOffset"; const char kTimeZoneIdString[] = "timeZoneId"; const char kTimeZoneNameString[] = "timeZoneName"; const char kStatusString[] = "status"; const char kErrorMessageString[] = "error_message"; // Sleep between timezone request retry on HTTP error. const unsigned int kResolveTimeZoneRetrySleepOnServerErrorSeconds = 5; // Sleep between timezone request retry on bad server response. const unsigned int kResolveTimeZoneRetrySleepBadResponseSeconds = 10; struct StatusString2Enum { const char* string; TimeZoneResponseData::Status value; }; const StatusString2Enum statusString2Enum[] = { {"OK", TimeZoneResponseData::OK}, {"INVALID_REQUEST", TimeZoneResponseData::INVALID_REQUEST}, {"OVER_QUERY_LIMIT", TimeZoneResponseData::OVER_QUERY_LIMIT}, {"REQUEST_DENIED", TimeZoneResponseData::REQUEST_DENIED}, {"UNKNOWN_ERROR", TimeZoneResponseData::UNKNOWN_ERROR}, {"ZERO_RESULTS", TimeZoneResponseData::ZERO_RESULTS}, }; enum TimeZoneRequestEvent { // NOTE: Do not renumber these as that would confuse interpretation of // previously logged data. When making changes, also update the enum list // in tools/metrics/histograms/histograms.xml to keep it in sync. TIMEZONE_REQUEST_EVENT_REQUEST_START = 0, TIMEZONE_REQUEST_EVENT_RESPONSE_SUCCESS = 1, TIMEZONE_REQUEST_EVENT_RESPONSE_NOT_OK = 2, TIMEZONE_REQUEST_EVENT_RESPONSE_EMPTY = 3, TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED = 4, // NOTE: Add entries only immediately above this line. TIMEZONE_REQUEST_EVENT_COUNT = 5 }; enum TimeZoneRequestResult { // NOTE: Do not renumber these as that would confuse interpretation of // previously logged data. When making changes, also update the enum list // in tools/metrics/histograms/histograms.xml to keep it in sync. TIMEZONE_REQUEST_RESULT_SUCCESS = 0, TIMEZONE_REQUEST_RESULT_FAILURE = 1, TIMEZONE_REQUEST_RESULT_SERVER_ERROR = 2, TIMEZONE_REQUEST_RESULT_CANCELLED = 3, // NOTE: Add entries only immediately above this line. TIMEZONE_REQUEST_RESULT_COUNT = 4 }; // Too many requests (more than 1) mean there is a problem in implementation. void RecordUmaEvent(TimeZoneRequestEvent event) { UMA_HISTOGRAM_ENUMERATION( "TimeZone.TimeZoneRequest.Event", event, TIMEZONE_REQUEST_EVENT_COUNT); } void RecordUmaResponseCode(int code) { UMA_HISTOGRAM_SPARSE_SLOWLY("TimeZone.TimeZoneRequest.ResponseCode", code); } // Slow timezone resolve leads to bad user experience. void RecordUmaResponseTime(base::TimeDelta elapsed, bool success) { if (success) { UMA_HISTOGRAM_TIMES("TimeZone.TimeZoneRequest.ResponseSuccessTime", elapsed); } else { UMA_HISTOGRAM_TIMES("TimeZone.TimeZoneRequest.ResponseFailureTime", elapsed); } } void RecordUmaResult(TimeZoneRequestResult result, unsigned retries) { UMA_HISTOGRAM_ENUMERATION( "TimeZone.TimeZoneRequest.Result", result, TIMEZONE_REQUEST_RESULT_COUNT); UMA_HISTOGRAM_SPARSE_SLOWLY("TimeZone.TimeZoneRequest.Retries", retries); } // Creates the request url to send to the server. GURL TimeZoneRequestURL(const GURL& url, const content::Geoposition& geoposition, bool sensor) { std::string query(url.query()); query += base::StringPrintf( "%s=%f,%f", kLocationString, geoposition.latitude, geoposition.longitude); if (url == DefaultTimezoneProviderURL()) { std::string api_key = google_apis::GetAPIKey(); if (!api_key.empty()) { query += "&"; query += kKeyString; query += "="; query += net::EscapeQueryParamValue(api_key, true); } } if (!geoposition.timestamp.is_null()) { query += base::StringPrintf( "&%s=%ld", kTimestampString, geoposition.timestamp.ToTimeT()); } query += "&"; query += kSensorString; query += "="; query += (sensor ? "true" : "false"); GURL::Replacements replacements; replacements.SetQueryStr(query); return url.ReplaceComponents(replacements); } void PrintTimeZoneError(const GURL& server_url, const std::string& message, TimeZoneResponseData* timezone) { timezone->status = TimeZoneResponseData::REQUEST_ERROR; timezone->error_message = base::StringPrintf("TimeZone provider at '%s' : %s.", server_url.GetOrigin().spec().c_str(), message.c_str()); LOG(WARNING) << "TimeZoneRequest::GetTimeZoneFromResponse() : " << timezone->error_message; } // Parses the server response body. Returns true if parsing was successful. // Sets |*timezone| to the parsed TimeZone if a valid timezone was received, // otherwise leaves it unchanged. bool ParseServerResponse(const GURL& server_url, const std::string& response_body, TimeZoneResponseData* timezone) { DCHECK(timezone); if (response_body.empty()) { PrintTimeZoneError(server_url, "Server returned empty response", timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_EMPTY); return false; } VLOG(1) << "TimeZoneRequest::ParseServerResponse() : Parsing response " << response_body; // Parse the response, ignoring comments. std::string error_msg; scoped_ptr<base::Value> response_value(base::JSONReader::ReadAndReturnError( response_body, base::JSON_PARSE_RFC, NULL, &error_msg)); if (response_value == NULL) { PrintTimeZoneError(server_url, "JSONReader failed: " + error_msg, timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } const base::DictionaryValue* response_object = NULL; if (!response_value->GetAsDictionary(&response_object)) { PrintTimeZoneError(server_url, "Unexpected response type : " + base::StringPrintf("%u", response_value->GetType()), timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } std::string status; if (!response_object->GetStringWithoutPathExpansion(kStatusString, &status)) { PrintTimeZoneError(server_url, "Missing status attribute.", timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } bool found = false; for (size_t i = 0; i < arraysize(statusString2Enum); ++i) { if (status != statusString2Enum[i].string) continue; timezone->status = statusString2Enum[i].value; found = true; break; } if (!found) { PrintTimeZoneError( server_url, "Bad status attribute value: '" + status + "'", timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } const bool status_ok = (timezone->status == TimeZoneResponseData::OK); if (!response_object->GetDoubleWithoutPathExpansion(kDstOffsetString, &timezone->dstOffset) && status_ok) { PrintTimeZoneError(server_url, "Missing dstOffset attribute.", timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } if (!response_object->GetDoubleWithoutPathExpansion(kRawOffsetString, &timezone->rawOffset) && status_ok) { PrintTimeZoneError(server_url, "Missing rawOffset attribute.", timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } if (!response_object->GetStringWithoutPathExpansion(kTimeZoneIdString, &timezone->timeZoneId) && status_ok) { PrintTimeZoneError(server_url, "Missing timeZoneId attribute.", timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } if (!response_object->GetStringWithoutPathExpansion( kTimeZoneNameString, &timezone->timeZoneName) && status_ok) { PrintTimeZoneError(server_url, "Missing timeZoneName attribute.", timezone); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_MALFORMED); return false; } // "error_message" field is optional. Ignore result. response_object->GetStringWithoutPathExpansion(kErrorMessageString, &timezone->error_message); return true; } // Attempts to extract a position from the response. Detects and indicates // various failure cases. scoped_ptr<TimeZoneResponseData> GetTimeZoneFromResponse( bool http_success, int status_code, const std::string& response_body, const GURL& server_url) { scoped_ptr<TimeZoneResponseData> timezone(new TimeZoneResponseData); // HttpPost can fail for a number of reasons. Most likely this is because // we're offline, or there was no response. if (!http_success) { PrintTimeZoneError(server_url, "No response received", timezone.get()); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_EMPTY); return timezone.Pass(); } if (status_code != net::HTTP_OK) { std::string message = "Returned error code "; message += base::IntToString(status_code); PrintTimeZoneError(server_url, message, timezone.get()); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_NOT_OK); return timezone.Pass(); } if (!ParseServerResponse(server_url, response_body, timezone.get())) return timezone.Pass(); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_RESPONSE_SUCCESS); return timezone.Pass(); } } // namespace TimeZoneResponseData::TimeZoneResponseData() : dstOffset(0), rawOffset(0), status(ZERO_RESULTS) { } GURL DefaultTimezoneProviderURL() { return GURL(kDefaultTimezoneProviderUrl); } TimeZoneRequest::TimeZoneRequest( net::URLRequestContextGetter* url_context_getter, const GURL& service_url, const content::Geoposition& geoposition, bool sensor, base::TimeDelta retry_timeout) : url_context_getter_(url_context_getter), service_url_(service_url), geoposition_(geoposition), sensor_(sensor), retry_timeout_abs_(base::Time::Now() + retry_timeout), retries_(0) { } TimeZoneRequest::~TimeZoneRequest() { DCHECK(thread_checker_.CalledOnValidThread()); // If callback is not empty, request is cancelled. if (!callback_.is_null()) { RecordUmaResponseTime(base::Time::Now() - request_started_at_, false); RecordUmaResult(TIMEZONE_REQUEST_RESULT_CANCELLED, retries_); } } void TimeZoneRequest::StartRequest() { DCHECK(thread_checker_.CalledOnValidThread()); RecordUmaEvent(TIMEZONE_REQUEST_EVENT_REQUEST_START); request_started_at_ = base::Time::Now(); ++retries_; url_fetcher_.reset( net::URLFetcher::Create(request_url_, net::URLFetcher::GET, this)); url_fetcher_->SetRequestContext(url_context_getter_); url_fetcher_->SetLoadFlags(net::LOAD_BYPASS_CACHE | net::LOAD_DISABLE_CACHE | net::LOAD_DO_NOT_SAVE_COOKIES | net::LOAD_DO_NOT_SEND_COOKIES | net::LOAD_DO_NOT_SEND_AUTH_DATA); url_fetcher_->Start(); } void TimeZoneRequest::MakeRequest(TimeZoneResponseCallback callback) { callback_ = callback; request_url_ = TimeZoneRequestURL(service_url_, geoposition_, false /* sensor */); StartRequest(); } void TimeZoneRequest::Retry(bool server_error) { const base::TimeDelta delay = base::TimeDelta::FromSeconds( server_error ? kResolveTimeZoneRetrySleepOnServerErrorSeconds : kResolveTimeZoneRetrySleepBadResponseSeconds); timezone_request_scheduled_.Start( FROM_HERE, delay, this, &TimeZoneRequest::StartRequest); } void TimeZoneRequest::OnURLFetchComplete(const net::URLFetcher* source) { DCHECK_EQ(url_fetcher_.get(), source); net::URLRequestStatus status = source->GetStatus(); int response_code = source->GetResponseCode(); RecordUmaResponseCode(response_code); std::string data; source->GetResponseAsString(&data); scoped_ptr<TimeZoneResponseData> timezone = GetTimeZoneFromResponse( status.is_success(), response_code, data, source->GetURL()); const bool server_error = !status.is_success() || (response_code >= 500 && response_code < 600); url_fetcher_.reset(); DVLOG(1) << "TimeZoneRequest::OnURLFetchComplete(): timezone={" << timezone->ToStringForDebug() << "}"; const base::Time now = base::Time::Now(); const bool retry_timeout = (now >= retry_timeout_abs_); const bool success = (timezone->status == TimeZoneResponseData::OK); if (!success && !retry_timeout) { Retry(server_error); return; } RecordUmaResponseTime(base::Time::Now() - request_started_at_, success); const TimeZoneRequestResult result = (server_error ? TIMEZONE_REQUEST_RESULT_SERVER_ERROR : (success ? TIMEZONE_REQUEST_RESULT_SUCCESS : TIMEZONE_REQUEST_RESULT_FAILURE)); RecordUmaResult(result, retries_); TimeZoneResponseCallback callback = callback_; // Empty callback is used to identify "completed or not yet started request". callback_.Reset(); // callback.Run() usually destroys TimeZoneRequest, because this is the way // callback is implemented in TimeZoneProvider. callback.Run(timezone.Pass(), server_error); // "this" is already destroyed here. } std::string TimeZoneResponseData::ToStringForDebug() const { static const char* const status2string[] = { "OK", "INVALID_REQUEST", "OVER_QUERY_LIMIT", "REQUEST_DENIED", "UNKNOWN_ERROR", "ZERO_RESULTS", "REQUEST_ERROR" }; return base::StringPrintf( "dstOffset=%f, rawOffset=%f, timeZoneId='%s', timeZoneName='%s', " "error_message='%s', status=%u (%s)", dstOffset, rawOffset, timeZoneId.c_str(), timeZoneName.c_str(), error_message.c_str(), (unsigned)status, (status < arraysize(status2string) ? status2string[status] : "unknown")); }; } // namespace chromeos
Java
/* FreeRTOS V7.6.0 - Copyright (C) 2013 Real Time Engineers Ltd. All rights reserved VISIT http://www.FreeRTOS.org TO ENSURE YOU ARE USING THE LATEST VERSION. *************************************************************************** * * * FreeRTOS provides completely free yet professionally developed, * * robust, strictly quality controlled, supported, and cross * * platform software that has become a de facto standard. * * * * Help yourself get started quickly and support the FreeRTOS * * project by purchasing a FreeRTOS tutorial book, reference * * manual, or both from: http://www.FreeRTOS.org/Documentation * * * * Thank you! * * * *************************************************************************** This file is part of the FreeRTOS distribution. FreeRTOS is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License (version 2) as published by the Free Software Foundation >>!AND MODIFIED BY!<< the FreeRTOS exception. >>! NOTE: The modification to the GPL is included to allow you to distribute >>! a combined work that includes FreeRTOS without being obliged to provide >>! the source code for proprietary components outside of the FreeRTOS >>! kernel. FreeRTOS is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. Full license text is available from the following link: http://www.freertos.org/a00114.html 1 tab == 4 spaces! *************************************************************************** * * * Having a problem? Start by reading the FAQ "My application does * * not run, what could be wrong?" * * * * http://www.FreeRTOS.org/FAQHelp.html * * * *************************************************************************** http://www.FreeRTOS.org - Documentation, books, training, latest versions, license and Real Time Engineers Ltd. contact details. http://www.FreeRTOS.org/plus - A selection of FreeRTOS ecosystem products, including FreeRTOS+Trace - an indispensable productivity tool, a DOS compatible FAT file system, and our tiny thread aware UDP/IP stack. http://www.OpenRTOS.com - Real Time Engineers ltd license FreeRTOS to High Integrity Systems to sell under the OpenRTOS brand. Low cost OpenRTOS licenses offer ticketed support, indemnification and middleware. http://www.SafeRTOS.com - High Integrity Systems also provide a safety engineered and independently SIL3 certified version for use in safety and mission critical applications that require provable dependability. 1 tab == 4 spaces! */ /** * Create a single persistent task which periodically dynamically creates another * four tasks. The original task is called the creator task, the four tasks it * creates are called suicidal tasks. * * Two of the created suicidal tasks kill one other suicidal task before killing * themselves - leaving just the original task remaining. * * The creator task must be spawned after all of the other demo application tasks * as it keeps a check on the number of tasks under the scheduler control. The * number of tasks it expects to see running should never be greater than the * number of tasks that were in existence when the creator task was spawned, plus * one set of four suicidal tasks. If this number is exceeded an error is flagged. * * \page DeathC death.c * \ingroup DemoFiles * <HR> */ /* Changes from V2.0.0 + Delay periods are now specified using variables and constants of portTickType rather than unsigned long. */ #include <stdlib.h> /* Scheduler include files. */ #include "FreeRTOS.h" #include "task.h" /* Demo program include files. */ #include "death.h" #include "print.h" #define deathSTACK_SIZE ( ( unsigned short ) 512 ) /* The task originally created which is responsible for periodically dynamically creating another four tasks. */ static void vCreateTasks( void *pvParameters ); /* The task function of the dynamically created tasks. */ static void vSuicidalTask( void *pvParameters ); /* A variable which is incremented every time the dynamic tasks are created. This is used to check that the task is still running. */ static volatile short sCreationCount = 0; /* Used to store the number of tasks that were originally running so the creator task can tell if any of the suicidal tasks have failed to die. */ static volatile unsigned portBASE_TYPE uxTasksRunningAtStart = 0; static const unsigned portBASE_TYPE uxMaxNumberOfExtraTasksRunning = 5; /* Used to store a handle to the tasks that should be killed by a suicidal task, before it kills itself. */ xTaskHandle xCreatedTask1, xCreatedTask2; /*-----------------------------------------------------------*/ void vCreateSuicidalTasks( unsigned portBASE_TYPE uxPriority ) { unsigned portBASE_TYPE *puxPriority; /* Create the Creator tasks - passing in as a parameter the priority at which the suicidal tasks should be created. */ puxPriority = ( unsigned portBASE_TYPE * ) pvPortMalloc( sizeof( unsigned portBASE_TYPE ) ); *puxPriority = uxPriority; xTaskCreate( vCreateTasks, "CREATOR", deathSTACK_SIZE, ( void * ) puxPriority, uxPriority, NULL ); /* Record the number of tasks that are running now so we know if any of the suicidal tasks have failed to be killed. */ uxTasksRunningAtStart = uxTaskGetNumberOfTasks(); } /*-----------------------------------------------------------*/ static void vSuicidalTask( void *pvParameters ) { portDOUBLE d1, d2; xTaskHandle xTaskToKill; const portTickType xDelay = ( portTickType ) 500 / portTICK_RATE_MS; if( pvParameters != NULL ) { /* This task is periodically created four times. Tow created tasks are passed a handle to the other task so it can kill it before killing itself. The other task is passed in null. */ xTaskToKill = *( xTaskHandle* )pvParameters; } else { xTaskToKill = NULL; } for( ;; ) { /* Do something random just to use some stack and registers. */ d1 = 2.4; d2 = 89.2; d2 *= d1; vTaskDelay( xDelay ); if( xTaskToKill != NULL ) { /* Make sure the other task has a go before we delete it. */ vTaskDelay( ( portTickType ) 0 ); /* Kill the other task that was created by vCreateTasks(). */ vTaskDelete( xTaskToKill ); /* Kill ourselves. */ vTaskDelete( NULL ); } } }/*lint !e818 !e550 Function prototype must be as per standard for task functions. */ /*-----------------------------------------------------------*/ static void vCreateTasks( void *pvParameters ) { const portTickType xDelay = ( portTickType ) 1000 / portTICK_RATE_MS; unsigned portBASE_TYPE uxPriority; const char * const pcTaskStartMsg = "Create task started.\r\n"; /* Queue a message for printing to say the task has started. */ vPrintDisplayMessage( &pcTaskStartMsg ); uxPriority = *( unsigned portBASE_TYPE * ) pvParameters; vPortFree( pvParameters ); for( ;; ) { /* Just loop round, delaying then creating the four suicidal tasks. */ vTaskDelay( xDelay ); xTaskCreate( vSuicidalTask, "SUICIDE1", deathSTACK_SIZE, NULL, uxPriority, &xCreatedTask1 ); xTaskCreate( vSuicidalTask, "SUICIDE2", deathSTACK_SIZE, &xCreatedTask1, uxPriority, NULL ); xTaskCreate( vSuicidalTask, "SUICIDE1", deathSTACK_SIZE, NULL, uxPriority, &xCreatedTask2 ); xTaskCreate( vSuicidalTask, "SUICIDE2", deathSTACK_SIZE, &xCreatedTask2, uxPriority, NULL ); ++sCreationCount; } } /*-----------------------------------------------------------*/ /* This is called to check that the creator task is still running and that there are not any more than four extra tasks. */ portBASE_TYPE xIsCreateTaskStillRunning( void ) { static short sLastCreationCount = 0; short sReturn = pdTRUE; unsigned portBASE_TYPE uxTasksRunningNow; if( sLastCreationCount == sCreationCount ) { sReturn = pdFALSE; } uxTasksRunningNow = uxTaskGetNumberOfTasks(); if( uxTasksRunningNow < uxTasksRunningAtStart ) { sReturn = pdFALSE; } else if( ( uxTasksRunningNow - uxTasksRunningAtStart ) > uxMaxNumberOfExtraTasksRunning ) { sReturn = pdFALSE; } else { /* Everything is okay. */ } return sReturn; }
Java
[clappr](../../index.md) / [io.clappr.player.base](../index.md) / [InternalEvent](index.md) / [DID_DESTROY](./-d-i-d_-d-e-s-t-r-o-y.md) # DID_DESTROY `DID_DESTROY` ### Inherited Properties | Name | Summary | |---|---| | [value](value.md) | `val value: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) |
Java
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="lang:clipboard.copy" content="Copy to clipboard"> <meta name="lang:clipboard.copied" content="Copied to clipboard"> <meta name="lang:search.language" content="en"> <meta name="lang:search.pipeline.stopwords" content="True"> <meta name="lang:search.pipeline.trimmer" content="True"> <meta name="lang:search.result.none" content="No matching documents"> <meta name="lang:search.result.one" content="1 matching document"> <meta name="lang:search.result.other" content="# matching documents"> <meta name="lang:search.tokenizer" content="[\s\-]+"> <link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet"> <style> body, input { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif } code, kbd, pre { font-family: "Roboto Mono", "Courier New", Courier, monospace } </style> <link rel="stylesheet" href="../_static/stylesheets/application.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/> <link rel="stylesheet" href="../_static/fonts/material-icons.css"/> <meta name="theme-color" content="#3f51b5"> <script src="../_static/javascripts/modernizr.js"></script> <title>statsmodels.tsa.ar_model.AutoRegResults.wald_test_terms &#8212; statsmodels</title> <link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png"> <link rel="manifest" href="../_static/icons/site.webmanifest"> <link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191"> <meta name="msapplication-TileColor" content="#2b5797"> <meta name="msapplication-config" content="../_static/icons/browserconfig.xml"> <link rel="stylesheet" href="../_static/stylesheets/examples.css"> <link rel="stylesheet" href="../_static/stylesheets/deprecation.css"> <link rel="stylesheet" type="text/css" href="../_static/pygments.css" /> <link rel="stylesheet" type="text/css" href="../_static/material.css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <link rel="stylesheet" type="text/css" href="../_static/plot_directive.css" /> <script data-url_root="../" id="documentation_options" src="../_static/documentation_options.js"></script> <script src="../_static/jquery.js"></script> <script src="../_static/underscore.js"></script> <script src="../_static/doctools.js"></script> <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> <link rel="shortcut icon" href="../_static/favicon.ico"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="next" title="statsmodels.tsa.ar_model.AutoRegResults.aic" href="statsmodels.tsa.ar_model.AutoRegResults.aic.html" /> <link rel="prev" title="statsmodels.tsa.ar_model.AutoRegResults.wald_test" href="statsmodels.tsa.ar_model.AutoRegResults.wald_test.html" /> </head> <body dir=ltr data-md-color-primary=indigo data-md-color-accent=blue> <svg class="md-svg"> <defs data-children-count="0"> <svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg> </defs> </svg> <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer"> <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search"> <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> <a href="#generated/statsmodels.tsa.ar_model.AutoRegResults.wald_test_terms" tabindex="1" class="md-skip"> Skip to content </a> <header class="md-header" data-md-component="header"> <nav class="md-header-nav md-grid"> <div class="md-flex navheader"> <div class="md-flex__cell md-flex__cell--shrink"> <a href="../index.html" title="statsmodels" class="md-header-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" height="26" alt="statsmodels logo"> </a> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> </div> <div class="md-flex__cell md-flex__cell--stretch"> <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> <span class="md-header-nav__topic">statsmodels v0.13.0</span> <span class="md-header-nav__topic"> statsmodels.tsa.ar_model.AutoRegResults.wald_test_terms </span> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> <div class="md-search" data-md-component="search" role="dialog"> <label class="md-search__overlay" for="__search"></label> <div class="md-search__inner" role="search"> <form class="md-search__form" action="../search.html" method="get" name="search"> <input type="text" class="md-search__input" name="q" placeholder="Search" autocapitalize="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> <label class="md-icon md-search__icon" for="__search"></label> <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> &#xE5CD; </button> </form> <div class="md-search__output"> <div class="md-search__scrollwrap" data-md-scrollfix> <div class="md-search-result" data-md-component="result"> <div class="md-search-result__meta"> Type to start searching </div> <ol class="md-search-result__list"></ol> </div> </div> </div> </div> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <div class="md-header-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> </div> <script src="../_static/javascripts/version_dropdown.js"></script> <script> var json_loc = "../../versions-v2.json", target_loc = "../../", text = "Versions"; $( document ).ready( add_version_dropdown(json_loc, target_loc, text)); </script> </div> </nav> </header> <div class="md-container"> <nav class="md-tabs" data-md-component="tabs"> <div class="md-tabs__inner md-grid"> <ul class="md-tabs__list"> <li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li> <li class="md-tabs__item"><a href="../tsa.html" class="md-tabs__link">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a></li> <li class="md-tabs__item"><a href="statsmodels.tsa.ar_model.AutoRegResults.html" class="md-tabs__link">statsmodels.tsa.ar_model.AutoRegResults</a></li> </ul> </div> </nav> <main class="md-main"> <div class="md-main__inner md-grid" data-md-component="container"> <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--primary" data-md-level="0"> <label class="md-nav__title md-nav__title--site" for="__drawer"> <a href="../index.html" title="statsmodels" class="md-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48"> </a> <a href="../index.html" title="statsmodels">statsmodels v0.13.0</a> </label> <div class="md-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../install.html" class="md-nav__link">Installing statsmodels</a> </li> <li class="md-nav__item"> <a href="../gettingstarted.html" class="md-nav__link">Getting started</a> </li> <li class="md-nav__item"> <a href="../user-guide.html" class="md-nav__link">User Guide</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../user-guide.html#background" class="md-nav__link">Background</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../tsa.html" class="md-nav__link">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a> </li> <li class="md-nav__item"> <a href="../statespace.html" class="md-nav__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a> </li> <li class="md-nav__item"> <a href="../vector_ar.html" class="md-nav__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a> </li></ul> </li> <li class="md-nav__item"> <a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a> </li></ul> </li> <li class="md-nav__item"> <a href="../examples/index.html" class="md-nav__link">Examples</a> </li> <li class="md-nav__item"> <a href="../api.html" class="md-nav__link">API Reference</a> </li> <li class="md-nav__item"> <a href="../about.html" class="md-nav__link">About statsmodels</a> </li> <li class="md-nav__item"> <a href="../dev/index.html" class="md-nav__link">Developer Page</a> </li> <li class="md-nav__item"> <a href="../release/index.html" class="md-nav__link">Release Notes</a> </li> </ul> </nav> </div> </div> </div> <div class="md-sidebar md-sidebar--secondary" data-md-component="toc"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--secondary"> <ul class="md-nav__list" data-md-scrollfix=""> <li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.tsa.ar_model.AutoRegResults.wald_test_terms.rst.txt">Show Source</a> </li> <li id="searchbox" class="md-nav__item"></li> </ul> </nav> </div> </div> </div> <div class="md-content"> <article class="md-content__inner md-typeset" role="main"> <h1 id="generated-statsmodels-tsa-ar-model-autoregresults-wald-test-terms--page-root">statsmodels.tsa.ar_model.AutoRegResults.wald_test_terms<a class="headerlink" href="#generated-statsmodels-tsa-ar-model-autoregresults-wald-test-terms--page-root" title="Permalink to this headline">¶</a></h1> <dl class="py method"> <dt class="sig sig-object py" id="statsmodels.tsa.ar_model.AutoRegResults.wald_test_terms"> <span class="sig-prename descclassname"><span class="pre">AutoRegResults.</span></span><span class="sig-name descname"><span class="pre">wald_test_terms</span></span><span class="sig-paren">(</span><em class="sig-param"><span class="n"><span class="pre">skip_single</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">False</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">extra_constraints</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em>, <em class="sig-param"><span class="n"><span class="pre">combine_terms</span></span><span class="o"><span class="pre">=</span></span><span class="default_value"><span class="pre">None</span></span></em><span class="sig-paren">)</span><a class="headerlink" href="#statsmodels.tsa.ar_model.AutoRegResults.wald_test_terms" title="Permalink to this definition">¶</a></dt> <dd><p>Compute a sequence of Wald tests for terms over multiple columns.</p> <p>This computes joined Wald tests for the hypothesis that all coefficients corresponding to a <cite>term</cite> are zero. <cite>Terms</cite> are defined by the underlying formula or by string matching.</p> <dl class="field-list"> <dt class="field-odd">Parameters</dt> <dd class="field-odd"><dl> <dt><strong>skip_single</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#bltin-boolean-values" title="(in Python v3.9)"><span class="xref std std-ref">bool</span></a></span></dt><dd><p>If true, then terms that consist only of a single column and, therefore, refers only to a single parameter is skipped. If false, then all terms are included.</p> </dd> <dt><strong>extra_constraints</strong><span class="classifier"><a class="reference external" href="https://numpy.org/doc/stable/reference/generated/numpy.ndarray.html#numpy.ndarray" title="(in NumPy v1.21)"><code class="xref py py-obj docutils literal notranslate"><span class="pre">ndarray</span></code></a></span></dt><dd><p>Additional constraints to test. Note that this input has not been tested.</p> </dd> <dt><strong>combine_terms</strong><span class="classifier">{<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#list" title="(in Python v3.9)"><code class="docutils literal notranslate"><span class="pre">list</span></code></a>[<a class="reference external" href="https://docs.python.org/3/library/stdtypes.html#str" title="(in Python v3.9)"><code class="docutils literal notranslate"><span class="pre">str</span></code></a>], <a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.9)"><code class="docutils literal notranslate"><span class="pre">None</span></code></a>}</span></dt><dd><p>Each string in this list is matched to the name of the terms or the name of the exogenous variables. All columns whose name includes that string are combined in one joint test.</p> </dd> </dl> </dd> <dt class="field-even">Returns</dt> <dd class="field-even"><dl class="simple"> <dt><code class="xref py py-obj docutils literal notranslate"><span class="pre">WaldTestResults</span></code></dt><dd><p>The result instance contains <cite>table</cite> which is a pandas DataFrame with the test results: test statistic, degrees of freedom and pvalues.</p> </dd> </dl> </dd> </dl> <p class="rubric">Examples</p> <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">res_ols</span> <span class="o">=</span> <span class="n">ols</span><span class="p">(</span><span class="s2">"np.log(Days+1) ~ C(Duration, Sum)*C(Weight, Sum)"</span><span class="p">,</span> <span class="n">data</span><span class="p">)</span><span class="o">.</span><span class="n">fit</span><span class="p">()</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">res_ols</span><span class="o">.</span><span class="n">wald_test_terms</span><span class="p">()</span> <span class="go">&lt;class 'statsmodels.stats.contrast.WaldTestResults'&gt;</span> <span class="go"> F P&gt;F df constraint df denom</span> <span class="go">Intercept 279.754525 2.37985521351e-22 1 51</span> <span class="go">C(Duration, Sum) 5.367071 0.0245738436636 1 51</span> <span class="go">C(Weight, Sum) 12.432445 3.99943118767e-05 2 51</span> <span class="go">C(Duration, Sum):C(Weight, Sum) 0.176002 0.83912310946 2 51</span> </pre></div> </div> <div class="doctest highlight-default notranslate"><div class="highlight"><pre><span></span><span class="gp">&gt;&gt;&gt; </span><span class="n">res_poi</span> <span class="o">=</span> <span class="n">Poisson</span><span class="o">.</span><span class="n">from_formula</span><span class="p">(</span><span class="s2">"Days ~ C(Weight) * C(Duration)"</span><span class="p">,</span> <span class="n">data</span><span class="p">)</span><span class="o">.</span><span class="n">fit</span><span class="p">(</span><span class="n">cov_type</span><span class="o">=</span><span class="s1">'HC0'</span><span class="p">)</span> <span class="gp">&gt;&gt;&gt; </span><span class="n">wt</span> <span class="o">=</span> <span class="n">res_poi</span><span class="o">.</span><span class="n">wald_test_terms</span><span class="p">(</span><span class="n">skip_single</span><span class="o">=</span><span class="kc">False</span><span class="p">,</span> <span class="n">combine_terms</span><span class="o">=</span><span class="p">[</span><span class="s1">'Duration'</span><span class="p">,</span> <span class="s1">'Weight'</span><span class="p">])</span> <span class="gp">&gt;&gt;&gt; </span><span class="nb">print</span><span class="p">(</span><span class="n">wt</span><span class="p">)</span> <span class="go"> chi2 P&gt;chi2 df constraint</span> <span class="go">Intercept 15.695625 7.43960374424e-05 1</span> <span class="go">C(Weight) 16.132616 0.000313940174705 2</span> <span class="go">C(Duration) 1.009147 0.315107378931 1</span> <span class="go">C(Weight):C(Duration) 0.216694 0.897315972824 2</span> <span class="go">Duration 11.187849 0.010752286833 3</span> <span class="go">Weight 30.263368 4.32586407145e-06 4</span> </pre></div> </div> </dd></dl> </article> </div> </div> </main> </div> <footer class="md-footer"> <div class="md-footer-nav"> <nav class="md-footer-nav__inner md-grid"> <a href="statsmodels.tsa.ar_model.AutoRegResults.wald_test.html" title="statsmodels.tsa.ar_model.AutoRegResults.wald_test" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> </div> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Previous </span> statsmodels.tsa.ar_model.AutoRegResults.wald_test </span> </div> </a> <a href="statsmodels.tsa.ar_model.AutoRegResults.aic.html" title="statsmodels.tsa.ar_model.AutoRegResults.aic" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Next </span> statsmodels.tsa.ar_model.AutoRegResults.aic </span> </div> <div class="md-flex__cell md-flex__cell--shrink"><i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> </div> </a> </nav> </div> <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> <div class="md-footer-copyright"> <div class="md-footer-copyright__highlight"> &#169; Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers. </div> Last updated on Oct 06, 2021. <br/> Created using <a href="http://www.sphinx-doc.org/">Sphinx</a> 4.0.3. and <a href="https://github.com/bashtage/sphinx-material/">Material for Sphinx</a> </div> </div> </div> </footer> <script src="../_static/javascripts/application.js"></script> <script>app.initialize({version: "1.0.4", url: {base: ".."}})</script> </body> </html>
Java
package com.krishagni.catissueplus.core.biospecimen.events; import java.math.BigDecimal; import java.util.Date; import java.util.List; import com.krishagni.catissueplus.core.administrative.events.StorageLocationSummary; import com.krishagni.catissueplus.core.common.events.UserSummary; import com.krishagni.catissueplus.core.de.events.ExtensionDetail; public class SpecimenAliquotsSpec { private Long parentId; private String parentLabel; private String derivedReqCode; private String cpShortTitle; private Integer noOfAliquots; private String labels; private String barcodes; private BigDecimal qtyPerAliquot; private String specimenClass; private String type; private BigDecimal concentration; private Date createdOn; private UserSummary createdBy; private String parentContainerName; private String containerType; private String containerName; private String positionX; private String positionY; private Integer position; private List<StorageLocationSummary> locations; private Integer freezeThawCycles; private Integer incrParentFreezeThaw; private Boolean closeParent; private Boolean createDerived; private Boolean printLabel; private String comments; private ExtensionDetail extensionDetail; private boolean linkToReqs; public Long getParentId() { return parentId; } public void setParentId(Long parentId) { this.parentId = parentId; } public String getParentLabel() { return parentLabel; } public void setParentLabel(String parentLabel) { this.parentLabel = parentLabel; } public String getDerivedReqCode() { return derivedReqCode; } public void setDerivedReqCode(String derivedReqCode) { this.derivedReqCode = derivedReqCode; } public String getCpShortTitle() { return cpShortTitle; } public void setCpShortTitle(String cpShortTitle) { this.cpShortTitle = cpShortTitle; } public Integer getNoOfAliquots() { return noOfAliquots; } public void setNoOfAliquots(Integer noOfAliquots) { this.noOfAliquots = noOfAliquots; } public String getLabels() { return labels; } public void setLabels(String labels) { this.labels = labels; } public String getBarcodes() { return barcodes; } public void setBarcodes(String barcodes) { this.barcodes = barcodes; } public BigDecimal getQtyPerAliquot() { return qtyPerAliquot; } public void setQtyPerAliquot(BigDecimal qtyPerAliquot) { this.qtyPerAliquot = qtyPerAliquot; } public String getSpecimenClass() { return specimenClass; } public void setSpecimenClass(String specimenClass) { this.specimenClass = specimenClass; } public String getType() { return type; } public void setType(String type) { this.type = type; } public BigDecimal getConcentration() { return concentration; } public void setConcentration(BigDecimal concentration) { this.concentration = concentration; } public Date getCreatedOn() { return createdOn; } public void setCreatedOn(Date createdOn) { this.createdOn = createdOn; } public UserSummary getCreatedBy() { return createdBy; } public void setCreatedBy(UserSummary createdBy) { this.createdBy = createdBy; } public String getParentContainerName() { return parentContainerName; } public void setParentContainerName(String parentContainerName) { this.parentContainerName = parentContainerName; } public String getContainerType() { return containerType; } public void setContainerType(String containerType) { this.containerType = containerType; } public String getContainerName() { return containerName; } public void setContainerName(String containerName) { this.containerName = containerName; } public String getPositionX() { return positionX; } public void setPositionX(String positionX) { this.positionX = positionX; } public String getPositionY() { return positionY; } public void setPositionY(String positionY) { this.positionY = positionY; } public Integer getPosition() { return position; } public void setPosition(Integer position) { this.position = position; } public List<StorageLocationSummary> getLocations() { return locations; } public void setLocations(List<StorageLocationSummary> locations) { this.locations = locations; } public Integer getFreezeThawCycles() { return freezeThawCycles; } public void setFreezeThawCycles(Integer freezeThawCycles) { this.freezeThawCycles = freezeThawCycles; } public Integer getIncrParentFreezeThaw() { return incrParentFreezeThaw; } public void setIncrParentFreezeThaw(Integer incrParentFreezeThaw) { this.incrParentFreezeThaw = incrParentFreezeThaw; } public Boolean getCloseParent() { return closeParent; } public void setCloseParent(Boolean closeParent) { this.closeParent = closeParent; } public boolean closeParent() { return closeParent != null && closeParent; } public Boolean getCreateDerived() { return createDerived; } public void setCreateDerived(Boolean createDerived) { this.createDerived = createDerived; } public boolean createDerived() { return createDerived != null && createDerived; } public Boolean getPrintLabel() { return printLabel; } public void setPrintLabel(Boolean printLabel) { this.printLabel = printLabel; } public boolean printLabel() { return printLabel != null && printLabel; } public String getComments() { return comments; } public void setComments(String comments) { this.comments = comments; } public ExtensionDetail getExtensionDetail() { return extensionDetail; } public void setExtensionDetail(ExtensionDetail extensionDetail) { this.extensionDetail = extensionDetail; } public boolean isLinkToReqs() { return linkToReqs; } public void setLinkToReqs(boolean linkToReqs) { this.linkToReqs = linkToReqs; } }
Java
{% load i18n %} <table class="table table-bordered table-striped table-wrapped" data-table data-b-filter="false"> <thead> <tr> <th>{% trans "Name" %}</th> <th>{% trans "Version" %}</th> </tr> </thead> <tbody> {% for entry in software_info %} <tr> <td>{{ entry.name }}</td> <td>{{ entry.version }}</td> </tr> {% endfor %} </tbody> </table>
Java
PKG_NAME = lz4 PKG_VERS = 1.7.5 PKG_EXT = tar.gz PKG_DIST_NAME = v$(PKG_VERS).$(PKG_EXT) PKG_DIST_SITE = https://github.com/lz4/lz4/archive/ PKG_DIR = $(PKG_NAME)-$(PKG_VERS) DEPENDS = HOMEPAGE = https://github.com/lz4/lz4 COMMENT = LZ4 is lossless compression algorithm, providing compression speed at 400 MB/s per core, scalable with multi-cores CPU. LICENSE = BSD CONFIGURE_TARGET = nop INSTALL_TARGET = myInstall include ../../mk/spksrc.cross-cc.mk .PHONY: myInstall myInstall: $(RUN) $(MAKE) install PREFIX=$(STAGING_INSTALL_PREFIX)
Java
// $Id: MainClass.java,v 1.6 2003/10/07 21:46:08 idgay Exp $ /* tab:4 * "Copyright (c) 2000-2003 The Regents of the University of California. * All rights reserved. * * Permission to use, copy, modify, and distribute this software and its * documentation for any purpose, without fee, and without written agreement is * hereby granted, provided that the above copyright notice, the following * two paragraphs and the author appear in all copies of this software. * * IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT * OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE UNIVERSITY OF * CALIFORNIA HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES, * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY * AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS * ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATION TO * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS." * * Copyright (c) 2002-2003 Intel Corporation * All rights reserved. * * This file is distributed under the terms in the attached INTEL-LICENSE * file. If you do not find these files, copies can be found by writing to * Intel Research Berkeley, 2150 Shattuck Avenue, Suite 1300, Berkeley, CA, * 94704. Attention: Intel License Inquiry. */ /** * @author Wei Hong */ //*********************************************************************** //*********************************************************************** //this is the main class that holds all global variables //and from where "main" is run. //the global variables can be accessed as: MainClass.MainFrame for example. //*********************************************************************** //*********************************************************************** package net.tinyos.tinydb.topology; import java.util.*; import net.tinyos.tinydb.*; import net.tinyos.tinydb.topology.event.*; import net.tinyos.tinydb.topology.util.*; import net.tinyos.tinydb.topology.PacketAnalyzer.*; import net.tinyos.tinydb.topology.Dialog.*; import net.tinyos.tinydb.topology.Packet.*; import javax.swing.event.*; import java.beans.*; import java.awt.*; import java.io.*; import net.tinyos.tinydb.parser.*; public class MainClass implements ResultListener { public static MainFrame mainFrame; public static DisplayManager displayManager; public static ObjectMaintainer objectMaintainer; public static SensorAnalyzer sensorAnalyzer; public static LocationAnalyzer locationAnalyzer; public static Vector packetAnalyzers; public static TinyDBQuery topologyQuery; public static boolean topologyQueryRunning = false; public static String topologyQueryText = "select nodeid, parent, light, temp, voltage epoch duration 2048"; TinyDBNetwork nw; public MainClass(TinyDBNetwork nw, byte qid) throws IOException { this.nw = nw; nw.addResultListener(this, false, qid); mainFrame = new MainFrame("Sensor Network Topology", nw); displayManager = new DisplayManager(mainFrame); packetAnalyzers = new Vector(); objectMaintainer = new ObjectMaintainer(); objectMaintainer.AddEdgeEventListener(displayManager); objectMaintainer.AddNodeEventListener(displayManager); locationAnalyzer = new LocationAnalyzer(); sensorAnalyzer = new SensorAnalyzer(); packetAnalyzers.add(objectMaintainer); packetAnalyzers.add(sensorAnalyzer); //make the MainFrame visible as the last thing mainFrame.setVisible(true); try { System.out.println("Topology Query: " + topologyQueryText); topologyQuery = SensorQueryer.translateQuery(topologyQueryText, qid); } catch (ParseException pe) { System.out.println("Topology Query: " + topologyQueryText); System.out.println("Parse Error: " + pe.getParseError()); topologyQuery = null; } nw.sendQuery(topologyQuery); TinyDBMain.notifyAddedQuery(topologyQuery); topologyQueryRunning = true; } public void addResult(QueryResult qr) { Packet packet = new Packet(qr); try { if (packet.getNodeId().intValue() < 0 || packet.getNodeId().intValue() > 128 || packet.getParent().intValue() < 0 || packet.getParent().intValue() > 128 ) return; } catch (ArrayIndexOutOfBoundsException e) { return; } PacketEventListener currentListener; for(Enumeration list = packetAnalyzers.elements(); list.hasMoreElements();) { currentListener = (PacketEventListener)list.nextElement(); PacketEvent e = new PacketEvent(nw, packet, Calendar.getInstance().getTime()); currentListener.PacketReceived(e);//send the listener an event } } }
Java
## The Unicode Standard, Unicode Character Database, Version 11.0.0 ### Unicode Character Database ``` UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE Unicode Data Files include all data files under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and http://www.unicode.org/utility/trac/browser/. Unicode Data Files do not include PDF online code charts under the directory http://www.unicode.org/Public/. Software includes any source code published in the Unicode Standard or under the directories http://www.unicode.org/Public/, http://www.unicode.org/reports/, http://www.unicode.org/cldr/data/, http://source.icu-project.org/repos/icu/, and http://www.unicode.org/utility/trac/browser/. NOTICE TO USER: Carefully read the following legal agreement. BY DOWNLOADING, INSTALLING, COPYING OR OTHERWISE USING UNICODE INC.'S DATA FILES ("DATA FILES"), AND/OR SOFTWARE ("SOFTWARE"), YOU UNEQUIVOCALLY ACCEPT, AND AGREE TO BE BOUND BY, ALL OF THE TERMS AND CONDITIONS OF THIS AGREEMENT. IF YOU DO NOT AGREE, DO NOT DOWNLOAD, INSTALL, COPY, DISTRIBUTE OR USE THE DATA FILES OR SOFTWARE. COPYRIGHT AND PERMISSION NOTICE Copyright © 1991-2018 Unicode, Inc. All rights reserved. Distributed under the Terms of Use in http://www.unicode.org/copyright.html. Permission is hereby granted, free of charge, to any person obtaining a copy of the Unicode data files and any associated documentation (the "Data Files") or Unicode software and any associated documentation (the "Software") to deal in the Data Files or Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, and/or sell copies of the Data Files or Software, and to permit persons to whom the Data Files or Software are furnished to do so, provided that either (a) this copyright and permission notice appear with all copies of the Data Files or Software, or (b) this copyright and permission notice appear in associated Documentation. THE DATA FILES AND SOFTWARE 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 OF THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THE DATA FILES OR SOFTWARE. Except as contained in this notice, the name of a copyright holder shall not be used in advertising or otherwise to promote the sale, use or other dealings in these Data Files or Software without prior written authorization of the copyright holder. ```
Java
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.IO; using System.Collections.Specialized; using System.Security.Cryptography; using System.Web; namespace BotR.API { public class BotRAPI { private string _apiURL = ""; private string _args = ""; private NameValueCollection _queryString = null; public string Key { get; set; } public string Secret { get; set; } public string APIFormat { get; set; } public BotRAPI(string key, string secret) : this("http://api.bitsontherun.com", "v1", key, secret) { } public BotRAPI(string url, string version, string key, string secret) { Key = key; Secret = secret; _apiURL = string.Format("{0}/{1}", url, version); } /// <summary> /// Call the API method with no params beyond the required /// </summary> /// <param name="apiCall">The path to the API method call (/videos/list)</param> /// <returns>The string response from the API call</returns> public string Call(string apiCall) { return Call(apiCall, null); } /// <summary> /// Call the API method with additional, non-required params /// </summary> /// <param name="apiCall">The path to the API method call (/videos/list)</param> /// <param name="args">Additional, non-required arguments</param> /// <returns>The string response from the API call</returns> public string Call(string apiCall, NameValueCollection args) { _queryString = new NameValueCollection(); //add the non-required args to the required args if (args != null) _queryString.Add(args); buildArgs(); WebClient client = createWebClient(); string callUrl = _apiURL + apiCall; try { return client.DownloadString(callUrl); } catch { return ""; } } /// <summary> /// Upload a file to account /// </summary> /// <param name="uploadUrl">The url returned from /videos/create call</param> /// <param name="args">Optional args (video meta data)</param> /// <param name="filePath">Path to file to upload</param> /// <returns>The string response from the API call</returns> public string Upload(string uploadUrl, NameValueCollection args, string filePath) { _queryString = args; //no required args WebClient client = createWebClient(); _queryString["api_format"] = APIFormat ?? "xml"; //xml if not specified - normally set in required args routine queryStringToArgs(); string callUrl = _apiURL + uploadUrl + "?" + _args; callUrl = uploadUrl + "?" + _args; try { byte[] response = client.UploadFile(callUrl, filePath); return Encoding.UTF8.GetString(response); } catch { return ""; } } /// <summary> /// Hash the provided arguments /// </summary> private string signArgs() { queryStringToArgs(); HashAlgorithm ha = HashAlgorithm.Create("SHA"); byte[] hashed = ha.ComputeHash(Encoding.UTF8.GetBytes(_args + Secret)); return BitConverter.ToString(hashed).Replace("-", "").ToLower(); } /// <summary> /// Convert args collection to ordered string /// </summary> private void queryStringToArgs() { Array.Sort(_queryString.AllKeys); StringBuilder sb = new StringBuilder(); foreach (string key in _queryString.AllKeys) { sb.AppendFormat("{0}={1}&", key, _queryString[key]); } sb.Remove(sb.Length - 1, 1); //remove trailing & _args = sb.ToString(); } /// <summary> /// Append required arguments to URL /// </summary> private void buildArgs() { _queryString["api_format"] = APIFormat ?? "xml"; //xml if not specified _queryString["api_key"] = Key; _queryString["api_kit"] = "dnet-1.0"; _queryString["api_nonce"] = string.Format("{0:00000000}", new Random().Next(99999999)); _queryString["api_timestamp"] = getUnixTime().ToString(); _queryString["api_signature"] = signArgs(); _args = string.Concat(_args, "&api_signature=", _queryString["api_signature"]); } /// <summary> /// Construct instance of WebClient for request /// </summary> /// <returns></returns> private WebClient createWebClient() { ServicePointManager.Expect100Continue = false; //upload will fail w/o WebClient client = new WebClient(); client.BaseAddress = _apiURL; client.QueryString = _queryString; client.Encoding = UTF8Encoding.UTF8; return client; } /// <summary> /// Get timestamp in Unix format /// </summary> /// <returns></returns> private int getUnixTime() { return (int)(DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0)).TotalSeconds; } } }
Java
/* prevent execution of jQuery if included more than once */ if(typeof window.jQuery == "undefined") { /* * jQuery 1.1.2 - New Wave Javascript * * Copyright (c) 2007 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * $Date: 2007-04-03 22:27:21 $ * $Rev: 1465 $ */ // Global undefined variable window.undefined = window.undefined; var jQuery = function(a,c) { // If the context is global, return a new object if ( window == this ) return new jQuery(a,c); // Make sure that a selection was provided a = a || document; // HANDLE: $(function) // Shortcut for document ready if ( jQuery.isFunction(a) ) return new jQuery(document)[ jQuery.fn.ready ? "ready" : "load" ]( a ); // Handle HTML strings if ( typeof a == "string" ) { // HANDLE: $(html) -> $(array) var m = /^[^<]*(<(.|\s)+>)[^>]*$/.exec(a); if ( m ) a = jQuery.clean( [ m[1] ] ); // HANDLE: $(expr) else return new jQuery( c ).find( a ); } return this.setArray( // HANDLE: $(array) a.constructor == Array && a || // HANDLE: $(arraylike) // Watch for when an array-like object is passed as the selector (a.jquery || a.length && a != window && !a.nodeType && a[0] != undefined && a[0].nodeType) && jQuery.makeArray( a ) || // HANDLE: $(*) [ a ] ); }; // Map over the $ in case of overwrite if ( typeof $ != "undefined" ) jQuery._$ = $; // Map the jQuery namespace to the '$' one var $ = jQuery; jQuery.fn = jQuery.prototype = { jquery: "1.1.2", size: function() { return this.length; }, length: 0, get: function( num ) { return num == undefined ? // Return a 'clean' array jQuery.makeArray( this ) : // Return just the object this[num]; }, pushStack: function( a ) { var ret = jQuery(a); ret.prevObject = this; return ret; }, setArray: function( a ) { this.length = 0; [].push.apply( this, a ); return this; }, each: function( fn, args ) { return jQuery.each( this, fn, args ); }, index: function( obj ) { var pos = -1; this.each(function(i){ if ( this == obj ) pos = i; }); return pos; }, attr: function( key, value, type ) { var obj = key; // Look for the case where we're accessing a style value if ( key.constructor == String ) if ( value == undefined ) return this.length && jQuery[ type || "attr" ]( this[0], key ) || undefined; else { obj = {}; obj[ key ] = value; } // Check to see if we're setting style values return this.each(function(index){ // Set all the styles for ( var prop in obj ) jQuery.attr( type ? this.style : this, prop, jQuery.prop(this, obj[prop], type, index, prop) ); }); }, css: function( key, value ) { return this.attr( key, value, "curCSS" ); }, text: function(e) { if ( typeof e == "string" ) return this.empty().append( document.createTextNode( e ) ); var t = ""; jQuery.each( e || this, function(){ jQuery.each( this.childNodes, function(){ if ( this.nodeType != 8 ) t += this.nodeType != 1 ? this.nodeValue : jQuery.fn.text([ this ]); }); }); return t; }, wrap: function() { // The elements to wrap the target around var a = jQuery.clean(arguments); // Wrap each of the matched elements individually return this.each(function(){ // Clone the structure that we're using to wrap var b = a[0].cloneNode(true); // Insert it before the element to be wrapped this.parentNode.insertBefore( b, this ); // Find the deepest point in the wrap structure while ( b.firstChild ) b = b.firstChild; // Move the matched element to within the wrap structure b.appendChild( this ); }); }, append: function() { return this.domManip(arguments, true, 1, function(a){ this.appendChild( a ); }); }, prepend: function() { return this.domManip(arguments, true, -1, function(a){ this.insertBefore( a, this.firstChild ); }); }, before: function() { return this.domManip(arguments, false, 1, function(a){ this.parentNode.insertBefore( a, this ); }); }, after: function() { return this.domManip(arguments, false, -1, function(a){ this.parentNode.insertBefore( a, this.nextSibling ); }); }, end: function() { return this.prevObject || jQuery([]); }, find: function(t) { return this.pushStack( jQuery.map( this, function(a){ return jQuery.find(t,a); }), t ); }, clone: function(deep) { return this.pushStack( jQuery.map( this, function(a){ var a = a.cloneNode( deep != undefined ? deep : true ); a.$events = null; // drop $events expando to avoid firing incorrect events return a; }) ); }, filter: function(t) { return this.pushStack( jQuery.isFunction( t ) && jQuery.grep(this, function(el, index){ return t.apply(el, [index]) }) || jQuery.multiFilter(t,this) ); }, not: function(t) { return this.pushStack( t.constructor == String && jQuery.multiFilter(t, this, true) || jQuery.grep(this, function(a) { return ( t.constructor == Array || t.jquery ) ? jQuery.inArray( a, t ) < 0 : a != t; }) ); }, add: function(t) { return this.pushStack( jQuery.merge( this.get(), t.constructor == String ? jQuery(t).get() : t.length != undefined && (!t.nodeName || t.nodeName == "FORM") ? t : [t] ) ); }, is: function(expr) { return expr ? jQuery.filter(expr,this).r.length > 0 : false; }, val: function( val ) { return val == undefined ? ( this.length ? this[0].value : null ) : this.attr( "value", val ); }, html: function( val ) { return val == undefined ? ( this.length ? this[0].innerHTML : null ) : this.empty().append( val ); }, domManip: function(args, table, dir, fn){ var clone = this.length > 1; var a = jQuery.clean(args); if ( dir < 0 ) a.reverse(); return this.each(function(){ var obj = this; if ( table && jQuery.nodeName(this, "table") && jQuery.nodeName(a[0], "tr") ) obj = this.getElementsByTagName("tbody")[0] || this.appendChild(document.createElement("tbody")); jQuery.each( a, function(){ fn.apply( obj, [ clone ? this.cloneNode(true) : this ] ); }); }); } }; jQuery.extend = jQuery.fn.extend = function() { // copy reference to target object var target = arguments[0], a = 1; // extend jQuery itself if only one argument is passed if ( arguments.length == 1 ) { target = this; a = 0; } var prop; while (prop = arguments[a++]) // Extend the base object for ( var i in prop ) target[i] = prop[i]; // Return the modified object return target; }; jQuery.extend({ noConflict: function() { if ( jQuery._$ ) $ = jQuery._$; return jQuery; }, // This may seem like some crazy code, but trust me when I say that this // is the only cross-browser way to do this. --John isFunction: function( fn ) { return !!fn && typeof fn != "string" && !fn.nodeName && typeof fn[0] == "undefined" && /function/i.test( fn + "" ); }, // check if an element is in a XML document isXMLDoc: function(elem) { return elem.tagName && elem.ownerDocument && !elem.ownerDocument.body; }, nodeName: function( elem, name ) { return elem.nodeName && elem.nodeName.toUpperCase() == name.toUpperCase(); }, // args is for internal usage only each: function( obj, fn, args ) { if ( obj.length == undefined ) for ( var i in obj ) fn.apply( obj[i], args || [i, obj[i]] ); else for ( var i = 0, ol = obj.length; i < ol; i++ ) if ( fn.apply( obj[i], args || [i, obj[i]] ) === false ) break; return obj; }, prop: function(elem, value, type, index, prop){ // Handle executable functions if ( jQuery.isFunction( value ) ) value = value.call( elem, [index] ); // exclude the following css properties to add px var exclude = /z-?index|font-?weight|opacity|zoom|line-?height/i; // Handle passing in a number to a CSS property return value && value.constructor == Number && type == "curCSS" && !exclude.test(prop) ? value + "px" : value; }, className: { // internal only, use addClass("class") add: function( elem, c ){ jQuery.each( c.split(/\s+/), function(i, cur){ if ( !jQuery.className.has( elem.className, cur ) ) elem.className += ( elem.className ? " " : "" ) + cur; }); }, // internal only, use removeClass("class") remove: function( elem, c ){ elem.className = c ? jQuery.grep( elem.className.split(/\s+/), function(cur){ return !jQuery.className.has( c, cur ); }).join(" ") : ""; }, // internal only, use is(".class") has: function( t, c ) { t = t.className || t; // escape regex characters c = c.replace(/([\.\\\+\*\?\[\^\]\$\(\)\{\}\=\!\<\>\|\:])/g, "\\$1"); return t && new RegExp("(^|\\s)" + c + "(\\s|$)").test( t ); } }, swap: function(e,o,f) { for ( var i in o ) { e.style["old"+i] = e.style[i]; e.style[i] = o[i]; } f.apply( e, [] ); for ( var i in o ) e.style[i] = e.style["old"+i]; }, css: function(e,p) { if ( p == "height" || p == "width" ) { var old = {}, oHeight, oWidth, d = ["Top","Bottom","Right","Left"]; jQuery.each( d, function(){ old["padding" + this] = 0; old["border" + this + "Width"] = 0; }); jQuery.swap( e, old, function() { if (jQuery.css(e,"display") != "none") { oHeight = e.offsetHeight; oWidth = e.offsetWidth; } else { e = jQuery(e.cloneNode(true)) .find(":radio").removeAttr("checked").end() .css({ visibility: "hidden", position: "absolute", display: "block", right: "0", left: "0" }).appendTo(e.parentNode)[0]; var parPos = jQuery.css(e.parentNode,"position"); if ( parPos == "" || parPos == "static" ) e.parentNode.style.position = "relative"; oHeight = e.clientHeight; oWidth = e.clientWidth; if ( parPos == "" || parPos == "static" ) e.parentNode.style.position = "static"; e.parentNode.removeChild(e); } }); return p == "height" ? oHeight : oWidth; } return jQuery.curCSS( e, p ); }, curCSS: function(elem, prop, force) { var ret; if (prop == "opacity" && jQuery.browser.msie) return jQuery.attr(elem.style, "opacity"); if (prop == "float" || prop == "cssFloat") prop = jQuery.browser.msie ? "styleFloat" : "cssFloat"; if (!force && elem.style[prop]) ret = elem.style[prop]; else if (document.defaultView && document.defaultView.getComputedStyle) { if (prop == "cssFloat" || prop == "styleFloat") prop = "float"; prop = prop.replace(/([A-Z])/g,"-$1").toLowerCase(); var cur = document.defaultView.getComputedStyle(elem, null); if ( cur ) ret = cur.getPropertyValue(prop); else if ( prop == "display" ) ret = "none"; else jQuery.swap(elem, { display: "block" }, function() { var c = document.defaultView.getComputedStyle(this, ""); ret = c && c.getPropertyValue(prop) || ""; }); } else if (elem.currentStyle) { var newProp = prop.replace(/\-(\w)/g,function(m,c){return c.toUpperCase();}); ret = elem.currentStyle[prop] || elem.currentStyle[newProp]; } return ret; }, clean: function(a) { var r = []; jQuery.each( a, function(i,arg){ if ( !arg ) return; if ( arg.constructor == Number ) arg = arg.toString(); // Convert html string into DOM nodes if ( typeof arg == "string" ) { // Trim whitespace, otherwise indexOf won't work as expected var s = jQuery.trim(arg), div = document.createElement("div"), tb = []; var wrap = // option or optgroup !s.indexOf("<opt") && [1, "<select>", "</select>"] || (!s.indexOf("<thead") || !s.indexOf("<tbody") || !s.indexOf("<tfoot")) && [1, "<table>", "</table>"] || !s.indexOf("<tr") && [2, "<table><tbody>", "</tbody></table>"] || // <thead> matched above (!s.indexOf("<td") || !s.indexOf("<th")) && [3, "<table><tbody><tr>", "</tr></tbody></table>"] || [0,"",""]; // Go to html and back, then peel off extra wrappers div.innerHTML = wrap[1] + s + wrap[2]; // Move to the right depth while ( wrap[0]-- ) div = div.firstChild; // Remove IE's autoinserted <tbody> from table fragments if ( jQuery.browser.msie ) { // String was a <table>, *may* have spurious <tbody> if ( !s.indexOf("<table") && s.indexOf("<tbody") < 0 ) tb = div.firstChild && div.firstChild.childNodes; // String was a bare <thead> or <tfoot> else if ( wrap[1] == "<table>" && s.indexOf("<tbody") < 0 ) tb = div.childNodes; for ( var n = tb.length-1; n >= 0 ; --n ) if ( jQuery.nodeName(tb[n], "tbody") && !tb[n].childNodes.length ) tb[n].parentNode.removeChild(tb[n]); } arg = []; for (var i=0, l=div.childNodes.length; i<l; i++) arg.push(div.childNodes[i]); } if ( arg.length === 0 && !jQuery.nodeName(arg, "form") ) return; if ( arg[0] == undefined || jQuery.nodeName(arg, "form") ) r.push( arg ); else r = jQuery.merge( r, arg ); }); return r; }, attr: function(elem, name, value){ var fix = jQuery.isXMLDoc(elem) ? {} : { "for": "htmlFor", "class": "className", "float": jQuery.browser.msie ? "styleFloat" : "cssFloat", cssFloat: jQuery.browser.msie ? "styleFloat" : "cssFloat", innerHTML: "innerHTML", className: "className", value: "value", disabled: "disabled", checked: "checked", readonly: "readOnly", selected: "selected" }; // IE actually uses filters for opacity ... elem is actually elem.style if ( name == "opacity" && jQuery.browser.msie && value != undefined ) { // IE has trouble with opacity if it does not have layout // Force it by setting the zoom level elem.zoom = 1; // Set the alpha filter to set the opacity return elem.filter = elem.filter.replace(/alpha\([^\)]*\)/gi,"") + ( value == 1 ? "" : "alpha(opacity=" + value * 100 + ")" ); } else if ( name == "opacity" && jQuery.browser.msie ) return elem.filter ? parseFloat( elem.filter.match(/alpha\(opacity=(.*)\)/)[1] ) / 100 : 1; // Mozilla doesn't play well with opacity 1 if ( name == "opacity" && jQuery.browser.mozilla && value == 1 ) value = 0.9999; // Certain attributes only work when accessed via the old DOM 0 way if ( fix[name] ) { if ( value != undefined ) elem[fix[name]] = value; return elem[fix[name]]; } else if ( value == undefined && jQuery.browser.msie && jQuery.nodeName(elem, "form") && (name == "action" || name == "method") ) return elem.getAttributeNode(name).nodeValue; // IE elem.getAttribute passes even for style else if ( elem.tagName ) { if ( value != undefined ) elem.setAttribute( name, value ); if ( jQuery.browser.msie && /href|src/.test(name) && !jQuery.isXMLDoc(elem) ) return elem.getAttribute( name, 2 ); return elem.getAttribute( name ); // elem is actually elem.style ... set the style } else { name = name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();}); if ( value != undefined ) elem[name] = value; return elem[name]; } }, trim: function(t){ return t.replace(/^\s+|\s+$/g, ""); }, makeArray: function( a ) { var r = []; if ( a.constructor != Array ) for ( var i = 0, al = a.length; i < al; i++ ) r.push( a[i] ); else r = a.slice( 0 ); return r; }, inArray: function( b, a ) { for ( var i = 0, al = a.length; i < al; i++ ) if ( a[i] == b ) return i; return -1; }, merge: function(first, second) { var r = [].slice.call( first, 0 ); // Now check for duplicates between the two arrays // and only add the unique items for ( var i = 0, sl = second.length; i < sl; i++ ) // Check for duplicates if ( jQuery.inArray( second[i], r ) == -1 ) // The item is unique, add it first.push( second[i] ); return first; }, grep: function(elems, fn, inv) { // If a string is passed in for the function, make a function // for it (a handy shortcut) if ( typeof fn == "string" ) fn = new Function("a","i","return " + fn); var result = []; // Go through the array, only saving the items // that pass the validator function for ( var i = 0, el = elems.length; i < el; i++ ) if ( !inv && fn(elems[i],i) || inv && !fn(elems[i],i) ) result.push( elems[i] ); return result; }, map: function(elems, fn) { // If a string is passed in for the function, make a function // for it (a handy shortcut) if ( typeof fn == "string" ) fn = new Function("a","return " + fn); var result = [], r = []; // Go through the array, translating each of the items to their // new value (or values). for ( var i = 0, el = elems.length; i < el; i++ ) { var val = fn(elems[i],i); if ( val !== null && val != undefined ) { if ( val.constructor != Array ) val = [val]; result = result.concat( val ); } } var r = result.length ? [ result[0] ] : []; check: for ( var i = 1, rl = result.length; i < rl; i++ ) { for ( var j = 0; j < i; j++ ) if ( result[i] == r[j] ) continue check; r.push( result[i] ); } return r; } }); /* * Whether the W3C compliant box model is being used. * * @property * @name $.boxModel * @type Boolean * @cat JavaScript */ new function() { var b = navigator.userAgent.toLowerCase(); // Figure out what browser is being used jQuery.browser = { safari: /webkit/.test(b), opera: /opera/.test(b), msie: /msie/.test(b) && !/opera/.test(b), mozilla: /mozilla/.test(b) && !/(compatible|webkit)/.test(b) }; // Check to see if the W3C box model is being used jQuery.boxModel = !jQuery.browser.msie || document.compatMode == "CSS1Compat"; }; jQuery.each({ parent: "a.parentNode", parents: "jQuery.parents(a)", next: "jQuery.nth(a,2,'nextSibling')", prev: "jQuery.nth(a,2,'previousSibling')", siblings: "jQuery.sibling(a.parentNode.firstChild,a)", children: "jQuery.sibling(a.firstChild)" }, function(i,n){ jQuery.fn[ i ] = function(a) { var ret = jQuery.map(this,n); if ( a && typeof a == "string" ) ret = jQuery.multiFilter(a,ret); return this.pushStack( ret ); }; }); jQuery.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", insertAfter: "after" }, function(i,n){ jQuery.fn[ i ] = function(){ var a = arguments; return this.each(function(){ for ( var j = 0, al = a.length; j < al; j++ ) jQuery(a[j])[n]( this ); }); }; }); jQuery.each( { removeAttr: function( key ) { jQuery.attr( this, key, "" ); this.removeAttribute( key ); }, addClass: function(c){ jQuery.className.add(this,c); }, removeClass: function(c){ jQuery.className.remove(this,c); }, toggleClass: function( c ){ jQuery.className[ jQuery.className.has(this,c) ? "remove" : "add" ](this, c); }, remove: function(a){ if ( !a || jQuery.filter( a, [this] ).r.length ) this.parentNode.removeChild( this ); }, empty: function() { while ( this.firstChild ) this.removeChild( this.firstChild ); } }, function(i,n){ jQuery.fn[ i ] = function() { return this.each( n, arguments ); }; }); jQuery.each( [ "eq", "lt", "gt", "contains" ], function(i,n){ jQuery.fn[ n ] = function(num,fn) { return this.filter( ":" + n + "(" + num + ")", fn ); }; }); jQuery.each( [ "height", "width" ], function(i,n){ jQuery.fn[ n ] = function(h) { return h == undefined ? ( this.length ? jQuery.css( this[0], n ) : null ) : this.css( n, h.constructor == String ? h : h + "px" ); }; }); jQuery.extend({ expr: { "": "m[2]=='*'||jQuery.nodeName(a,m[2])", "#": "a.getAttribute('id')==m[2]", ":": { // Position Checks lt: "i<m[3]-0", gt: "i>m[3]-0", nth: "m[3]-0==i", eq: "m[3]-0==i", first: "i==0", last: "i==r.length-1", even: "i%2==0", odd: "i%2", // Child Checks "nth-child": "jQuery.nth(a.parentNode.firstChild,m[3],'nextSibling',a)==a", "first-child": "jQuery.nth(a.parentNode.firstChild,1,'nextSibling')==a", "last-child": "jQuery.nth(a.parentNode.lastChild,1,'previousSibling')==a", "only-child": "jQuery.sibling(a.parentNode.firstChild).length==1", // Parent Checks parent: "a.firstChild", empty: "!a.firstChild", // Text Check contains: "jQuery.fn.text.apply([a]).indexOf(m[3])>=0", // Visibility visible: 'a.type!="hidden"&&jQuery.css(a,"display")!="none"&&jQuery.css(a,"visibility")!="hidden"', hidden: 'a.type=="hidden"||jQuery.css(a,"display")=="none"||jQuery.css(a,"visibility")=="hidden"', // Form attributes enabled: "!a.disabled", disabled: "a.disabled", checked: "a.checked", selected: "a.selected||jQuery.attr(a,'selected')", // Form elements text: "a.type=='text'", radio: "a.type=='radio'", checkbox: "a.type=='checkbox'", file: "a.type=='file'", password: "a.type=='password'", submit: "a.type=='submit'", image: "a.type=='image'", reset: "a.type=='reset'", button: 'a.type=="button"||jQuery.nodeName(a,"button")', input: "/input|select|textarea|button/i.test(a.nodeName)" }, ".": "jQuery.className.has(a,m[2])", "@": { "=": "z==m[4]", "!=": "z!=m[4]", "^=": "z&&!z.indexOf(m[4])", "$=": "z&&z.substr(z.length - m[4].length,m[4].length)==m[4]", "*=": "z&&z.indexOf(m[4])>=0", "": "z", _resort: function(m){ return ["", m[1], m[3], m[2], m[5]]; }, _prefix: "z=a[m[3]];if(!z||/href|src/.test(m[3]))z=jQuery.attr(a,m[3]);" }, "[": "jQuery.find(m[2],a).length" }, // The regular expressions that power the parsing engine parse: [ // Match: [@value='test'], [@foo] /^\[ *(@)([a-z0-9_-]*) *([!*$^=]*) *('?"?)(.*?)\4 *\]/i, // Match: [div], [div p] /^(\[)\s*(.*?(\[.*?\])?[^[]*?)\s*\]/, // Match: :contains('foo') /^(:)([a-z0-9_-]*)\("?'?(.*?(\(.*?\))?[^(]*?)"?'?\)/i, // Match: :even, :last-chlid /^([:.#]*)([a-z0-9_*-]*)/i ], token: [ /^(\/?\.\.)/, "a.parentNode", /^(>|\/)/, "jQuery.sibling(a.firstChild)", /^(\+)/, "jQuery.nth(a,2,'nextSibling')", /^(~)/, function(a){ var s = jQuery.sibling(a.parentNode.firstChild); return s.slice(jQuery.inArray(a,s) + 1); } ], multiFilter: function( expr, elems, not ) { var old, cur = []; while ( expr && expr != old ) { old = expr; var f = jQuery.filter( expr, elems, not ); expr = f.t.replace(/^\s*,\s*/, "" ); cur = not ? elems = f.r : jQuery.merge( cur, f.r ); } return cur; }, find: function( t, context ) { // Quickly handle non-string expressions if ( typeof t != "string" ) return [ t ]; // Make sure that the context is a DOM Element if ( context && !context.nodeType ) context = null; // Set the correct context (if none is provided) context = context || document; // Handle the common XPath // expression if ( !t.indexOf("//") ) { context = context.documentElement; t = t.substr(2,t.length); // And the / root expression } else if ( !t.indexOf("/") ) { context = context.documentElement; t = t.substr(1,t.length); if ( t.indexOf("/") >= 1 ) t = t.substr(t.indexOf("/"),t.length); } // Initialize the search var ret = [context], done = [], last = null; // Continue while a selector expression exists, and while // we're no longer looping upon ourselves while ( t && last != t ) { var r = []; last = t; t = jQuery.trim(t).replace( /^\/\//i, "" ); var foundToken = false; // An attempt at speeding up child selectors that // point to a specific element tag var re = /^[\/>]\s*([a-z0-9*-]+)/i; var m = re.exec(t); if ( m ) { // Perform our own iteration and filter jQuery.each( ret, function(){ for ( var c = this.firstChild; c; c = c.nextSibling ) if ( c.nodeType == 1 && ( jQuery.nodeName(c, m[1]) || m[1] == "*" ) ) r.push( c ); }); ret = r; t = t.replace( re, "" ); if ( t.indexOf(" ") == 0 ) continue; foundToken = true; } else { // Look for pre-defined expression tokens for ( var i = 0; i < jQuery.token.length; i += 2 ) { // Attempt to match each, individual, token in // the specified order var re = jQuery.token[i]; var m = re.exec(t); // If the token match was found if ( m ) { // Map it against the token's handler r = ret = jQuery.map( ret, jQuery.isFunction( jQuery.token[i+1] ) ? jQuery.token[i+1] : function(a){ return eval(jQuery.token[i+1]); }); // And remove the token t = jQuery.trim( t.replace( re, "" ) ); foundToken = true; break; } } } // See if there's still an expression, and that we haven't already // matched a token if ( t && !foundToken ) { // Handle multiple expressions if ( !t.indexOf(",") ) { // Clean the result set if ( ret[0] == context ) ret.shift(); // Merge the result sets jQuery.merge( done, ret ); // Reset the context r = ret = [context]; // Touch up the selector string t = " " + t.substr(1,t.length); } else { // Optomize for the case nodeName#idName var re2 = /^([a-z0-9_-]+)(#)([a-z0-9\\*_-]*)/i; var m = re2.exec(t); // Re-organize the results, so that they're consistent if ( m ) { m = [ 0, m[2], m[3], m[1] ]; } else { // Otherwise, do a traditional filter check for // ID, class, and element selectors re2 = /^([#.]?)([a-z0-9\\*_-]*)/i; m = re2.exec(t); } // Try to do a global search by ID, where we can if ( m[1] == "#" && ret[ret.length-1].getElementById ) { // Optimization for HTML document case var oid = ret[ret.length-1].getElementById(m[2]); // Do a quick check for the existence of the actual ID attribute // to avoid selecting by the name attribute in IE if ( jQuery.browser.msie && oid && oid.id != m[2] ) oid = jQuery('[@id="'+m[2]+'"]', ret[ret.length-1])[0]; // Do a quick check for node name (where applicable) so // that div#foo searches will be really fast ret = r = oid && (!m[3] || jQuery.nodeName(oid, m[3])) ? [oid] : []; } else { // Pre-compile a regular expression to handle class searches if ( m[1] == "." ) var rec = new RegExp("(^|\\s)" + m[2] + "(\\s|$)"); // We need to find all descendant elements, it is more // efficient to use getAll() when we are already further down // the tree - we try to recognize that here jQuery.each( ret, function(){ // Grab the tag name being searched for var tag = m[1] != "" || m[0] == "" ? "*" : m[2]; // Handle IE7 being really dumb about <object>s if ( jQuery.nodeName(this, "object") && tag == "*" ) tag = "param"; jQuery.merge( r, m[1] != "" && ret.length != 1 ? jQuery.getAll( this, [], m[1], m[2], rec ) : this.getElementsByTagName( tag ) ); }); // It's faster to filter by class and be done with it if ( m[1] == "." && ret.length == 1 ) r = jQuery.grep( r, function(e) { return rec.test(e.className); }); // Same with ID filtering if ( m[1] == "#" && ret.length == 1 ) { // Remember, then wipe out, the result set var tmp = r; r = []; // Then try to find the element with the ID jQuery.each( tmp, function(){ if ( this.getAttribute("id") == m[2] ) { r = [ this ]; return false; } }); } ret = r; } t = t.replace( re2, "" ); } } // If a selector string still exists if ( t ) { // Attempt to filter it var val = jQuery.filter(t,r); ret = r = val.r; t = jQuery.trim(val.t); } } // Remove the root context if ( ret && ret[0] == context ) ret.shift(); // And combine the results jQuery.merge( done, ret ); return done; }, filter: function(t,r,not) { // Look for common filter expressions while ( t && /^[a-z[({<*:.#]/i.test(t) ) { var p = jQuery.parse, m; jQuery.each( p, function(i,re){ // Look for, and replace, string-like sequences // and finally build a regexp out of it m = re.exec( t ); if ( m ) { // Remove what we just matched t = t.substring( m[0].length ); // Re-organize the first match if ( jQuery.expr[ m[1] ]._resort ) m = jQuery.expr[ m[1] ]._resort( m ); return false; } }); // :not() is a special case that can be optimized by // keeping it out of the expression list if ( m[1] == ":" && m[2] == "not" ) r = jQuery.filter(m[3], r, true).r; // Handle classes as a special case (this will help to // improve the speed, as the regexp will only be compiled once) else if ( m[1] == "." ) { var re = new RegExp("(^|\\s)" + m[2] + "(\\s|$)"); r = jQuery.grep( r, function(e){ return re.test(e.className || ""); }, not); // Otherwise, find the expression to execute } else { var f = jQuery.expr[m[1]]; if ( typeof f != "string" ) f = jQuery.expr[m[1]][m[2]]; // Build a custom macro to enclose it eval("f = function(a,i){" + ( jQuery.expr[ m[1] ]._prefix || "" ) + "return " + f + "}"); // Execute it against the current filter r = jQuery.grep( r, f, not ); } } // Return an array of filtered elements (r) // and the modified expression string (t) return { r: r, t: t }; }, getAll: function( o, r, token, name, re ) { for ( var s = o.firstChild; s; s = s.nextSibling ) if ( s.nodeType == 1 ) { var add = true; if ( token == "." ) add = s.className && re.test(s.className); else if ( token == "#" ) add = s.getAttribute("id") == name; if ( add ) r.push( s ); if ( token == "#" && r.length ) break; if ( s.firstChild ) jQuery.getAll( s, r, token, name, re ); } return r; }, parents: function( elem ){ var matched = []; var cur = elem.parentNode; while ( cur && cur != document ) { matched.push( cur ); cur = cur.parentNode; } return matched; }, nth: function(cur,result,dir,elem){ result = result || 1; var num = 0; for ( ; cur; cur = cur[dir] ) { if ( cur.nodeType == 1 ) num++; if ( num == result || result == "even" && num % 2 == 0 && num > 1 && cur == elem || result == "odd" && num % 2 == 1 && cur == elem ) return cur; } }, sibling: function( n, elem ) { var r = []; for ( ; n; n = n.nextSibling ) { if ( n.nodeType == 1 && (!elem || n != elem) ) r.push( n ); } return r; } }); /* * A number of helper functions used for managing events. * Many of the ideas behind this code orignated from * Dean Edwards' addEvent library. */ jQuery.event = { // Bind an event to an element // Original by Dean Edwards add: function(element, type, handler, data) { // For whatever reason, IE has trouble passing the window object // around, causing it to be cloned in the process if ( jQuery.browser.msie && element.setInterval != undefined ) element = window; // if data is passed, bind to handler if( data ) handler.data = data; // Make sure that the function being executed has a unique ID if ( !handler.guid ) handler.guid = this.guid++; // Init the element's event structure if (!element.$events) element.$events = {}; // Get the current list of functions bound to this event var handlers = element.$events[type]; // If it hasn't been initialized yet if (!handlers) { // Init the event handler queue handlers = element.$events[type] = {}; // Remember an existing handler, if it's already there if (element["on" + type]) handlers[0] = element["on" + type]; } // Add the function to the element's handler list handlers[handler.guid] = handler; // And bind the global event handler to the element element["on" + type] = this.handle; // Remember the function in a global list (for triggering) if (!this.global[type]) this.global[type] = []; this.global[type].push( element ); }, guid: 1, global: {}, // Detach an event or set of events from an element remove: function(element, type, handler) { if (element.$events) { var i,j,k; if ( type && type.type ) { // type is actually an event object here handler = type.handler; type = type.type; } if (type && element.$events[type]) // remove the given handler for the given type if ( handler ) delete element.$events[type][handler.guid]; // remove all handlers for the given type else for ( i in element.$events[type] ) delete element.$events[type][i]; // remove all handlers else for ( j in element.$events ) this.remove( element, j ); // remove event handler if no more handlers exist for ( k in element.$events[type] ) if (k) { k = true; break; } if (!k) element["on" + type] = null; } }, trigger: function(type, data, element) { // Clone the incoming data, if any data = jQuery.makeArray(data || []); // Handle a global trigger if ( !element ) jQuery.each( this.global[type] || [], function(){ jQuery.event.trigger( type, data, this ); }); // Handle triggering a single element else { var handler = element["on" + type ], val, fn = jQuery.isFunction( element[ type ] ); if ( handler ) { // Pass along a fake event data.unshift( this.fix({ type: type, target: element }) ); // Trigger the event if ( (val = handler.apply( element, data )) !== false ) this.triggered = true; } if ( fn && val !== false ) element[ type ](); this.triggered = false; } }, handle: function(event) { // Handle the second event of a trigger and when // an event is called after a page has unloaded if ( typeof jQuery == "undefined" || jQuery.event.triggered ) return; // Empty object is for triggered events with no data event = jQuery.event.fix( event || window.event || {} ); // returned undefined or false var returnValue; var c = this.$events[event.type]; var args = [].slice.call( arguments, 1 ); args.unshift( event ); for ( var j in c ) { // Pass in a reference to the handler function itself // So that we can later remove it args[0].handler = c[j]; args[0].data = c[j].data; if ( c[j].apply( this, args ) === false ) { event.preventDefault(); event.stopPropagation(); returnValue = false; } } // Clean up added properties in IE to prevent memory leak if (jQuery.browser.msie) event.target = event.preventDefault = event.stopPropagation = event.handler = event.data = null; return returnValue; }, fix: function(event) { // Fix target property, if necessary if ( !event.target && event.srcElement ) event.target = event.srcElement; // Calculate pageX/Y if missing and clientX/Y available if ( event.pageX == undefined && event.clientX != undefined ) { var e = document.documentElement, b = document.body; event.pageX = event.clientX + (e.scrollLeft || b.scrollLeft); event.pageY = event.clientY + (e.scrollTop || b.scrollTop); } // check if target is a textnode (safari) if (jQuery.browser.safari && event.target.nodeType == 3) { // store a copy of the original event object // and clone because target is read only var originalEvent = event; event = jQuery.extend({}, originalEvent); // get parentnode from textnode event.target = originalEvent.target.parentNode; // add preventDefault and stopPropagation since // they will not work on the clone event.preventDefault = function() { return originalEvent.preventDefault(); }; event.stopPropagation = function() { return originalEvent.stopPropagation(); }; } // fix preventDefault and stopPropagation if (!event.preventDefault) event.preventDefault = function() { this.returnValue = false; }; if (!event.stopPropagation) event.stopPropagation = function() { this.cancelBubble = true; }; return event; } }; jQuery.fn.extend({ bind: function( type, data, fn ) { return this.each(function(){ jQuery.event.add( this, type, fn || data, data ); }); }, one: function( type, data, fn ) { return this.each(function(){ jQuery.event.add( this, type, function(event) { jQuery(this).unbind(event); return (fn || data).apply( this, arguments); }, data); }); }, unbind: function( type, fn ) { return this.each(function(){ jQuery.event.remove( this, type, fn ); }); }, trigger: function( type, data ) { return this.each(function(){ jQuery.event.trigger( type, data, this ); }); }, toggle: function() { // Save reference to arguments for access in closure var a = arguments; return this.click(function(e) { // Figure out which function to execute this.lastToggle = this.lastToggle == 0 ? 1 : 0; // Make sure that clicks stop e.preventDefault(); // and execute the function return a[this.lastToggle].apply( this, [e] ) || false; }); }, hover: function(f,g) { // A private function for handling mouse 'hovering' function handleHover(e) { // Check if mouse(over|out) are still within the same parent element var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget; // Traverse up the tree while ( p && p != this ) try { p = p.parentNode } catch(e) { p = this; }; // If we actually just moused on to a sub-element, ignore it if ( p == this ) return false; // Execute the right function return (e.type == "mouseover" ? f : g).apply(this, [e]); } // Bind the function to the two event listeners return this.mouseover(handleHover).mouseout(handleHover); }, ready: function(f) { // If the DOM is already ready if ( jQuery.isReady ) // Execute the function immediately f.apply( document, [jQuery] ); // Otherwise, remember the function for later else { // Add the function to the wait list jQuery.readyList.push( function() { return f.apply(this, [jQuery]) } ); } return this; } }); jQuery.extend({ /* * All the code that makes DOM Ready work nicely. */ isReady: false, readyList: [], // Handle when the DOM is ready ready: function() { // Make sure that the DOM is not already loaded if ( !jQuery.isReady ) { // Remember that the DOM is ready jQuery.isReady = true; // If there are functions bound, to execute if ( jQuery.readyList ) { // Execute all of them jQuery.each( jQuery.readyList, function(){ this.apply( document ); }); // Reset the list of functions jQuery.readyList = null; } // Remove event lisenter to avoid memory leak if ( jQuery.browser.mozilla || jQuery.browser.opera ) document.removeEventListener( "DOMContentLoaded", jQuery.ready, false ); } } }); new function(){ jQuery.each( ("blur,focus,load,resize,scroll,unload,click,dblclick," + "mousedown,mouseup,mousemove,mouseover,mouseout,change,select," + "submit,keydown,keypress,keyup,error").split(","), function(i,o){ // Handle event binding jQuery.fn[o] = function(f){ return f ? this.bind(o, f) : this.trigger(o); }; }); // If Mozilla is used if ( jQuery.browser.mozilla || jQuery.browser.opera ) // Use the handy event callback document.addEventListener( "DOMContentLoaded", jQuery.ready, false ); // If IE is used, use the excellent hack by Matthias Miller // http://www.outofhanwell.com/blog/index.php?title=the_window_onload_problem_revisited else if ( jQuery.browser.msie ) { // Only works if you document.write() it document.write("<scr" + "ipt id=__ie_init defer=true " + "src=//:><\/script>"); // Use the defer script hack var script = document.getElementById("__ie_init"); // script does not exist if jQuery is loaded dynamically if ( script ) script.onreadystatechange = function() { if ( this.readyState != "complete" ) return; this.parentNode.removeChild( this ); jQuery.ready(); }; // Clear from memory script = null; // If Safari is used } else if ( jQuery.browser.safari ) // Continually check to see if the document.readyState is valid jQuery.safariTimer = setInterval(function(){ // loaded and complete are both valid states if ( document.readyState == "loaded" || document.readyState == "complete" ) { // If either one are found, remove the timer clearInterval( jQuery.safariTimer ); jQuery.safariTimer = null; // and execute any waiting functions jQuery.ready(); } }, 10); // A fallback to window.onload, that will always work jQuery.event.add( window, "load", jQuery.ready ); }; // Clean up after IE to avoid memory leaks if (jQuery.browser.msie) jQuery(window).one("unload", function() { var global = jQuery.event.global; for ( var type in global ) { var els = global[type], i = els.length; if ( i && type != 'unload' ) do jQuery.event.remove(els[i-1], type); while (--i); } }); jQuery.fn.extend({ loadIfModified: function( url, params, callback ) { this.load( url, params, callback, 1 ); }, load: function( url, params, callback, ifModified ) { if ( jQuery.isFunction( url ) ) return this.bind("load", url); callback = callback || function(){}; // Default to a GET request var type = "GET"; // If the second parameter was provided if ( params ) // If it's a function if ( jQuery.isFunction( params ) ) { // We assume that it's the callback callback = params; params = null; // Otherwise, build a param string } else { params = jQuery.param( params ); type = "POST"; } var self = this; // Request the remote document jQuery.ajax({ url: url, type: type, data: params, ifModified: ifModified, complete: function(res, status){ if ( status == "success" || !ifModified && status == "notmodified" ) // Inject the HTML into all the matched elements self.attr("innerHTML", res.responseText) // Execute all the scripts inside of the newly-injected HTML .evalScripts() // Execute callback .each( callback, [res.responseText, status, res] ); else callback.apply( self, [res.responseText, status, res] ); } }); return this; }, serialize: function() { return jQuery.param( this ); }, evalScripts: function() { return this.find("script").each(function(){ if ( this.src ) jQuery.getScript( this.src ); else jQuery.globalEval( this.text || this.textContent || this.innerHTML || "" ); }).end(); } }); // If IE is used, create a wrapper for the XMLHttpRequest object if ( !window.XMLHttpRequest ) XMLHttpRequest = function(){ return new ActiveXObject("Microsoft.XMLHTTP"); }; // Attach a bunch of functions for handling common AJAX events jQuery.each( "ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","), function(i,o){ jQuery.fn[o] = function(f){ return this.bind(o, f); }; }); jQuery.extend({ get: function( url, data, callback, type, ifModified ) { // shift arguments if data argument was ommited if ( jQuery.isFunction( data ) ) { callback = data; data = null; } return jQuery.ajax({ url: url, data: data, success: callback, dataType: type, ifModified: ifModified }); }, getIfModified: function( url, data, callback, type ) { return jQuery.get(url, data, callback, type, 1); }, getScript: function( url, callback ) { return jQuery.get(url, null, callback, "script"); }, getJSON: function( url, data, callback ) { return jQuery.get(url, data, callback, "json"); }, post: function( url, data, callback, type ) { if ( jQuery.isFunction( data ) ) { callback = data; data = {}; } return jQuery.ajax({ type: "POST", url: url, data: data, success: callback, dataType: type }); }, // timeout (ms) //timeout: 0, ajaxTimeout: function( timeout ) { jQuery.ajaxSettings.timeout = timeout; }, ajaxSetup: function( settings ) { jQuery.extend( jQuery.ajaxSettings, settings ); }, ajaxSettings: { global: true, type: "GET", timeout: 0, contentType: "application/x-www-form-urlencoded", processData: true, async: true, data: null }, // Last-Modified header cache for next request lastModified: {}, ajax: function( s ) { // TODO introduce global settings, allowing the client to modify them for all requests, not only timeout s = jQuery.extend({}, jQuery.ajaxSettings, s); // if data available if ( s.data ) { // convert data if not already a string if (s.processData && typeof s.data != "string") s.data = jQuery.param(s.data); // append data to url for get requests if( s.type.toLowerCase() == "get" ) { // "?" + data or "&" + data (in case there are already params) s.url += ((s.url.indexOf("?") > -1) ? "&" : "?") + s.data; // IE likes to send both get and post data, prevent this s.data = null; } } // Watch for a new set of requests if ( s.global && ! jQuery.active++ ) jQuery.event.trigger( "ajaxStart" ); var requestDone = false; // Create the request object var xml = new XMLHttpRequest(); // Open the socket xml.open(s.type, s.url, s.async); // Set the correct header, if data is being sent if ( s.data ) xml.setRequestHeader("Content-Type", s.contentType); // Set the If-Modified-Since header, if ifModified mode. if ( s.ifModified ) xml.setRequestHeader("If-Modified-Since", jQuery.lastModified[s.url] || "Thu, 01 Jan 1970 00:00:00 GMT" ); // Set header so the called script knows that it's an XMLHttpRequest xml.setRequestHeader("X-Requested-With", "XMLHttpRequest"); // Make sure the browser sends the right content length if ( xml.overrideMimeType ) xml.setRequestHeader("Connection", "close"); // Allow custom headers/mimetypes if( s.beforeSend ) s.beforeSend(xml); if ( s.global ) jQuery.event.trigger("ajaxSend", [xml, s]); // Wait for a response to come back var onreadystatechange = function(isTimeout){ // The transfer is complete and the data is available, or the request timed out if ( xml && (xml.readyState == 4 || isTimeout == "timeout") ) { requestDone = true; // clear poll interval if (ival) { clearInterval(ival); ival = null; } var status; try { status = jQuery.httpSuccess( xml ) && isTimeout != "timeout" ? s.ifModified && jQuery.httpNotModified( xml, s.url ) ? "notmodified" : "success" : "error"; // Make sure that the request was successful or notmodified if ( status != "error" ) { // Cache Last-Modified header, if ifModified mode. var modRes; try { modRes = xml.getResponseHeader("Last-Modified"); } catch(e) {} // swallow exception thrown by FF if header is not available if ( s.ifModified && modRes ) jQuery.lastModified[s.url] = modRes; // process the data (runs the xml through httpData regardless of callback) var data = jQuery.httpData( xml, s.dataType ); // If a local callback was specified, fire it and pass it the data if ( s.success ) s.success( data, status ); // Fire the global callback if( s.global ) jQuery.event.trigger( "ajaxSuccess", [xml, s] ); } else jQuery.handleError(s, xml, status); } catch(e) { status = "error"; jQuery.handleError(s, xml, status, e); } // The request was completed if( s.global ) jQuery.event.trigger( "ajaxComplete", [xml, s] ); // Handle the global AJAX counter if ( s.global && ! --jQuery.active ) jQuery.event.trigger( "ajaxStop" ); // Process result if ( s.complete ) s.complete(xml, status); // Stop memory leaks if(s.async) xml = null; } }; // don't attach the handler to the request, just poll it instead var ival = setInterval(onreadystatechange, 13); // Timeout checker if ( s.timeout > 0 ) setTimeout(function(){ // Check to see if the request is still happening if ( xml ) { // Cancel the request xml.abort(); if( !requestDone ) onreadystatechange( "timeout" ); } }, s.timeout); // Send the data try { xml.send(s.data); } catch(e) { jQuery.handleError(s, xml, null, e); } // firefox 1.5 doesn't fire statechange for sync requests if ( !s.async ) onreadystatechange(); // return XMLHttpRequest to allow aborting the request etc. return xml; }, handleError: function( s, xml, status, e ) { // If a local callback was specified, fire it if ( s.error ) s.error( xml, status, e ); // Fire the global callback if ( s.global ) jQuery.event.trigger( "ajaxError", [xml, s, e] ); }, // Counter for holding the number of active queries active: 0, // Determines if an XMLHttpRequest was successful or not httpSuccess: function( r ) { try { return !r.status && location.protocol == "file:" || ( r.status >= 200 && r.status < 300 ) || r.status == 304 || jQuery.browser.safari && r.status == undefined; } catch(e){} return false; }, // Determines if an XMLHttpRequest returns NotModified httpNotModified: function( xml, url ) { try { var xmlRes = xml.getResponseHeader("Last-Modified"); // Firefox always returns 200. check Last-Modified date return xml.status == 304 || xmlRes == jQuery.lastModified[url] || jQuery.browser.safari && xml.status == undefined; } catch(e){} return false; }, /* Get the data out of an XMLHttpRequest. * Return parsed XML if content-type header is "xml" and type is "xml" or omitted, * otherwise return plain text. * (String) data - The type of data that you're expecting back, * (e.g. "xml", "html", "script") */ httpData: function( r, type ) { var ct = r.getResponseHeader("content-type"); var data = !type && ct && ct.indexOf("xml") >= 0; data = type == "xml" || data ? r.responseXML : r.responseText; // If the type is "script", eval it in global context if ( type == "script" ) jQuery.globalEval( data ); // Get the JavaScript object, if JSON is used. if ( type == "json" ) eval( "data = " + data ); // evaluate scripts within html if ( type == "html" ) jQuery("<div>").html(data).evalScripts(); return data; }, // Serialize an array of form elements or a set of // key/values into a query string param: function( a ) { var s = []; // If an array was passed in, assume that it is an array // of form elements if ( a.constructor == Array || a.jquery ) // Serialize the form elements jQuery.each( a, function(){ s.push( encodeURIComponent(this.name) + "=" + encodeURIComponent( this.value ) ); }); // Otherwise, assume that it's an object of key/value pairs else // Serialize the key/values for ( var j in a ) // If the value is an array then the key names need to be repeated if ( a[j] && a[j].constructor == Array ) jQuery.each( a[j], function(){ s.push( encodeURIComponent(j) + "=" + encodeURIComponent( this ) ); }); else s.push( encodeURIComponent(j) + "=" + encodeURIComponent( a[j] ) ); // Return the resulting serialization return s.join("&"); }, // evalulates a script in global context // not reliable for safari globalEval: function( data ) { if ( window.execScript ) window.execScript( data ); else if ( jQuery.browser.safari ) // safari doesn't provide a synchronous global eval window.setTimeout( data, 0 ); else eval.call( window, data ); } }); jQuery.fn.extend({ show: function(speed,callback){ var hidden = this.filter(":hidden"); speed ? hidden.animate({ height: "show", width: "show", opacity: "show" }, speed, callback) : hidden.each(function(){ this.style.display = this.oldblock ? this.oldblock : ""; if ( jQuery.css(this,"display") == "none" ) this.style.display = "block"; }); return this; }, hide: function(speed,callback){ var visible = this.filter(":visible"); speed ? visible.animate({ height: "hide", width: "hide", opacity: "hide" }, speed, callback) : visible.each(function(){ this.oldblock = this.oldblock || jQuery.css(this,"display"); if ( this.oldblock == "none" ) this.oldblock = "block"; this.style.display = "none"; }); return this; }, // Save the old toggle function _toggle: jQuery.fn.toggle, toggle: function( fn, fn2 ){ var args = arguments; return jQuery.isFunction(fn) && jQuery.isFunction(fn2) ? this._toggle( fn, fn2 ) : this.each(function(){ jQuery(this)[ jQuery(this).is(":hidden") ? "show" : "hide" ] .apply( jQuery(this), args ); }); }, slideDown: function(speed,callback){ return this.animate({height: "show"}, speed, callback); }, slideUp: function(speed,callback){ return this.animate({height: "hide"}, speed, callback); }, slideToggle: function(speed, callback){ return this.each(function(){ var state = jQuery(this).is(":hidden") ? "show" : "hide"; jQuery(this).animate({height: state}, speed, callback); }); }, fadeIn: function(speed, callback){ return this.animate({opacity: "show"}, speed, callback); }, fadeOut: function(speed, callback){ return this.animate({opacity: "hide"}, speed, callback); }, fadeTo: function(speed,to,callback){ return this.animate({opacity: to}, speed, callback); }, animate: function( prop, speed, easing, callback ) { return this.queue(function(){ this.curAnim = jQuery.extend({}, prop); var opt = jQuery.speed(speed, easing, callback); for ( var p in prop ) { var e = new jQuery.fx( this, opt, p ); if ( prop[p].constructor == Number ) e.custom( e.cur(), prop[p] ); else e[ prop[p] ]( prop ); } }); }, queue: function(type,fn){ if ( !fn ) { fn = type; type = "fx"; } return this.each(function(){ if ( !this.queue ) this.queue = {}; if ( !this.queue[type] ) this.queue[type] = []; this.queue[type].push( fn ); if ( this.queue[type].length == 1 ) fn.apply(this); }); } }); jQuery.extend({ speed: function(speed, easing, fn) { var opt = speed && speed.constructor == Object ? speed : { complete: fn || !fn && easing || jQuery.isFunction( speed ) && speed, duration: speed, easing: fn && easing || easing && easing.constructor != Function && easing }; opt.duration = (opt.duration && opt.duration.constructor == Number ? opt.duration : { slow: 600, fast: 200 }[opt.duration]) || 400; // Queueing opt.old = opt.complete; opt.complete = function(){ jQuery.dequeue(this, "fx"); if ( jQuery.isFunction( opt.old ) ) opt.old.apply( this ); }; return opt; }, easing: {}, queue: {}, dequeue: function(elem,type){ type = type || "fx"; if ( elem.queue && elem.queue[type] ) { // Remove self elem.queue[type].shift(); // Get next function var f = elem.queue[type][0]; if ( f ) f.apply( elem ); } }, /* * I originally wrote fx() as a clone of moo.fx and in the process * of making it small in size the code became illegible to sane * people. You've been warned. */ fx: function( elem, options, prop ){ var z = this; // The styles var y = elem.style; // Store display property var oldDisplay = jQuery.css(elem, "display"); // Make sure that nothing sneaks out y.overflow = "hidden"; // Simple function for setting a style value z.a = function(){ if ( options.step ) options.step.apply( elem, [ z.now ] ); if ( prop == "opacity" ) jQuery.attr(y, "opacity", z.now); // Let attr handle opacity else if ( parseInt(z.now) ) // My hate for IE will never die y[prop] = parseInt(z.now) + "px"; y.display = "block"; // Set display property to block for animation }; // Figure out the maximum number to run to z.max = function(){ return parseFloat( jQuery.css(elem,prop) ); }; // Get the current size z.cur = function(){ var r = parseFloat( jQuery.curCSS(elem, prop) ); return r && r > -10000 ? r : z.max(); }; // Start an animation from one number to another z.custom = function(from,to){ z.startTime = (new Date()).getTime(); z.now = from; z.a(); z.timer = setInterval(function(){ z.step(from, to); }, 13); }; // Simple 'show' function z.show = function(){ if ( !elem.orig ) elem.orig = {}; // Remember where we started, so that we can go back to it later elem.orig[prop] = this.cur(); options.show = true; // Begin the animation z.custom(0, elem.orig[prop]); // Stupid IE, look what you made me do if ( prop != "opacity" ) y[prop] = "1px"; }; // Simple 'hide' function z.hide = function(){ if ( !elem.orig ) elem.orig = {}; // Remember where we started, so that we can go back to it later elem.orig[prop] = this.cur(); options.hide = true; // Begin the animation z.custom(elem.orig[prop], 0); }; //Simple 'toggle' function z.toggle = function() { if ( !elem.orig ) elem.orig = {}; // Remember where we started, so that we can go back to it later elem.orig[prop] = this.cur(); if(oldDisplay == "none") { options.show = true; // Stupid IE, look what you made me do if ( prop != "opacity" ) y[prop] = "1px"; // Begin the animation z.custom(0, elem.orig[prop]); } else { options.hide = true; // Begin the animation z.custom(elem.orig[prop], 0); } }; // Each step of an animation z.step = function(firstNum, lastNum){ var t = (new Date()).getTime(); if (t > options.duration + z.startTime) { // Stop the timer clearInterval(z.timer); z.timer = null; z.now = lastNum; z.a(); if (elem.curAnim) elem.curAnim[ prop ] = true; var done = true; for ( var i in elem.curAnim ) if ( elem.curAnim[i] !== true ) done = false; if ( done ) { // Reset the overflow y.overflow = ""; // Reset the display y.display = oldDisplay; if (jQuery.css(elem, "display") == "none") y.display = "block"; // Hide the element if the "hide" operation was done if ( options.hide ) y.display = "none"; // Reset the properties, if the item has been hidden or shown if ( options.hide || options.show ) for ( var p in elem.curAnim ) if (p == "opacity") jQuery.attr(y, p, elem.orig[p]); else y[p] = ""; } // If a callback was provided, execute it if ( done && jQuery.isFunction( options.complete ) ) // Execute the complete function options.complete.apply( elem ); } else { var n = t - this.startTime; // Figure out where in the animation we are and set the number var p = n / options.duration; // If the easing function exists, then use it z.now = options.easing && jQuery.easing[options.easing] ? jQuery.easing[options.easing](p, n, firstNum, (lastNum-firstNum), options.duration) : // else use default linear easing ((-Math.cos(p*Math.PI)/2) + 0.5) * (lastNum-firstNum) + firstNum; // Perform the next step of the animation z.a(); } }; } }); }
Java
# Author: Immanuel Bayer # License: BSD 3 clause import ffm import numpy as np from .base import FactorizationMachine from sklearn.utils.testing import assert_array_equal from .validation import check_array, assert_all_finite class FMRecommender(FactorizationMachine): """ Factorization Machine Recommender with pairwise (BPR) loss solver. Parameters ---------- n_iter : int, optional The number of interations of individual samples . init_stdev: float, optional Sets the stdev for the initialization of the parameter random_state: int, optional The seed of the pseudo random number generator that initializes the parameters and mcmc chain. rank: int The rank of the factorization used for the second order interactions. l2_reg_w : float L2 penalty weight for pairwise coefficients. l2_reg_V : float L2 penalty weight for linear coefficients. l2_reg : float L2 penalty weight for all coefficients (default=0). step_size : float Stepsize for the SGD solver, the solver uses a fixed step size and might require a tunning of the number of iterations `n_iter`. Attributes --------- w0_ : float bias term w_ : float | array, shape = (n_features) Coefficients for linear combination. V_ : float | array, shape = (rank_pair, n_features) Coefficients of second order factor matrix. """ def __init__(self, n_iter=100, init_stdev=0.1, rank=8, random_state=123, l2_reg_w=0.1, l2_reg_V=0.1, l2_reg=0, step_size=0.1): super(FMRecommender, self).\ __init__(n_iter=n_iter, init_stdev=init_stdev, rank=rank, random_state=random_state) if (l2_reg != 0): self.l2_reg_V = l2_reg self.l2_reg_w = l2_reg else: self.l2_reg_w = l2_reg_w self.l2_reg_V = l2_reg_V self.step_size = step_size self.task = "ranking" def fit(self, X, pairs): """ Fit model with specified loss. Parameters ---------- X : scipy.sparse.csc_matrix, (n_samples, n_features) y : float | ndarray, shape = (n_compares, 2) Each row `i` defines a pair of samples such that the first returns a high value then the second FM(X[i,0]) > FM(X[i, 1]). """ X = X.T X = check_array(X, accept_sparse="csc", dtype=np.float64) assert_all_finite(pairs) pairs = pairs.astype(np.float64) # check that pairs contain no real values assert_array_equal(pairs, pairs.astype(np.int32)) assert pairs.max() <= X.shape[1] assert pairs.min() >= 0 self.w0_, self.w_, self.V_ = ffm.ffm_fit_sgd_bpr(self, X, pairs) return self
Java
package me.hatter.tools.resourceproxy.commons.io; import java.io.File; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.OutputStreamWriter; import java.io.PrintWriter; import java.io.UnsupportedEncodingException; public class FilePrintWriter extends PrintWriter { public FilePrintWriter(File file) throws FileNotFoundException { super(new OutputStreamWriter(new FileOutputStream(file))); } public FilePrintWriter(File file, String charset) throws UnsupportedEncodingException, FileNotFoundException { super(new OutputStreamWriter(new FileOutputStream(file), charset)); } }
Java
#include <stdlib.h> #include <stdio.h> #include <utp.h> #include <utp.c> int test() { return -1; } int main(int argc, char ** argv) { if (argc != 2) { fprintf(stderr, "usage: server <PORT>\n"); return EXIT_FAILURE; } int port = atoi(argv[1]); printf("using port = %i\n", port); struct usocket * sock = usocket(); if (sock == NULL) { perror("unable to open socket"); return EXIT_FAILURE; } printf("socket opened 0x%x\n", sock); struct sockaddr_in serv_addr; bzero(&serv_addr, sizeof(serv_addr)); serv_addr.sin_family = AF_INET; serv_addr.sin_addr.s_addr = htonl(INADDR_ANY); serv_addr.sin_port = htons(port); int ret = ubind(sock, (struct sockaddr *)&serv_addr, sizeof(serv_addr)); if (ret == -1) { perror("unable to bind socket"); return EXIT_FAILURE; } printf("socket bound\n"); // TODO listen int i = 0; for (; ; ++i) { struct sockaddr_in cli_addr; socklen_t len = sizeof(cli_addr); fprintf(stderr, "waiting for a connection\n"); struct usocket * conn = uaccept(sock, (struct sockaddr *)&cli_addr, &len); if (conn == NULL) { perror("accept"); continue; } fprintf(stderr, "opened %i connection\n", i); //pid_t pid = fork(); int ret = uclose(conn); if (ret == -1) { perror("unable to close connection"); return EXIT_FAILURE; } } ret = uclose(sock); if (ret == -1) { perror("unable to close socket"); return EXIT_FAILURE; } return EXIT_SUCCESS; }
Java
Copyright 2017 Roman Dodin 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 the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Java
/* * mplsred.h * * Copyright 2010 Daniel Mende <dmende@ernw.de> */ /* * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of the nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "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 THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef MPLSRED_H #define MPLSRED_H 1 #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #ifdef _WIN32 #include <winsock2.h> #include <time.h> #else #include <unistd.h> #include <sys/time.h> #endif #include <dnet.h> #include <pcap.h> #define MAX_PACKET_LEN 1500 #define CHECK_FOR_LOCKFILE 1000 #define TIMEOUT_SEC 1 #define TIMEOUT_USEC 0 extern int mplsred(char*, char*, int, uint16_t, uint16_t, char*, char*, int); #endif
Java
#include "torch-moveit.h" #include <moveit/planning_scene_interface/planning_scene_interface.h> #include "utils.h" typedef std::shared_ptr<moveit_msgs::CollisionObject> CollisionObjectPtr; MOVIMP(CollisionObjectPtr*, CollisionObject, new)() { CollisionObjectPtr *p = new CollisionObjectPtr(new moveit_msgs::CollisionObject()); (*p)->operation = moveit_msgs::CollisionObject::ADD; return p; } MOVIMP(void, CollisionObject, delete)(CollisionObjectPtr *ptr) { if (ptr) delete ptr; } MOVIMP(const char *, CollisionObject, getId)(CollisionObjectPtr *self) { return (*self)->id.c_str(); } MOVIMP(void, CollisionObject, setId)(CollisionObjectPtr *self, const char *id) { (*self)->id = id; } MOVIMP(const char *, CollisionObject, getFrameId)(CollisionObjectPtr *self) { return (*self)->header.frame_id.c_str(); } MOVIMP(void, CollisionObject, setFrameId)(CollisionObjectPtr *self, const char *id) { (*self)->header.frame_id = id; } MOVIMP(int, CollisionObject, getOperation)(CollisionObjectPtr *self) { return (*self)->operation; } MOVIMP(void, CollisionObject, setOperation)(CollisionObjectPtr *self, int operation) { (*self)->operation = static_cast< moveit_msgs::CollisionObject::_operation_type>(operation); } MOVIMP(void, CollisionObject, addPrimitive)(CollisionObjectPtr *self, int type, THDoubleTensor *dimensions, tf::Transform *transform) { shape_msgs::SolidPrimitive primitive; primitive.type = type; Tensor2vector(dimensions, primitive.dimensions); (*self)->primitives.push_back(primitive); geometry_msgs::Pose pose; // convert transform to pose msg poseTFToMsg(*transform, pose); (*self)->primitive_poses.push_back(pose); } MOVIMP(void, CollisionObject, addPlane)(CollisionObjectPtr *self, THDoubleTensor *coefs, tf::Transform *transform) { shape_msgs::Plane plane; for (int i = 0; i < 4; ++i) plane.coef[i] = THDoubleTensor_get1d(coefs, i); (*self)->planes.push_back(plane); geometry_msgs::Pose pose; // convert transform to pose msg poseTFToMsg(*transform, pose); (*self)->plane_poses.push_back(pose); }
Java
// Generated by delombok at Sat Jun 11 11:12:44 CEST 2016 public final class Zoo { private final String meerkat; private final String warthog; public Zoo create() { return new Zoo("tomon", "pumbaa"); } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") Zoo(final String meerkat, final String warthog) { this.meerkat = meerkat; this.warthog = warthog; } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public static class ZooBuilder { @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") private String meerkat; @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") private String warthog; @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") ZooBuilder() { } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public ZooBuilder meerkat(final String meerkat) { this.meerkat = meerkat; return this; } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public ZooBuilder warthog(final String warthog) { this.warthog = warthog; return this; } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public Zoo build() { return new Zoo(meerkat, warthog); } @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public java.lang.String toString() { return "Zoo.ZooBuilder(meerkat=" + this.meerkat + ", warthog=" + this.warthog + ")"; } } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public static ZooBuilder builder() { return new ZooBuilder(); } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public String getMeerkat() { return this.meerkat; } @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public String getWarthog() { return this.warthog; } @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public boolean equals(final java.lang.Object o) { if (o == this) return true; if (!(o instanceof Zoo)) return false; final Zoo other = (Zoo) o; final java.lang.Object this$meerkat = this.getMeerkat(); final java.lang.Object other$meerkat = other.getMeerkat(); if (this$meerkat == null ? other$meerkat != null : !this$meerkat.equals(other$meerkat)) return false; final java.lang.Object this$warthog = this.getWarthog(); final java.lang.Object other$warthog = other.getWarthog(); if (this$warthog == null ? other$warthog != null : !this$warthog.equals(other$warthog)) return false; return true; } @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public int hashCode() { final int PRIME = 59; int result = 1; final java.lang.Object $meerkat = this.getMeerkat(); result = result * PRIME + ($meerkat == null ? 43 : $meerkat.hashCode()); final java.lang.Object $warthog = this.getWarthog(); result = result * PRIME + ($warthog == null ? 43 : $warthog.hashCode()); return result; } @java.lang.Override @java.lang.SuppressWarnings("all") @javax.annotation.Generated("lombok") public java.lang.String toString() { return "Zoo(meerkat=" + this.getMeerkat() + ", warthog=" + this.getWarthog() + ")"; } }
Java
<!DOCTYPE html> <!--[if IE 8]><html class="no-js lt-ie9" lang="en" > <![endif]--> <!--[if gt IE 8]><!--> <html class="no-js" lang="en" > <!--<![endif]--> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>relative_humidity_from_dewpoint &mdash; MetPy 0.11</title> <link rel="shortcut icon" href="../../_static/metpy_32x32.ico"/> <link rel="canonical" href="https://unidata.github.io/MetPy/latest/api/generated/metpy.calc.relative_humidity_from_dewpoint.html"/> <link rel="stylesheet" href="../../_static/css/theme.css" type="text/css" /> <link rel="stylesheet" href="../../_static/gallery.css" type="text/css" /> <link rel="stylesheet" href="../../_static/theme_override.css" type="text/css" /> <link rel="index" title="Index" href="../../genindex.html"/> <link rel="search" title="Search" href="../../search.html"/> <link rel="top" title="MetPy 0.11" href="../../index.html"/> <link rel="up" title="calc" href="metpy.calc.html"/> <link rel="next" title="relative_humidity_from_mixing_ratio" href="metpy.calc.relative_humidity_from_mixing_ratio.html"/> <link rel="prev" title="psychrometric_vapor_pressure_wet" href="metpy.calc.psychrometric_vapor_pressure_wet.html"/> <script src="../../_static/js/modernizr.min.js"></script> </head> <body class="wy-body-for-nav" role="document"> <div class="wy-grid-for-nav"> <nav data-toggle="wy-nav-shift" class="wy-nav-side"> <div class="wy-side-scroll"> <div class="wy-side-nav-search"> <a href="../../index.html" class="icon icon-home"> MetPy <img src="../../_static/metpy_150x150.png" class="logo" /> </a> <div class="version"> <div class="version-dropdown"> <select class="version-list" id="version-list"> <option value=''>0.11</option> <option value="../latest">latest</option> <option value="../dev">dev</option> </select> </div> </div> <div role="search"> <form id="rtd-search-form" class="wy-form" action="../../search.html" method="get"> <input type="text" name="q" placeholder="Search docs" /> <input type="hidden" name="check_keywords" value="yes" /> <input type="hidden" name="area" value="default" /> </form> </div> </div> <div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="main navigation"> <ul class="current"> <li class="toctree-l1"><a class="reference internal" href="../../installguide.html">Installation Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../startingguide.html">Getting Started with MetPy</a></li> <li class="toctree-l1"><a class="reference internal" href="../../units.html">Unit Support</a></li> <li class="toctree-l1"><a class="reference internal" href="../../examples/index.html">Reference/API Examples</a></li> <li class="toctree-l1"><a class="reference external" href="https://unidata.github.io/python-gallery/examples/index.html">Topical Examples</a></li> <li class="toctree-l1"><a class="reference internal" href="../../tutorials/index.html">Tutorials</a></li> <li class="toctree-l1 current"><a class="reference internal" href="../index.html">Reference Guide</a><ul class="current"> <li class="toctree-l2"><a class="reference internal" href="metpy.constants.html">constants</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.units.html">units</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.io.html">io</a></li> <li class="toctree-l2 current"><a class="reference internal" href="metpy.calc.html">calc</a><ul class="current"> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#dry-thermodynamics">Dry Thermodynamics</a></li> <li class="toctree-l3 current"><a class="reference internal" href="metpy.calc.html#moist-thermodynamics">Moist Thermodynamics</a><ul class="current"> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.dewpoint.html">dewpoint</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.dewpoint_from_specific_humidity.html">dewpoint_from_specific_humidity</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.dewpoint_rh.html">dewpoint_rh</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.equivalent_potential_temperature.html">equivalent_potential_temperature</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.mixing_ratio.html">mixing_ratio</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.mixing_ratio_from_relative_humidity.html">mixing_ratio_from_relative_humidity</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.mixing_ratio_from_specific_humidity.html">mixing_ratio_from_specific_humidity</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.moist_lapse.html">moist_lapse</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.moist_static_energy.html">moist_static_energy</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.precipitable_water.html">precipitable_water</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.psychrometric_vapor_pressure_wet.html">psychrometric_vapor_pressure_wet</a></li> <li class="toctree-l4 current"><a class="current reference internal" href="#">relative_humidity_from_dewpoint</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.relative_humidity_from_mixing_ratio.html">relative_humidity_from_mixing_ratio</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.relative_humidity_from_specific_humidity.html">relative_humidity_from_specific_humidity</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.relative_humidity_wet_psychrometric.html">relative_humidity_wet_psychrometric</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.saturation_equivalent_potential_temperature.html">saturation_equivalent_potential_temperature</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.saturation_mixing_ratio.html">saturation_mixing_ratio</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.saturation_vapor_pressure.html">saturation_vapor_pressure</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.specific_humidity_from_dewpoint.html">specific_humidity_from_dewpoint</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.specific_humidity_from_mixing_ratio.html">specific_humidity_from_mixing_ratio</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.thickness_hydrostatic_from_relative_humidity.html">thickness_hydrostatic_from_relative_humidity</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.vapor_pressure.html">vapor_pressure</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.vertical_velocity.html">vertical_velocity</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.vertical_velocity_pressure.html">vertical_velocity_pressure</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.virtual_potential_temperature.html">virtual_potential_temperature</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.virtual_temperature.html">virtual_temperature</a></li> <li class="toctree-l4"><a class="reference internal" href="metpy.calc.wet_bulb_temperature.html">wet_bulb_temperature</a></li> </ul> </li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#soundings">Soundings</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#dynamic-kinematic">Dynamic/Kinematic</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#boundary-layer-turbulence">Boundary Layer/Turbulence</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#mathematical-functions">Mathematical Functions</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#apparent-temperature">Apparent Temperature</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#standard-atmosphere">Standard Atmosphere</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#other">Other</a></li> <li class="toctree-l3"><a class="reference internal" href="metpy.calc.html#deprecated">Deprecated</a></li> </ul> </li> <li class="toctree-l2"><a class="reference internal" href="metpy.plots.html">plots</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.plots.ctables.html">ctables</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.interpolate.html">interpolate</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.gridding.html">gridding</a></li> <li class="toctree-l2"><a class="reference internal" href="metpy.xarray.html">xarray</a></li> </ul> </li> <li class="toctree-l1"><a class="reference internal" href="../../roadmap.html">MetPy Roadmap</a></li> <li class="toctree-l1"><a class="reference internal" href="../../gempak.html">GEMPAK Conversion Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../SUPPORT.html">Support</a></li> <li class="toctree-l1"><a class="reference internal" href="../../CONTRIBUTING.html">Contributors Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../infrastructureguide.html">Infrastructure Guide</a></li> <li class="toctree-l1"><a class="reference internal" href="../../citing.html">Citing MetPy</a></li> <li class="toctree-l1"><a class="reference internal" href="../../references.html">References</a></li> </ul> </div> </div> </nav> <section data-toggle="wy-nav-shift" class="wy-nav-content-wrap"> <nav class="wy-nav-top" role="navigation" aria-label="top navigation"> <i data-toggle="wy-nav-top" class="fa fa-bars"></i> <a href="../../index.html">MetPy</a> </nav> <div class="wy-nav-content"> <div class="rst-content"> <div role="navigation" aria-label="breadcrumbs navigation"> <ul class="wy-breadcrumbs"> <li><a href="../../index.html">Docs</a> &raquo;</li> <li><a href="../index.html">Reference Guide</a> &raquo;</li> <li><a href="metpy.calc.html">calc</a> &raquo;</li> <li>relative_humidity_from_dewpoint</li> <li class="source-link"> <a href="https://github.com/Unidata/MetPy/issues/new?title=Suggested%20improvement%20for%20api/generated/metpy.calc.relative_humidity_from_dewpoint&body=Please%20describe%20what%20could%20be%20improved%20about%20this%20page%20or%20the%20typo/mistake%20that%20you%20found%3A" class="fa fa-github"> Improve this page</a> </li> </ul> <hr/> </div> <div role="main" class="document" itemscope="itemscope" itemtype="http://schema.org/Article"> <div itemprop="articleBody"> <div class="section" id="relative-humidity-from-dewpoint"> <h1>relative_humidity_from_dewpoint<a class="headerlink" href="#relative-humidity-from-dewpoint" title="Permalink to this headline">¶</a></h1> <dl class="function"> <dt id="metpy.calc.relative_humidity_from_dewpoint"> <code class="sig-prename descclassname">metpy.calc.</code><code class="sig-name descname">relative_humidity_from_dewpoint</code><span class="sig-paren">(</span><em class="sig-param">temperature</em>, <em class="sig-param">dewpt</em><span class="sig-paren">)</span><a class="reference internal" href="../../_modules/metpy/calc/thermo.html#relative_humidity_from_dewpoint"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#metpy.calc.relative_humidity_from_dewpoint" title="Permalink to this definition">¶</a></dt> <dd><p>Calculate the relative humidity.</p> <p>Uses temperature and dewpoint in celsius to calculate relative humidity using the ratio of vapor pressure to saturation vapor pressures.</p> <dl class="field-list simple"> <dt class="field-odd">Parameters</dt> <dd class="field-odd"><ul class="simple"> <li><p><strong>temperature</strong> (<em class="xref py py-obj">pint.Quantity</em>) – air temperature</p></li> <li><p><strong>dewpoint</strong> (<em class="xref py py-obj">pint.Quantity</em>) – dewpoint temperature</p></li> </ul> </dd> <dt class="field-even">Returns</dt> <dd class="field-even"><p><em class="xref py py-obj">pint.Quantity</em> – relative humidity</p> </dd> </dl> <div class="admonition seealso"> <p class="admonition-title">See also</p> <p><a class="reference internal" href="metpy.calc.saturation_vapor_pressure.html#metpy.calc.saturation_vapor_pressure" title="metpy.calc.saturation_vapor_pressure"><code class="xref py py-func docutils literal notranslate"><span class="pre">saturation_vapor_pressure()</span></code></a></p> </div> </dd></dl> <div style='clear:both'></div></div> </div> <div class="articleComments"> </div> </div> <footer> <div class="rst-footer-buttons" role="navigation" aria-label="footer navigation"> <a href="metpy.calc.relative_humidity_from_mixing_ratio.html" class="btn btn-neutral float-right" title="relative_humidity_from_mixing_ratio" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right"></span></a> <a href="metpy.calc.psychrometric_vapor_pressure_wet.html" class="btn btn-neutral" title="psychrometric_vapor_pressure_wet" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left"></span> Previous</a> </div> <hr/> <div role="contentinfo"> <p> &copy; Copyright 2019, MetPy Developers. Development supported by National Science Foundation grants AGS-1344155, OAC-1740315, and AGS-1901712.. Last updated on Oct 18, 2019 at 17:16:45. </p> </div> Built with <a href="http://sphinx-doc.org/">Sphinx</a> using a <a href="https://github.com/snide/sphinx_rtd_theme">theme</a> provided by <a href="https://readthedocs.org">Read the Docs</a>. <script> (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) })(window,document,'script','https://www.google-analytics.com/analytics.js','ga'); ga('create', 'UA-92978945-1', 'auto'); ga('send', 'pageview'); </script> <script>var version_json_loc = "../../../versions.json";</script> <p>Do you enjoy using MetPy? <a href="https://saythanks.io/to/unidata" class="btn btn-neutral" title="Say Thanks!" accesskey="n">Say Thanks!</a> </p> </footer> </div> </div> </section> </div> <script type="text/javascript"> var DOCUMENTATION_OPTIONS = { URL_ROOT:'../../', VERSION:'0.11.1', LANGUAGE:'None', COLLAPSE_INDEX:false, FILE_SUFFIX:'.html', HAS_SOURCE: true, SOURCELINK_SUFFIX: '.txt' }; </script> <script type="text/javascript" src="../../_static/jquery.js"></script> <script type="text/javascript" src="../../_static/underscore.js"></script> <script type="text/javascript" src="../../_static/doctools.js"></script> <script type="text/javascript" src="../../_static/language_data.js"></script> <script type="text/javascript" src="../../_static/pop_ver.js"></script> <script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.5/latest.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/javascript" src="../../_static/js/theme.js"></script> <script type="text/javascript"> jQuery(function () { SphinxRtdTheme.StickyNav.enable(); }); </script> </body> </html>
Java
<?php /* * This file is part of the codeliner/ginger-plugin-installer package. * (c) Alexander Miertsch <kontakt@codeliner.ws> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ return array( );
Java
package ru.ac.uniyar.dots; import android.app.Application; import android.test.ApplicationTestCase; /** * <a href="http://d.android.com/tools/testing/testing_android.html">Testing Fundamentals</a> */ public class ApplicationTest extends ApplicationTestCase<Application> { public ApplicationTest() { super(Application.class); } }
Java
--- layout: organization category: local title: St. Helens Church impact_area: Human Rights keywords: location_services: location_offices: website: sthelen.org description: mission: | Support group for the physically challenged/ community service organization cash_grants: grants: service_opp: services: learn: cont_relationship: salutation: first_name: last_name: title_contact_person: city: Queens state: NY address: | 157-10 83 Street Queens NY 11414 lat: 40.659751 lng: -73.849696 phone: 718-848-9173 ext: fax: email: preferred_contact: contact_person_intro: ---
Java
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Kontrollbase 2.0.1 - MySQL Monitoring</title> <link rel="stylesheet" type="text/css" media="all" href="http://testing.kontrollbase.com/userguide/css/userguide-nofluff.css" /> <script type="text/javascript" src="http://testing.kontrollbase.com/includes/browser_detect.js"></script> <script language="JavaScript" SRC="http://testing.kontrollbase.com/includes/CalendarPopup.js"></script> <script language="JavaScript"> var cal = new CalendarPopup();</script> <script language="JavaScript" ID="jscal1x"> var cal1x = new CalendarPopup("graphform");</script> <script language="JavaScript">document.write(getCalendarStyles());</script> </head> <body><table cellpadding="0" cellspacing="1" border="0" style="width:100%" class="tableborder"><tr><td colspan='3'><div id='content'><h1>Date range: start 2009-09-10 -> end 2009-09-17</h1></td></tr><tr><td colspan="3"> <div id="content"><table cellpadding="0" cellspacing="1" border="0" class="tableborder"><form action="http://testing.kontrollbase.com/index.php/main/graphs" method="post" name="graphform"><input type="hidden" name="server_list_id" value="14" /><tr><th>Start date</th><th>End Date</th><th>&nbsp;</th></tr><tr><td class='td'><input type="text" name="sday" value="2009-09-10" id="sday" maxlength="10" size="15" style="width:50%" /> <a href="#"onClick="cal.select(document.forms['graphform'].sday,'anchor1','yyyy-MM-dd'); return false;" NAME="anchor1" ID="anchor1"><img src='http://testing.kontrollbase.com/includes/images/icon_calendar.gif' height='20' width='20' border='0'></a></td><td class='td'><input type="text" name="eday" value="2009-09-17" id="eday" maxlength="10" size="15" style="width:50%" /> <a href="#"onClick="cal.select(document.forms['graphform'].eday,'anchor1','yyyy-MM-dd'); return false;" NAME="anchor1" ID="anchor1"><img src='http://testing.kontrollbase.com/includes/images/icon_calendar.gif' height='20' width='20' border='0'></a></td><td><input type="submit" name="submit" value="Submit" /></td></tr></table></td></tr><table><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Query Rate' xAxisName='' yAxisName='Q/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='12.7062' color='ff6600' showName='0'/> <set name='09-10 01:00' value='12.7032' color='ff6600' showName='0'/> <set name='09-10 02:00' value='12.7006' color='ff6600' showName='0'/> <set name='09-10 03:00' value='12.6975' color='ff6600' showName='0'/> <set name='09-10 04:00' value='12.6944' color='ff6600' showName='0'/> <set name='09-10 05:15' value='12.7008' color='ff6600' showName='0'/> <set name='09-10 06:35' value='12.6977' color='ff6600' showName='0'/> <set name='09-10 07:00' value='12.6965' color='ff6600' showName='0'/> <set name='09-10 08:00' value='12.6941' color='ff6600' showName='0'/> <set name='09-10 09:00' value='12.6919' color='ff6600' showName='0'/> <set name='09-10 10:00' value='12.6914' color='ff6600' showName='0'/> <set name='09-10 11:00' value='12.6906' color='ff6600' showName='0'/> <set name='09-10 12:00' value='12.6888' color='ff6600' showName='0'/> <set name='09-10 13:00' value='12.6868' color='ff6600' showName='0'/> <set name='09-10 14:00' value='12.6847' color='ff6600' showName='0'/> <set name='09-10 15:00' value='12.6828' color='ff6600' showName='0'/> <set name='09-10 16:05' value='12.6828' color='ff6600' showName='0'/> <set name='09-10 17:00' value='12.6808' color='ff6600' showName='0'/> <set name='09-10 18:00' value='12.6784' color='ff6600' showName='0'/> <set name='09-10 19:00' value='12.6765' color='ff6600' showName='0'/> <set name='09-10 20:00' value='12.6741' color='ff6600' showName='0'/> <set name='09-10 21:00' value='12.6717' color='ff6600' showName='0'/> <set name='09-10 22:00' value='12.6693' color='ff6600' showName='0'/> <set name='09-10 23:00' value='12.6665' color='ff6600' showName='0'/> <set name='09-11 00:00' value='12.6638' color='ff6600' showName='0'/> <set name='09-11 01:00' value='12.6613' color='ff6600' showName='0'/> <set name='09-11 02:00' value='12.659' color='ff6600' showName='0'/> <set name='09-11 03:00' value='12.6563' color='ff6600' showName='0'/> <set name='09-11 04:00' value='12.6536' color='ff6600' showName='0'/> <set name='09-11 05:00' value='12.6589' color='ff6600' showName='0'/> <set name='09-11 06:15' value='12.6567' color='ff6600' showName='0'/> <set name='09-11 07:00' value='12.655' color='ff6600' showName='0'/> <set name='09-11 08:00' value='12.6528' color='ff6600' showName='0'/> <set name='09-11 09:00' value='12.65' color='ff6600' showName='0'/> <set name='09-15 12:18' value='12.5388' color='ff6600' showName='0'/> <set name='09-15 13:00' value='12.5397' color='ff6600' showName='0'/> <set name='09-15 14:00' value='12.5414' color='ff6600' showName='0'/> <set name='09-15 15:00' value='12.5423' color='ff6600' showName='0'/> <set name='09-15 16:00' value='12.5432' color='ff6600' showName='0'/> <set name='09-15 17:00' value='12.5449' color='ff6600' showName='0'/> <set name='09-15 18:00' value='12.546' color='ff6600' showName='0'/> <set name='09-15 19:00' value='12.5472' color='ff6600' showName='0'/> <set name='09-15 20:00' value='12.5477' color='ff6600' showName='0'/> <set name='09-15 21:00' value='12.5485' color='ff6600' showName='0'/> <set name='09-15 22:00' value='12.5488' color='ff6600' showName='0'/> <set name='09-15 23:00' value='12.5498' color='ff6600' showName='0'/> <set name='09-16 00:00' value='12.5504' color='ff6600' showName='0'/> <set name='09-16 01:25' value='12.5526' color='ff6600' showName='0'/> <set name='09-16 02:00' value='12.5539' color='ff6600' showName='0'/> <set name='09-16 03:00' value='12.5544' color='ff6600' showName='0'/> <set name='09-16 04:00' value='12.5565' color='ff6600' showName='0'/> <set name='09-16 05:05' value='12.564' color='ff6600' showName='0'/> <set name='09-16 06:05' value='12.5683' color='ff6600' showName='0'/> <set name='09-16 07:00' value='12.5685' color='ff6600' showName='0'/> <set name='09-16 08:00' value='12.5692' color='ff6600' showName='0'/> <set name='09-16 09:00' value='12.5703' color='ff6600' showName='0'/> <set name='09-16 10:00' value='12.5706' color='ff6600' showName='0'/> <set name='09-16 11:00' value='12.5706' color='ff6600' showName='0'/> <set name='09-16 12:00' value='12.5714' color='ff6600' showName='0'/> <set name='09-16 13:00' value='12.5723' color='ff6600' showName='0'/> <set name='09-16 14:00' value='12.5725' color='ff6600' showName='0'/> <set name='09-16 15:00' value='12.5729' color='ff6600' showName='0'/> <set name='09-16 16:00' value='12.574' color='ff6600' showName='0'/> <set name='09-16 17:00' value='12.5753' color='ff6600' showName='0'/> <set name='09-16 18:05' value='12.5756' color='ff6600' showName='0'/> <set name='09-16 19:00' value='12.5759' color='ff6600' showName='0'/> <set name='09-16 20:00' value='12.5751' color='ff6600' showName='0'/> <set name='09-16 21:00' value='12.5752' color='ff6600' showName='0'/> <set name='09-16 22:00' value='12.5749' color='ff6600' showName='0'/> <set name='09-16 23:00' value='12.5746' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Query Rate' xAxisName='' yAxisName='Q/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='12.7062' color='ff6600' showName='0'/> <set name='09-10 01:00' value='12.7032' color='ff6600' showName='0'/> <set name='09-10 02:00' value='12.7006' color='ff6600' showName='0'/> <set name='09-10 03:00' value='12.6975' color='ff6600' showName='0'/> <set name='09-10 04:00' value='12.6944' color='ff6600' showName='0'/> <set name='09-10 05:15' value='12.7008' color='ff6600' showName='0'/> <set name='09-10 06:35' value='12.6977' color='ff6600' showName='0'/> <set name='09-10 07:00' value='12.6965' color='ff6600' showName='0'/> <set name='09-10 08:00' value='12.6941' color='ff6600' showName='0'/> <set name='09-10 09:00' value='12.6919' color='ff6600' showName='0'/> <set name='09-10 10:00' value='12.6914' color='ff6600' showName='0'/> <set name='09-10 11:00' value='12.6906' color='ff6600' showName='0'/> <set name='09-10 12:00' value='12.6888' color='ff6600' showName='0'/> <set name='09-10 13:00' value='12.6868' color='ff6600' showName='0'/> <set name='09-10 14:00' value='12.6847' color='ff6600' showName='0'/> <set name='09-10 15:00' value='12.6828' color='ff6600' showName='0'/> <set name='09-10 16:05' value='12.6828' color='ff6600' showName='0'/> <set name='09-10 17:00' value='12.6808' color='ff6600' showName='0'/> <set name='09-10 18:00' value='12.6784' color='ff6600' showName='0'/> <set name='09-10 19:00' value='12.6765' color='ff6600' showName='0'/> <set name='09-10 20:00' value='12.6741' color='ff6600' showName='0'/> <set name='09-10 21:00' value='12.6717' color='ff6600' showName='0'/> <set name='09-10 22:00' value='12.6693' color='ff6600' showName='0'/> <set name='09-10 23:00' value='12.6665' color='ff6600' showName='0'/> <set name='09-11 00:00' value='12.6638' color='ff6600' showName='0'/> <set name='09-11 01:00' value='12.6613' color='ff6600' showName='0'/> <set name='09-11 02:00' value='12.659' color='ff6600' showName='0'/> <set name='09-11 03:00' value='12.6563' color='ff6600' showName='0'/> <set name='09-11 04:00' value='12.6536' color='ff6600' showName='0'/> <set name='09-11 05:00' value='12.6589' color='ff6600' showName='0'/> <set name='09-11 06:15' value='12.6567' color='ff6600' showName='0'/> <set name='09-11 07:00' value='12.655' color='ff6600' showName='0'/> <set name='09-11 08:00' value='12.6528' color='ff6600' showName='0'/> <set name='09-11 09:00' value='12.65' color='ff6600' showName='0'/> <set name='09-15 12:18' value='12.5388' color='ff6600' showName='0'/> <set name='09-15 13:00' value='12.5397' color='ff6600' showName='0'/> <set name='09-15 14:00' value='12.5414' color='ff6600' showName='0'/> <set name='09-15 15:00' value='12.5423' color='ff6600' showName='0'/> <set name='09-15 16:00' value='12.5432' color='ff6600' showName='0'/> <set name='09-15 17:00' value='12.5449' color='ff6600' showName='0'/> <set name='09-15 18:00' value='12.546' color='ff6600' showName='0'/> <set name='09-15 19:00' value='12.5472' color='ff6600' showName='0'/> <set name='09-15 20:00' value='12.5477' color='ff6600' showName='0'/> <set name='09-15 21:00' value='12.5485' color='ff6600' showName='0'/> <set name='09-15 22:00' value='12.5488' color='ff6600' showName='0'/> <set name='09-15 23:00' value='12.5498' color='ff6600' showName='0'/> <set name='09-16 00:00' value='12.5504' color='ff6600' showName='0'/> <set name='09-16 01:25' value='12.5526' color='ff6600' showName='0'/> <set name='09-16 02:00' value='12.5539' color='ff6600' showName='0'/> <set name='09-16 03:00' value='12.5544' color='ff6600' showName='0'/> <set name='09-16 04:00' value='12.5565' color='ff6600' showName='0'/> <set name='09-16 05:05' value='12.564' color='ff6600' showName='0'/> <set name='09-16 06:05' value='12.5683' color='ff6600' showName='0'/> <set name='09-16 07:00' value='12.5685' color='ff6600' showName='0'/> <set name='09-16 08:00' value='12.5692' color='ff6600' showName='0'/> <set name='09-16 09:00' value='12.5703' color='ff6600' showName='0'/> <set name='09-16 10:00' value='12.5706' color='ff6600' showName='0'/> <set name='09-16 11:00' value='12.5706' color='ff6600' showName='0'/> <set name='09-16 12:00' value='12.5714' color='ff6600' showName='0'/> <set name='09-16 13:00' value='12.5723' color='ff6600' showName='0'/> <set name='09-16 14:00' value='12.5725' color='ff6600' showName='0'/> <set name='09-16 15:00' value='12.5729' color='ff6600' showName='0'/> <set name='09-16 16:00' value='12.574' color='ff6600' showName='0'/> <set name='09-16 17:00' value='12.5753' color='ff6600' showName='0'/> <set name='09-16 18:05' value='12.5756' color='ff6600' showName='0'/> <set name='09-16 19:00' value='12.5759' color='ff6600' showName='0'/> <set name='09-16 20:00' value='12.5751' color='ff6600' showName='0'/> <set name='09-16 21:00' value='12.5752' color='ff6600' showName='0'/> <set name='09-16 22:00' value='12.5749' color='ff6600' showName='0'/> <set name='09-16 23:00' value='12.5746' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Server Connections' xAxisName='' yAxisName='connections' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.001' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.001' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Server Connections' xAxisName='' yAxisName='connections' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.001' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.001' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Load AVG 1 minute' xAxisName='' yAxisName='load avg' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.091' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.451' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.221' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.351' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.311' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.361' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.231' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.091' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.161' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.071' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.081' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.571' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.311' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.091' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.241' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.151' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.081' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.141' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.081' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.091' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.07' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.691' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.251' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.181' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.241' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.361' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.421' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.461' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.451' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.241' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.161' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Load AVG 1 minute' xAxisName='' yAxisName='load avg' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.091' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.451' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.221' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.351' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.311' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.361' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.231' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.091' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.161' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.151' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.071' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.081' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.571' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.311' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.091' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.151' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.241' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.151' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.081' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.141' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.081' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.091' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.07' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.691' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.251' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.181' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.241' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.161' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.361' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.421' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.461' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.451' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.241' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.161' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Load AVG 5 minute' xAxisName='' yAxisName='load avg' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.041' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.121' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.101' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.071' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.041' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.411' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.071' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.041' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.051' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.051' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.061' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.041' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.041' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.031' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.021' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.041' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.021' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.031' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.261' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.071' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.031' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.041' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.191' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.031' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.051' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.041' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.041' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.041' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.041' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.021' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.021' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.051' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.321' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.211' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.111' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.111' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.071' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.211' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.201' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.171' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.151' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.071' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Load AVG 5 minute' xAxisName='' yAxisName='load avg' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.041' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.121' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.101' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.071' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.041' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.411' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.071' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.041' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.051' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.051' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.061' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.041' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.041' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.031' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.021' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.041' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.021' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.031' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.261' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.071' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.031' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.041' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.191' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.031' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.051' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.081' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.041' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.031' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.041' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.041' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.041' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.021' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.021' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.051' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.321' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.211' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.111' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.111' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.061' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.071' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.211' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.201' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.171' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.151' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.071' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Load AVG 15 minute' xAxisName='' yAxisName='load avg' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.011' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.211' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.011' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.141' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.021' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.011' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.101' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.011' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.061' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.011' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.011' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.101' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.121' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.071' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.041' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.131' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.131' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.111' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.101' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.071' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Load AVG 15 minute' xAxisName='' yAxisName='load avg' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.011' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.081' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.031' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.211' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.021' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.011' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.011' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.141' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.021' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.011' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.011' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.101' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.011' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.061' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.021' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.011' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.011' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.011' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.101' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.121' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.091' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.071' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.031' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.011' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.041' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.131' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.131' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.111' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.101' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.081' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.071' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Memory Total' xAxisName='' yAxisName='ram' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 01:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 02:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 03:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 04:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 05:15' value='134225920' color='ff6600' showName='0'/> <set name='09-10 06:35' value='134225920' color='ff6600' showName='0'/> <set name='09-10 07:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 08:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 09:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 10:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 11:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 12:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 13:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 14:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 15:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 16:05' value='134225920' color='ff6600' showName='0'/> <set name='09-10 17:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 18:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 19:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 20:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 21:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 22:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 23:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 00:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 01:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 02:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 03:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 04:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 05:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 06:15' value='134225920' color='ff6600' showName='0'/> <set name='09-11 07:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 08:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 09:00' value='134225920' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1051652096' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 05:05' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 07:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 08:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 11:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 12:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 13:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 14:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 15:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 16:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 21:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 22:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 23:00' value='3959345152' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Memory Total' xAxisName='' yAxisName='ram' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 01:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 02:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 03:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 04:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 05:15' value='134225920' color='ff6600' showName='0'/> <set name='09-10 06:35' value='134225920' color='ff6600' showName='0'/> <set name='09-10 07:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 08:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 09:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 10:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 11:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 12:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 13:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 14:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 15:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 16:05' value='134225920' color='ff6600' showName='0'/> <set name='09-10 17:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 18:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 19:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 20:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 21:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 22:00' value='134225920' color='ff6600' showName='0'/> <set name='09-10 23:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 00:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 01:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 02:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 03:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 04:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 05:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 06:15' value='134225920' color='ff6600' showName='0'/> <set name='09-11 07:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 08:00' value='134225920' color='ff6600' showName='0'/> <set name='09-11 09:00' value='134225920' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1051652096' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 05:05' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 07:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 08:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 11:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 12:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 13:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 14:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 15:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 16:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 21:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 22:00' value='3959345152' color='ff6600' showName='0'/> <set name='09-16 23:00' value='3959345152' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Memory Used' xAxisName='' yAxisName='ram' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='34566144' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3366690816' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3221123072' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3172605952' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3157114880' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3142496256' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3134500864' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3123384320' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3114864640' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3106254848' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3091525632' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3081367552' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3054657536' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3045838848' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3037429760' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3032731648' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3027779584' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2988503040' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2901536768' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2918539264' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2840166400' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2669834240' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2677428224' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2669830144' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2664275968' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2734563328' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2746454016' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2742611968' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2734706688' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2727833600' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2733342720' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2733121536' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2727362560' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2723221504' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2715529216' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2672529408' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Memory Used' xAxisName='' yAxisName='ram' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='34566144' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3366690816' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3221123072' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3172605952' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3157114880' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3142496256' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3134500864' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3123384320' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3114864640' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3106254848' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3091525632' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3081367552' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3054657536' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3045838848' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3037429760' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3032731648' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3027779584' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2988503040' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2901536768' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2918539264' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2840166400' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2669834240' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2677428224' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2669830144' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2664275968' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2734563328' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2746454016' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2742611968' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2734706688' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2727833600' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2733342720' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2733121536' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2727362560' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2723221504' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2715529216' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2672529408' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Swap Total' xAxisName='' yAxisName='swap size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2080366592' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Swap Total' xAxisName='' yAxisName='swap size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2937774080' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2080366592' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Swap Free' xAxisName='' yAxisName='swap size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2897649664' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2897227776' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2897313792' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2897305600' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2897309696' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2897285120' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2893221888' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2893225984' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2893193216' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2875211776' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2894360576' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2886402048' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2893348864' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2875047936' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2888822784' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2880278528' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2877792256' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2874105856' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2895949824' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2895958016' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2895941632' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2895945728' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2895945728' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2895966208' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2894696448' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2891620352' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2891968512' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2891964416' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2890584064' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2889199616' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2889207808' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2879287296' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2880397312' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2871824384' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2080366592' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS Swap Free' xAxisName='' yAxisName='swap size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2897649664' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2897227776' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2897313792' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2897305600' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2897309696' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2897285120' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2893221888' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2893225984' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2893193216' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2875211776' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2894360576' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2886402048' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2893348864' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2875047936' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2888822784' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2880278528' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2877792256' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2874105856' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2895949824' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2895958016' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2895941632' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2895945728' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2895945728' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2895966208' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2894696448' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2891620352' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2891968512' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2891964416' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2890584064' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2889199616' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2889207808' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2879287296' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2880397312' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2871824384' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2080366592' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2080366592' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS CPU User' xAxisName='' yAxisName='percentage' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='5' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1' color='ff6600' showName='0'/> <set name='09-16 01:25' value='8' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='7' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3' color='ff6600' showName='0'/> <set name='09-16 11:00' value='4' color='ff6600' showName='0'/> <set name='09-16 12:00' value='4' color='ff6600' showName='0'/> <set name='09-16 13:00' value='6' color='ff6600' showName='0'/> <set name='09-16 14:00' value='6' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3' color='ff6600' showName='0'/> <set name='09-16 20:00' value='4' color='ff6600' showName='0'/> <set name='09-16 21:00' value='5' color='ff6600' showName='0'/> <set name='09-16 22:00' value='6' color='ff6600' showName='0'/> <set name='09-16 23:00' value='5' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS CPU User' xAxisName='' yAxisName='percentage' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='5' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1' color='ff6600' showName='0'/> <set name='09-16 01:25' value='8' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='7' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3' color='ff6600' showName='0'/> <set name='09-16 11:00' value='4' color='ff6600' showName='0'/> <set name='09-16 12:00' value='4' color='ff6600' showName='0'/> <set name='09-16 13:00' value='6' color='ff6600' showName='0'/> <set name='09-16 14:00' value='6' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3' color='ff6600' showName='0'/> <set name='09-16 20:00' value='4' color='ff6600' showName='0'/> <set name='09-16 21:00' value='5' color='ff6600' showName='0'/> <set name='09-16 22:00' value='6' color='ff6600' showName='0'/> <set name='09-16 23:00' value='5' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS CPU System' xAxisName='' yAxisName='percentage' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS CPU System' xAxisName='' yAxisName='percentage' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS CPU Idle' xAxisName='' yAxisName='percentage' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='98' color='ff6600' showName='0'/> <set name='09-10 01:00' value='99' color='ff6600' showName='0'/> <set name='09-10 02:00' value='99' color='ff6600' showName='0'/> <set name='09-10 03:00' value='98' color='ff6600' showName='0'/> <set name='09-10 04:00' value='98' color='ff6600' showName='0'/> <set name='09-10 05:15' value='99' color='ff6600' showName='0'/> <set name='09-10 06:35' value='98' color='ff6600' showName='0'/> <set name='09-10 07:00' value='98' color='ff6600' showName='0'/> <set name='09-10 08:00' value='98' color='ff6600' showName='0'/> <set name='09-10 09:00' value='96' color='ff6600' showName='0'/> <set name='09-10 10:00' value='97' color='ff6600' showName='0'/> <set name='09-10 11:00' value='95' color='ff6600' showName='0'/> <set name='09-10 12:00' value='98' color='ff6600' showName='0'/> <set name='09-10 13:00' value='98' color='ff6600' showName='0'/> <set name='09-10 14:00' value='99' color='ff6600' showName='0'/> <set name='09-10 15:00' value='99' color='ff6600' showName='0'/> <set name='09-10 16:05' value='98' color='ff6600' showName='0'/> <set name='09-10 17:00' value='98' color='ff6600' showName='0'/> <set name='09-10 18:00' value='99' color='ff6600' showName='0'/> <set name='09-10 19:00' value='99' color='ff6600' showName='0'/> <set name='09-10 20:00' value='98' color='ff6600' showName='0'/> <set name='09-10 21:00' value='98' color='ff6600' showName='0'/> <set name='09-10 22:00' value='98' color='ff6600' showName='0'/> <set name='09-10 23:00' value='98' color='ff6600' showName='0'/> <set name='09-11 00:00' value='99' color='ff6600' showName='0'/> <set name='09-11 01:00' value='98' color='ff6600' showName='0'/> <set name='09-11 02:00' value='99' color='ff6600' showName='0'/> <set name='09-11 03:00' value='99' color='ff6600' showName='0'/> <set name='09-11 04:00' value='92' color='ff6600' showName='0'/> <set name='09-11 05:00' value='98' color='ff6600' showName='0'/> <set name='09-11 06:15' value='99' color='ff6600' showName='0'/> <set name='09-11 07:00' value='99' color='ff6600' showName='0'/> <set name='09-11 08:00' value='99' color='ff6600' showName='0'/> <set name='09-11 09:00' value='98' color='ff6600' showName='0'/> <set name='09-15 12:18' value='96' color='ff6600' showName='0'/> <set name='09-15 13:00' value='97' color='ff6600' showName='0'/> <set name='09-15 14:00' value='94' color='ff6600' showName='0'/> <set name='09-15 15:00' value='96' color='ff6600' showName='0'/> <set name='09-15 16:00' value='96' color='ff6600' showName='0'/> <set name='09-15 17:00' value='95' color='ff6600' showName='0'/> <set name='09-15 18:00' value='95' color='ff6600' showName='0'/> <set name='09-15 19:00' value='99' color='ff6600' showName='0'/> <set name='09-15 20:00' value='99' color='ff6600' showName='0'/> <set name='09-15 21:00' value='98' color='ff6600' showName='0'/> <set name='09-15 22:00' value='98' color='ff6600' showName='0'/> <set name='09-15 23:00' value='97' color='ff6600' showName='0'/> <set name='09-16 00:00' value='97' color='ff6600' showName='0'/> <set name='09-16 01:25' value='89' color='ff6600' showName='0'/> <set name='09-16 02:00' value='96' color='ff6600' showName='0'/> <set name='09-16 03:00' value='95' color='ff6600' showName='0'/> <set name='09-16 04:00' value='99' color='ff6600' showName='0'/> <set name='09-16 05:05' value='99' color='ff6600' showName='0'/> <set name='09-16 06:05' value='43' color='ff6600' showName='0'/> <set name='09-16 07:00' value='98' color='ff6600' showName='0'/> <set name='09-16 08:00' value='96' color='ff6600' showName='0'/> <set name='09-16 09:00' value='94' color='ff6600' showName='0'/> <set name='09-16 10:00' value='94' color='ff6600' showName='0'/> <set name='09-16 11:00' value='92' color='ff6600' showName='0'/> <set name='09-16 12:00' value='92' color='ff6600' showName='0'/> <set name='09-16 13:00' value='89' color='ff6600' showName='0'/> <set name='09-16 14:00' value='90' color='ff6600' showName='0'/> <set name='09-16 15:00' value='96' color='ff6600' showName='0'/> <set name='09-16 16:00' value='95' color='ff6600' showName='0'/> <set name='09-16 17:00' value='94' color='ff6600' showName='0'/> <set name='09-16 18:05' value='93' color='ff6600' showName='0'/> <set name='09-16 19:00' value='93' color='ff6600' showName='0'/> <set name='09-16 20:00' value='92' color='ff6600' showName='0'/> <set name='09-16 21:00' value='91' color='ff6600' showName='0'/> <set name='09-16 22:00' value='89' color='ff6600' showName='0'/> <set name='09-16 23:00' value='89' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='OS CPU Idle' xAxisName='' yAxisName='percentage' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='98' color='ff6600' showName='0'/> <set name='09-10 01:00' value='99' color='ff6600' showName='0'/> <set name='09-10 02:00' value='99' color='ff6600' showName='0'/> <set name='09-10 03:00' value='98' color='ff6600' showName='0'/> <set name='09-10 04:00' value='98' color='ff6600' showName='0'/> <set name='09-10 05:15' value='99' color='ff6600' showName='0'/> <set name='09-10 06:35' value='98' color='ff6600' showName='0'/> <set name='09-10 07:00' value='98' color='ff6600' showName='0'/> <set name='09-10 08:00' value='98' color='ff6600' showName='0'/> <set name='09-10 09:00' value='96' color='ff6600' showName='0'/> <set name='09-10 10:00' value='97' color='ff6600' showName='0'/> <set name='09-10 11:00' value='95' color='ff6600' showName='0'/> <set name='09-10 12:00' value='98' color='ff6600' showName='0'/> <set name='09-10 13:00' value='98' color='ff6600' showName='0'/> <set name='09-10 14:00' value='99' color='ff6600' showName='0'/> <set name='09-10 15:00' value='99' color='ff6600' showName='0'/> <set name='09-10 16:05' value='98' color='ff6600' showName='0'/> <set name='09-10 17:00' value='98' color='ff6600' showName='0'/> <set name='09-10 18:00' value='99' color='ff6600' showName='0'/> <set name='09-10 19:00' value='99' color='ff6600' showName='0'/> <set name='09-10 20:00' value='98' color='ff6600' showName='0'/> <set name='09-10 21:00' value='98' color='ff6600' showName='0'/> <set name='09-10 22:00' value='98' color='ff6600' showName='0'/> <set name='09-10 23:00' value='98' color='ff6600' showName='0'/> <set name='09-11 00:00' value='99' color='ff6600' showName='0'/> <set name='09-11 01:00' value='98' color='ff6600' showName='0'/> <set name='09-11 02:00' value='99' color='ff6600' showName='0'/> <set name='09-11 03:00' value='99' color='ff6600' showName='0'/> <set name='09-11 04:00' value='92' color='ff6600' showName='0'/> <set name='09-11 05:00' value='98' color='ff6600' showName='0'/> <set name='09-11 06:15' value='99' color='ff6600' showName='0'/> <set name='09-11 07:00' value='99' color='ff6600' showName='0'/> <set name='09-11 08:00' value='99' color='ff6600' showName='0'/> <set name='09-11 09:00' value='98' color='ff6600' showName='0'/> <set name='09-15 12:18' value='96' color='ff6600' showName='0'/> <set name='09-15 13:00' value='97' color='ff6600' showName='0'/> <set name='09-15 14:00' value='94' color='ff6600' showName='0'/> <set name='09-15 15:00' value='96' color='ff6600' showName='0'/> <set name='09-15 16:00' value='96' color='ff6600' showName='0'/> <set name='09-15 17:00' value='95' color='ff6600' showName='0'/> <set name='09-15 18:00' value='95' color='ff6600' showName='0'/> <set name='09-15 19:00' value='99' color='ff6600' showName='0'/> <set name='09-15 20:00' value='99' color='ff6600' showName='0'/> <set name='09-15 21:00' value='98' color='ff6600' showName='0'/> <set name='09-15 22:00' value='98' color='ff6600' showName='0'/> <set name='09-15 23:00' value='97' color='ff6600' showName='0'/> <set name='09-16 00:00' value='97' color='ff6600' showName='0'/> <set name='09-16 01:25' value='89' color='ff6600' showName='0'/> <set name='09-16 02:00' value='96' color='ff6600' showName='0'/> <set name='09-16 03:00' value='95' color='ff6600' showName='0'/> <set name='09-16 04:00' value='99' color='ff6600' showName='0'/> <set name='09-16 05:05' value='99' color='ff6600' showName='0'/> <set name='09-16 06:05' value='43' color='ff6600' showName='0'/> <set name='09-16 07:00' value='98' color='ff6600' showName='0'/> <set name='09-16 08:00' value='96' color='ff6600' showName='0'/> <set name='09-16 09:00' value='94' color='ff6600' showName='0'/> <set name='09-16 10:00' value='94' color='ff6600' showName='0'/> <set name='09-16 11:00' value='92' color='ff6600' showName='0'/> <set name='09-16 12:00' value='92' color='ff6600' showName='0'/> <set name='09-16 13:00' value='89' color='ff6600' showName='0'/> <set name='09-16 14:00' value='90' color='ff6600' showName='0'/> <set name='09-16 15:00' value='96' color='ff6600' showName='0'/> <set name='09-16 16:00' value='95' color='ff6600' showName='0'/> <set name='09-16 17:00' value='94' color='ff6600' showName='0'/> <set name='09-16 18:05' value='93' color='ff6600' showName='0'/> <set name='09-16 19:00' value='93' color='ff6600' showName='0'/> <set name='09-16 20:00' value='92' color='ff6600' showName='0'/> <set name='09-16 21:00' value='91' color='ff6600' showName='0'/> <set name='09-16 22:00' value='89' color='ff6600' showName='0'/> <set name='09-16 23:00' value='89' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Schemas' xAxisName='' yAxisName='quantity' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2' color='ff6600' showName='0'/> <set name='09-15 12:18' value='3' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3' color='ff6600' showName='0'/> <set name='09-16 05:05' value='3' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3' color='ff6600' showName='0'/> <set name='09-16 07:00' value='3' color='ff6600' showName='0'/> <set name='09-16 08:00' value='3' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3' color='ff6600' showName='0'/> <set name='09-16 11:00' value='3' color='ff6600' showName='0'/> <set name='09-16 12:00' value='3' color='ff6600' showName='0'/> <set name='09-16 13:00' value='3' color='ff6600' showName='0'/> <set name='09-16 14:00' value='3' color='ff6600' showName='0'/> <set name='09-16 15:00' value='3' color='ff6600' showName='0'/> <set name='09-16 16:00' value='3' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3' color='ff6600' showName='0'/> <set name='09-16 21:00' value='3' color='ff6600' showName='0'/> <set name='09-16 22:00' value='3' color='ff6600' showName='0'/> <set name='09-16 23:00' value='3' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Schemas' xAxisName='' yAxisName='quantity' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2' color='ff6600' showName='0'/> <set name='09-15 12:18' value='3' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3' color='ff6600' showName='0'/> <set name='09-16 05:05' value='3' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3' color='ff6600' showName='0'/> <set name='09-16 07:00' value='3' color='ff6600' showName='0'/> <set name='09-16 08:00' value='3' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3' color='ff6600' showName='0'/> <set name='09-16 11:00' value='3' color='ff6600' showName='0'/> <set name='09-16 12:00' value='3' color='ff6600' showName='0'/> <set name='09-16 13:00' value='3' color='ff6600' showName='0'/> <set name='09-16 14:00' value='3' color='ff6600' showName='0'/> <set name='09-16 15:00' value='3' color='ff6600' showName='0'/> <set name='09-16 16:00' value='3' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3' color='ff6600' showName='0'/> <set name='09-16 21:00' value='3' color='ff6600' showName='0'/> <set name='09-16 22:00' value='3' color='ff6600' showName='0'/> <set name='09-16 23:00' value='3' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Tables' xAxisName='' yAxisName='quantity' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='24' color='ff6600' showName='0'/> <set name='09-10 01:00' value='24' color='ff6600' showName='0'/> <set name='09-10 02:00' value='24' color='ff6600' showName='0'/> <set name='09-10 03:00' value='24' color='ff6600' showName='0'/> <set name='09-10 04:00' value='24' color='ff6600' showName='0'/> <set name='09-10 05:15' value='24' color='ff6600' showName='0'/> <set name='09-10 06:35' value='24' color='ff6600' showName='0'/> <set name='09-10 07:00' value='24' color='ff6600' showName='0'/> <set name='09-10 08:00' value='24' color='ff6600' showName='0'/> <set name='09-10 09:00' value='24' color='ff6600' showName='0'/> <set name='09-10 10:00' value='24' color='ff6600' showName='0'/> <set name='09-10 11:00' value='24' color='ff6600' showName='0'/> <set name='09-10 12:00' value='24' color='ff6600' showName='0'/> <set name='09-10 13:00' value='24' color='ff6600' showName='0'/> <set name='09-10 14:00' value='24' color='ff6600' showName='0'/> <set name='09-10 15:00' value='24' color='ff6600' showName='0'/> <set name='09-10 16:05' value='24' color='ff6600' showName='0'/> <set name='09-10 17:00' value='24' color='ff6600' showName='0'/> <set name='09-10 18:00' value='24' color='ff6600' showName='0'/> <set name='09-10 19:00' value='24' color='ff6600' showName='0'/> <set name='09-10 20:00' value='24' color='ff6600' showName='0'/> <set name='09-10 21:00' value='24' color='ff6600' showName='0'/> <set name='09-10 22:00' value='24' color='ff6600' showName='0'/> <set name='09-10 23:00' value='24' color='ff6600' showName='0'/> <set name='09-11 00:00' value='24' color='ff6600' showName='0'/> <set name='09-11 01:00' value='24' color='ff6600' showName='0'/> <set name='09-11 02:00' value='24' color='ff6600' showName='0'/> <set name='09-11 03:00' value='24' color='ff6600' showName='0'/> <set name='09-11 04:00' value='24' color='ff6600' showName='0'/> <set name='09-11 05:00' value='24' color='ff6600' showName='0'/> <set name='09-11 06:15' value='24' color='ff6600' showName='0'/> <set name='09-11 07:00' value='24' color='ff6600' showName='0'/> <set name='09-11 08:00' value='24' color='ff6600' showName='0'/> <set name='09-11 09:00' value='24' color='ff6600' showName='0'/> <set name='09-15 12:18' value='36' color='ff6600' showName='0'/> <set name='09-15 13:00' value='36' color='ff6600' showName='0'/> <set name='09-15 14:00' value='36' color='ff6600' showName='0'/> <set name='09-15 15:00' value='36' color='ff6600' showName='0'/> <set name='09-15 16:00' value='36' color='ff6600' showName='0'/> <set name='09-15 17:00' value='36' color='ff6600' showName='0'/> <set name='09-15 18:00' value='36' color='ff6600' showName='0'/> <set name='09-15 19:00' value='36' color='ff6600' showName='0'/> <set name='09-15 20:00' value='36' color='ff6600' showName='0'/> <set name='09-15 21:00' value='36' color='ff6600' showName='0'/> <set name='09-15 22:00' value='36' color='ff6600' showName='0'/> <set name='09-15 23:00' value='36' color='ff6600' showName='0'/> <set name='09-16 00:00' value='36' color='ff6600' showName='0'/> <set name='09-16 01:25' value='36' color='ff6600' showName='0'/> <set name='09-16 02:00' value='36' color='ff6600' showName='0'/> <set name='09-16 03:00' value='36' color='ff6600' showName='0'/> <set name='09-16 04:00' value='36' color='ff6600' showName='0'/> <set name='09-16 05:05' value='36' color='ff6600' showName='0'/> <set name='09-16 06:05' value='36' color='ff6600' showName='0'/> <set name='09-16 07:00' value='36' color='ff6600' showName='0'/> <set name='09-16 08:00' value='36' color='ff6600' showName='0'/> <set name='09-16 09:00' value='36' color='ff6600' showName='0'/> <set name='09-16 10:00' value='36' color='ff6600' showName='0'/> <set name='09-16 11:00' value='36' color='ff6600' showName='0'/> <set name='09-16 12:00' value='36' color='ff6600' showName='0'/> <set name='09-16 13:00' value='36' color='ff6600' showName='0'/> <set name='09-16 14:00' value='36' color='ff6600' showName='0'/> <set name='09-16 15:00' value='36' color='ff6600' showName='0'/> <set name='09-16 16:00' value='36' color='ff6600' showName='0'/> <set name='09-16 17:00' value='36' color='ff6600' showName='0'/> <set name='09-16 18:05' value='36' color='ff6600' showName='0'/> <set name='09-16 19:00' value='36' color='ff6600' showName='0'/> <set name='09-16 20:00' value='36' color='ff6600' showName='0'/> <set name='09-16 21:00' value='36' color='ff6600' showName='0'/> <set name='09-16 22:00' value='36' color='ff6600' showName='0'/> <set name='09-16 23:00' value='36' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Tables' xAxisName='' yAxisName='quantity' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='24' color='ff6600' showName='0'/> <set name='09-10 01:00' value='24' color='ff6600' showName='0'/> <set name='09-10 02:00' value='24' color='ff6600' showName='0'/> <set name='09-10 03:00' value='24' color='ff6600' showName='0'/> <set name='09-10 04:00' value='24' color='ff6600' showName='0'/> <set name='09-10 05:15' value='24' color='ff6600' showName='0'/> <set name='09-10 06:35' value='24' color='ff6600' showName='0'/> <set name='09-10 07:00' value='24' color='ff6600' showName='0'/> <set name='09-10 08:00' value='24' color='ff6600' showName='0'/> <set name='09-10 09:00' value='24' color='ff6600' showName='0'/> <set name='09-10 10:00' value='24' color='ff6600' showName='0'/> <set name='09-10 11:00' value='24' color='ff6600' showName='0'/> <set name='09-10 12:00' value='24' color='ff6600' showName='0'/> <set name='09-10 13:00' value='24' color='ff6600' showName='0'/> <set name='09-10 14:00' value='24' color='ff6600' showName='0'/> <set name='09-10 15:00' value='24' color='ff6600' showName='0'/> <set name='09-10 16:05' value='24' color='ff6600' showName='0'/> <set name='09-10 17:00' value='24' color='ff6600' showName='0'/> <set name='09-10 18:00' value='24' color='ff6600' showName='0'/> <set name='09-10 19:00' value='24' color='ff6600' showName='0'/> <set name='09-10 20:00' value='24' color='ff6600' showName='0'/> <set name='09-10 21:00' value='24' color='ff6600' showName='0'/> <set name='09-10 22:00' value='24' color='ff6600' showName='0'/> <set name='09-10 23:00' value='24' color='ff6600' showName='0'/> <set name='09-11 00:00' value='24' color='ff6600' showName='0'/> <set name='09-11 01:00' value='24' color='ff6600' showName='0'/> <set name='09-11 02:00' value='24' color='ff6600' showName='0'/> <set name='09-11 03:00' value='24' color='ff6600' showName='0'/> <set name='09-11 04:00' value='24' color='ff6600' showName='0'/> <set name='09-11 05:00' value='24' color='ff6600' showName='0'/> <set name='09-11 06:15' value='24' color='ff6600' showName='0'/> <set name='09-11 07:00' value='24' color='ff6600' showName='0'/> <set name='09-11 08:00' value='24' color='ff6600' showName='0'/> <set name='09-11 09:00' value='24' color='ff6600' showName='0'/> <set name='09-15 12:18' value='36' color='ff6600' showName='0'/> <set name='09-15 13:00' value='36' color='ff6600' showName='0'/> <set name='09-15 14:00' value='36' color='ff6600' showName='0'/> <set name='09-15 15:00' value='36' color='ff6600' showName='0'/> <set name='09-15 16:00' value='36' color='ff6600' showName='0'/> <set name='09-15 17:00' value='36' color='ff6600' showName='0'/> <set name='09-15 18:00' value='36' color='ff6600' showName='0'/> <set name='09-15 19:00' value='36' color='ff6600' showName='0'/> <set name='09-15 20:00' value='36' color='ff6600' showName='0'/> <set name='09-15 21:00' value='36' color='ff6600' showName='0'/> <set name='09-15 22:00' value='36' color='ff6600' showName='0'/> <set name='09-15 23:00' value='36' color='ff6600' showName='0'/> <set name='09-16 00:00' value='36' color='ff6600' showName='0'/> <set name='09-16 01:25' value='36' color='ff6600' showName='0'/> <set name='09-16 02:00' value='36' color='ff6600' showName='0'/> <set name='09-16 03:00' value='36' color='ff6600' showName='0'/> <set name='09-16 04:00' value='36' color='ff6600' showName='0'/> <set name='09-16 05:05' value='36' color='ff6600' showName='0'/> <set name='09-16 06:05' value='36' color='ff6600' showName='0'/> <set name='09-16 07:00' value='36' color='ff6600' showName='0'/> <set name='09-16 08:00' value='36' color='ff6600' showName='0'/> <set name='09-16 09:00' value='36' color='ff6600' showName='0'/> <set name='09-16 10:00' value='36' color='ff6600' showName='0'/> <set name='09-16 11:00' value='36' color='ff6600' showName='0'/> <set name='09-16 12:00' value='36' color='ff6600' showName='0'/> <set name='09-16 13:00' value='36' color='ff6600' showName='0'/> <set name='09-16 14:00' value='36' color='ff6600' showName='0'/> <set name='09-16 15:00' value='36' color='ff6600' showName='0'/> <set name='09-16 16:00' value='36' color='ff6600' showName='0'/> <set name='09-16 17:00' value='36' color='ff6600' showName='0'/> <set name='09-16 18:05' value='36' color='ff6600' showName='0'/> <set name='09-16 19:00' value='36' color='ff6600' showName='0'/> <set name='09-16 20:00' value='36' color='ff6600' showName='0'/> <set name='09-16 21:00' value='36' color='ff6600' showName='0'/> <set name='09-16 22:00' value='36' color='ff6600' showName='0'/> <set name='09-16 23:00' value='36' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Data Size' xAxisName='' yAxisName='size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='133685732' color='ff6600' showName='0'/> <set name='09-10 01:00' value='133700532' color='ff6600' showName='0'/> <set name='09-10 02:00' value='133708464' color='ff6600' showName='0'/> <set name='09-10 03:00' value='133718124' color='ff6600' showName='0'/> <set name='09-10 04:00' value='133745776' color='ff6600' showName='0'/> <set name='09-10 05:15' value='133757552' color='ff6600' showName='0'/> <set name='09-10 06:35' value='133781112' color='ff6600' showName='0'/> <set name='09-10 07:00' value='133781112' color='ff6600' showName='0'/> <set name='09-10 08:00' value='133809640' color='ff6600' showName='0'/> <set name='09-10 09:00' value='133856804' color='ff6600' showName='0'/> <set name='09-10 10:00' value='133866092' color='ff6600' showName='0'/> <set name='09-10 11:00' value='133907196' color='ff6600' showName='0'/> <set name='09-10 12:00' value='133943584' color='ff6600' showName='0'/> <set name='09-10 13:00' value='133981976' color='ff6600' showName='0'/> <set name='09-10 14:00' value='134004868' color='ff6600' showName='0'/> <set name='09-10 15:00' value='134080708' color='ff6600' showName='0'/> <set name='09-10 16:05' value='134098056' color='ff6600' showName='0'/> <set name='09-10 17:00' value='134117236' color='ff6600' showName='0'/> <set name='09-10 18:00' value='134122668' color='ff6600' showName='0'/> <set name='09-10 19:00' value='134126092' color='ff6600' showName='0'/> <set name='09-10 20:00' value='134146104' color='ff6600' showName='0'/> <set name='09-10 21:00' value='134147720' color='ff6600' showName='0'/> <set name='09-10 22:00' value='134170812' color='ff6600' showName='0'/> <set name='09-10 23:00' value='134183772' color='ff6600' showName='0'/> <set name='09-11 00:00' value='134189200' color='ff6600' showName='0'/> <set name='09-11 01:00' value='134212832' color='ff6600' showName='0'/> <set name='09-11 02:00' value='134219032' color='ff6600' showName='0'/> <set name='09-11 03:00' value='134252752' color='ff6600' showName='0'/> <set name='09-11 04:00' value='134256504' color='ff6600' showName='0'/> <set name='09-11 05:00' value='134281992' color='ff6600' showName='0'/> <set name='09-11 06:15' value='134301080' color='ff6600' showName='0'/> <set name='09-11 07:00' value='134302540' color='ff6600' showName='0'/> <set name='09-11 08:00' value='134326072' color='ff6600' showName='0'/> <set name='09-11 09:00' value='134350480' color='ff6600' showName='0'/> <set name='09-15 12:18' value='137165601' color='ff6600' showName='0'/> <set name='09-15 13:00' value='137191817' color='ff6600' showName='0'/> <set name='09-15 14:00' value='137219933' color='ff6600' showName='0'/> <set name='09-15 15:00' value='137229621' color='ff6600' showName='0'/> <set name='09-15 16:00' value='137239485' color='ff6600' showName='0'/> <set name='09-15 17:00' value='137267189' color='ff6600' showName='0'/> <set name='09-15 18:00' value='137299617' color='ff6600' showName='0'/> <set name='09-15 19:00' value='137305661' color='ff6600' showName='0'/> <set name='09-15 20:00' value='137328185' color='ff6600' showName='0'/> <set name='09-15 21:00' value='137333697' color='ff6600' showName='0'/> <set name='09-15 22:00' value='137335829' color='ff6600' showName='0'/> <set name='09-15 23:00' value='137346805' color='ff6600' showName='0'/> <set name='09-16 00:00' value='137376625' color='ff6600' showName='0'/> <set name='09-16 01:25' value='137384921' color='ff6600' showName='0'/> <set name='09-16 02:00' value='137384921' color='ff6600' showName='0'/> <set name='09-16 03:00' value='137422117' color='ff6600' showName='0'/> <set name='09-16 04:00' value='137435785' color='ff6600' showName='0'/> <set name='09-16 05:05' value='137443541' color='ff6600' showName='0'/> <set name='09-16 06:05' value='137457749' color='ff6600' showName='0'/> <set name='09-16 07:00' value='137463141' color='ff6600' showName='0'/> <set name='09-16 08:00' value='137470037' color='ff6600' showName='0'/> <set name='09-16 09:00' value='137505537' color='ff6600' showName='0'/> <set name='09-16 10:00' value='137537541' color='ff6600' showName='0'/> <set name='09-16 11:00' value='137542161' color='ff6600' showName='0'/> <set name='09-16 12:00' value='137556853' color='ff6600' showName='0'/> <set name='09-16 13:00' value='137589325' color='ff6600' showName='0'/> <set name='09-16 14:00' value='137597329' color='ff6600' showName='0'/> <set name='09-16 15:00' value='137617785' color='ff6600' showName='0'/> <set name='09-16 16:00' value='137626633' color='ff6600' showName='0'/> <set name='09-16 17:00' value='137633561' color='ff6600' showName='0'/> <set name='09-16 18:05' value='137674009' color='ff6600' showName='0'/> <set name='09-16 19:00' value='137685725' color='ff6600' showName='0'/> <set name='09-16 20:00' value='137707933' color='ff6600' showName='0'/> <set name='09-16 21:00' value='137707933' color='ff6600' showName='0'/> <set name='09-16 22:00' value='137726889' color='ff6600' showName='0'/> <set name='09-16 23:00' value='137741253' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Data Size' xAxisName='' yAxisName='size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='133685732' color='ff6600' showName='0'/> <set name='09-10 01:00' value='133700532' color='ff6600' showName='0'/> <set name='09-10 02:00' value='133708464' color='ff6600' showName='0'/> <set name='09-10 03:00' value='133718124' color='ff6600' showName='0'/> <set name='09-10 04:00' value='133745776' color='ff6600' showName='0'/> <set name='09-10 05:15' value='133757552' color='ff6600' showName='0'/> <set name='09-10 06:35' value='133781112' color='ff6600' showName='0'/> <set name='09-10 07:00' value='133781112' color='ff6600' showName='0'/> <set name='09-10 08:00' value='133809640' color='ff6600' showName='0'/> <set name='09-10 09:00' value='133856804' color='ff6600' showName='0'/> <set name='09-10 10:00' value='133866092' color='ff6600' showName='0'/> <set name='09-10 11:00' value='133907196' color='ff6600' showName='0'/> <set name='09-10 12:00' value='133943584' color='ff6600' showName='0'/> <set name='09-10 13:00' value='133981976' color='ff6600' showName='0'/> <set name='09-10 14:00' value='134004868' color='ff6600' showName='0'/> <set name='09-10 15:00' value='134080708' color='ff6600' showName='0'/> <set name='09-10 16:05' value='134098056' color='ff6600' showName='0'/> <set name='09-10 17:00' value='134117236' color='ff6600' showName='0'/> <set name='09-10 18:00' value='134122668' color='ff6600' showName='0'/> <set name='09-10 19:00' value='134126092' color='ff6600' showName='0'/> <set name='09-10 20:00' value='134146104' color='ff6600' showName='0'/> <set name='09-10 21:00' value='134147720' color='ff6600' showName='0'/> <set name='09-10 22:00' value='134170812' color='ff6600' showName='0'/> <set name='09-10 23:00' value='134183772' color='ff6600' showName='0'/> <set name='09-11 00:00' value='134189200' color='ff6600' showName='0'/> <set name='09-11 01:00' value='134212832' color='ff6600' showName='0'/> <set name='09-11 02:00' value='134219032' color='ff6600' showName='0'/> <set name='09-11 03:00' value='134252752' color='ff6600' showName='0'/> <set name='09-11 04:00' value='134256504' color='ff6600' showName='0'/> <set name='09-11 05:00' value='134281992' color='ff6600' showName='0'/> <set name='09-11 06:15' value='134301080' color='ff6600' showName='0'/> <set name='09-11 07:00' value='134302540' color='ff6600' showName='0'/> <set name='09-11 08:00' value='134326072' color='ff6600' showName='0'/> <set name='09-11 09:00' value='134350480' color='ff6600' showName='0'/> <set name='09-15 12:18' value='137165601' color='ff6600' showName='0'/> <set name='09-15 13:00' value='137191817' color='ff6600' showName='0'/> <set name='09-15 14:00' value='137219933' color='ff6600' showName='0'/> <set name='09-15 15:00' value='137229621' color='ff6600' showName='0'/> <set name='09-15 16:00' value='137239485' color='ff6600' showName='0'/> <set name='09-15 17:00' value='137267189' color='ff6600' showName='0'/> <set name='09-15 18:00' value='137299617' color='ff6600' showName='0'/> <set name='09-15 19:00' value='137305661' color='ff6600' showName='0'/> <set name='09-15 20:00' value='137328185' color='ff6600' showName='0'/> <set name='09-15 21:00' value='137333697' color='ff6600' showName='0'/> <set name='09-15 22:00' value='137335829' color='ff6600' showName='0'/> <set name='09-15 23:00' value='137346805' color='ff6600' showName='0'/> <set name='09-16 00:00' value='137376625' color='ff6600' showName='0'/> <set name='09-16 01:25' value='137384921' color='ff6600' showName='0'/> <set name='09-16 02:00' value='137384921' color='ff6600' showName='0'/> <set name='09-16 03:00' value='137422117' color='ff6600' showName='0'/> <set name='09-16 04:00' value='137435785' color='ff6600' showName='0'/> <set name='09-16 05:05' value='137443541' color='ff6600' showName='0'/> <set name='09-16 06:05' value='137457749' color='ff6600' showName='0'/> <set name='09-16 07:00' value='137463141' color='ff6600' showName='0'/> <set name='09-16 08:00' value='137470037' color='ff6600' showName='0'/> <set name='09-16 09:00' value='137505537' color='ff6600' showName='0'/> <set name='09-16 10:00' value='137537541' color='ff6600' showName='0'/> <set name='09-16 11:00' value='137542161' color='ff6600' showName='0'/> <set name='09-16 12:00' value='137556853' color='ff6600' showName='0'/> <set name='09-16 13:00' value='137589325' color='ff6600' showName='0'/> <set name='09-16 14:00' value='137597329' color='ff6600' showName='0'/> <set name='09-16 15:00' value='137617785' color='ff6600' showName='0'/> <set name='09-16 16:00' value='137626633' color='ff6600' showName='0'/> <set name='09-16 17:00' value='137633561' color='ff6600' showName='0'/> <set name='09-16 18:05' value='137674009' color='ff6600' showName='0'/> <set name='09-16 19:00' value='137685725' color='ff6600' showName='0'/> <set name='09-16 20:00' value='137707933' color='ff6600' showName='0'/> <set name='09-16 21:00' value='137707933' color='ff6600' showName='0'/> <set name='09-16 22:00' value='137726889' color='ff6600' showName='0'/> <set name='09-16 23:00' value='137741253' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Index Size' xAxisName='' yAxisName='size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='106328064' color='ff6600' showName='0'/> <set name='09-10 01:00' value='106348544' color='ff6600' showName='0'/> <set name='09-10 02:00' value='106351616' color='ff6600' showName='0'/> <set name='09-10 03:00' value='106365952' color='ff6600' showName='0'/> <set name='09-10 04:00' value='106403840' color='ff6600' showName='0'/> <set name='09-10 05:15' value='106415104' color='ff6600' showName='0'/> <set name='09-10 06:35' value='106436608' color='ff6600' showName='0'/> <set name='09-10 07:00' value='106436608' color='ff6600' showName='0'/> <set name='09-10 08:00' value='106475520' color='ff6600' showName='0'/> <set name='09-10 09:00' value='106505216' color='ff6600' showName='0'/> <set name='09-10 10:00' value='106518528' color='ff6600' showName='0'/> <set name='09-10 11:00' value='106560512' color='ff6600' showName='0'/> <set name='09-10 12:00' value='106597376' color='ff6600' showName='0'/> <set name='09-10 13:00' value='106635264' color='ff6600' showName='0'/> <set name='09-10 14:00' value='106661888' color='ff6600' showName='0'/> <set name='09-10 15:00' value='107760640' color='ff6600' showName='0'/> <set name='09-10 16:05' value='107773952' color='ff6600' showName='0'/> <set name='09-10 17:00' value='107794432' color='ff6600' showName='0'/> <set name='09-10 18:00' value='107798528' color='ff6600' showName='0'/> <set name='09-10 19:00' value='107799552' color='ff6600' showName='0'/> <set name='09-10 20:00' value='107830272' color='ff6600' showName='0'/> <set name='09-10 21:00' value='107831296' color='ff6600' showName='0'/> <set name='09-10 22:00' value='107870208' color='ff6600' showName='0'/> <set name='09-10 23:00' value='107878400' color='ff6600' showName='0'/> <set name='09-11 00:00' value='107883520' color='ff6600' showName='0'/> <set name='09-11 01:00' value='107906048' color='ff6600' showName='0'/> <set name='09-11 02:00' value='107909120' color='ff6600' showName='0'/> <set name='09-11 03:00' value='107951104' color='ff6600' showName='0'/> <set name='09-11 04:00' value='107953152' color='ff6600' showName='0'/> <set name='09-11 05:00' value='107973632' color='ff6600' showName='0'/> <set name='09-11 06:15' value='107988992' color='ff6600' showName='0'/> <set name='09-11 07:00' value='107991040' color='ff6600' showName='0'/> <set name='09-11 08:00' value='108022784' color='ff6600' showName='0'/> <set name='09-11 09:00' value='108053504' color='ff6600' showName='0'/> <set name='09-15 12:18' value='109703168' color='ff6600' showName='0'/> <set name='09-15 13:00' value='109730816' color='ff6600' showName='0'/> <set name='09-15 14:00' value='109763584' color='ff6600' showName='0'/> <set name='09-15 15:00' value='109770752' color='ff6600' showName='0'/> <set name='09-15 16:00' value='109785088' color='ff6600' showName='0'/> <set name='09-15 17:00' value='109816832' color='ff6600' showName='0'/> <set name='09-15 18:00' value='109851648' color='ff6600' showName='0'/> <set name='09-15 19:00' value='109858816' color='ff6600' showName='0'/> <set name='09-15 20:00' value='109882368' color='ff6600' showName='0'/> <set name='09-15 21:00' value='109884416' color='ff6600' showName='0'/> <set name='09-15 22:00' value='109884416' color='ff6600' showName='0'/> <set name='09-15 23:00' value='109895680' color='ff6600' showName='0'/> <set name='09-16 00:00' value='109938688' color='ff6600' showName='0'/> <set name='09-16 01:25' value='109941760' color='ff6600' showName='0'/> <set name='09-16 02:00' value='109941760' color='ff6600' showName='0'/> <set name='09-16 03:00' value='109984768' color='ff6600' showName='0'/> <set name='09-16 04:00' value='110000128' color='ff6600' showName='0'/> <set name='09-16 05:05' value='110003200' color='ff6600' showName='0'/> <set name='09-16 06:05' value='110014464' color='ff6600' showName='0'/> <set name='09-16 07:00' value='110019584' color='ff6600' showName='0'/> <set name='09-16 08:00' value='110023680' color='ff6600' showName='0'/> <set name='09-16 09:00' value='110061568' color='ff6600' showName='0'/> <set name='09-16 10:00' value='110092288' color='ff6600' showName='0'/> <set name='09-16 11:00' value='110099456' color='ff6600' showName='0'/> <set name='09-16 12:00' value='110112768' color='ff6600' showName='0'/> <set name='09-16 13:00' value='110140416' color='ff6600' showName='0'/> <set name='09-16 14:00' value='110146560' color='ff6600' showName='0'/> <set name='09-16 15:00' value='110170112' color='ff6600' showName='0'/> <set name='09-16 16:00' value='110178304' color='ff6600' showName='0'/> <set name='09-16 17:00' value='110186496' color='ff6600' showName='0'/> <set name='09-16 18:05' value='110232576' color='ff6600' showName='0'/> <set name='09-16 19:00' value='110242816' color='ff6600' showName='0'/> <set name='09-16 20:00' value='110270464' color='ff6600' showName='0'/> <set name='09-16 21:00' value='110270464' color='ff6600' showName='0'/> <set name='09-16 22:00' value='110291968' color='ff6600' showName='0'/> <set name='09-16 23:00' value='110314496' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Total Index Size' xAxisName='' yAxisName='size' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='106328064' color='ff6600' showName='0'/> <set name='09-10 01:00' value='106348544' color='ff6600' showName='0'/> <set name='09-10 02:00' value='106351616' color='ff6600' showName='0'/> <set name='09-10 03:00' value='106365952' color='ff6600' showName='0'/> <set name='09-10 04:00' value='106403840' color='ff6600' showName='0'/> <set name='09-10 05:15' value='106415104' color='ff6600' showName='0'/> <set name='09-10 06:35' value='106436608' color='ff6600' showName='0'/> <set name='09-10 07:00' value='106436608' color='ff6600' showName='0'/> <set name='09-10 08:00' value='106475520' color='ff6600' showName='0'/> <set name='09-10 09:00' value='106505216' color='ff6600' showName='0'/> <set name='09-10 10:00' value='106518528' color='ff6600' showName='0'/> <set name='09-10 11:00' value='106560512' color='ff6600' showName='0'/> <set name='09-10 12:00' value='106597376' color='ff6600' showName='0'/> <set name='09-10 13:00' value='106635264' color='ff6600' showName='0'/> <set name='09-10 14:00' value='106661888' color='ff6600' showName='0'/> <set name='09-10 15:00' value='107760640' color='ff6600' showName='0'/> <set name='09-10 16:05' value='107773952' color='ff6600' showName='0'/> <set name='09-10 17:00' value='107794432' color='ff6600' showName='0'/> <set name='09-10 18:00' value='107798528' color='ff6600' showName='0'/> <set name='09-10 19:00' value='107799552' color='ff6600' showName='0'/> <set name='09-10 20:00' value='107830272' color='ff6600' showName='0'/> <set name='09-10 21:00' value='107831296' color='ff6600' showName='0'/> <set name='09-10 22:00' value='107870208' color='ff6600' showName='0'/> <set name='09-10 23:00' value='107878400' color='ff6600' showName='0'/> <set name='09-11 00:00' value='107883520' color='ff6600' showName='0'/> <set name='09-11 01:00' value='107906048' color='ff6600' showName='0'/> <set name='09-11 02:00' value='107909120' color='ff6600' showName='0'/> <set name='09-11 03:00' value='107951104' color='ff6600' showName='0'/> <set name='09-11 04:00' value='107953152' color='ff6600' showName='0'/> <set name='09-11 05:00' value='107973632' color='ff6600' showName='0'/> <set name='09-11 06:15' value='107988992' color='ff6600' showName='0'/> <set name='09-11 07:00' value='107991040' color='ff6600' showName='0'/> <set name='09-11 08:00' value='108022784' color='ff6600' showName='0'/> <set name='09-11 09:00' value='108053504' color='ff6600' showName='0'/> <set name='09-15 12:18' value='109703168' color='ff6600' showName='0'/> <set name='09-15 13:00' value='109730816' color='ff6600' showName='0'/> <set name='09-15 14:00' value='109763584' color='ff6600' showName='0'/> <set name='09-15 15:00' value='109770752' color='ff6600' showName='0'/> <set name='09-15 16:00' value='109785088' color='ff6600' showName='0'/> <set name='09-15 17:00' value='109816832' color='ff6600' showName='0'/> <set name='09-15 18:00' value='109851648' color='ff6600' showName='0'/> <set name='09-15 19:00' value='109858816' color='ff6600' showName='0'/> <set name='09-15 20:00' value='109882368' color='ff6600' showName='0'/> <set name='09-15 21:00' value='109884416' color='ff6600' showName='0'/> <set name='09-15 22:00' value='109884416' color='ff6600' showName='0'/> <set name='09-15 23:00' value='109895680' color='ff6600' showName='0'/> <set name='09-16 00:00' value='109938688' color='ff6600' showName='0'/> <set name='09-16 01:25' value='109941760' color='ff6600' showName='0'/> <set name='09-16 02:00' value='109941760' color='ff6600' showName='0'/> <set name='09-16 03:00' value='109984768' color='ff6600' showName='0'/> <set name='09-16 04:00' value='110000128' color='ff6600' showName='0'/> <set name='09-16 05:05' value='110003200' color='ff6600' showName='0'/> <set name='09-16 06:05' value='110014464' color='ff6600' showName='0'/> <set name='09-16 07:00' value='110019584' color='ff6600' showName='0'/> <set name='09-16 08:00' value='110023680' color='ff6600' showName='0'/> <set name='09-16 09:00' value='110061568' color='ff6600' showName='0'/> <set name='09-16 10:00' value='110092288' color='ff6600' showName='0'/> <set name='09-16 11:00' value='110099456' color='ff6600' showName='0'/> <set name='09-16 12:00' value='110112768' color='ff6600' showName='0'/> <set name='09-16 13:00' value='110140416' color='ff6600' showName='0'/> <set name='09-16 14:00' value='110146560' color='ff6600' showName='0'/> <set name='09-16 15:00' value='110170112' color='ff6600' showName='0'/> <set name='09-16 16:00' value='110178304' color='ff6600' showName='0'/> <set name='09-16 17:00' value='110186496' color='ff6600' showName='0'/> <set name='09-16 18:05' value='110232576' color='ff6600' showName='0'/> <set name='09-16 19:00' value='110242816' color='ff6600' showName='0'/> <set name='09-16 20:00' value='110270464' color='ff6600' showName='0'/> <set name='09-16 21:00' value='110270464' color='ff6600' showName='0'/> <set name='09-16 22:00' value='110291968' color='ff6600' showName='0'/> <set name='09-16 23:00' value='110314496' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='InnoDB Tables' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='InnoDB Tables' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='MyISAM Tables' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='6' color='ff6600' showName='0'/> <set name='09-10 01:00' value='6' color='ff6600' showName='0'/> <set name='09-10 02:00' value='6' color='ff6600' showName='0'/> <set name='09-10 03:00' value='6' color='ff6600' showName='0'/> <set name='09-10 04:00' value='6' color='ff6600' showName='0'/> <set name='09-10 05:15' value='6' color='ff6600' showName='0'/> <set name='09-10 06:35' value='6' color='ff6600' showName='0'/> <set name='09-10 07:00' value='6' color='ff6600' showName='0'/> <set name='09-10 08:00' value='6' color='ff6600' showName='0'/> <set name='09-10 09:00' value='6' color='ff6600' showName='0'/> <set name='09-10 10:00' value='6' color='ff6600' showName='0'/> <set name='09-10 11:00' value='6' color='ff6600' showName='0'/> <set name='09-10 12:00' value='6' color='ff6600' showName='0'/> <set name='09-10 13:00' value='6' color='ff6600' showName='0'/> <set name='09-10 14:00' value='6' color='ff6600' showName='0'/> <set name='09-10 15:00' value='6' color='ff6600' showName='0'/> <set name='09-10 16:05' value='6' color='ff6600' showName='0'/> <set name='09-10 17:00' value='6' color='ff6600' showName='0'/> <set name='09-10 18:00' value='6' color='ff6600' showName='0'/> <set name='09-10 19:00' value='6' color='ff6600' showName='0'/> <set name='09-10 20:00' value='6' color='ff6600' showName='0'/> <set name='09-10 21:00' value='6' color='ff6600' showName='0'/> <set name='09-10 22:00' value='6' color='ff6600' showName='0'/> <set name='09-10 23:00' value='6' color='ff6600' showName='0'/> <set name='09-11 00:00' value='6' color='ff6600' showName='0'/> <set name='09-11 01:00' value='6' color='ff6600' showName='0'/> <set name='09-11 02:00' value='6' color='ff6600' showName='0'/> <set name='09-11 03:00' value='6' color='ff6600' showName='0'/> <set name='09-11 04:00' value='6' color='ff6600' showName='0'/> <set name='09-11 05:00' value='6' color='ff6600' showName='0'/> <set name='09-11 06:15' value='6' color='ff6600' showName='0'/> <set name='09-11 07:00' value='6' color='ff6600' showName='0'/> <set name='09-11 08:00' value='6' color='ff6600' showName='0'/> <set name='09-11 09:00' value='6' color='ff6600' showName='0'/> <set name='09-15 12:18' value='18' color='ff6600' showName='0'/> <set name='09-15 13:00' value='18' color='ff6600' showName='0'/> <set name='09-15 14:00' value='18' color='ff6600' showName='0'/> <set name='09-15 15:00' value='18' color='ff6600' showName='0'/> <set name='09-15 16:00' value='18' color='ff6600' showName='0'/> <set name='09-15 17:00' value='18' color='ff6600' showName='0'/> <set name='09-15 18:00' value='18' color='ff6600' showName='0'/> <set name='09-15 19:00' value='18' color='ff6600' showName='0'/> <set name='09-15 20:00' value='18' color='ff6600' showName='0'/> <set name='09-15 21:00' value='18' color='ff6600' showName='0'/> <set name='09-15 22:00' value='18' color='ff6600' showName='0'/> <set name='09-15 23:00' value='18' color='ff6600' showName='0'/> <set name='09-16 00:00' value='18' color='ff6600' showName='0'/> <set name='09-16 01:25' value='18' color='ff6600' showName='0'/> <set name='09-16 02:00' value='18' color='ff6600' showName='0'/> <set name='09-16 03:00' value='18' color='ff6600' showName='0'/> <set name='09-16 04:00' value='18' color='ff6600' showName='0'/> <set name='09-16 05:05' value='18' color='ff6600' showName='0'/> <set name='09-16 06:05' value='18' color='ff6600' showName='0'/> <set name='09-16 07:00' value='18' color='ff6600' showName='0'/> <set name='09-16 08:00' value='18' color='ff6600' showName='0'/> <set name='09-16 09:00' value='18' color='ff6600' showName='0'/> <set name='09-16 10:00' value='18' color='ff6600' showName='0'/> <set name='09-16 11:00' value='18' color='ff6600' showName='0'/> <set name='09-16 12:00' value='18' color='ff6600' showName='0'/> <set name='09-16 13:00' value='18' color='ff6600' showName='0'/> <set name='09-16 14:00' value='18' color='ff6600' showName='0'/> <set name='09-16 15:00' value='18' color='ff6600' showName='0'/> <set name='09-16 16:00' value='18' color='ff6600' showName='0'/> <set name='09-16 17:00' value='18' color='ff6600' showName='0'/> <set name='09-16 18:05' value='18' color='ff6600' showName='0'/> <set name='09-16 19:00' value='18' color='ff6600' showName='0'/> <set name='09-16 20:00' value='18' color='ff6600' showName='0'/> <set name='09-16 21:00' value='18' color='ff6600' showName='0'/> <set name='09-16 22:00' value='18' color='ff6600' showName='0'/> <set name='09-16 23:00' value='18' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='MyISAM Tables' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='6' color='ff6600' showName='0'/> <set name='09-10 01:00' value='6' color='ff6600' showName='0'/> <set name='09-10 02:00' value='6' color='ff6600' showName='0'/> <set name='09-10 03:00' value='6' color='ff6600' showName='0'/> <set name='09-10 04:00' value='6' color='ff6600' showName='0'/> <set name='09-10 05:15' value='6' color='ff6600' showName='0'/> <set name='09-10 06:35' value='6' color='ff6600' showName='0'/> <set name='09-10 07:00' value='6' color='ff6600' showName='0'/> <set name='09-10 08:00' value='6' color='ff6600' showName='0'/> <set name='09-10 09:00' value='6' color='ff6600' showName='0'/> <set name='09-10 10:00' value='6' color='ff6600' showName='0'/> <set name='09-10 11:00' value='6' color='ff6600' showName='0'/> <set name='09-10 12:00' value='6' color='ff6600' showName='0'/> <set name='09-10 13:00' value='6' color='ff6600' showName='0'/> <set name='09-10 14:00' value='6' color='ff6600' showName='0'/> <set name='09-10 15:00' value='6' color='ff6600' showName='0'/> <set name='09-10 16:05' value='6' color='ff6600' showName='0'/> <set name='09-10 17:00' value='6' color='ff6600' showName='0'/> <set name='09-10 18:00' value='6' color='ff6600' showName='0'/> <set name='09-10 19:00' value='6' color='ff6600' showName='0'/> <set name='09-10 20:00' value='6' color='ff6600' showName='0'/> <set name='09-10 21:00' value='6' color='ff6600' showName='0'/> <set name='09-10 22:00' value='6' color='ff6600' showName='0'/> <set name='09-10 23:00' value='6' color='ff6600' showName='0'/> <set name='09-11 00:00' value='6' color='ff6600' showName='0'/> <set name='09-11 01:00' value='6' color='ff6600' showName='0'/> <set name='09-11 02:00' value='6' color='ff6600' showName='0'/> <set name='09-11 03:00' value='6' color='ff6600' showName='0'/> <set name='09-11 04:00' value='6' color='ff6600' showName='0'/> <set name='09-11 05:00' value='6' color='ff6600' showName='0'/> <set name='09-11 06:15' value='6' color='ff6600' showName='0'/> <set name='09-11 07:00' value='6' color='ff6600' showName='0'/> <set name='09-11 08:00' value='6' color='ff6600' showName='0'/> <set name='09-11 09:00' value='6' color='ff6600' showName='0'/> <set name='09-15 12:18' value='18' color='ff6600' showName='0'/> <set name='09-15 13:00' value='18' color='ff6600' showName='0'/> <set name='09-15 14:00' value='18' color='ff6600' showName='0'/> <set name='09-15 15:00' value='18' color='ff6600' showName='0'/> <set name='09-15 16:00' value='18' color='ff6600' showName='0'/> <set name='09-15 17:00' value='18' color='ff6600' showName='0'/> <set name='09-15 18:00' value='18' color='ff6600' showName='0'/> <set name='09-15 19:00' value='18' color='ff6600' showName='0'/> <set name='09-15 20:00' value='18' color='ff6600' showName='0'/> <set name='09-15 21:00' value='18' color='ff6600' showName='0'/> <set name='09-15 22:00' value='18' color='ff6600' showName='0'/> <set name='09-15 23:00' value='18' color='ff6600' showName='0'/> <set name='09-16 00:00' value='18' color='ff6600' showName='0'/> <set name='09-16 01:25' value='18' color='ff6600' showName='0'/> <set name='09-16 02:00' value='18' color='ff6600' showName='0'/> <set name='09-16 03:00' value='18' color='ff6600' showName='0'/> <set name='09-16 04:00' value='18' color='ff6600' showName='0'/> <set name='09-16 05:05' value='18' color='ff6600' showName='0'/> <set name='09-16 06:05' value='18' color='ff6600' showName='0'/> <set name='09-16 07:00' value='18' color='ff6600' showName='0'/> <set name='09-16 08:00' value='18' color='ff6600' showName='0'/> <set name='09-16 09:00' value='18' color='ff6600' showName='0'/> <set name='09-16 10:00' value='18' color='ff6600' showName='0'/> <set name='09-16 11:00' value='18' color='ff6600' showName='0'/> <set name='09-16 12:00' value='18' color='ff6600' showName='0'/> <set name='09-16 13:00' value='18' color='ff6600' showName='0'/> <set name='09-16 14:00' value='18' color='ff6600' showName='0'/> <set name='09-16 15:00' value='18' color='ff6600' showName='0'/> <set name='09-16 16:00' value='18' color='ff6600' showName='0'/> <set name='09-16 17:00' value='18' color='ff6600' showName='0'/> <set name='09-16 18:05' value='18' color='ff6600' showName='0'/> <set name='09-16 19:00' value='18' color='ff6600' showName='0'/> <set name='09-16 20:00' value='18' color='ff6600' showName='0'/> <set name='09-16 21:00' value='18' color='ff6600' showName='0'/> <set name='09-16 22:00' value='18' color='ff6600' showName='0'/> <set name='09-16 23:00' value='18' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='InnoDB Data Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 01:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 02:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 03:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 04:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 05:15' value='12091392' color='ff6600' showName='0'/> <set name='09-10 06:35' value='12091392' color='ff6600' showName='0'/> <set name='09-10 07:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 08:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 09:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 10:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 11:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 12:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 13:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 14:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 15:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 16:05' value='12091392' color='ff6600' showName='0'/> <set name='09-10 17:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 18:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 19:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 20:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 21:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 22:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 23:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 00:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 01:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 02:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 03:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 04:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 05:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 06:15' value='12091392' color='ff6600' showName='0'/> <set name='09-11 07:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 08:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 09:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 12:18' value='12091392' color='ff6600' showName='0'/> <set name='09-15 13:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 14:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 15:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 16:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 17:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 18:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 19:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 20:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 21:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 22:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 23:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 00:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 01:25' value='12091392' color='ff6600' showName='0'/> <set name='09-16 02:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 03:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 04:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 05:05' value='12091392' color='ff6600' showName='0'/> <set name='09-16 06:05' value='12091392' color='ff6600' showName='0'/> <set name='09-16 07:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 08:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 09:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 10:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 11:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 12:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 13:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 14:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 15:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 16:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 17:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 18:05' value='12091392' color='ff6600' showName='0'/> <set name='09-16 19:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 20:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 21:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 22:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 23:00' value='12091392' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='InnoDB Data Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 01:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 02:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 03:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 04:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 05:15' value='12091392' color='ff6600' showName='0'/> <set name='09-10 06:35' value='12091392' color='ff6600' showName='0'/> <set name='09-10 07:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 08:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 09:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 10:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 11:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 12:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 13:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 14:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 15:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 16:05' value='12091392' color='ff6600' showName='0'/> <set name='09-10 17:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 18:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 19:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 20:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 21:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 22:00' value='12091392' color='ff6600' showName='0'/> <set name='09-10 23:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 00:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 01:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 02:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 03:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 04:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 05:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 06:15' value='12091392' color='ff6600' showName='0'/> <set name='09-11 07:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 08:00' value='12091392' color='ff6600' showName='0'/> <set name='09-11 09:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 12:18' value='12091392' color='ff6600' showName='0'/> <set name='09-15 13:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 14:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 15:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 16:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 17:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 18:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 19:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 20:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 21:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 22:00' value='12091392' color='ff6600' showName='0'/> <set name='09-15 23:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 00:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 01:25' value='12091392' color='ff6600' showName='0'/> <set name='09-16 02:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 03:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 04:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 05:05' value='12091392' color='ff6600' showName='0'/> <set name='09-16 06:05' value='12091392' color='ff6600' showName='0'/> <set name='09-16 07:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 08:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 09:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 10:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 11:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 12:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 13:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 14:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 15:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 16:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 17:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 18:05' value='12091392' color='ff6600' showName='0'/> <set name='09-16 19:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 20:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 21:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 22:00' value='12091392' color='ff6600' showName='0'/> <set name='09-16 23:00' value='12091392' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='InnoDB Index Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 01:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 02:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 03:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 04:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 05:15' value='6832128' color='ff6600' showName='0'/> <set name='09-10 06:35' value='6832128' color='ff6600' showName='0'/> <set name='09-10 07:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 08:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 09:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 10:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 11:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 12:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 13:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 14:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 15:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 16:05' value='7880704' color='ff6600' showName='0'/> <set name='09-10 17:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 18:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 19:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 20:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 21:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 22:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 23:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 00:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 01:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 02:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 03:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 04:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 05:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 06:15' value='7880704' color='ff6600' showName='0'/> <set name='09-11 07:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 08:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 09:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 12:18' value='7880704' color='ff6600' showName='0'/> <set name='09-15 13:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 14:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 15:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 16:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 17:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 18:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 19:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 20:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 21:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 22:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 23:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 00:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 01:25' value='7880704' color='ff6600' showName='0'/> <set name='09-16 02:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 03:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 04:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 05:05' value='7880704' color='ff6600' showName='0'/> <set name='09-16 06:05' value='7880704' color='ff6600' showName='0'/> <set name='09-16 07:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 08:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 09:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 10:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 11:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 12:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 13:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 14:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 15:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 16:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 17:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 18:05' value='7880704' color='ff6600' showName='0'/> <set name='09-16 19:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 20:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 21:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 22:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 23:00' value='7880704' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='InnoDB Index Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 01:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 02:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 03:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 04:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 05:15' value='6832128' color='ff6600' showName='0'/> <set name='09-10 06:35' value='6832128' color='ff6600' showName='0'/> <set name='09-10 07:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 08:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 09:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 10:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 11:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 12:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 13:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 14:00' value='6832128' color='ff6600' showName='0'/> <set name='09-10 15:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 16:05' value='7880704' color='ff6600' showName='0'/> <set name='09-10 17:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 18:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 19:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 20:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 21:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 22:00' value='7880704' color='ff6600' showName='0'/> <set name='09-10 23:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 00:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 01:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 02:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 03:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 04:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 05:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 06:15' value='7880704' color='ff6600' showName='0'/> <set name='09-11 07:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 08:00' value='7880704' color='ff6600' showName='0'/> <set name='09-11 09:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 12:18' value='7880704' color='ff6600' showName='0'/> <set name='09-15 13:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 14:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 15:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 16:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 17:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 18:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 19:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 20:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 21:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 22:00' value='7880704' color='ff6600' showName='0'/> <set name='09-15 23:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 00:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 01:25' value='7880704' color='ff6600' showName='0'/> <set name='09-16 02:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 03:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 04:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 05:05' value='7880704' color='ff6600' showName='0'/> <set name='09-16 06:05' value='7880704' color='ff6600' showName='0'/> <set name='09-16 07:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 08:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 09:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 10:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 11:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 12:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 13:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 14:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 15:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 16:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 17:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 18:05' value='7880704' color='ff6600' showName='0'/> <set name='09-16 19:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 20:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 21:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 22:00' value='7880704' color='ff6600' showName='0'/> <set name='09-16 23:00' value='7880704' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='MyISAM Data Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='121594340' color='ff6600' showName='0'/> <set name='09-10 01:00' value='121609140' color='ff6600' showName='0'/> <set name='09-10 02:00' value='121617072' color='ff6600' showName='0'/> <set name='09-10 03:00' value='121626732' color='ff6600' showName='0'/> <set name='09-10 04:00' value='121654384' color='ff6600' showName='0'/> <set name='09-10 05:15' value='121666160' color='ff6600' showName='0'/> <set name='09-10 06:35' value='121689720' color='ff6600' showName='0'/> <set name='09-10 07:00' value='121689720' color='ff6600' showName='0'/> <set name='09-10 08:00' value='121718248' color='ff6600' showName='0'/> <set name='09-10 09:00' value='121765412' color='ff6600' showName='0'/> <set name='09-10 10:00' value='121774700' color='ff6600' showName='0'/> <set name='09-10 11:00' value='121815804' color='ff6600' showName='0'/> <set name='09-10 12:00' value='121852192' color='ff6600' showName='0'/> <set name='09-10 13:00' value='121890584' color='ff6600' showName='0'/> <set name='09-10 14:00' value='121913476' color='ff6600' showName='0'/> <set name='09-10 15:00' value='121989316' color='ff6600' showName='0'/> <set name='09-10 16:05' value='122006664' color='ff6600' showName='0'/> <set name='09-10 17:00' value='122025844' color='ff6600' showName='0'/> <set name='09-10 18:00' value='122031276' color='ff6600' showName='0'/> <set name='09-10 19:00' value='122034700' color='ff6600' showName='0'/> <set name='09-10 20:00' value='122054712' color='ff6600' showName='0'/> <set name='09-10 21:00' value='122056328' color='ff6600' showName='0'/> <set name='09-10 22:00' value='122079420' color='ff6600' showName='0'/> <set name='09-10 23:00' value='122092380' color='ff6600' showName='0'/> <set name='09-11 00:00' value='122097808' color='ff6600' showName='0'/> <set name='09-11 01:00' value='122121440' color='ff6600' showName='0'/> <set name='09-11 02:00' value='122127640' color='ff6600' showName='0'/> <set name='09-11 03:00' value='122161360' color='ff6600' showName='0'/> <set name='09-11 04:00' value='122165112' color='ff6600' showName='0'/> <set name='09-11 05:00' value='122190600' color='ff6600' showName='0'/> <set name='09-11 06:15' value='122209688' color='ff6600' showName='0'/> <set name='09-11 07:00' value='122211148' color='ff6600' showName='0'/> <set name='09-11 08:00' value='122234680' color='ff6600' showName='0'/> <set name='09-11 09:00' value='122259088' color='ff6600' showName='0'/> <set name='09-15 12:18' value='125074209' color='ff6600' showName='0'/> <set name='09-15 13:00' value='125100425' color='ff6600' showName='0'/> <set name='09-15 14:00' value='125128541' color='ff6600' showName='0'/> <set name='09-15 15:00' value='125138229' color='ff6600' showName='0'/> <set name='09-15 16:00' value='125148093' color='ff6600' showName='0'/> <set name='09-15 17:00' value='125175797' color='ff6600' showName='0'/> <set name='09-15 18:00' value='125208225' color='ff6600' showName='0'/> <set name='09-15 19:00' value='125214269' color='ff6600' showName='0'/> <set name='09-15 20:00' value='125236793' color='ff6600' showName='0'/> <set name='09-15 21:00' value='125242305' color='ff6600' showName='0'/> <set name='09-15 22:00' value='125244437' color='ff6600' showName='0'/> <set name='09-15 23:00' value='125255413' color='ff6600' showName='0'/> <set name='09-16 00:00' value='125285233' color='ff6600' showName='0'/> <set name='09-16 01:25' value='125293529' color='ff6600' showName='0'/> <set name='09-16 02:00' value='125293529' color='ff6600' showName='0'/> <set name='09-16 03:00' value='125330725' color='ff6600' showName='0'/> <set name='09-16 04:00' value='125344393' color='ff6600' showName='0'/> <set name='09-16 05:05' value='125352149' color='ff6600' showName='0'/> <set name='09-16 06:05' value='125366357' color='ff6600' showName='0'/> <set name='09-16 07:00' value='125371749' color='ff6600' showName='0'/> <set name='09-16 08:00' value='125378645' color='ff6600' showName='0'/> <set name='09-16 09:00' value='125414145' color='ff6600' showName='0'/> <set name='09-16 10:00' value='125446149' color='ff6600' showName='0'/> <set name='09-16 11:00' value='125450769' color='ff6600' showName='0'/> <set name='09-16 12:00' value='125465461' color='ff6600' showName='0'/> <set name='09-16 13:00' value='125497933' color='ff6600' showName='0'/> <set name='09-16 14:00' value='125505937' color='ff6600' showName='0'/> <set name='09-16 15:00' value='125526393' color='ff6600' showName='0'/> <set name='09-16 16:00' value='125535241' color='ff6600' showName='0'/> <set name='09-16 17:00' value='125542169' color='ff6600' showName='0'/> <set name='09-16 18:05' value='125582617' color='ff6600' showName='0'/> <set name='09-16 19:00' value='125594333' color='ff6600' showName='0'/> <set name='09-16 20:00' value='125616541' color='ff6600' showName='0'/> <set name='09-16 21:00' value='125616541' color='ff6600' showName='0'/> <set name='09-16 22:00' value='125635497' color='ff6600' showName='0'/> <set name='09-16 23:00' value='125649861' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='MyISAM Data Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='121594340' color='ff6600' showName='0'/> <set name='09-10 01:00' value='121609140' color='ff6600' showName='0'/> <set name='09-10 02:00' value='121617072' color='ff6600' showName='0'/> <set name='09-10 03:00' value='121626732' color='ff6600' showName='0'/> <set name='09-10 04:00' value='121654384' color='ff6600' showName='0'/> <set name='09-10 05:15' value='121666160' color='ff6600' showName='0'/> <set name='09-10 06:35' value='121689720' color='ff6600' showName='0'/> <set name='09-10 07:00' value='121689720' color='ff6600' showName='0'/> <set name='09-10 08:00' value='121718248' color='ff6600' showName='0'/> <set name='09-10 09:00' value='121765412' color='ff6600' showName='0'/> <set name='09-10 10:00' value='121774700' color='ff6600' showName='0'/> <set name='09-10 11:00' value='121815804' color='ff6600' showName='0'/> <set name='09-10 12:00' value='121852192' color='ff6600' showName='0'/> <set name='09-10 13:00' value='121890584' color='ff6600' showName='0'/> <set name='09-10 14:00' value='121913476' color='ff6600' showName='0'/> <set name='09-10 15:00' value='121989316' color='ff6600' showName='0'/> <set name='09-10 16:05' value='122006664' color='ff6600' showName='0'/> <set name='09-10 17:00' value='122025844' color='ff6600' showName='0'/> <set name='09-10 18:00' value='122031276' color='ff6600' showName='0'/> <set name='09-10 19:00' value='122034700' color='ff6600' showName='0'/> <set name='09-10 20:00' value='122054712' color='ff6600' showName='0'/> <set name='09-10 21:00' value='122056328' color='ff6600' showName='0'/> <set name='09-10 22:00' value='122079420' color='ff6600' showName='0'/> <set name='09-10 23:00' value='122092380' color='ff6600' showName='0'/> <set name='09-11 00:00' value='122097808' color='ff6600' showName='0'/> <set name='09-11 01:00' value='122121440' color='ff6600' showName='0'/> <set name='09-11 02:00' value='122127640' color='ff6600' showName='0'/> <set name='09-11 03:00' value='122161360' color='ff6600' showName='0'/> <set name='09-11 04:00' value='122165112' color='ff6600' showName='0'/> <set name='09-11 05:00' value='122190600' color='ff6600' showName='0'/> <set name='09-11 06:15' value='122209688' color='ff6600' showName='0'/> <set name='09-11 07:00' value='122211148' color='ff6600' showName='0'/> <set name='09-11 08:00' value='122234680' color='ff6600' showName='0'/> <set name='09-11 09:00' value='122259088' color='ff6600' showName='0'/> <set name='09-15 12:18' value='125074209' color='ff6600' showName='0'/> <set name='09-15 13:00' value='125100425' color='ff6600' showName='0'/> <set name='09-15 14:00' value='125128541' color='ff6600' showName='0'/> <set name='09-15 15:00' value='125138229' color='ff6600' showName='0'/> <set name='09-15 16:00' value='125148093' color='ff6600' showName='0'/> <set name='09-15 17:00' value='125175797' color='ff6600' showName='0'/> <set name='09-15 18:00' value='125208225' color='ff6600' showName='0'/> <set name='09-15 19:00' value='125214269' color='ff6600' showName='0'/> <set name='09-15 20:00' value='125236793' color='ff6600' showName='0'/> <set name='09-15 21:00' value='125242305' color='ff6600' showName='0'/> <set name='09-15 22:00' value='125244437' color='ff6600' showName='0'/> <set name='09-15 23:00' value='125255413' color='ff6600' showName='0'/> <set name='09-16 00:00' value='125285233' color='ff6600' showName='0'/> <set name='09-16 01:25' value='125293529' color='ff6600' showName='0'/> <set name='09-16 02:00' value='125293529' color='ff6600' showName='0'/> <set name='09-16 03:00' value='125330725' color='ff6600' showName='0'/> <set name='09-16 04:00' value='125344393' color='ff6600' showName='0'/> <set name='09-16 05:05' value='125352149' color='ff6600' showName='0'/> <set name='09-16 06:05' value='125366357' color='ff6600' showName='0'/> <set name='09-16 07:00' value='125371749' color='ff6600' showName='0'/> <set name='09-16 08:00' value='125378645' color='ff6600' showName='0'/> <set name='09-16 09:00' value='125414145' color='ff6600' showName='0'/> <set name='09-16 10:00' value='125446149' color='ff6600' showName='0'/> <set name='09-16 11:00' value='125450769' color='ff6600' showName='0'/> <set name='09-16 12:00' value='125465461' color='ff6600' showName='0'/> <set name='09-16 13:00' value='125497933' color='ff6600' showName='0'/> <set name='09-16 14:00' value='125505937' color='ff6600' showName='0'/> <set name='09-16 15:00' value='125526393' color='ff6600' showName='0'/> <set name='09-16 16:00' value='125535241' color='ff6600' showName='0'/> <set name='09-16 17:00' value='125542169' color='ff6600' showName='0'/> <set name='09-16 18:05' value='125582617' color='ff6600' showName='0'/> <set name='09-16 19:00' value='125594333' color='ff6600' showName='0'/> <set name='09-16 20:00' value='125616541' color='ff6600' showName='0'/> <set name='09-16 21:00' value='125616541' color='ff6600' showName='0'/> <set name='09-16 22:00' value='125635497' color='ff6600' showName='0'/> <set name='09-16 23:00' value='125649861' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='MyISAM Index Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='99495936' color='ff6600' showName='0'/> <set name='09-10 01:00' value='99516416' color='ff6600' showName='0'/> <set name='09-10 02:00' value='99519488' color='ff6600' showName='0'/> <set name='09-10 03:00' value='99533824' color='ff6600' showName='0'/> <set name='09-10 04:00' value='99571712' color='ff6600' showName='0'/> <set name='09-10 05:15' value='99582976' color='ff6600' showName='0'/> <set name='09-10 06:35' value='99604480' color='ff6600' showName='0'/> <set name='09-10 07:00' value='99604480' color='ff6600' showName='0'/> <set name='09-10 08:00' value='99643392' color='ff6600' showName='0'/> <set name='09-10 09:00' value='99673088' color='ff6600' showName='0'/> <set name='09-10 10:00' value='99686400' color='ff6600' showName='0'/> <set name='09-10 11:00' value='99728384' color='ff6600' showName='0'/> <set name='09-10 12:00' value='99765248' color='ff6600' showName='0'/> <set name='09-10 13:00' value='99803136' color='ff6600' showName='0'/> <set name='09-10 14:00' value='99829760' color='ff6600' showName='0'/> <set name='09-10 15:00' value='99879936' color='ff6600' showName='0'/> <set name='09-10 16:05' value='99893248' color='ff6600' showName='0'/> <set name='09-10 17:00' value='99913728' color='ff6600' showName='0'/> <set name='09-10 18:00' value='99917824' color='ff6600' showName='0'/> <set name='09-10 19:00' value='99918848' color='ff6600' showName='0'/> <set name='09-10 20:00' value='99949568' color='ff6600' showName='0'/> <set name='09-10 21:00' value='99950592' color='ff6600' showName='0'/> <set name='09-10 22:00' value='99989504' color='ff6600' showName='0'/> <set name='09-10 23:00' value='99997696' color='ff6600' showName='0'/> <set name='09-11 00:00' value='100002816' color='ff6600' showName='0'/> <set name='09-11 01:00' value='100025344' color='ff6600' showName='0'/> <set name='09-11 02:00' value='100028416' color='ff6600' showName='0'/> <set name='09-11 03:00' value='100070400' color='ff6600' showName='0'/> <set name='09-11 04:00' value='100072448' color='ff6600' showName='0'/> <set name='09-11 05:00' value='100092928' color='ff6600' showName='0'/> <set name='09-11 06:15' value='100108288' color='ff6600' showName='0'/> <set name='09-11 07:00' value='100110336' color='ff6600' showName='0'/> <set name='09-11 08:00' value='100142080' color='ff6600' showName='0'/> <set name='09-11 09:00' value='100172800' color='ff6600' showName='0'/> <set name='09-15 12:18' value='101822464' color='ff6600' showName='0'/> <set name='09-15 13:00' value='101850112' color='ff6600' showName='0'/> <set name='09-15 14:00' value='101882880' color='ff6600' showName='0'/> <set name='09-15 15:00' value='101890048' color='ff6600' showName='0'/> <set name='09-15 16:00' value='101904384' color='ff6600' showName='0'/> <set name='09-15 17:00' value='101936128' color='ff6600' showName='0'/> <set name='09-15 18:00' value='101970944' color='ff6600' showName='0'/> <set name='09-15 19:00' value='101978112' color='ff6600' showName='0'/> <set name='09-15 20:00' value='102001664' color='ff6600' showName='0'/> <set name='09-15 21:00' value='102003712' color='ff6600' showName='0'/> <set name='09-15 22:00' value='102003712' color='ff6600' showName='0'/> <set name='09-15 23:00' value='102014976' color='ff6600' showName='0'/> <set name='09-16 00:00' value='102057984' color='ff6600' showName='0'/> <set name='09-16 01:25' value='102061056' color='ff6600' showName='0'/> <set name='09-16 02:00' value='102061056' color='ff6600' showName='0'/> <set name='09-16 03:00' value='102104064' color='ff6600' showName='0'/> <set name='09-16 04:00' value='102119424' color='ff6600' showName='0'/> <set name='09-16 05:05' value='102122496' color='ff6600' showName='0'/> <set name='09-16 06:05' value='102133760' color='ff6600' showName='0'/> <set name='09-16 07:00' value='102138880' color='ff6600' showName='0'/> <set name='09-16 08:00' value='102142976' color='ff6600' showName='0'/> <set name='09-16 09:00' value='102180864' color='ff6600' showName='0'/> <set name='09-16 10:00' value='102211584' color='ff6600' showName='0'/> <set name='09-16 11:00' value='102218752' color='ff6600' showName='0'/> <set name='09-16 12:00' value='102232064' color='ff6600' showName='0'/> <set name='09-16 13:00' value='102259712' color='ff6600' showName='0'/> <set name='09-16 14:00' value='102265856' color='ff6600' showName='0'/> <set name='09-16 15:00' value='102289408' color='ff6600' showName='0'/> <set name='09-16 16:00' value='102297600' color='ff6600' showName='0'/> <set name='09-16 17:00' value='102305792' color='ff6600' showName='0'/> <set name='09-16 18:05' value='102351872' color='ff6600' showName='0'/> <set name='09-16 19:00' value='102362112' color='ff6600' showName='0'/> <set name='09-16 20:00' value='102389760' color='ff6600' showName='0'/> <set name='09-16 21:00' value='102389760' color='ff6600' showName='0'/> <set name='09-16 22:00' value='102411264' color='ff6600' showName='0'/> <set name='09-16 23:00' value='102433792' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='MyISAM Index Size' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='99495936' color='ff6600' showName='0'/> <set name='09-10 01:00' value='99516416' color='ff6600' showName='0'/> <set name='09-10 02:00' value='99519488' color='ff6600' showName='0'/> <set name='09-10 03:00' value='99533824' color='ff6600' showName='0'/> <set name='09-10 04:00' value='99571712' color='ff6600' showName='0'/> <set name='09-10 05:15' value='99582976' color='ff6600' showName='0'/> <set name='09-10 06:35' value='99604480' color='ff6600' showName='0'/> <set name='09-10 07:00' value='99604480' color='ff6600' showName='0'/> <set name='09-10 08:00' value='99643392' color='ff6600' showName='0'/> <set name='09-10 09:00' value='99673088' color='ff6600' showName='0'/> <set name='09-10 10:00' value='99686400' color='ff6600' showName='0'/> <set name='09-10 11:00' value='99728384' color='ff6600' showName='0'/> <set name='09-10 12:00' value='99765248' color='ff6600' showName='0'/> <set name='09-10 13:00' value='99803136' color='ff6600' showName='0'/> <set name='09-10 14:00' value='99829760' color='ff6600' showName='0'/> <set name='09-10 15:00' value='99879936' color='ff6600' showName='0'/> <set name='09-10 16:05' value='99893248' color='ff6600' showName='0'/> <set name='09-10 17:00' value='99913728' color='ff6600' showName='0'/> <set name='09-10 18:00' value='99917824' color='ff6600' showName='0'/> <set name='09-10 19:00' value='99918848' color='ff6600' showName='0'/> <set name='09-10 20:00' value='99949568' color='ff6600' showName='0'/> <set name='09-10 21:00' value='99950592' color='ff6600' showName='0'/> <set name='09-10 22:00' value='99989504' color='ff6600' showName='0'/> <set name='09-10 23:00' value='99997696' color='ff6600' showName='0'/> <set name='09-11 00:00' value='100002816' color='ff6600' showName='0'/> <set name='09-11 01:00' value='100025344' color='ff6600' showName='0'/> <set name='09-11 02:00' value='100028416' color='ff6600' showName='0'/> <set name='09-11 03:00' value='100070400' color='ff6600' showName='0'/> <set name='09-11 04:00' value='100072448' color='ff6600' showName='0'/> <set name='09-11 05:00' value='100092928' color='ff6600' showName='0'/> <set name='09-11 06:15' value='100108288' color='ff6600' showName='0'/> <set name='09-11 07:00' value='100110336' color='ff6600' showName='0'/> <set name='09-11 08:00' value='100142080' color='ff6600' showName='0'/> <set name='09-11 09:00' value='100172800' color='ff6600' showName='0'/> <set name='09-15 12:18' value='101822464' color='ff6600' showName='0'/> <set name='09-15 13:00' value='101850112' color='ff6600' showName='0'/> <set name='09-15 14:00' value='101882880' color='ff6600' showName='0'/> <set name='09-15 15:00' value='101890048' color='ff6600' showName='0'/> <set name='09-15 16:00' value='101904384' color='ff6600' showName='0'/> <set name='09-15 17:00' value='101936128' color='ff6600' showName='0'/> <set name='09-15 18:00' value='101970944' color='ff6600' showName='0'/> <set name='09-15 19:00' value='101978112' color='ff6600' showName='0'/> <set name='09-15 20:00' value='102001664' color='ff6600' showName='0'/> <set name='09-15 21:00' value='102003712' color='ff6600' showName='0'/> <set name='09-15 22:00' value='102003712' color='ff6600' showName='0'/> <set name='09-15 23:00' value='102014976' color='ff6600' showName='0'/> <set name='09-16 00:00' value='102057984' color='ff6600' showName='0'/> <set name='09-16 01:25' value='102061056' color='ff6600' showName='0'/> <set name='09-16 02:00' value='102061056' color='ff6600' showName='0'/> <set name='09-16 03:00' value='102104064' color='ff6600' showName='0'/> <set name='09-16 04:00' value='102119424' color='ff6600' showName='0'/> <set name='09-16 05:05' value='102122496' color='ff6600' showName='0'/> <set name='09-16 06:05' value='102133760' color='ff6600' showName='0'/> <set name='09-16 07:00' value='102138880' color='ff6600' showName='0'/> <set name='09-16 08:00' value='102142976' color='ff6600' showName='0'/> <set name='09-16 09:00' value='102180864' color='ff6600' showName='0'/> <set name='09-16 10:00' value='102211584' color='ff6600' showName='0'/> <set name='09-16 11:00' value='102218752' color='ff6600' showName='0'/> <set name='09-16 12:00' value='102232064' color='ff6600' showName='0'/> <set name='09-16 13:00' value='102259712' color='ff6600' showName='0'/> <set name='09-16 14:00' value='102265856' color='ff6600' showName='0'/> <set name='09-16 15:00' value='102289408' color='ff6600' showName='0'/> <set name='09-16 16:00' value='102297600' color='ff6600' showName='0'/> <set name='09-16 17:00' value='102305792' color='ff6600' showName='0'/> <set name='09-16 18:05' value='102351872' color='ff6600' showName='0'/> <set name='09-16 19:00' value='102362112' color='ff6600' showName='0'/> <set name='09-16 20:00' value='102389760' color='ff6600' showName='0'/> <set name='09-16 21:00' value='102389760' color='ff6600' showName='0'/> <set name='09-16 22:00' value='102411264' color='ff6600' showName='0'/> <set name='09-16 23:00' value='102433792' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_free_memory' xAxisName='' yAxisName='free' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='12339832' color='ff6600' showName='0'/> <set name='09-10 01:00' value='16187032' color='ff6600' showName='0'/> <set name='09-10 02:00' value='201296' color='ff6600' showName='0'/> <set name='09-10 03:00' value='295192' color='ff6600' showName='0'/> <set name='09-10 04:00' value='432960' color='ff6600' showName='0'/> <set name='09-10 05:15' value='801096' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1009496' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1191864' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1193288' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1410736' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2124760' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1488592' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1767904' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1952224' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2176632' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2370976' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2426568' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2265592' color='ff6600' showName='0'/> <set name='09-10 18:00' value='36751832' color='ff6600' showName='0'/> <set name='09-10 19:00' value='13217856' color='ff6600' showName='0'/> <set name='09-10 20:00' value='45401352' color='ff6600' showName='0'/> <set name='09-10 21:00' value='14149248' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1630384' color='ff6600' showName='0'/> <set name='09-10 23:00' value='52419904' color='ff6600' showName='0'/> <set name='09-11 00:00' value='21451448' color='ff6600' showName='0'/> <set name='09-11 01:00' value='27165448' color='ff6600' showName='0'/> <set name='09-11 02:00' value='168864' color='ff6600' showName='0'/> <set name='09-11 03:00' value='148480' color='ff6600' showName='0'/> <set name='09-11 04:00' value='357256' color='ff6600' showName='0'/> <set name='09-11 05:00' value='678656' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1099184' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1450232' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1598976' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1584456' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1965760' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2582536' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2444736' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2705416' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2273232' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2280376' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2046312' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2234184' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1877456' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2390880' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2450432' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1257320' color='ff6600' showName='0'/> <set name='09-16 00:00' value='160968' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3096' color='ff6600' showName='0'/> <set name='09-16 02:00' value='54472' color='ff6600' showName='0'/> <set name='09-16 03:00' value='560232' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1191216' color='ff6600' showName='0'/> <set name='09-16 05:05' value='979312' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1434016' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1861136' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2059288' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2105816' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2215648' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2390288' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2489408' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2783400' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2709768' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2455960' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2537800' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2748552' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2680528' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3725592' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3254944' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2518800' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2056464' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2172408' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_free_memory' xAxisName='' yAxisName='free' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='12339832' color='ff6600' showName='0'/> <set name='09-10 01:00' value='16187032' color='ff6600' showName='0'/> <set name='09-10 02:00' value='201296' color='ff6600' showName='0'/> <set name='09-10 03:00' value='295192' color='ff6600' showName='0'/> <set name='09-10 04:00' value='432960' color='ff6600' showName='0'/> <set name='09-10 05:15' value='801096' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1009496' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1191864' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1193288' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1410736' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2124760' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1488592' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1767904' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1952224' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2176632' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2370976' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2426568' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2265592' color='ff6600' showName='0'/> <set name='09-10 18:00' value='36751832' color='ff6600' showName='0'/> <set name='09-10 19:00' value='13217856' color='ff6600' showName='0'/> <set name='09-10 20:00' value='45401352' color='ff6600' showName='0'/> <set name='09-10 21:00' value='14149248' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1630384' color='ff6600' showName='0'/> <set name='09-10 23:00' value='52419904' color='ff6600' showName='0'/> <set name='09-11 00:00' value='21451448' color='ff6600' showName='0'/> <set name='09-11 01:00' value='27165448' color='ff6600' showName='0'/> <set name='09-11 02:00' value='168864' color='ff6600' showName='0'/> <set name='09-11 03:00' value='148480' color='ff6600' showName='0'/> <set name='09-11 04:00' value='357256' color='ff6600' showName='0'/> <set name='09-11 05:00' value='678656' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1099184' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1450232' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1598976' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1584456' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1965760' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2582536' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2444736' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2705416' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2273232' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2280376' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2046312' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2234184' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1877456' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2390880' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2450432' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1257320' color='ff6600' showName='0'/> <set name='09-16 00:00' value='160968' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3096' color='ff6600' showName='0'/> <set name='09-16 02:00' value='54472' color='ff6600' showName='0'/> <set name='09-16 03:00' value='560232' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1191216' color='ff6600' showName='0'/> <set name='09-16 05:05' value='979312' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1434016' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1861136' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2059288' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2105816' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2215648' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2390288' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2489408' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2783400' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2709768' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2455960' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2537800' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2748552' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2680528' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3725592' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3254944' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2518800' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2056464' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2172408' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_hits' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='3.8504094017579' color='ff6600' showName='0'/> <set name='09-10 01:00' value='3.8495749798461' color='ff6600' showName='0'/> <set name='09-10 02:00' value='3.8491291551687' color='ff6600' showName='0'/> <set name='09-10 03:00' value='3.8483745445977' color='ff6600' showName='0'/> <set name='09-10 04:00' value='3.8476541304843' color='ff6600' showName='0'/> <set name='09-10 05:15' value='3.8470646515324' color='ff6600' showName='0'/> <set name='09-10 06:35' value='3.8465584903264' color='ff6600' showName='0'/> <set name='09-10 07:00' value='3.8463288882623' color='ff6600' showName='0'/> <set name='09-10 08:00' value='3.8459283556316' color='ff6600' showName='0'/> <set name='09-10 09:00' value='3.8457087741881' color='ff6600' showName='0'/> <set name='09-10 10:00' value='3.8463960008823' color='ff6600' showName='0'/> <set name='09-10 11:00' value='3.8470685633451' color='ff6600' showName='0'/> <set name='09-10 12:00' value='3.8470641316414' color='ff6600' showName='0'/> <set name='09-10 13:00' value='3.8470039793989' color='ff6600' showName='0'/> <set name='09-10 14:00' value='3.8469022040722' color='ff6600' showName='0'/> <set name='09-10 15:00' value='3.8471230059294' color='ff6600' showName='0'/> <set name='09-10 16:05' value='3.8485776301496' color='ff6600' showName='0'/> <set name='09-10 17:00' value='3.8485788829154' color='ff6600' showName='0'/> <set name='09-10 18:00' value='3.8481685604973' color='ff6600' showName='0'/> <set name='09-10 19:00' value='3.8480080367988' color='ff6600' showName='0'/> <set name='09-10 20:00' value='3.8475324456086' color='ff6600' showName='0'/> <set name='09-10 21:00' value='3.8470947201662' color='ff6600' showName='0'/> <set name='09-10 22:00' value='3.8464183392582' color='ff6600' showName='0'/> <set name='09-10 23:00' value='3.8457971478781' color='ff6600' showName='0'/> <set name='09-11 00:00' value='3.8451514861285' color='ff6600' showName='0'/> <set name='09-11 01:00' value='3.844502234905' color='ff6600' showName='0'/> <set name='09-11 02:00' value='3.8440161084827' color='ff6600' showName='0'/> <set name='09-11 03:00' value='3.8433908542501' color='ff6600' showName='0'/> <set name='09-11 04:00' value='3.8429681832467' color='ff6600' showName='0'/> <set name='09-11 05:00' value='3.8423432737392' color='ff6600' showName='0'/> <set name='09-11 06:15' value='3.841486730834' color='ff6600' showName='0'/> <set name='09-11 07:00' value='3.8412507816386' color='ff6600' showName='0'/> <set name='09-11 08:00' value='3.8408362027255' color='ff6600' showName='0'/> <set name='09-11 09:00' value='3.8402461422796' color='ff6600' showName='0'/> <set name='09-15 12:18' value='3.8012452427038' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3.8017728180127' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3.8022933907142' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3.80257150052' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3.8026087076175' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3.8027480391955' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3.8028778667353' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3.8030211427234' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3.8030575458708' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3.8032310313777' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3.8032819704341' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3.8036583997284' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3.8035504376912' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3.8032770735729' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3.8033215426161' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3.8031561779849' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3.8033469368183' color='ff6600' showName='0'/> <set name='09-16 05:05' value='3.8030846154094' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3.8029397725513' color='ff6600' showName='0'/> <set name='09-16 07:00' value='3.8027608888966' color='ff6600' showName='0'/> <set name='09-16 08:00' value='3.8022456690388' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3.802014103754' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3.8017450924615' color='ff6600' showName='0'/> <set name='09-16 11:00' value='3.8015687188695' color='ff6600' showName='0'/> <set name='09-16 12:00' value='3.8014042448771' color='ff6600' showName='0'/> <set name='09-16 13:00' value='3.8011363082973' color='ff6600' showName='0'/> <set name='09-16 14:00' value='3.8010925566629' color='ff6600' showName='0'/> <set name='09-16 15:00' value='3.8010723757832' color='ff6600' showName='0'/> <set name='09-16 16:00' value='3.8011329910422' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3.8014298449247' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3.8014647656158' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3.8013078018249' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3.8010513327197' color='ff6600' showName='0'/> <set name='09-16 21:00' value='3.8009258044848' color='ff6600' showName='0'/> <set name='09-16 22:00' value='3.8006868721645' color='ff6600' showName='0'/> <set name='09-16 23:00' value='3.8004029105364' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_hits' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='3.8504094017579' color='ff6600' showName='0'/> <set name='09-10 01:00' value='3.8495749798461' color='ff6600' showName='0'/> <set name='09-10 02:00' value='3.8491291551687' color='ff6600' showName='0'/> <set name='09-10 03:00' value='3.8483745445977' color='ff6600' showName='0'/> <set name='09-10 04:00' value='3.8476541304843' color='ff6600' showName='0'/> <set name='09-10 05:15' value='3.8470646515324' color='ff6600' showName='0'/> <set name='09-10 06:35' value='3.8465584903264' color='ff6600' showName='0'/> <set name='09-10 07:00' value='3.8463288882623' color='ff6600' showName='0'/> <set name='09-10 08:00' value='3.8459283556316' color='ff6600' showName='0'/> <set name='09-10 09:00' value='3.8457087741881' color='ff6600' showName='0'/> <set name='09-10 10:00' value='3.8463960008823' color='ff6600' showName='0'/> <set name='09-10 11:00' value='3.8470685633451' color='ff6600' showName='0'/> <set name='09-10 12:00' value='3.8470641316414' color='ff6600' showName='0'/> <set name='09-10 13:00' value='3.8470039793989' color='ff6600' showName='0'/> <set name='09-10 14:00' value='3.8469022040722' color='ff6600' showName='0'/> <set name='09-10 15:00' value='3.8471230059294' color='ff6600' showName='0'/> <set name='09-10 16:05' value='3.8485776301496' color='ff6600' showName='0'/> <set name='09-10 17:00' value='3.8485788829154' color='ff6600' showName='0'/> <set name='09-10 18:00' value='3.8481685604973' color='ff6600' showName='0'/> <set name='09-10 19:00' value='3.8480080367988' color='ff6600' showName='0'/> <set name='09-10 20:00' value='3.8475324456086' color='ff6600' showName='0'/> <set name='09-10 21:00' value='3.8470947201662' color='ff6600' showName='0'/> <set name='09-10 22:00' value='3.8464183392582' color='ff6600' showName='0'/> <set name='09-10 23:00' value='3.8457971478781' color='ff6600' showName='0'/> <set name='09-11 00:00' value='3.8451514861285' color='ff6600' showName='0'/> <set name='09-11 01:00' value='3.844502234905' color='ff6600' showName='0'/> <set name='09-11 02:00' value='3.8440161084827' color='ff6600' showName='0'/> <set name='09-11 03:00' value='3.8433908542501' color='ff6600' showName='0'/> <set name='09-11 04:00' value='3.8429681832467' color='ff6600' showName='0'/> <set name='09-11 05:00' value='3.8423432737392' color='ff6600' showName='0'/> <set name='09-11 06:15' value='3.841486730834' color='ff6600' showName='0'/> <set name='09-11 07:00' value='3.8412507816386' color='ff6600' showName='0'/> <set name='09-11 08:00' value='3.8408362027255' color='ff6600' showName='0'/> <set name='09-11 09:00' value='3.8402461422796' color='ff6600' showName='0'/> <set name='09-15 12:18' value='3.8012452427038' color='ff6600' showName='0'/> <set name='09-15 13:00' value='3.8017728180127' color='ff6600' showName='0'/> <set name='09-15 14:00' value='3.8022933907142' color='ff6600' showName='0'/> <set name='09-15 15:00' value='3.80257150052' color='ff6600' showName='0'/> <set name='09-15 16:00' value='3.8026087076175' color='ff6600' showName='0'/> <set name='09-15 17:00' value='3.8027480391955' color='ff6600' showName='0'/> <set name='09-15 18:00' value='3.8028778667353' color='ff6600' showName='0'/> <set name='09-15 19:00' value='3.8030211427234' color='ff6600' showName='0'/> <set name='09-15 20:00' value='3.8030575458708' color='ff6600' showName='0'/> <set name='09-15 21:00' value='3.8032310313777' color='ff6600' showName='0'/> <set name='09-15 22:00' value='3.8032819704341' color='ff6600' showName='0'/> <set name='09-15 23:00' value='3.8036583997284' color='ff6600' showName='0'/> <set name='09-16 00:00' value='3.8035504376912' color='ff6600' showName='0'/> <set name='09-16 01:25' value='3.8032770735729' color='ff6600' showName='0'/> <set name='09-16 02:00' value='3.8033215426161' color='ff6600' showName='0'/> <set name='09-16 03:00' value='3.8031561779849' color='ff6600' showName='0'/> <set name='09-16 04:00' value='3.8033469368183' color='ff6600' showName='0'/> <set name='09-16 05:05' value='3.8030846154094' color='ff6600' showName='0'/> <set name='09-16 06:05' value='3.8029397725513' color='ff6600' showName='0'/> <set name='09-16 07:00' value='3.8027608888966' color='ff6600' showName='0'/> <set name='09-16 08:00' value='3.8022456690388' color='ff6600' showName='0'/> <set name='09-16 09:00' value='3.802014103754' color='ff6600' showName='0'/> <set name='09-16 10:00' value='3.8017450924615' color='ff6600' showName='0'/> <set name='09-16 11:00' value='3.8015687188695' color='ff6600' showName='0'/> <set name='09-16 12:00' value='3.8014042448771' color='ff6600' showName='0'/> <set name='09-16 13:00' value='3.8011363082973' color='ff6600' showName='0'/> <set name='09-16 14:00' value='3.8010925566629' color='ff6600' showName='0'/> <set name='09-16 15:00' value='3.8010723757832' color='ff6600' showName='0'/> <set name='09-16 16:00' value='3.8011329910422' color='ff6600' showName='0'/> <set name='09-16 17:00' value='3.8014298449247' color='ff6600' showName='0'/> <set name='09-16 18:05' value='3.8014647656158' color='ff6600' showName='0'/> <set name='09-16 19:00' value='3.8013078018249' color='ff6600' showName='0'/> <set name='09-16 20:00' value='3.8010513327197' color='ff6600' showName='0'/> <set name='09-16 21:00' value='3.8009258044848' color='ff6600' showName='0'/> <set name='09-16 22:00' value='3.8006868721645' color='ff6600' showName='0'/> <set name='09-16 23:00' value='3.8004029105364' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_inserts' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.5248017553196' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.5245857697523' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.5244651442416' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.524118350574' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.5238434547243' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.5235824055976' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.5234316060563' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.5233815309718' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.5232451323778' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.523122260178' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.5234663968916' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.523798706444' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.5237541002298' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.523668520909' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.5235069230438' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.5232867061887' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.5234835651227' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.5232607244656' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.5230710937912' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.5228598778713' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.522594533129' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.522458906448' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.5221502642223' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.5218255513369' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.5216709674371' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.5216033788018' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.521343908179' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.5210593479989' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.5207728972018' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.5205162472448' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.5201636414549' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.520110729678' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.5198915837204' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.5196087995297' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.5003605236483' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.5005195551567' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.5005588030053' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.5005518180644' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.5005794407501' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.5005363463396' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.5005951954874' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.5005142267376' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.5004271035088' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.5003314593056' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.5002244764882' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.5004460650803' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.5004406571603' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.5005028450523' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.5004622130499' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.5003675200549' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.5002484167212' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.500223446968' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.5001185781812' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.5000958474266' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.4998945305675' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.4998065334187' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.4996265757448' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.4994733758906' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.4992952258065' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.4991562131719' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.4991684123149' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.4991708698437' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.4991843587858' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.499318856481' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.4993539007347' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.4993832201001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.4992454281499' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.4991548917859' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.498973544963' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.4988569094325' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_inserts' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.5248017553196' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.5245857697523' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.5244651442416' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.524118350574' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.5238434547243' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.5235824055976' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.5234316060563' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.5233815309718' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.5232451323778' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.523122260178' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.5234663968916' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.523798706444' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.5237541002298' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.523668520909' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.5235069230438' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.5232867061887' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.5234835651227' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.5232607244656' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.5230710937912' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.5228598778713' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.522594533129' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.522458906448' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.5221502642223' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.5218255513369' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.5216709674371' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.5216033788018' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.521343908179' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.5210593479989' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.5207728972018' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.5205162472448' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.5201636414549' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.520110729678' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.5198915837204' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.5196087995297' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.5003605236483' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.5005195551567' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.5005588030053' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.5005518180644' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.5005794407501' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.5005363463396' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.5005951954874' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.5005142267376' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.5004271035088' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.5003314593056' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.5002244764882' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.5004460650803' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.5004406571603' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.5005028450523' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.5004622130499' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.5003675200549' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.5002484167212' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.500223446968' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.5001185781812' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.5000958474266' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.4998945305675' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.4998065334187' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.4996265757448' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.4994733758906' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.4992952258065' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.4991562131719' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.4991684123149' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.4991708698437' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.4991843587858' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.499318856481' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.4993539007347' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.4993832201001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.4992454281499' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.4991548917859' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.498973544963' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.4988569094325' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_queries_in_cache' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0012876281672497' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0012796437245309' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001375693802318' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0013741677717677' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0013806143674962' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0013772453989288' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0013840611541733' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0014142570678498' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0014391440575043' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0014737718081163' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0014066773558655' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001433764748346' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0014384739833825' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0014465688713321' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0014471398245302' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0013972238571823' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0014540851369429' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0014189196864014' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0013425355943643' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0015439380863821' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0012358950749693' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0015591534153291' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001533923175232' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001000105520027' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0013337386577377' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0013218027024679' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0015407016600068' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0014525210108824' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0014699378780462' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0014646010431994' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.00144554487223' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0014012341263195' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0014215884852607' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0014099708268964' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001613351177996' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0015213276910693' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0015816856795364' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0014428107174971' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0014509459443599' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0013938398352305' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0014759946245365' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0013650524717448' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0014932275174077' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.00140063956901' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0013733366554709' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0014670563781857' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0014377315518194' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0014439596481718' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0014047514493429' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0014353404543745' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0014388090987006' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0014663284853699' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0014999811764687' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001448193635751' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0014224812747749' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0014875880730467' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0014889194016768' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0014924603625175' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0014818359304963' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001502346105924' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0014033978160911' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0014981704152193' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0014793346486033' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0015223754668417' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0015204674605608' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0015455436249545' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0014783428664716' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0013688400261512' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0013788155533559' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0013358588276396' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_queries_in_cache' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0012876281672497' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0012796437245309' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001375693802318' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0013741677717677' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0013806143674962' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0013772453989288' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0013840611541733' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0014142570678498' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0014391440575043' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0014737718081163' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0014066773558655' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001433764748346' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0014384739833825' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0014465688713321' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0014471398245302' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0013972238571823' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0014540851369429' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0014189196864014' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0013425355943643' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0015439380863821' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0012358950749693' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0015591534153291' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001533923175232' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001000105520027' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0013337386577377' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0013218027024679' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0015407016600068' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0014525210108824' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0014699378780462' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0014646010431994' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.00144554487223' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0014012341263195' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0014215884852607' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0014099708268964' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001613351177996' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0015213276910693' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0015816856795364' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0014428107174971' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0014509459443599' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0013938398352305' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0014759946245365' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0013650524717448' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0014932275174077' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.00140063956901' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0013733366554709' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0014670563781857' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0014377315518194' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0014439596481718' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0014047514493429' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0014353404543745' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0014388090987006' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0014663284853699' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0014999811764687' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001448193635751' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0014224812747749' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0014875880730467' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0014889194016768' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0014924603625175' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0014818359304963' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001502346105924' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0014033978160911' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0014981704152193' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0014793346486033' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0015223754668417' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0015204674605608' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0015455436249545' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0014783428664716' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0013688400261512' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0013788155533559' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0013358588276396' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_lowmem_prunes' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.123255695373' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.1228255253003' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.1225021334877' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.1222400474988' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.1220287287852' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.121846120635' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.1217587473724' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.1216924195416' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.1215983315497' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.1214877792652' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.121543295497' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.1214764961942' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.1213286545821' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.1211778825962' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.1210678457125' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.1209366185041' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.1207205226592' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.1205721928917' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.1201890796481' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.1197625483568' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.1195578145235' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.1191322023474' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.1189110669565' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.1187097137727' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.1182851444527' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.1178606615386' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.1174687531356' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.1173114625732' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.1170557117568' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.1168678499026' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.1166176346324' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.1165325292099' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.1162823908831' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.1159961996756' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.0973519216361' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.0974637666113' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.097420353106' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.0975474055442' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.0975706589902' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.0976005707542' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.0975743483787' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.0976279876796' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.0974015234689' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.0974375226477' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.0973799903869' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.0975548367382' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.0971597588007' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.096663617532' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.0966599890238' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.0965782643379' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.0964838053654' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.0964484317829' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.096299273613' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.0963154437927' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.0961325963516' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.0958761652993' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.0956627501515' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.0954859642265' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.095283482148' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.0950983450693' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.0951056271938' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.0949407458148' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.094899935507' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.0948954692601' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.0948455480488' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.0948169848921' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.0947507479115' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.094802999979' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.0946442386508' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.0945846290711' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_lowmem_prunes' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.123255695373' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.1228255253003' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.1225021334877' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.1222400474988' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.1220287287852' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.121846120635' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.1217587473724' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.1216924195416' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.1215983315497' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.1214877792652' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.121543295497' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.1214764961942' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.1213286545821' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.1211778825962' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.1210678457125' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.1209366185041' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.1207205226592' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.1205721928917' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.1201890796481' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.1197625483568' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.1195578145235' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.1191322023474' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.1189110669565' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.1187097137727' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.1182851444527' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.1178606615386' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.1174687531356' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.1173114625732' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.1170557117568' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.1168678499026' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.1166176346324' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.1165325292099' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.1162823908831' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.1159961996756' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.0973519216361' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.0974637666113' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.097420353106' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.0975474055442' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.0975706589902' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.0976005707542' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.0975743483787' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.0976279876796' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.0974015234689' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.0974375226477' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.0973799903869' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.0975548367382' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.0971597588007' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.096663617532' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.0966599890238' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.0965782643379' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.0964838053654' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.0964484317829' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.096299273613' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.0963154437927' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.0961325963516' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.0958761652993' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.0956627501515' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.0954859642265' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.095283482148' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.0950983450693' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.0951056271938' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.0949407458148' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.094899935507' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.0948954692601' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.0948455480488' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.0948169848921' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.0947507479115' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.094802999979' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.0946442386508' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.0945846290711' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_not_cached' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.9713629086127' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.97105449860348' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.97074994769325' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.97043945648596' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.97012368245091' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.96984139980884' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.96944571820657' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.96931846452677' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.96901825684642' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.96871997264302' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.96844078523194' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.96815005854022' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.96784551771083' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.96754101797577' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.96724777263909' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.96695453908961' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.96663838741799' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.96638079862951' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.96607363299489' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.96581850306801' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.96556091137265' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.96526413034537' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.96505255079211' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.96474205249537' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.96443620866134' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.96413471681784' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.96391345232002' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.96367507663883' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.96336947691343' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.96315096491309' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.96278079465885' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.96258377861134' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.96235887569954' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.96204951270237' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.95398664233795' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.95409286490077' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.95444317421977' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.9546871608576' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.95496800054393' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.95541116797886' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.95570751404225' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.95605579481383' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.95625278718506' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.95652618003351' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.9567057965816' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.95689849415695' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.95717095560863' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.95774009999226' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.95809906823494' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.95837382080178' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.95892902655702' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.95944228764583' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.95987954288816' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.96007571483816' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.96048957824197' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.9608984199894' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.96117256924934' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.96135558431562' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.96171746444815' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.9621187327102' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.96223998406082' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.96244742937544' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.96275232470785' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.96304516111373' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.96316914160153' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.96337241843647' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.96338718730188' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.96357535239541' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.96371874471435' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.96384362875204' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Qcache_not_cached' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.9713629086127' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.97105449860348' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.97074994769325' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.97043945648596' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.97012368245091' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.96984139980884' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.96944571820657' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.96931846452677' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.96901825684642' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.96871997264302' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.96844078523194' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.96815005854022' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.96784551771083' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.96754101797577' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.96724777263909' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.96695453908961' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.96663838741799' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.96638079862951' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.96607363299489' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.96581850306801' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.96556091137265' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.96526413034537' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.96505255079211' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.96474205249537' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.96443620866134' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.96413471681784' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.96391345232002' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.96367507663883' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.96336947691343' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.96315096491309' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.96278079465885' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.96258377861134' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.96235887569954' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.96204951270237' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.95398664233795' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.95409286490077' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.95444317421977' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.9546871608576' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.95496800054393' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.95541116797886' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.95570751404225' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.95605579481383' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.95625278718506' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.95652618003351' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.9567057965816' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.95689849415695' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.95717095560863' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.95774009999226' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.95809906823494' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.95837382080178' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.95892902655702' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.95944228764583' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.95987954288816' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.96007571483816' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.96048957824197' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.9608984199894' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.96117256924934' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.96135558431562' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.96171746444815' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.9621187327102' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.96223998406082' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.96244742937544' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.96275232470785' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.96304516111373' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.96316914160153' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.96337241843647' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.96338718730188' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.96357535239541' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.96371874471435' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.96384362875204' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Open_tables' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001032467280167' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0010345830329043' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001037229000796' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0010372147542253' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0010372005106461' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0010371827343354' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0010371637832349' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0010371578610321' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0010371436491364' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0010371294520467' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0010371152736774' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001037101090401' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0010370869729782' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0010370728427339' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0010370587114813' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0010370445909976' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0010370293098625' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0010370163822874' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0010370023018603' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0010369882125964' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0010369741496817' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0010369600935534' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0010369460481082' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001000105520027' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0010340700336439' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0010363767799317' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0010368899768036' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0010368759845888' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0010368620029843' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0010368480319782' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0010368305869817' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0010368201217126' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0010368061785586' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0010367922536958' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0010354596815822' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0010354506881434' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0010354377698586' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0010354248573998' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0010354119543473' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001035399060691' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0010353861764205' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0010353733015257' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0010353604324237' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0010353475798219' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0010353347294253' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0010353218954981' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0010353090673281' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0010352909100296' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0010352834389215' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0010352706386646' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0010352578476917' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0010352440012696' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0010352312083278' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0010352195268327' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0010352067728979' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0010351940246579' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0010351812891832' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0010351685629221' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0010351558423335' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0010351431415298' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0010351304393212' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0010351177533387' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0010351050694729' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0010350924018032' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0010350786849983' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0010350670833304' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0010350544395446' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0010350418048732' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0010350291793064' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0010350165593309' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Open_tables' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001032467280167' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0010345830329043' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001037229000796' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0010372147542253' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0010372005106461' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0010371827343354' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0010371637832349' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0010371578610321' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0010371436491364' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0010371294520467' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0010371152736774' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001037101090401' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0010370869729782' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0010370728427339' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0010370587114813' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0010370445909976' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0010370293098625' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0010370163822874' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0010370023018603' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0010369882125964' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0010369741496817' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0010369600935534' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0010369460481082' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001000105520027' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0010340700336439' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0010363767799317' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0010368899768036' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0010368759845888' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0010368620029843' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0010368480319782' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0010368305869817' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0010368201217126' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0010368061785586' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0010367922536958' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0010354596815822' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0010354506881434' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0010354377698586' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0010354248573998' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0010354119543473' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001035399060691' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0010353861764205' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0010353733015257' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0010353604324237' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0010353475798219' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0010353347294253' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0010353218954981' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0010353090673281' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0010352909100296' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0010352834389215' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0010352706386646' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0010352578476917' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0010352440012696' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0010352312083278' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0010352195268327' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0010352067728979' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0010351940246579' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0010351812891832' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0010351685629221' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0010351558423335' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0010351431415298' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0010351304393212' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0010351177533387' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0010351050694729' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0010350924018032' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0010350786849983' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0010350670833304' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0010350544395446' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0010350418048732' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0010350291793064' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0010350165593309' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Open_files' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0010645087599383' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0010675699258284' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0010735006844286' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0010719839674586' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0010719564163069' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0010654416124303' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0010728410151404' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0010729355729402' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001071846429901' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0010715007162271' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0010718975872951' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0010729301434169' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0010716308392379' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001071815392496' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0010716821362081' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0010715489814696' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0010731064374715' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0010728693925601' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0010727359533712' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0010638310868807' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0010637011778802' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0010645217633175' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0010554190721623' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0010002110400539' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0010672962274452' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0010699066814339' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0010572321640124' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0010586854954742' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0010627707250819' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0010274781038466' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0010678735102948' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0010621734055204' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0010626756640597' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0010626519520078' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0010592683249302' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001060063594483' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0010605479610727' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0010590076910402' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0010596944373283' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0010602795433481' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0010587410528581' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0010598314128663' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001059304496665' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0010591819479304' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001060069040023' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0010602490617495' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0010590165839627' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0010568687807333' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0010556470236706' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0010565337951167' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0010565132930145' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0010279938067227' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0010562692727292' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0010559487340542' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0010581414706714' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0010558076676719' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0010570942064458' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0010573749983672' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0010580573624821' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0010579359790362' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0010579150385381' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0010579944612279' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0010581741151266' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0010589552350294' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0010585312915401' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0010568086749953' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0010573891253116' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0010578690377621' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0010588490212347' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0010586277250512' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Open_files' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0010645087599383' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0010675699258284' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0010735006844286' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0010719839674586' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0010719564163069' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0010654416124303' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0010728410151404' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0010729355729402' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001071846429901' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0010715007162271' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0010718975872951' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0010729301434169' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0010716308392379' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001071815392496' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0010716821362081' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0010715489814696' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0010731064374715' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0010728693925601' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0010727359533712' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0010638310868807' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0010637011778802' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0010645217633175' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0010554190721623' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0010002110400539' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0010672962274452' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0010699066814339' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0010572321640124' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0010586854954742' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0010627707250819' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0010274781038466' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0010678735102948' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0010621734055204' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0010626756640597' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0010626519520078' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0010592683249302' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001060063594483' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0010605479610727' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0010590076910402' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0010596944373283' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0010602795433481' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0010587410528581' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0010598314128663' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001059304496665' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0010591819479304' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001060069040023' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0010602490617495' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0010590165839627' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0010568687807333' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0010556470236706' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0010565337951167' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0010565132930145' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0010279938067227' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0010562692727292' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0010559487340542' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0010581414706714' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0010558076676719' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0010570942064458' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0010573749983672' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0010580573624821' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0010579359790362' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0010579150385381' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0010579944612279' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0010581741151266' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0010589552350294' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0010585312915401' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0010568086749953' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0010573891253116' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0010578690377621' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0010588490212347' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0010586277250512' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Slow_queries' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.28458902469674' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.28453649712397' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.28448565135807' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.28441587211394' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.28435373869915' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.28511444165716' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.28503026576034' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.28500602509408' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.28494420132452' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.28487937850389' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.2848507202484' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.28482334156801' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.28477775536076' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.28473265904541' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.28469629517708' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.28463794394899' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.28459097974476' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.28453755623978' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.28447241441394' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.28443073914919' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.28436998880106' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.28431221151987' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.28425680047435' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.28419380420168' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.28415151397525' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.28413038956263' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.28406627800792' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.28400505980653' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.28394020182684' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.28455718688227' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.28460993630308' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.28457490138519' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.28452598563528' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.28446591859956' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.28345591728371' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.28344707794664' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.28344925210105' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.28344714510062' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.28343603488098' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.28343413650768' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.28342789207176' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.28341649778442' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.28342498612608' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.28340736813232' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.28339939773468' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.28339138920813' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.28339031893974' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.28344726933055' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.28345189254318' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.28343195689162' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.28345414364329' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.28398697542829' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.28427089356612' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.28426884302546' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.2842804343188' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.28429158651647' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.28429421509036' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.28430588510732' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.2843073732549' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.28431577347695' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.2843627258009' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.28437779408133' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.28439831114526' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.28443591510807' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.28445110918301' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.28447288362638' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.28446091480069' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.28446056845817' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.28445942169827' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.28445314499227' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Slow_queries' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.28458902469674' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.28453649712397' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.28448565135807' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.28441587211394' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.28435373869915' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.28511444165716' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.28503026576034' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.28500602509408' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.28494420132452' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.28487937850389' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.2848507202484' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.28482334156801' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.28477775536076' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.28473265904541' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.28469629517708' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.28463794394899' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.28459097974476' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.28453755623978' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.28447241441394' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.28443073914919' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.28436998880106' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.28431221151987' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.28425680047435' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.28419380420168' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.28415151397525' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.28413038956263' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.28406627800792' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.28400505980653' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.28394020182684' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.28455718688227' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.28460993630308' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.28457490138519' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.28452598563528' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.28446591859956' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.28345591728371' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.28344707794664' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.28344925210105' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.28344714510062' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.28343603488098' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.28343413650768' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.28342789207176' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.28341649778442' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.28342498612608' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.28340736813232' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.28339939773468' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.28339138920813' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.28339031893974' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.28344726933055' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.28345189254318' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.28343195689162' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.28345414364329' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.28398697542829' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.28427089356612' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.28426884302546' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.2842804343188' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.28429158651647' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.28429421509036' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.28430588510732' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.2843073732549' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.28431577347695' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.2843627258009' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.28437779408133' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.28439831114526' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.28443591510807' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.28445110918301' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.28447288362638' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.28446091480069' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.28446056845817' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.28445942169827' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.28445314499227' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Server Uptime' xAxisName='' yAxisName='days' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='108.72769675926' color='ff6600' showName='0'/> <set name='09-10 01:00' value='108.76935185185' color='ff6600' showName='0'/> <set name='09-10 02:00' value='108.81103009259' color='ff6600' showName='0'/> <set name='09-10 03:00' value='108.85268518519' color='ff6600' showName='0'/> <set name='09-10 04:00' value='108.89436342593' color='ff6600' showName='0'/> <set name='09-10 05:15' value='108.94642361111' color='ff6600' showName='0'/> <set name='09-10 06:35' value='109.00197916667' color='ff6600' showName='0'/> <set name='09-10 07:00' value='109.01935185185' color='ff6600' showName='0'/> <set name='09-10 08:00' value='109.06106481481' color='ff6600' showName='0'/> <set name='09-10 09:00' value='109.1027662037' color='ff6600' showName='0'/> <set name='09-10 10:00' value='109.14444444444' color='ff6600' showName='0'/> <set name='09-10 11:00' value='109.18616898148' color='ff6600' showName='0'/> <set name='09-10 12:00' value='109.22773148148' color='ff6600' showName='0'/> <set name='09-10 13:00' value='109.26936342593' color='ff6600' showName='0'/> <set name='09-10 14:00' value='109.31103009259' color='ff6600' showName='0'/> <set name='09-10 15:00' value='109.35269675926' color='ff6600' showName='0'/> <set name='09-10 16:05' value='109.39782407407' color='ff6600' showName='0'/> <set name='09-10 17:00' value='109.43603009259' color='ff6600' showName='0'/> <set name='09-10 18:00' value='109.47767361111' color='ff6600' showName='0'/> <set name='09-10 19:00' value='109.519375' color='ff6600' showName='0'/> <set name='09-10 20:00' value='109.56103009259' color='ff6600' showName='0'/> <set name='09-10 21:00' value='109.60269675926' color='ff6600' showName='0'/> <set name='09-10 22:00' value='109.64436342593' color='ff6600' showName='0'/> <set name='09-10 23:00' value='109.68604166667' color='ff6600' showName='0'/> <set name='09-11 00:00' value='109.72768518519' color='ff6600' showName='0'/> <set name='09-11 01:00' value='109.76935185185' color='ff6600' showName='0'/> <set name='09-11 02:00' value='109.81101851852' color='ff6600' showName='0'/> <set name='09-11 03:00' value='109.85268518519' color='ff6600' showName='0'/> <set name='09-11 04:00' value='109.89435185185' color='ff6600' showName='0'/> <set name='09-11 05:00' value='109.93601851852' color='ff6600' showName='0'/> <set name='09-11 06:15' value='109.98809027778' color='ff6600' showName='0'/> <set name='09-11 07:00' value='110.01935185185' color='ff6600' showName='0'/> <set name='09-11 08:00' value='110.06103009259' color='ff6600' showName='0'/> <set name='09-11 09:00' value='110.10268518519' color='ff6600' showName='0'/> <set name='09-15 12:18' value='114.24033564815' color='ff6600' showName='0'/> <set name='09-15 13:00' value='114.26931712963' color='ff6600' showName='0'/> <set name='09-15 14:00' value='114.31097222222' color='ff6600' showName='0'/> <set name='09-15 15:00' value='114.35263888889' color='ff6600' showName='0'/> <set name='09-15 16:00' value='114.39430555556' color='ff6600' showName='0'/> <set name='09-15 17:00' value='114.43597222222' color='ff6600' showName='0'/> <set name='09-15 18:00' value='114.47763888889' color='ff6600' showName='0'/> <set name='09-15 19:00' value='114.51930555556' color='ff6600' showName='0'/> <set name='09-15 20:00' value='114.5609837963' color='ff6600' showName='0'/> <set name='09-15 21:00' value='114.60263888889' color='ff6600' showName='0'/> <set name='09-15 22:00' value='114.64431712963' color='ff6600' showName='0'/> <set name='09-15 23:00' value='114.68597222222' color='ff6600' showName='0'/> <set name='09-16 00:00' value='114.72763888889' color='ff6600' showName='0'/> <set name='09-16 01:25' value='114.78666666667' color='ff6600' showName='0'/> <set name='09-16 02:00' value='114.81097222222' color='ff6600' showName='0'/> <set name='09-16 03:00' value='114.85263888889' color='ff6600' showName='0'/> <set name='09-16 04:00' value='114.89430555556' color='ff6600' showName='0'/> <set name='09-16 05:05' value='114.93944444444' color='ff6600' showName='0'/> <set name='09-16 06:05' value='114.98118055556' color='ff6600' showName='0'/> <set name='09-16 07:00' value='115.01931712963' color='ff6600' showName='0'/> <set name='09-16 08:00' value='115.0609837963' color='ff6600' showName='0'/> <set name='09-16 09:00' value='115.10266203704' color='ff6600' showName='0'/> <set name='09-16 10:00' value='115.1443287037' color='ff6600' showName='0'/> <set name='09-16 11:00' value='115.18599537037' color='ff6600' showName='0'/> <set name='09-16 12:00' value='115.22767361111' color='ff6600' showName='0'/> <set name='09-16 13:00' value='115.26931712963' color='ff6600' showName='0'/> <set name='09-16 14:00' value='115.31099537037' color='ff6600' showName='0'/> <set name='09-16 15:00' value='115.35265046296' color='ff6600' showName='0'/> <set name='09-16 16:00' value='115.3943287037' color='ff6600' showName='0'/> <set name='09-16 17:00' value='115.4359837963' color='ff6600' showName='0'/> <set name='09-16 18:05' value='115.48112268519' color='ff6600' showName='0'/> <set name='09-16 19:00' value='115.5193287037' color='ff6600' showName='0'/> <set name='09-16 20:00' value='115.56099537037' color='ff6600' showName='0'/> <set name='09-16 21:00' value='115.60266203704' color='ff6600' showName='0'/> <set name='09-16 22:00' value='115.6443287037' color='ff6600' showName='0'/> <set name='09-16 23:00' value='115.68600694444' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Server Uptime' xAxisName='' yAxisName='days' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='108.72769675926' color='ff6600' showName='0'/> <set name='09-10 01:00' value='108.76935185185' color='ff6600' showName='0'/> <set name='09-10 02:00' value='108.81103009259' color='ff6600' showName='0'/> <set name='09-10 03:00' value='108.85268518519' color='ff6600' showName='0'/> <set name='09-10 04:00' value='108.89436342593' color='ff6600' showName='0'/> <set name='09-10 05:15' value='108.94642361111' color='ff6600' showName='0'/> <set name='09-10 06:35' value='109.00197916667' color='ff6600' showName='0'/> <set name='09-10 07:00' value='109.01935185185' color='ff6600' showName='0'/> <set name='09-10 08:00' value='109.06106481481' color='ff6600' showName='0'/> <set name='09-10 09:00' value='109.1027662037' color='ff6600' showName='0'/> <set name='09-10 10:00' value='109.14444444444' color='ff6600' showName='0'/> <set name='09-10 11:00' value='109.18616898148' color='ff6600' showName='0'/> <set name='09-10 12:00' value='109.22773148148' color='ff6600' showName='0'/> <set name='09-10 13:00' value='109.26936342593' color='ff6600' showName='0'/> <set name='09-10 14:00' value='109.31103009259' color='ff6600' showName='0'/> <set name='09-10 15:00' value='109.35269675926' color='ff6600' showName='0'/> <set name='09-10 16:05' value='109.39782407407' color='ff6600' showName='0'/> <set name='09-10 17:00' value='109.43603009259' color='ff6600' showName='0'/> <set name='09-10 18:00' value='109.47767361111' color='ff6600' showName='0'/> <set name='09-10 19:00' value='109.519375' color='ff6600' showName='0'/> <set name='09-10 20:00' value='109.56103009259' color='ff6600' showName='0'/> <set name='09-10 21:00' value='109.60269675926' color='ff6600' showName='0'/> <set name='09-10 22:00' value='109.64436342593' color='ff6600' showName='0'/> <set name='09-10 23:00' value='109.68604166667' color='ff6600' showName='0'/> <set name='09-11 00:00' value='109.72768518519' color='ff6600' showName='0'/> <set name='09-11 01:00' value='109.76935185185' color='ff6600' showName='0'/> <set name='09-11 02:00' value='109.81101851852' color='ff6600' showName='0'/> <set name='09-11 03:00' value='109.85268518519' color='ff6600' showName='0'/> <set name='09-11 04:00' value='109.89435185185' color='ff6600' showName='0'/> <set name='09-11 05:00' value='109.93601851852' color='ff6600' showName='0'/> <set name='09-11 06:15' value='109.98809027778' color='ff6600' showName='0'/> <set name='09-11 07:00' value='110.01935185185' color='ff6600' showName='0'/> <set name='09-11 08:00' value='110.06103009259' color='ff6600' showName='0'/> <set name='09-11 09:00' value='110.10268518519' color='ff6600' showName='0'/> <set name='09-15 12:18' value='114.24033564815' color='ff6600' showName='0'/> <set name='09-15 13:00' value='114.26931712963' color='ff6600' showName='0'/> <set name='09-15 14:00' value='114.31097222222' color='ff6600' showName='0'/> <set name='09-15 15:00' value='114.35263888889' color='ff6600' showName='0'/> <set name='09-15 16:00' value='114.39430555556' color='ff6600' showName='0'/> <set name='09-15 17:00' value='114.43597222222' color='ff6600' showName='0'/> <set name='09-15 18:00' value='114.47763888889' color='ff6600' showName='0'/> <set name='09-15 19:00' value='114.51930555556' color='ff6600' showName='0'/> <set name='09-15 20:00' value='114.5609837963' color='ff6600' showName='0'/> <set name='09-15 21:00' value='114.60263888889' color='ff6600' showName='0'/> <set name='09-15 22:00' value='114.64431712963' color='ff6600' showName='0'/> <set name='09-15 23:00' value='114.68597222222' color='ff6600' showName='0'/> <set name='09-16 00:00' value='114.72763888889' color='ff6600' showName='0'/> <set name='09-16 01:25' value='114.78666666667' color='ff6600' showName='0'/> <set name='09-16 02:00' value='114.81097222222' color='ff6600' showName='0'/> <set name='09-16 03:00' value='114.85263888889' color='ff6600' showName='0'/> <set name='09-16 04:00' value='114.89430555556' color='ff6600' showName='0'/> <set name='09-16 05:05' value='114.93944444444' color='ff6600' showName='0'/> <set name='09-16 06:05' value='114.98118055556' color='ff6600' showName='0'/> <set name='09-16 07:00' value='115.01931712963' color='ff6600' showName='0'/> <set name='09-16 08:00' value='115.0609837963' color='ff6600' showName='0'/> <set name='09-16 09:00' value='115.10266203704' color='ff6600' showName='0'/> <set name='09-16 10:00' value='115.1443287037' color='ff6600' showName='0'/> <set name='09-16 11:00' value='115.18599537037' color='ff6600' showName='0'/> <set name='09-16 12:00' value='115.22767361111' color='ff6600' showName='0'/> <set name='09-16 13:00' value='115.26931712963' color='ff6600' showName='0'/> <set name='09-16 14:00' value='115.31099537037' color='ff6600' showName='0'/> <set name='09-16 15:00' value='115.35265046296' color='ff6600' showName='0'/> <set name='09-16 16:00' value='115.3943287037' color='ff6600' showName='0'/> <set name='09-16 17:00' value='115.4359837963' color='ff6600' showName='0'/> <set name='09-16 18:05' value='115.48112268519' color='ff6600' showName='0'/> <set name='09-16 19:00' value='115.5193287037' color='ff6600' showName='0'/> <set name='09-16 20:00' value='115.56099537037' color='ff6600' showName='0'/> <set name='09-16 21:00' value='115.60266203704' color='ff6600' showName='0'/> <set name='09-16 22:00' value='115.6443287037' color='ff6600' showName='0'/> <set name='09-16 23:00' value='115.68600694444' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Table_locks_immediate' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='5.812051918268' color='ff6600' showName='0'/> <set name='09-10 01:00' value='5.8108809288088' color='ff6600' showName='0'/> <set name='09-10 02:00' value='5.8098638343977' color='ff6600' showName='0'/> <set name='09-10 03:00' value='5.8084799027568' color='ff6600' showName='0'/> <set name='09-10 04:00' value='5.8071817817833' color='ff6600' showName='0'/> <set name='09-10 05:15' value='5.8074627022648' color='ff6600' showName='0'/> <set name='09-10 06:35' value='5.8062138057933' color='ff6600' showName='0'/> <set name='09-10 07:00' value='5.8057001645138' color='ff6600' showName='0'/> <set name='09-10 08:00' value='5.8046593205726' color='ff6600' showName='0'/> <set name='09-10 09:00' value='5.8036527742755' color='ff6600' showName='0'/> <set name='09-10 10:00' value='5.8033479037293' color='ff6600' showName='0'/> <set name='09-10 11:00' value='5.8029319401697' color='ff6600' showName='0'/> <set name='09-10 12:00' value='5.8019878829442' color='ff6600' showName='0'/> <set name='09-10 13:00' value='5.8009905439889' color='ff6600' showName='0'/> <set name='09-10 14:00' value='5.7999016991207' color='ff6600' showName='0'/> <set name='09-10 15:00' value='5.7987187440233' color='ff6600' showName='0'/> <set name='09-10 16:05' value='5.798144662299' color='ff6600' showName='0'/> <set name='09-10 17:00' value='5.7969624991261' color='ff6600' showName='0'/> <set name='09-10 18:00' value='5.7958337733964' color='ff6600' showName='0'/> <set name='09-10 19:00' value='5.7947773489259' color='ff6600' showName='0'/> <set name='09-10 20:00' value='5.7936477988285' color='ff6600' showName='0'/> <set name='09-10 21:00' value='5.7926325439115' color='ff6600' showName='0'/> <set name='09-10 22:00' value='5.7915635915908' color='ff6600' showName='0'/> <set name='09-10 23:00' value='5.7902250256783' color='ff6600' showName='0'/> <set name='09-11 00:00' value='5.7891494220963' color='ff6600' showName='0'/> <set name='09-11 01:00' value='5.7881998365259' color='ff6600' showName='0'/> <set name='09-11 02:00' value='5.7871542144374' color='ff6600' showName='0'/> <set name='09-11 03:00' value='5.7860115061501' color='ff6600' showName='0'/> <set name='09-11 04:00' value='5.7847183195308' color='ff6600' showName='0'/> <set name='09-11 05:00' value='5.7849182479035' color='ff6600' showName='0'/> <set name='09-11 06:15' value='5.7835631614576' color='ff6600' showName='0'/> <set name='09-11 07:00' value='5.7828762658758' color='ff6600' showName='0'/> <set name='09-11 08:00' value='5.7818547222275' color='ff6600' showName='0'/> <set name='09-11 09:00' value='5.7805625893001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='5.7259667702258' color='ff6600' showName='0'/> <set name='09-15 13:00' value='5.7263777124967' color='ff6600' showName='0'/> <set name='09-15 14:00' value='5.7272009588853' color='ff6600' showName='0'/> <set name='09-15 15:00' value='5.7276461052697' color='ff6600' showName='0'/> <set name='09-15 16:00' value='5.7282229633776' color='ff6600' showName='0'/> <set name='09-15 17:00' value='5.7290999900074' color='ff6600' showName='0'/> <set name='09-15 18:00' value='5.7297513221287' color='ff6600' showName='0'/> <set name='09-15 19:00' value='5.7303139491684' color='ff6600' showName='0'/> <set name='09-15 20:00' value='5.7305370370726' color='ff6600' showName='0'/> <set name='09-15 21:00' value='5.7309015006361' color='ff6600' showName='0'/> <set name='09-15 22:00' value='5.7309848929898' color='ff6600' showName='0'/> <set name='09-15 23:00' value='5.7316239352467' color='ff6600' showName='0'/> <set name='09-16 00:00' value='5.7320877101444' color='ff6600' showName='0'/> <set name='09-16 01:25' value='5.7335349755101' color='ff6600' showName='0'/> <set name='09-16 02:00' value='5.7342066286896' color='ff6600' showName='0'/> <set name='09-16 03:00' value='5.7345595221252' color='ff6600' showName='0'/> <set name='09-16 04:00' value='5.7355212137403' color='ff6600' showName='0'/> <set name='09-16 05:05' value='5.7376132440109' color='ff6600' showName='0'/> <set name='09-16 06:05' value='5.7388212885885' color='ff6600' showName='0'/> <set name='09-16 07:00' value='5.7390600351048' color='ff6600' showName='0'/> <set name='09-16 08:00' value='5.7396330388002' color='ff6600' showName='0'/> <set name='09-16 09:00' value='5.740357490847' color='ff6600' showName='0'/> <set name='09-16 10:00' value='5.7406282574104' color='ff6600' showName='0'/> <set name='09-16 11:00' value='5.7407010802778' color='ff6600' showName='0'/> <set name='09-16 12:00' value='5.7411918292599' color='ff6600' showName='0'/> <set name='09-16 13:00' value='5.7418176976644' color='ff6600' showName='0'/> <set name='09-16 14:00' value='5.7419451423134' color='ff6600' showName='0'/> <set name='09-16 15:00' value='5.742303517926' color='ff6600' showName='0'/> <set name='09-16 16:00' value='5.7429299894584' color='ff6600' showName='0'/> <set name='09-16 17:00' value='5.743753176489' color='ff6600' showName='0'/> <set name='09-16 18:05' value='5.7440160022947' color='ff6600' showName='0'/> <set name='09-16 19:00' value='5.7444057481963' color='ff6600' showName='0'/> <set name='09-16 20:00' value='5.7440791549276' color='ff6600' showName='0'/> <set name='09-16 21:00' value='5.7442370748303' color='ff6600' showName='0'/> <set name='09-16 22:00' value='5.7441250561718' color='ff6600' showName='0'/> <set name='09-16 23:00' value='5.7440680697902' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Table_locks_immediate' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='5.812051918268' color='ff6600' showName='0'/> <set name='09-10 01:00' value='5.8108809288088' color='ff6600' showName='0'/> <set name='09-10 02:00' value='5.8098638343977' color='ff6600' showName='0'/> <set name='09-10 03:00' value='5.8084799027568' color='ff6600' showName='0'/> <set name='09-10 04:00' value='5.8071817817833' color='ff6600' showName='0'/> <set name='09-10 05:15' value='5.8074627022648' color='ff6600' showName='0'/> <set name='09-10 06:35' value='5.8062138057933' color='ff6600' showName='0'/> <set name='09-10 07:00' value='5.8057001645138' color='ff6600' showName='0'/> <set name='09-10 08:00' value='5.8046593205726' color='ff6600' showName='0'/> <set name='09-10 09:00' value='5.8036527742755' color='ff6600' showName='0'/> <set name='09-10 10:00' value='5.8033479037293' color='ff6600' showName='0'/> <set name='09-10 11:00' value='5.8029319401697' color='ff6600' showName='0'/> <set name='09-10 12:00' value='5.8019878829442' color='ff6600' showName='0'/> <set name='09-10 13:00' value='5.8009905439889' color='ff6600' showName='0'/> <set name='09-10 14:00' value='5.7999016991207' color='ff6600' showName='0'/> <set name='09-10 15:00' value='5.7987187440233' color='ff6600' showName='0'/> <set name='09-10 16:05' value='5.798144662299' color='ff6600' showName='0'/> <set name='09-10 17:00' value='5.7969624991261' color='ff6600' showName='0'/> <set name='09-10 18:00' value='5.7958337733964' color='ff6600' showName='0'/> <set name='09-10 19:00' value='5.7947773489259' color='ff6600' showName='0'/> <set name='09-10 20:00' value='5.7936477988285' color='ff6600' showName='0'/> <set name='09-10 21:00' value='5.7926325439115' color='ff6600' showName='0'/> <set name='09-10 22:00' value='5.7915635915908' color='ff6600' showName='0'/> <set name='09-10 23:00' value='5.7902250256783' color='ff6600' showName='0'/> <set name='09-11 00:00' value='5.7891494220963' color='ff6600' showName='0'/> <set name='09-11 01:00' value='5.7881998365259' color='ff6600' showName='0'/> <set name='09-11 02:00' value='5.7871542144374' color='ff6600' showName='0'/> <set name='09-11 03:00' value='5.7860115061501' color='ff6600' showName='0'/> <set name='09-11 04:00' value='5.7847183195308' color='ff6600' showName='0'/> <set name='09-11 05:00' value='5.7849182479035' color='ff6600' showName='0'/> <set name='09-11 06:15' value='5.7835631614576' color='ff6600' showName='0'/> <set name='09-11 07:00' value='5.7828762658758' color='ff6600' showName='0'/> <set name='09-11 08:00' value='5.7818547222275' color='ff6600' showName='0'/> <set name='09-11 09:00' value='5.7805625893001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='5.7259667702258' color='ff6600' showName='0'/> <set name='09-15 13:00' value='5.7263777124967' color='ff6600' showName='0'/> <set name='09-15 14:00' value='5.7272009588853' color='ff6600' showName='0'/> <set name='09-15 15:00' value='5.7276461052697' color='ff6600' showName='0'/> <set name='09-15 16:00' value='5.7282229633776' color='ff6600' showName='0'/> <set name='09-15 17:00' value='5.7290999900074' color='ff6600' showName='0'/> <set name='09-15 18:00' value='5.7297513221287' color='ff6600' showName='0'/> <set name='09-15 19:00' value='5.7303139491684' color='ff6600' showName='0'/> <set name='09-15 20:00' value='5.7305370370726' color='ff6600' showName='0'/> <set name='09-15 21:00' value='5.7309015006361' color='ff6600' showName='0'/> <set name='09-15 22:00' value='5.7309848929898' color='ff6600' showName='0'/> <set name='09-15 23:00' value='5.7316239352467' color='ff6600' showName='0'/> <set name='09-16 00:00' value='5.7320877101444' color='ff6600' showName='0'/> <set name='09-16 01:25' value='5.7335349755101' color='ff6600' showName='0'/> <set name='09-16 02:00' value='5.7342066286896' color='ff6600' showName='0'/> <set name='09-16 03:00' value='5.7345595221252' color='ff6600' showName='0'/> <set name='09-16 04:00' value='5.7355212137403' color='ff6600' showName='0'/> <set name='09-16 05:05' value='5.7376132440109' color='ff6600' showName='0'/> <set name='09-16 06:05' value='5.7388212885885' color='ff6600' showName='0'/> <set name='09-16 07:00' value='5.7390600351048' color='ff6600' showName='0'/> <set name='09-16 08:00' value='5.7396330388002' color='ff6600' showName='0'/> <set name='09-16 09:00' value='5.740357490847' color='ff6600' showName='0'/> <set name='09-16 10:00' value='5.7406282574104' color='ff6600' showName='0'/> <set name='09-16 11:00' value='5.7407010802778' color='ff6600' showName='0'/> <set name='09-16 12:00' value='5.7411918292599' color='ff6600' showName='0'/> <set name='09-16 13:00' value='5.7418176976644' color='ff6600' showName='0'/> <set name='09-16 14:00' value='5.7419451423134' color='ff6600' showName='0'/> <set name='09-16 15:00' value='5.742303517926' color='ff6600' showName='0'/> <set name='09-16 16:00' value='5.7429299894584' color='ff6600' showName='0'/> <set name='09-16 17:00' value='5.743753176489' color='ff6600' showName='0'/> <set name='09-16 18:05' value='5.7440160022947' color='ff6600' showName='0'/> <set name='09-16 19:00' value='5.7444057481963' color='ff6600' showName='0'/> <set name='09-16 20:00' value='5.7440791549276' color='ff6600' showName='0'/> <set name='09-16 21:00' value='5.7442370748303' color='ff6600' showName='0'/> <set name='09-16 22:00' value='5.7441250561718' color='ff6600' showName='0'/> <set name='09-16 23:00' value='5.7440680697902' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Table_locks_waited' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0014289938985997' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0014288296080136' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001428665352022' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0014285013129365' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0014283373082965' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0014281326267764' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0014279144183905' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0014278462284559' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0014276825886279' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0014275191192809' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0014273558654858' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0014271925551892' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0014270300031492' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0014268673034792' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0014267045921991' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0014265420049147' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0014265776496164' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0014264287239512' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0014262665174311' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0014261042091106' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0014259422043333' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001425780277735' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0014261462748936' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0014259843488475' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0014258226805585' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0014256610451713' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0014258157322471' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0014256542221106' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0014254928344479' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0014253315691197' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0014251302040172' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0014250094049111' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0014248484610758' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0014246877283748' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0014108257394737' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0014107215440618' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0014105718765048' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0014104222764459' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0014103739623791' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0014102245433218' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0014100752330331' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0014099260313945' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0014097768968877' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0014096279535933' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0014095799922243' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0014094312286731' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0014092825318579' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0014090720628283' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0014089854620134' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0014088370887494' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0014086888231011' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0014085283232878' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0014084806954117' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0014083452568203' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0014081973840563' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0014080495773198' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0014079019185865' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0014077543666795' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0014076068805407' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0014074596237937' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0014075130961259' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0014073659387292' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001407218805886' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001407071860917' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0014069127459805' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0014067781666328' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0014066314987175' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0014065850559718' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0014065386466927' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0014064922301757' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Table_locks_waited' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0014289938985997' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0014288296080136' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001428665352022' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0014285013129365' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0014283373082965' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0014281326267764' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0014279144183905' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0014278462284559' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0014276825886279' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0014275191192809' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0014273558654858' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0014271925551892' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0014270300031492' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0014268673034792' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0014267045921991' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0014265420049147' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0014265776496164' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0014264287239512' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0014262665174311' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0014261042091106' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0014259422043333' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001425780277735' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0014261462748936' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0014259843488475' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0014258226805585' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0014256610451713' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0014258157322471' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0014256542221106' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0014254928344479' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0014253315691197' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0014251302040172' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0014250094049111' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0014248484610758' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0014246877283748' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0014108257394737' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0014107215440618' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0014105718765048' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0014104222764459' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0014103739623791' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0014102245433218' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0014100752330331' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0014099260313945' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0014097768968877' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0014096279535933' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0014095799922243' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0014094312286731' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0014092825318579' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0014090720628283' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0014089854620134' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0014088370887494' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0014086888231011' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0014085283232878' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0014084806954117' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0014083452568203' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0014081973840563' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0014080495773198' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0014079019185865' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0014077543666795' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0014076068805407' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0014074596237937' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0014075130961259' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0014073659387292' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001407218805886' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001407071860917' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0014069127459805' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0014067781666328' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0014066314987175' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0014065850559718' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0014065386466927' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0014064922301757' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Threads_cached' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0010002129001978' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0010007448653241' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0010007445800159' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0010008506229537' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0010008502973862' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0010008498910705' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0010013803690916' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0010012739838068' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0010013796212536' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0010013790939332' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0010011664800299' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0010012720373852' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0010012715533593' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0010011651464859' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0010012705843936' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0010011642585742' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0010013753743663' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0010013748941992' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001001374371212' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0010013738478964' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0010013733255596' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0010013728034748' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0010013722817869' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001000105520027' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0010011602797835' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0010010543994183' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001001159399271' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0010011589595156' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0010009478800767' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001001158081005' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0010010523024852' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0010011572038253' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0010011567656118' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001001366569423' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0010015197006392' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0010015193152061' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0010011137584813' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0010013157804177' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0010013153011615' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0010013148222542' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0010016176537792' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.00100192026494' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0010018185365246' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0010016158893633' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0010015143455468' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0010017156349242' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0010011097135446' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0010016132987442' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0010017137670333' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0010018139185599' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0010018132607384' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0010016111543438' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001001811890714' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0010011068994147' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001001710043255' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001001809978411' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0010017088054746' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0010014067425169' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0010015066789571' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001001506134637' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0010013048448891' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0010017057194479' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0010017051033744' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0010017044880876' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0010017038218428' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0010018034499998' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001001802799748' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0010017020305224' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.00100180150065' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0010017008043104' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Threads_cached' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0010002129001978' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0010007448653241' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0010007445800159' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0010008506229537' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0010008502973862' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0010008498910705' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0010013803690916' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0010012739838068' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0010013796212536' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0010013790939332' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0010011664800299' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0010012720373852' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0010012715533593' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0010011651464859' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0010012705843936' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0010011642585742' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0010013753743663' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0010013748941992' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001001374371212' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0010013738478964' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0010013733255596' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0010013728034748' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0010013722817869' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001000105520027' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0010011602797835' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0010010543994183' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001001159399271' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0010011589595156' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0010009478800767' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001001158081005' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0010010523024852' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0010011572038253' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0010011567656118' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001001366569423' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0010015197006392' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0010015193152061' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0010011137584813' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0010013157804177' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0010013153011615' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0010013148222542' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0010016176537792' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.00100192026494' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0010018185365246' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0010016158893633' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0010015143455468' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0010017156349242' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0010011097135446' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0010016132987442' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0010017137670333' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0010018139185599' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0010018132607384' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0010016111543438' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001001811890714' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0010011068994147' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001001710043255' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001001809978411' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0010017088054746' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0010014067425169' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0010015066789571' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001001506134637' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0010013048448891' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0010017057194479' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0010017051033744' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0010017044880876' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0010017038218428' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0010018034499998' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001001802799748' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0010017020305224' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.00100180150065' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0010017008043104' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Threads_created' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001133169073734' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0011337565303407' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0011337052971443' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0011336541316033' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0011336029768061' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0011335391344561' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0011340019841213' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0011339806303502' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0011339293863148' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0011338781956656' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0011338270725169' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0011337759316746' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0011337250282815' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0011336740786578' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0011336231253983' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0011335722109683' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0011335171115615' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0011334704984192' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0011334197284221' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0011333689265619' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0011333182197095' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0011332675373268' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0011332168934644' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0011331662740266' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0011341705349691' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0011341196060089' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0011340687156976' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0011340178639913' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001133967050846' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0011339162762179' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0011338528761163' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0011338148423383' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0011339744899531' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0011339238034528' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0011340375963807' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0011340036011822' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0011339547700656' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0011339059609711' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0011338571874328' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0011338084494119' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0011337597468695' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001133711079767' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0011336624345617' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0011336138517268' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0011335652772277' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0011335167649826' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0011346788710945' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0011353154321705' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0011352867858078' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0011352377059654' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0011351886617209' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0011351355705823' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0011350865187882' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0011350417285985' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0011349928263685' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0011349439459742' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0011348951145251' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0011348463184041' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0011347975440329' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0011347488455227' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0011347001416259' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0011346514999445' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0011346028663791' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0011345542949139' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001134501700765' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0011344572166555' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0011344087367682' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0011343602918282' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0011343118817975' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0011342634932059' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Threads_created' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001133169073734' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0011337565303407' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0011337052971443' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0011336541316033' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0011336029768061' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0011335391344561' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0011340019841213' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0011339806303502' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0011339293863148' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0011338781956656' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0011338270725169' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0011337759316746' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0011337250282815' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0011336740786578' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0011336231253983' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0011335722109683' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0011335171115615' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0011334704984192' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0011334197284221' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0011333689265619' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.0011333182197095' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0011332675373268' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0011332168934644' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0011331662740266' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0011341705349691' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0011341196060089' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0011340687156976' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0011340178639913' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001133967050846' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0011339162762179' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0011338528761163' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.0011338148423383' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0011339744899531' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0011339238034528' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0011340375963807' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0011340036011822' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0011339547700656' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0011339059609711' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0011338571874328' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0011338084494119' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0011337597468695' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001133711079767' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0011336624345617' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.0011336138517268' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0011335652772277' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0011335167649826' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0011346788710945' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.0011353154321705' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0011352867858078' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.0011352377059654' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0011351886617209' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0011351355705823' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0011350865187882' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0011350417285985' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0011349928263685' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0011349439459742' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0011348951145251' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0011348463184041' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0011347975440329' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0011347488455227' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0011347001416259' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0011346514999445' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0011346028663791' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0011345542949139' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001134501700765' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0011344572166555' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.0011344087367682' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0011343602918282' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0011343118817975' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0011342634932059' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Seconds_Behind_Master' xAxisName='' yAxisName='seconds' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.001' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.001' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Seconds_Behind_Master' xAxisName='' yAxisName='seconds' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.001' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.001' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Key_reads' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2.7031676249482' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2.7036011684596' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2.7037587356521' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2.7033289767261' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2.7032381343923' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2.7043862134495' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2.7044312290031' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2.7044850175258' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2.7049279858931' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2.7054517386609' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2.7054834105331' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2.706317626675' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2.7068534394883' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2.7072370319991' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2.7074055905502' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2.7075985759212' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2.7075424049077' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2.7071538812259' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2.7067149980161' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2.7065646891077' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2.7062478812492' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2.7058139177562' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2.7055081174162' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2.7050593898368' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2.7046937114523' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2.7051083121258' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2.7044097856671' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2.7042127756954' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2.7038071708602' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2.7044249854082' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2.7051727296653' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2.7049314346214' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2.7051022722768' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2.7050594184385' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2.7061223166519' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2.7066613564912' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2.7076589525729' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2.7080281228834' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2.7076862557504' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2.7076823446072' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2.7084130533336' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2.7081820872027' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2.7087103555249' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2.7088164337564' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2.708725426841' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2.7083715314403' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2.7090238273657' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2.7106795738633' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2.7105593654949' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2.7103374614089' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2.7104235696496' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2.711666408882' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2.7120449662958' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2.7120647709236' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2.7124964629767' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2.7130554748328' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2.7138524818389' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2.7139074584483' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2.7141737608645' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2.7150606133844' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2.715527955298' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2.716292500383' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2.716981826607' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2.71792837721' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2.7192526556318' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2.719679046015' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2.7198678547785' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2.7198364649026' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2.7201034461707' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2.720219291703' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Key_reads' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2.7031676249482' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2.7036011684596' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2.7037587356521' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2.7033289767261' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2.7032381343923' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2.7043862134495' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2.7044312290031' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2.7044850175258' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2.7049279858931' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2.7054517386609' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2.7054834105331' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2.706317626675' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2.7068534394883' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2.7072370319991' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2.7074055905502' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2.7075985759212' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2.7075424049077' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2.7071538812259' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2.7067149980161' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2.7065646891077' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2.7062478812492' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2.7058139177562' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2.7055081174162' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2.7050593898368' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2.7046937114523' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2.7051083121258' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2.7044097856671' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2.7042127756954' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2.7038071708602' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2.7044249854082' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2.7051727296653' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2.7049314346214' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2.7051022722768' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2.7050594184385' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2.7061223166519' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2.7066613564912' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2.7076589525729' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2.7080281228834' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2.7076862557504' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2.7076823446072' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2.7084130533336' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2.7081820872027' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2.7087103555249' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2.7088164337564' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2.708725426841' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2.7083715314403' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2.7090238273657' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2.7106795738633' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2.7105593654949' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2.7103374614089' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2.7104235696496' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2.711666408882' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2.7120449662958' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2.7120647709236' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2.7124964629767' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2.7130554748328' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2.7138524818389' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2.7139074584483' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2.7141737608645' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2.7150606133844' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2.715527955298' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2.716292500383' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2.716981826607' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2.71792837721' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2.7192526556318' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2.719679046015' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2.7198678547785' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2.7198364649026' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2.7201034461707' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2.720219291703' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Key_writes' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.5736706538261' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.5735981208963' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.5735362647165' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.5736407683167' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.5736235837633' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.5737077061004' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.5736812882794' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.5735453865224' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.5735242615949' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.5735469203294' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.573605844277' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.5737012630801' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.573698914814' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.5737157993758' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.5736638772751' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.5737072522619' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.5738075610042' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.5737116210182' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.5736204669669' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.57350096814' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.5734589200823' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.5733174735812' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.5732907728934' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.5731861582205' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.5730670371686' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.5730420435442' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.573455848811' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.5735687482141' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.5737471763706' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.5739138884654' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.5737881342582' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.5737021012297' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.5737571105593' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.5737302047163' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.5675162975229' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.5677377062331' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.5677450683787' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.5677663352115' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.5676914683901' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.5676962534039' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.5677395553151' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.5676433538418' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.567654761752' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.5679034077895' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.5678140593658' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.5677404321059' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.5677735353093' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.5677607655425' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.5680669957906' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.5686885610668' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.5686244644333' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.5685994275569' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.5685604347088' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.5684055284997' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.5686034650104' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.5686762119565' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.5689287900552' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.5688480888901' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.568782053967' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.5688006820581' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.5687119273864' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.568697298913' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.5687242918054' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.5686538223797' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.5687702084546' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.5686288870609' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.5686041422329' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.5684810979499' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.5688179253318' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.5687726725969' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Key_writes' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.5736706538261' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.5735981208963' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.5735362647165' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.5736407683167' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.5736235837633' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.5737077061004' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.5736812882794' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.5735453865224' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.5735242615949' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.5735469203294' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.573605844277' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.5737012630801' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.573698914814' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.5737157993758' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.5736638772751' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.5737072522619' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.5738075610042' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.5737116210182' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.5736204669669' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.57350096814' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.5734589200823' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.5733174735812' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.5732907728934' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.5731861582205' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.5730670371686' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.5730420435442' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.573455848811' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.5735687482141' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.5737471763706' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.5739138884654' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.5737881342582' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.5737021012297' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.5737571105593' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.5737302047163' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.5675162975229' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.5677377062331' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.5677450683787' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.5677663352115' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.5676914683901' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.5676962534039' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.5677395553151' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.5676433538418' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.567654761752' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.5679034077895' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.5678140593658' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.5677404321059' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.5677735353093' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.5677607655425' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.5680669957906' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.5686885610668' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.5686244644333' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.5685994275569' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.5685604347088' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.5684055284997' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.5686034650104' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.5686762119565' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.5689287900552' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.5688480888901' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.568782053967' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.5688006820581' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.5687119273864' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.568697298913' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.5687242918054' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.5686538223797' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.5687702084546' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.5686288870609' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.5686041422329' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.5684810979499' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.5688179253318' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.5687726725969' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_data_reads' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.54183665306838' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.54181095828839' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.54178559361057' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.5417396294176' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.54166945826384' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.54282744215402' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.54274623698113' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.54272806560847' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.54271847321349' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.54268507668664' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.5426187349418' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.54275234810151' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.54275336188112' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.54280487334169' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.54279793832859' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.54278116532334' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.54271965384578' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.54272333257855' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.54269509236356' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.54291990382219' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.54293634467007' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.54301523114895' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.54309215758904' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.5430295764194' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.54295202517343' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.54282791948437' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.54288656606173' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.542881214657' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.54279698262388' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.54395564591863' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.54395482960013' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.54390185901639' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.54385758753587' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.54382071702426' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.56456183383289' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.56490731002305' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.56568516882756' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.56644924589588' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.56705381726703' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.56771944160915' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.56837598762818' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.56900870951324' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.56966010936072' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.57056807681292' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.5712114702791' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.5716504516964' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.57236567805313' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.57326005407777' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.57362551528942' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.57415876181113' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.5748757682685' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.57685566393254' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.57764931881969' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.57811360682269' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.57888055025973' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.57966729278512' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.58041231164189' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.5812799819535' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.58211884171343' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.58298859775753' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.5838777249929' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.58453515171722' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.58545136292925' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.58629774749894' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.58696618074002' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.5877777057511' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.58835946925575' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.58902751682758' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.58988624223979' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.5905479972479' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_data_reads' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.54183665306838' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.54181095828839' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.54178559361057' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.5417396294176' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.54166945826384' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.54282744215402' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.54274623698113' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.54272806560847' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.54271847321349' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.54268507668664' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.5426187349418' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.54275234810151' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.54275336188112' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.54280487334169' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.54279793832859' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.54278116532334' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.54271965384578' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.54272333257855' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.54269509236356' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.54291990382219' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.54293634467007' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.54301523114895' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.54309215758904' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.5430295764194' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.54295202517343' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.54282791948437' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.54288656606173' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.542881214657' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.54279698262388' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.54395564591863' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.54395482960013' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.54390185901639' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.54385758753587' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.54382071702426' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.56456183383289' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.56490731002305' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.56568516882756' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.56644924589588' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.56705381726703' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.56771944160915' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.56837598762818' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.56900870951324' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.56966010936072' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.57056807681292' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.5712114702791' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.5716504516964' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.57236567805313' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.57326005407777' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.57362551528942' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.57415876181113' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.5748757682685' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.57685566393254' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.57764931881969' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.57811360682269' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.57888055025973' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.57966729278512' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.58041231164189' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.5812799819535' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.58211884171343' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.58298859775753' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.5838777249929' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.58453515171722' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.58545136292925' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.58629774749894' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.58696618074002' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.5877777057511' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.58835946925575' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.58902751682758' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.58988624223979' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.5905479972479' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_data_writes' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.19228028917808' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.19221256838928' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.19213996583229' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.19207054301217' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.19200240814848' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.19193164103023' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.19189782497366' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.19189872338329' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.19189479687518' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.19189492481763' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.19192330075673' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.19198560106682' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.19206668068201' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.19214800082577' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.19222993945771' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.19229075315146' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.19238048652704' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.19243487448749' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.19250858490405' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.19258097554614' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.19267293554571' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.19273766612638' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.19283084874678' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.19290948407671' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.19300710681915' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.19309934298263' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.19315735957145' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.19310512563543' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.19304461102793' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.19298129972905' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.19289461906176' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.19284503736296' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.19277796241626' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.1927054071578' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.19244854318964' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.19246633060765' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.19251806091003' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.19255455205369' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.19261469203539' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.19268682390323' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.19276608160174' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.19282072244814' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.19286651456966' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.19291211016164' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.19294975926449' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.19299115378265' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.19304652161298' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.19315033363018' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.19320119060436' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.19323747660549' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.19330536761444' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.1933751516499' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.19344332858819' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.19347883985671' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.19353598308224' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.19359477499454' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.19363685772787' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.19366785703879' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.19371528759839' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.19376746114599' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.19379575062206' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.19384954380533' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.19393836452502' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.19403327591882' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.19407067683521' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.19411001946724' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.19410709531903' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.19414932714729' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.19418282129013' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.19419045976842' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_data_writes' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.19228028917808' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.19221256838928' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.19213996583229' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.19207054301217' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.19200240814848' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.19193164103023' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.19189782497366' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.19189872338329' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.19189479687518' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.19189492481763' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.19192330075673' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.19198560106682' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.19206668068201' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.19214800082577' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.19222993945771' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.19229075315146' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.19238048652704' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.19243487448749' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.19250858490405' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.19258097554614' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.19267293554571' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.19273766612638' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.19283084874678' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.19290948407671' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.19300710681915' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.19309934298263' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.19315735957145' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.19310512563543' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.19304461102793' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.19298129972905' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.19289461906176' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.19284503736296' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.19277796241626' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.1927054071578' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.19244854318964' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.19246633060765' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.19251806091003' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.19255455205369' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.19261469203539' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.19268682390323' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.19276608160174' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.19282072244814' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.19286651456966' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.19291211016164' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.19294975926449' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.19299115378265' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.19304652161298' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.19315033363018' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.19320119060436' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.19323747660549' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.19330536761444' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.1933751516499' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.19344332858819' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.19347883985671' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.19353598308224' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.19359477499454' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.19363685772787' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.19366785703879' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.19371528759839' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.19376746114599' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.19379575062206' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.19384954380533' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.19393836452502' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.19403327591882' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.19407067683521' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.19411001946724' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.19410709531903' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.19414932714729' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.19418282129013' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.19419045976842' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_reads' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.49956457364127' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.4995464485247' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.49953301781578' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.49949588596208' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.49943093560453' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.50045888497904' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.50037655099067' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.50035674434287' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.50034743914703' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.50031591636708' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.50024762038074' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.5003944572031' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.50039675389381' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.50044724391484' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.50044660755555' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.50044015038834' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.50038679462868' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.50039213812229' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.50036551624396' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.50058224455888' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.50059206948858' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.5006759655798' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.50074850297252' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.50068428407933' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.50060170759431' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.50049156860049' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.50054899368359' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.50054231635128' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.50046202539645' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.50149092106604' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.50150789379448' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.50144910028455' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.50141575207695' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.50136729181261' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.5213074050453' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.52163488333533' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.52238689661122' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.52312251980452' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.52370189569298' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.52434133149825' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.52497494335179' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.52558414136061' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.5262101192667' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.52708913972878' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.52771350974921' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.52813619759593' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.52882566359861' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.52968606497077' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.53003988318964' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.53055488050912' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.53124659943096' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.53306207213782' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.53381676329077' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.53426449089822' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.53500959173321' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.5357587248501' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.5364602265474' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.53728963622643' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.53808574740969' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.53891407783041' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.53976122041139' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.54038551356554' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.54125999817454' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.54206477766607' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.54270329466025' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.54348146704646' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.54403252951834' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.54467250129404' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.54549716613939' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.54613629495388' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_reads' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.49956457364127' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.4995464485247' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.49953301781578' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.49949588596208' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.49943093560453' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.50045888497904' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.50037655099067' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.50035674434287' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.50034743914703' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.50031591636708' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.50024762038074' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.5003944572031' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.50039675389381' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.50044724391484' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.50044660755555' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.50044015038834' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.50038679462868' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.50039213812229' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.50036551624396' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.50058224455888' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.50059206948858' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.5006759655798' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.50074850297252' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.50068428407933' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.50060170759431' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.50049156860049' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.50054899368359' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.50054231635128' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.50046202539645' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.50149092106604' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.50150789379448' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.50144910028455' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.50141575207695' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.50136729181261' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.5213074050453' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.52163488333533' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.52238689661122' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.52312251980452' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.52370189569298' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.52434133149825' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.52497494335179' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.52558414136061' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.5262101192667' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.52708913972878' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.52771350974921' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.52813619759593' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.52882566359861' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.52968606497077' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.53003988318964' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.53055488050912' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.53124659943096' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.53306207213782' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.53381676329077' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.53426449089822' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.53500959173321' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.5357587248501' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.5364602265474' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.53728963622643' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.53808574740969' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.53891407783041' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.53976122041139' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.54038551356554' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.54125999817454' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.54206477766607' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.54270329466025' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.54348146704646' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.54403252951834' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.54467250129404' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.54549716613939' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.54613629495388' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_write_requests' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.36401059189129' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.36415068242433' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.36401211548691' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.36387957986031' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.36374834396612' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.3640090860792' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.36388650467292' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.36385829732914' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.36378424973437' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.36371210066877' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.3636679731243' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.36364884824965' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.36365697856034' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.36366434258781' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.36367200933287' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.36365479743859' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.36368294066043' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.36366927459419' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.36367933033446' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.36368675612741' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.36373225444173' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.36372023331745' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.36377989666296' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.36379420830118' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.3643592293717' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.36491952739288' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.36493732835621' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.36483858770458' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.36471496108636' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.36458426913297' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.36483295287337' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.36474093278203' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.36462485334052' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.36448728333567' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.36749384293286' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.36753297030478' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.36764139447422' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.3677162007387' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.36781371733652' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.36795960906491' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.36807476027382' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.36818265196269' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.36826810047495' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.3683582067183' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.36841536247022' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.36848163362354' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.36908653505868' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.37006467392006' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.37016759714136' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.37023481256376' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.37038559070192' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.37052680799713' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.37106589443884' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.37113921473939' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.37127757723888' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.37139368035982' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.37147948076438' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.37152824186325' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.37163287848705' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.3717390572541' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.37176786106815' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.37183805708923' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.37198445647824' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.37214024939067' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.37217408058015' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.37225701466906' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.37224844884105' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.37232168677232' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.37236594783455' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.37238832954104' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_write_requests' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.36401059189129' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.36415068242433' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.36401211548691' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.36387957986031' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.36374834396612' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.3640090860792' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.36388650467292' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.36385829732914' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.36378424973437' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.36371210066877' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.3636679731243' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.36364884824965' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.36365697856034' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.36366434258781' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.36367200933287' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.36365479743859' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.36368294066043' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.36366927459419' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.36367933033446' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.36368675612741' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.36373225444173' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.36372023331745' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.36377989666296' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.36379420830118' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.3643592293717' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.36491952739288' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.36493732835621' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.36483858770458' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.36471496108636' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.36458426913297' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.36483295287337' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.36474093278203' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.36462485334052' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.36448728333567' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.36749384293286' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.36753297030478' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.36764139447422' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.3677162007387' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.36781371733652' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.36795960906491' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.36807476027382' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.36818265196269' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.36826810047495' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.3683582067183' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.36841536247022' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.36848163362354' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.36908653505868' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.37006467392006' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.37016759714136' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.37023481256376' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.37038559070192' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.37052680799713' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.37106589443884' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.37113921473939' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.37127757723888' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.37139368035982' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.37147948076438' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.37152824186325' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.37163287848705' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.3717390572541' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.37176786106815' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.37183805708923' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.37198445647824' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.37214024939067' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.37217408058015' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.37225701466906' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.37224844884105' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.37232168677232' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.37236594783455' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.37238832954104' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_pages_free' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.001' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.001' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_pages_free' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.001' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.001' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.001' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.001' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.001' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.001' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.001' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.001' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.001' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_pages_total' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='448' color='ff6600' showName='0'/> <set name='09-10 01:00' value='448' color='ff6600' showName='0'/> <set name='09-10 02:00' value='448' color='ff6600' showName='0'/> <set name='09-10 03:00' value='448' color='ff6600' showName='0'/> <set name='09-10 04:00' value='448' color='ff6600' showName='0'/> <set name='09-10 05:15' value='448' color='ff6600' showName='0'/> <set name='09-10 06:35' value='448' color='ff6600' showName='0'/> <set name='09-10 07:00' value='448' color='ff6600' showName='0'/> <set name='09-10 08:00' value='448' color='ff6600' showName='0'/> <set name='09-10 09:00' value='448' color='ff6600' showName='0'/> <set name='09-10 10:00' value='448' color='ff6600' showName='0'/> <set name='09-10 11:00' value='448' color='ff6600' showName='0'/> <set name='09-10 12:00' value='448' color='ff6600' showName='0'/> <set name='09-10 13:00' value='448' color='ff6600' showName='0'/> <set name='09-10 14:00' value='448' color='ff6600' showName='0'/> <set name='09-10 15:00' value='448' color='ff6600' showName='0'/> <set name='09-10 16:05' value='448' color='ff6600' showName='0'/> <set name='09-10 17:00' value='448' color='ff6600' showName='0'/> <set name='09-10 18:00' value='448' color='ff6600' showName='0'/> <set name='09-10 19:00' value='448' color='ff6600' showName='0'/> <set name='09-10 20:00' value='448' color='ff6600' showName='0'/> <set name='09-10 21:00' value='448' color='ff6600' showName='0'/> <set name='09-10 22:00' value='448' color='ff6600' showName='0'/> <set name='09-10 23:00' value='448' color='ff6600' showName='0'/> <set name='09-11 00:00' value='448' color='ff6600' showName='0'/> <set name='09-11 01:00' value='448' color='ff6600' showName='0'/> <set name='09-11 02:00' value='448' color='ff6600' showName='0'/> <set name='09-11 03:00' value='448' color='ff6600' showName='0'/> <set name='09-11 04:00' value='448' color='ff6600' showName='0'/> <set name='09-11 05:00' value='448' color='ff6600' showName='0'/> <set name='09-11 06:15' value='448' color='ff6600' showName='0'/> <set name='09-11 07:00' value='448' color='ff6600' showName='0'/> <set name='09-11 08:00' value='448' color='ff6600' showName='0'/> <set name='09-11 09:00' value='448' color='ff6600' showName='0'/> <set name='09-15 12:18' value='448' color='ff6600' showName='0'/> <set name='09-15 13:00' value='448' color='ff6600' showName='0'/> <set name='09-15 14:00' value='448' color='ff6600' showName='0'/> <set name='09-15 15:00' value='448' color='ff6600' showName='0'/> <set name='09-15 16:00' value='448' color='ff6600' showName='0'/> <set name='09-15 17:00' value='448' color='ff6600' showName='0'/> <set name='09-15 18:00' value='448' color='ff6600' showName='0'/> <set name='09-15 19:00' value='448' color='ff6600' showName='0'/> <set name='09-15 20:00' value='448' color='ff6600' showName='0'/> <set name='09-15 21:00' value='448' color='ff6600' showName='0'/> <set name='09-15 22:00' value='448' color='ff6600' showName='0'/> <set name='09-15 23:00' value='448' color='ff6600' showName='0'/> <set name='09-16 00:00' value='448' color='ff6600' showName='0'/> <set name='09-16 01:25' value='448' color='ff6600' showName='0'/> <set name='09-16 02:00' value='448' color='ff6600' showName='0'/> <set name='09-16 03:00' value='448' color='ff6600' showName='0'/> <set name='09-16 04:00' value='448' color='ff6600' showName='0'/> <set name='09-16 05:05' value='448' color='ff6600' showName='0'/> <set name='09-16 06:05' value='448' color='ff6600' showName='0'/> <set name='09-16 07:00' value='448' color='ff6600' showName='0'/> <set name='09-16 08:00' value='448' color='ff6600' showName='0'/> <set name='09-16 09:00' value='448' color='ff6600' showName='0'/> <set name='09-16 10:00' value='448' color='ff6600' showName='0'/> <set name='09-16 11:00' value='448' color='ff6600' showName='0'/> <set name='09-16 12:00' value='448' color='ff6600' showName='0'/> <set name='09-16 13:00' value='448' color='ff6600' showName='0'/> <set name='09-16 14:00' value='448' color='ff6600' showName='0'/> <set name='09-16 15:00' value='448' color='ff6600' showName='0'/> <set name='09-16 16:00' value='448' color='ff6600' showName='0'/> <set name='09-16 17:00' value='448' color='ff6600' showName='0'/> <set name='09-16 18:05' value='448' color='ff6600' showName='0'/> <set name='09-16 19:00' value='448' color='ff6600' showName='0'/> <set name='09-16 20:00' value='448' color='ff6600' showName='0'/> <set name='09-16 21:00' value='448' color='ff6600' showName='0'/> <set name='09-16 22:00' value='448' color='ff6600' showName='0'/> <set name='09-16 23:00' value='448' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Innodb_buffer_pool_pages_total' xAxisName='' yAxisName='quant' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='448' color='ff6600' showName='0'/> <set name='09-10 01:00' value='448' color='ff6600' showName='0'/> <set name='09-10 02:00' value='448' color='ff6600' showName='0'/> <set name='09-10 03:00' value='448' color='ff6600' showName='0'/> <set name='09-10 04:00' value='448' color='ff6600' showName='0'/> <set name='09-10 05:15' value='448' color='ff6600' showName='0'/> <set name='09-10 06:35' value='448' color='ff6600' showName='0'/> <set name='09-10 07:00' value='448' color='ff6600' showName='0'/> <set name='09-10 08:00' value='448' color='ff6600' showName='0'/> <set name='09-10 09:00' value='448' color='ff6600' showName='0'/> <set name='09-10 10:00' value='448' color='ff6600' showName='0'/> <set name='09-10 11:00' value='448' color='ff6600' showName='0'/> <set name='09-10 12:00' value='448' color='ff6600' showName='0'/> <set name='09-10 13:00' value='448' color='ff6600' showName='0'/> <set name='09-10 14:00' value='448' color='ff6600' showName='0'/> <set name='09-10 15:00' value='448' color='ff6600' showName='0'/> <set name='09-10 16:05' value='448' color='ff6600' showName='0'/> <set name='09-10 17:00' value='448' color='ff6600' showName='0'/> <set name='09-10 18:00' value='448' color='ff6600' showName='0'/> <set name='09-10 19:00' value='448' color='ff6600' showName='0'/> <set name='09-10 20:00' value='448' color='ff6600' showName='0'/> <set name='09-10 21:00' value='448' color='ff6600' showName='0'/> <set name='09-10 22:00' value='448' color='ff6600' showName='0'/> <set name='09-10 23:00' value='448' color='ff6600' showName='0'/> <set name='09-11 00:00' value='448' color='ff6600' showName='0'/> <set name='09-11 01:00' value='448' color='ff6600' showName='0'/> <set name='09-11 02:00' value='448' color='ff6600' showName='0'/> <set name='09-11 03:00' value='448' color='ff6600' showName='0'/> <set name='09-11 04:00' value='448' color='ff6600' showName='0'/> <set name='09-11 05:00' value='448' color='ff6600' showName='0'/> <set name='09-11 06:15' value='448' color='ff6600' showName='0'/> <set name='09-11 07:00' value='448' color='ff6600' showName='0'/> <set name='09-11 08:00' value='448' color='ff6600' showName='0'/> <set name='09-11 09:00' value='448' color='ff6600' showName='0'/> <set name='09-15 12:18' value='448' color='ff6600' showName='0'/> <set name='09-15 13:00' value='448' color='ff6600' showName='0'/> <set name='09-15 14:00' value='448' color='ff6600' showName='0'/> <set name='09-15 15:00' value='448' color='ff6600' showName='0'/> <set name='09-15 16:00' value='448' color='ff6600' showName='0'/> <set name='09-15 17:00' value='448' color='ff6600' showName='0'/> <set name='09-15 18:00' value='448' color='ff6600' showName='0'/> <set name='09-15 19:00' value='448' color='ff6600' showName='0'/> <set name='09-15 20:00' value='448' color='ff6600' showName='0'/> <set name='09-15 21:00' value='448' color='ff6600' showName='0'/> <set name='09-15 22:00' value='448' color='ff6600' showName='0'/> <set name='09-15 23:00' value='448' color='ff6600' showName='0'/> <set name='09-16 00:00' value='448' color='ff6600' showName='0'/> <set name='09-16 01:25' value='448' color='ff6600' showName='0'/> <set name='09-16 02:00' value='448' color='ff6600' showName='0'/> <set name='09-16 03:00' value='448' color='ff6600' showName='0'/> <set name='09-16 04:00' value='448' color='ff6600' showName='0'/> <set name='09-16 05:05' value='448' color='ff6600' showName='0'/> <set name='09-16 06:05' value='448' color='ff6600' showName='0'/> <set name='09-16 07:00' value='448' color='ff6600' showName='0'/> <set name='09-16 08:00' value='448' color='ff6600' showName='0'/> <set name='09-16 09:00' value='448' color='ff6600' showName='0'/> <set name='09-16 10:00' value='448' color='ff6600' showName='0'/> <set name='09-16 11:00' value='448' color='ff6600' showName='0'/> <set name='09-16 12:00' value='448' color='ff6600' showName='0'/> <set name='09-16 13:00' value='448' color='ff6600' showName='0'/> <set name='09-16 14:00' value='448' color='ff6600' showName='0'/> <set name='09-16 15:00' value='448' color='ff6600' showName='0'/> <set name='09-16 16:00' value='448' color='ff6600' showName='0'/> <set name='09-16 17:00' value='448' color='ff6600' showName='0'/> <set name='09-16 18:05' value='448' color='ff6600' showName='0'/> <set name='09-16 19:00' value='448' color='ff6600' showName='0'/> <set name='09-16 20:00' value='448' color='ff6600' showName='0'/> <set name='09-16 21:00' value='448' color='ff6600' showName='0'/> <set name='09-16 22:00' value='448' color='ff6600' showName='0'/> <set name='09-16 23:00' value='448' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Created_tmp_disk_tables' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.58126438585265' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.58115506393498' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.58103740557263' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.58089954568228' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.58077027728091' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.58374172947096' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.58362321307239' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.58357209262032' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.58346579918912' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.58336124007702' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.58328530404832' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.5831908405888' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.58307707393532' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.58296079959978' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.58284866429286' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.58273619107304' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.58262878603534' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.58251964517577' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.58240321397765' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.5822756790666' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.58214130326272' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.58203548031701' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.58190292552532' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.58176386791678' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.5816566381927' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.58154641508415' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.58143111102492' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.58130051188081' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.58116105956984' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.58362518434544' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.58395905564691' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.58387651835662' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.58373792328814' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.58359156645858' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.58373012193571' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.58369313610866' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.58363450051172' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.58358728583649' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.58354688441579' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.58350003944467' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.58346263118667' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.58341524455888' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.58334631421543' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.58329411448657' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.58323678730987' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.58326863048332' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.58323532222248' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.58327934509751' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.58324448640821' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.58319630871604' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.58313406282828' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.58504788028479' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.58596700446349' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.58591624142442' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.5858238288291' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.58578381316196' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.58572820443747' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.58567816243254' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.58561935915721' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.58557774360749' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.58554993390459' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.58551774645564' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.58549519411599' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.58547317632057' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.58544366558628' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.5854239029263' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.585387153249' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.58536424654613' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.58532884592866' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.58531512262149' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Created_tmp_disk_tables' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.58126438585265' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.58115506393498' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.58103740557263' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.58089954568228' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.58077027728091' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.58374172947096' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.58362321307239' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.58357209262032' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.58346579918912' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.58336124007702' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.58328530404832' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.5831908405888' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.58307707393532' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.58296079959978' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.58284866429286' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.58273619107304' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.58262878603534' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.58251964517577' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.58240321397765' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.5822756790666' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.58214130326272' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.58203548031701' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.58190292552532' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.58176386791678' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.5816566381927' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.58154641508415' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.58143111102492' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.58130051188081' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.58116105956984' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.58362518434544' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.58395905564691' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.58387651835662' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.58373792328814' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.58359156645858' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.58373012193571' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.58369313610866' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.58363450051172' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.58358728583649' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.58354688441579' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.58350003944467' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.58346263118667' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.58341524455888' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.58334631421543' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.58329411448657' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.58323678730987' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.58326863048332' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.58323532222248' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.58327934509751' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.58324448640821' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.58319630871604' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.58313406282828' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.58504788028479' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.58596700446349' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.58591624142442' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.5858238288291' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.58578381316196' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.58572820443747' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.58567816243254' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.58561935915721' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.58557774360749' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.58554993390459' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.58551774645564' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.58549519411599' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.58547317632057' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.58544366558628' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.5854239029263' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.585387153249' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.58536424654613' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.58532884592866' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.58531512262149' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Created_tmp_files' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0096553510921195' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0096645926778462' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0096665922795775' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0096677415705392' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0096742024981099' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0096738820293826' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0096705229931796' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0096699906319724' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0096755890664379' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0096739704188595' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0096727790220231' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0096749769575728' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0096744310540457' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0096766340358566' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0096790443468894' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0096822995546288' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0096837963548771' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0096847836122765' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0096833830379968' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0096910674734747' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.009689875939051' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0096905851976093' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0096957274428806' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0096953778218429' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0096922887383666' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0096908872054113' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0096894867360507' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0096870337295149' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0096845825831038' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0096844494567126' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0096910714554427' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.009690916328693' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0096937245360397' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0096935890654263' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0097823499941492' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0097811354531292' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0097825931294467' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0097949799535793' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0097960259288353' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0097946437782409' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0097946780808317' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0097937016927034' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0097923210072591' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.009800436451717' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0098002657979304' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0097974731321479' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0097983133968251' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.009796208909281' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0097953548445371' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.009793574858605' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0097936094244428' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0097984131740868' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0097964274346828' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0097945171045645' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0097963619131521' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0097957911968683' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0097954228137593' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0098030932258314' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0098039269276777' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0098051643147705' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0098088071007651' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0098070308551604' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0098090655331407' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0098088947006362' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0098092600512209' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0098141614909322' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.009814188434639' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0098130139256133' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0098216484331448' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0098198709169566' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Created_tmp_files' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.0096553510921195' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.0096645926778462' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.0096665922795775' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.0096677415705392' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.0096742024981099' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.0096738820293826' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.0096705229931796' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.0096699906319724' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.0096755890664379' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.0096739704188595' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.0096727790220231' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.0096749769575728' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.0096744310540457' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.0096766340358566' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0096790443468894' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.0096822995546288' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.0096837963548771' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.0096847836122765' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.0096833830379968' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.0096910674734747' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.009689875939051' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.0096905851976093' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.0096957274428806' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.0096953778218429' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.0096922887383666' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.0096908872054113' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.0096894867360507' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.0096870337295149' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.0096845825831038' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.0096844494567126' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.0096910714554427' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.009690916328693' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.0096937245360397' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.0096935890654263' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.0097823499941492' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.0097811354531292' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.0097825931294467' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.0097949799535793' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.0097960259288353' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.0097946437782409' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.0097946780808317' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.0097937016927034' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.0097923210072591' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.009800436451717' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.0098002657979304' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.0097974731321479' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.0097983133968251' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.009796208909281' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.0097953548445371' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.009793574858605' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.0097936094244428' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.0097984131740868' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.0097964274346828' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.0097945171045645' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.0097963619131521' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.0097957911968683' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.0097954228137593' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.0098030932258314' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.0098039269276777' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.0098051643147705' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.0098088071007651' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.0098070308551604' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.0098090655331407' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.0098088947006362' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.0098092600512209' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.0098141614909322' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.009814188434639' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.0098130139256133' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.0098216484331448' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.0098198709169566' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Created_tmp_tables' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.97398775515157' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.97395340803552' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.97392196492964' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.97384854062873' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.97378580700609' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.97849148488825' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.97847672989713' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.97845919217536' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.9784305636623' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.97840206072702' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.97841122026536' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.97840331588345' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.97836444287525' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.9783176696689' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.97827940987284' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.9782398032911' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.97823850641961' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.97821102288638' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.97816778249751' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.97810799522408' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.97804560275417' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.97802180423759' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.97795643311451' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.97788457185355' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.9778471443194' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.97781829070889' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.97776774660844' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.97770628341491' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.9776341241883' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.98153781702994' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.98221103389666' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.98218333979965' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.9821146446211' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.98203769292807' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.99647443280973' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.99664331300253' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.99689731875808' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.99713504684381' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.99738282062894' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.99762727863754' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.99788126461702' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.99811293219605' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.99832119466938' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.99855515939335' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.99876977283504' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.99907879164401' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.9993366402797' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.99984921383952' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.99998726449313' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.0002192088332' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.0004578350392' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.0027231529324' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.0044498022724' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.0046502856958' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.0048459608124' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.0052882541451' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.0057125367016' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.0061276699219' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.0065453147256' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.0069887659426' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.0074318946247' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.0078822299051' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.0083422684093' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.0088277443336' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.0093197050304' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.0097549612409' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.0101809109547' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.0106209708182' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.0110297878132' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.0114674229443' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Created_tmp_tables' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.97398775515157' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.97395340803552' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.97392196492964' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.97384854062873' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.97378580700609' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.97849148488825' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.97847672989713' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.97845919217536' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.9784305636623' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.97840206072702' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.97841122026536' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.97840331588345' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.97836444287525' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.9783176696689' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.97827940987284' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.9782398032911' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.97823850641961' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.97821102288638' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.97816778249751' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.97810799522408' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.97804560275417' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.97802180423759' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.97795643311451' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.97788457185355' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.9778471443194' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.97781829070889' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.97776774660844' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.97770628341491' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.9776341241883' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.98153781702994' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.98221103389666' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.98218333979965' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.9821146446211' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.98203769292807' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.99647443280973' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.99664331300253' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.99689731875808' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.99713504684381' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.99738282062894' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.99762727863754' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.99788126461702' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.99811293219605' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.99832119466938' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.99855515939335' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.99876977283504' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.99907879164401' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.9993366402797' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.99984921383952' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.99998726449313' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.0002192088332' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.0004578350392' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.0027231529324' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.0044498022724' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.0046502856958' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.0048459608124' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.0052882541451' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.0057125367016' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.0061276699219' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.0065453147256' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.0069887659426' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.0074318946247' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.0078822299051' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.0083422684093' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.0088277443336' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.0093197050304' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.0097549612409' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.0101809109547' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.0106209708182' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.0110297878132' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.0114674229443' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_select' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2.6107473297259' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2.6101719659933' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2.6096890282837' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2.6089763901093' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2.6083286841552' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2.6091650553263' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2.6085425096873' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2.6083419185687' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2.6078495567595' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2.6073699416293' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2.607371199396' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2.607356616211' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2.6069487636051' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2.6065038688689' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2.6059868030752' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2.6054126592798' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2.6052341246885' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2.6046917947266' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2.6041364767529' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2.6036099015966' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2.6030306337169' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2.6025429811568' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2.6019679787545' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2.6012771721983' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2.6007628101217' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2.60032990049' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2.599794870649' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2.5992170490952' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2.5985704704603' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2.5992455418093' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2.5986864528998' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2.5983895720366' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2.5978885031485' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2.597238142172' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2.5699379911483' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2.5701627358775' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2.5704898755304' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2.5706674286047' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2.570916283307' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2.5712561852273' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2.571547411208' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2.5717539336122' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2.5718024394455' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2.5719199027881' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2.5719324735149' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2.5722850481003' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2.5724900196399' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2.5730741649566' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2.5733561849046' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2.5734742828673' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2.5738450435727' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2.5751776700453' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2.5759148991169' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2.5760333736211' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2.576185897394' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2.5764439354159' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2.5764747745131' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2.5764433931835' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2.5765649547881' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2.5767612060684' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2.5768326797399' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2.5769789681782' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2.5772340615462' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2.5775995774474' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2.5776912191737' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2.5778665587268' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2.5776829416083' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2.5777190187894' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2.5776181559239' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2.5775658308814' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_select' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='2.6107473297259' color='ff6600' showName='0'/> <set name='09-10 01:00' value='2.6101719659933' color='ff6600' showName='0'/> <set name='09-10 02:00' value='2.6096890282837' color='ff6600' showName='0'/> <set name='09-10 03:00' value='2.6089763901093' color='ff6600' showName='0'/> <set name='09-10 04:00' value='2.6083286841552' color='ff6600' showName='0'/> <set name='09-10 05:15' value='2.6091650553263' color='ff6600' showName='0'/> <set name='09-10 06:35' value='2.6085425096873' color='ff6600' showName='0'/> <set name='09-10 07:00' value='2.6083419185687' color='ff6600' showName='0'/> <set name='09-10 08:00' value='2.6078495567595' color='ff6600' showName='0'/> <set name='09-10 09:00' value='2.6073699416293' color='ff6600' showName='0'/> <set name='09-10 10:00' value='2.607371199396' color='ff6600' showName='0'/> <set name='09-10 11:00' value='2.607356616211' color='ff6600' showName='0'/> <set name='09-10 12:00' value='2.6069487636051' color='ff6600' showName='0'/> <set name='09-10 13:00' value='2.6065038688689' color='ff6600' showName='0'/> <set name='09-10 14:00' value='2.6059868030752' color='ff6600' showName='0'/> <set name='09-10 15:00' value='2.6054126592798' color='ff6600' showName='0'/> <set name='09-10 16:05' value='2.6052341246885' color='ff6600' showName='0'/> <set name='09-10 17:00' value='2.6046917947266' color='ff6600' showName='0'/> <set name='09-10 18:00' value='2.6041364767529' color='ff6600' showName='0'/> <set name='09-10 19:00' value='2.6036099015966' color='ff6600' showName='0'/> <set name='09-10 20:00' value='2.6030306337169' color='ff6600' showName='0'/> <set name='09-10 21:00' value='2.6025429811568' color='ff6600' showName='0'/> <set name='09-10 22:00' value='2.6019679787545' color='ff6600' showName='0'/> <set name='09-10 23:00' value='2.6012771721983' color='ff6600' showName='0'/> <set name='09-11 00:00' value='2.6007628101217' color='ff6600' showName='0'/> <set name='09-11 01:00' value='2.60032990049' color='ff6600' showName='0'/> <set name='09-11 02:00' value='2.599794870649' color='ff6600' showName='0'/> <set name='09-11 03:00' value='2.5992170490952' color='ff6600' showName='0'/> <set name='09-11 04:00' value='2.5985704704603' color='ff6600' showName='0'/> <set name='09-11 05:00' value='2.5992455418093' color='ff6600' showName='0'/> <set name='09-11 06:15' value='2.5986864528998' color='ff6600' showName='0'/> <set name='09-11 07:00' value='2.5983895720366' color='ff6600' showName='0'/> <set name='09-11 08:00' value='2.5978885031485' color='ff6600' showName='0'/> <set name='09-11 09:00' value='2.597238142172' color='ff6600' showName='0'/> <set name='09-15 12:18' value='2.5699379911483' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2.5701627358775' color='ff6600' showName='0'/> <set name='09-15 14:00' value='2.5704898755304' color='ff6600' showName='0'/> <set name='09-15 15:00' value='2.5706674286047' color='ff6600' showName='0'/> <set name='09-15 16:00' value='2.570916283307' color='ff6600' showName='0'/> <set name='09-15 17:00' value='2.5712561852273' color='ff6600' showName='0'/> <set name='09-15 18:00' value='2.571547411208' color='ff6600' showName='0'/> <set name='09-15 19:00' value='2.5717539336122' color='ff6600' showName='0'/> <set name='09-15 20:00' value='2.5718024394455' color='ff6600' showName='0'/> <set name='09-15 21:00' value='2.5719199027881' color='ff6600' showName='0'/> <set name='09-15 22:00' value='2.5719324735149' color='ff6600' showName='0'/> <set name='09-15 23:00' value='2.5722850481003' color='ff6600' showName='0'/> <set name='09-16 00:00' value='2.5724900196399' color='ff6600' showName='0'/> <set name='09-16 01:25' value='2.5730741649566' color='ff6600' showName='0'/> <set name='09-16 02:00' value='2.5733561849046' color='ff6600' showName='0'/> <set name='09-16 03:00' value='2.5734742828673' color='ff6600' showName='0'/> <set name='09-16 04:00' value='2.5738450435727' color='ff6600' showName='0'/> <set name='09-16 05:05' value='2.5751776700453' color='ff6600' showName='0'/> <set name='09-16 06:05' value='2.5759148991169' color='ff6600' showName='0'/> <set name='09-16 07:00' value='2.5760333736211' color='ff6600' showName='0'/> <set name='09-16 08:00' value='2.576185897394' color='ff6600' showName='0'/> <set name='09-16 09:00' value='2.5764439354159' color='ff6600' showName='0'/> <set name='09-16 10:00' value='2.5764747745131' color='ff6600' showName='0'/> <set name='09-16 11:00' value='2.5764433931835' color='ff6600' showName='0'/> <set name='09-16 12:00' value='2.5765649547881' color='ff6600' showName='0'/> <set name='09-16 13:00' value='2.5767612060684' color='ff6600' showName='0'/> <set name='09-16 14:00' value='2.5768326797399' color='ff6600' showName='0'/> <set name='09-16 15:00' value='2.5769789681782' color='ff6600' showName='0'/> <set name='09-16 16:00' value='2.5772340615462' color='ff6600' showName='0'/> <set name='09-16 17:00' value='2.5775995774474' color='ff6600' showName='0'/> <set name='09-16 18:05' value='2.5776912191737' color='ff6600' showName='0'/> <set name='09-16 19:00' value='2.5778665587268' color='ff6600' showName='0'/> <set name='09-16 20:00' value='2.5776829416083' color='ff6600' showName='0'/> <set name='09-16 21:00' value='2.5777190187894' color='ff6600' showName='0'/> <set name='09-16 22:00' value='2.5776181559239' color='ff6600' showName='0'/> <set name='09-16 23:00' value='2.5775658308814' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_insert' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.2558086359346' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.2557617461005' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.2557143059243' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.2556646172324' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.2556158688025' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.2555583141603' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.2555719394749' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.2554851372802' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.255442818095' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.2554071355805' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.2554102404221' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.255397652137' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.2553761276029' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.2553553045359' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.2553327221117' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.2553027479783' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.2553682977478' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.2552757598855' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.2552555162239' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.2552313485881' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.2552079410332' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.255181356315' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.2551599642489' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.2551334965517' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.2551131420461' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.255095279749' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.2550695260123' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.2550247216601' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.2549795300031' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.2549353201231' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.25487471234' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.2548456332177' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.2548029696907' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.2547565025578' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.2520312065461' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.2520245128341' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.2520149915942' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.2520049457149' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.2519993589424' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.2520062164796' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.2520098337173' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.2520070811286' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.2520077400956' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.2520021879142' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.2519962860171' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.2519854942058' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.251980536028' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.2520115818717' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.2519846430344' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.2519820083464' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.2519877367162' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.2520600622228' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.2520653037625' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.2519895762276' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.2519957965125' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.2520096290851' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.2520056852963' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.2519989308757' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.2519968769559' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.2519974106533' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.2519894367788' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.2519886431192' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.2519950210981' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.252003751077' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.2520656083661' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.2519896562123' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.251969708958' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.2519605889827' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.2519499743286' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.2519370410267' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_insert' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='1.2558086359346' color='ff6600' showName='0'/> <set name='09-10 01:00' value='1.2557617461005' color='ff6600' showName='0'/> <set name='09-10 02:00' value='1.2557143059243' color='ff6600' showName='0'/> <set name='09-10 03:00' value='1.2556646172324' color='ff6600' showName='0'/> <set name='09-10 04:00' value='1.2556158688025' color='ff6600' showName='0'/> <set name='09-10 05:15' value='1.2555583141603' color='ff6600' showName='0'/> <set name='09-10 06:35' value='1.2555719394749' color='ff6600' showName='0'/> <set name='09-10 07:00' value='1.2554851372802' color='ff6600' showName='0'/> <set name='09-10 08:00' value='1.255442818095' color='ff6600' showName='0'/> <set name='09-10 09:00' value='1.2554071355805' color='ff6600' showName='0'/> <set name='09-10 10:00' value='1.2554102404221' color='ff6600' showName='0'/> <set name='09-10 11:00' value='1.255397652137' color='ff6600' showName='0'/> <set name='09-10 12:00' value='1.2553761276029' color='ff6600' showName='0'/> <set name='09-10 13:00' value='1.2553553045359' color='ff6600' showName='0'/> <set name='09-10 14:00' value='1.2553327221117' color='ff6600' showName='0'/> <set name='09-10 15:00' value='1.2553027479783' color='ff6600' showName='0'/> <set name='09-10 16:05' value='1.2553682977478' color='ff6600' showName='0'/> <set name='09-10 17:00' value='1.2552757598855' color='ff6600' showName='0'/> <set name='09-10 18:00' value='1.2552555162239' color='ff6600' showName='0'/> <set name='09-10 19:00' value='1.2552313485881' color='ff6600' showName='0'/> <set name='09-10 20:00' value='1.2552079410332' color='ff6600' showName='0'/> <set name='09-10 21:00' value='1.255181356315' color='ff6600' showName='0'/> <set name='09-10 22:00' value='1.2551599642489' color='ff6600' showName='0'/> <set name='09-10 23:00' value='1.2551334965517' color='ff6600' showName='0'/> <set name='09-11 00:00' value='1.2551131420461' color='ff6600' showName='0'/> <set name='09-11 01:00' value='1.255095279749' color='ff6600' showName='0'/> <set name='09-11 02:00' value='1.2550695260123' color='ff6600' showName='0'/> <set name='09-11 03:00' value='1.2550247216601' color='ff6600' showName='0'/> <set name='09-11 04:00' value='1.2549795300031' color='ff6600' showName='0'/> <set name='09-11 05:00' value='1.2549353201231' color='ff6600' showName='0'/> <set name='09-11 06:15' value='1.25487471234' color='ff6600' showName='0'/> <set name='09-11 07:00' value='1.2548456332177' color='ff6600' showName='0'/> <set name='09-11 08:00' value='1.2548029696907' color='ff6600' showName='0'/> <set name='09-11 09:00' value='1.2547565025578' color='ff6600' showName='0'/> <set name='09-15 12:18' value='1.2520312065461' color='ff6600' showName='0'/> <set name='09-15 13:00' value='1.2520245128341' color='ff6600' showName='0'/> <set name='09-15 14:00' value='1.2520149915942' color='ff6600' showName='0'/> <set name='09-15 15:00' value='1.2520049457149' color='ff6600' showName='0'/> <set name='09-15 16:00' value='1.2519993589424' color='ff6600' showName='0'/> <set name='09-15 17:00' value='1.2520062164796' color='ff6600' showName='0'/> <set name='09-15 18:00' value='1.2520098337173' color='ff6600' showName='0'/> <set name='09-15 19:00' value='1.2520070811286' color='ff6600' showName='0'/> <set name='09-15 20:00' value='1.2520077400956' color='ff6600' showName='0'/> <set name='09-15 21:00' value='1.2520021879142' color='ff6600' showName='0'/> <set name='09-15 22:00' value='1.2519962860171' color='ff6600' showName='0'/> <set name='09-15 23:00' value='1.2519854942058' color='ff6600' showName='0'/> <set name='09-16 00:00' value='1.251980536028' color='ff6600' showName='0'/> <set name='09-16 01:25' value='1.2520115818717' color='ff6600' showName='0'/> <set name='09-16 02:00' value='1.2519846430344' color='ff6600' showName='0'/> <set name='09-16 03:00' value='1.2519820083464' color='ff6600' showName='0'/> <set name='09-16 04:00' value='1.2519877367162' color='ff6600' showName='0'/> <set name='09-16 05:05' value='1.2520600622228' color='ff6600' showName='0'/> <set name='09-16 06:05' value='1.2520653037625' color='ff6600' showName='0'/> <set name='09-16 07:00' value='1.2519895762276' color='ff6600' showName='0'/> <set name='09-16 08:00' value='1.2519957965125' color='ff6600' showName='0'/> <set name='09-16 09:00' value='1.2520096290851' color='ff6600' showName='0'/> <set name='09-16 10:00' value='1.2520056852963' color='ff6600' showName='0'/> <set name='09-16 11:00' value='1.2519989308757' color='ff6600' showName='0'/> <set name='09-16 12:00' value='1.2519968769559' color='ff6600' showName='0'/> <set name='09-16 13:00' value='1.2519974106533' color='ff6600' showName='0'/> <set name='09-16 14:00' value='1.2519894367788' color='ff6600' showName='0'/> <set name='09-16 15:00' value='1.2519886431192' color='ff6600' showName='0'/> <set name='09-16 16:00' value='1.2519950210981' color='ff6600' showName='0'/> <set name='09-16 17:00' value='1.252003751077' color='ff6600' showName='0'/> <set name='09-16 18:05' value='1.2520656083661' color='ff6600' showName='0'/> <set name='09-16 19:00' value='1.2519896562123' color='ff6600' showName='0'/> <set name='09-16 20:00' value='1.251969708958' color='ff6600' showName='0'/> <set name='09-16 21:00' value='1.2519605889827' color='ff6600' showName='0'/> <set name='09-16 22:00' value='1.2519499743286' color='ff6600' showName='0'/> <set name='09-16 23:00' value='1.2519370410267' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_delete' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.025668639470866' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.025664831886025' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.025674424410396' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.025673701034953' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.025671059798971' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.025672656486459' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.025667620395527' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.025666025145043' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.025662427904177' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.025662761143371' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.025691413010282' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.025705510094942' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.025709566616469' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.02571116813032' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0257112782259' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.025707683778481' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.025720767264228' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.025717530630792' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.025717220480119' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.025714889573277' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.025710774996136' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.025704971333223' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.025700966603623' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.025694957430056' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.025690542833732' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.025688024300111' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.025683294279145' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.025681096485276' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.025679321638038' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.025678706217168' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.025669969002326' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.025672953158914' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.025672864055959' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.02567057267248' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.025322504790856' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.025326768642428' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.025325295237123' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.02533272726463' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.025331857363076' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.025329673272738' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.025326479738684' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.025325815192894' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.025331715610388' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.025327820322798' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.025323821998171' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.025320336086826' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.025318464382432' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.025316445322079' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.025315329908219' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.025310136539696' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.02530786830247' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.025303054909751' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.025301178916759' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.025298756579637' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.02529810520166' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.025301775689376' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.025299414884902' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.025298161086086' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.025295298629294' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.02529174269718' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.025294003635499' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.025293057049593' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.025291404172689' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.025292564752249' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.025289082841722' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.02528575865631' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.025280908250513' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.02527646181895' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.025273920175506' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.025270777650751' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_delete' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.025668639470866' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.025664831886025' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.025674424410396' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.025673701034953' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.025671059798971' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.025672656486459' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.025667620395527' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.025666025145043' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.025662427904177' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.025662761143371' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.025691413010282' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.025705510094942' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.025709566616469' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.02571116813032' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.0257112782259' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.025707683778481' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.025720767264228' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.025717530630792' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.025717220480119' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.025714889573277' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.025710774996136' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.025704971333223' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.025700966603623' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.025694957430056' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.025690542833732' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.025688024300111' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.025683294279145' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.025681096485276' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.025679321638038' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.025678706217168' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.025669969002326' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.025672953158914' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.025672864055959' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.02567057267248' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.025322504790856' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.025326768642428' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.025325295237123' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.02533272726463' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.025331857363076' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.025329673272738' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.025326479738684' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.025325815192894' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.025331715610388' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.025327820322798' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.025323821998171' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.025320336086826' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.025318464382432' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.025316445322079' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.025315329908219' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.025310136539696' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.02530786830247' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.025303054909751' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.025301178916759' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.025298756579637' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.02529810520166' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.025301775689376' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.025299414884902' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.025298161086086' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.025295298629294' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.02529174269718' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.025294003635499' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.025293057049593' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.025291404172689' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.025292564752249' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.025289082841722' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.02528575865631' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.025280908250513' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.02527646181895' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.025273920175506' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.025270777650751' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr><tr><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_update' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.12635244297122' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.12633178429722' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.1263447272513' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.12631951524699' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.12629089470736' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.12626523241174' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.12623695893646' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.12622337182746' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.12619680827807' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.12617759812545' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.12621240540907' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.12622222228111' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.12621526338744' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.12620717098938' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.12619015089566' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.12616986267993' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.12617895736466' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.12616349342848' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.12615468283688' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.12616504668864' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.12615654590874' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.12614877757659' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.1261294035335' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.12610813164763' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.12609176758288' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.12608277035434' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.12605786456361' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.12603666526468' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.12601221712099' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.12598789278949' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.1259506075521' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.12594203460839' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.12593983504312' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.12593156640813' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.12482956456018' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.12483097557559' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.12484002054176' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.12484631360837' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.12484501381471' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.12484351268723' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.12483614865753' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.12483495504761' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.12483971055364' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.12482721779805' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.12482934779459' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.12482706077021' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.12482203907241' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.12481291461778' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.12481573657505' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.12480165485806' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.12479372829376' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.12479817955671' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.12480518389986' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.12480096378738' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.12480361098769' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.12481820979058' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.12482225608561' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.12483524231642' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.12483595239336' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.12483870743927' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.124851058982' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.12485941299772' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.12487024363921' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.12489502799822' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.12492407409059' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.12493178149801' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.12492655794449' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.12491913552869' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.12490611379279' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.12489769121818' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Com_update' xAxisName='' yAxisName='per/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='0.12635244297122' color='ff6600' showName='0'/> <set name='09-10 01:00' value='0.12633178429722' color='ff6600' showName='0'/> <set name='09-10 02:00' value='0.1263447272513' color='ff6600' showName='0'/> <set name='09-10 03:00' value='0.12631951524699' color='ff6600' showName='0'/> <set name='09-10 04:00' value='0.12629089470736' color='ff6600' showName='0'/> <set name='09-10 05:15' value='0.12626523241174' color='ff6600' showName='0'/> <set name='09-10 06:35' value='0.12623695893646' color='ff6600' showName='0'/> <set name='09-10 07:00' value='0.12622337182746' color='ff6600' showName='0'/> <set name='09-10 08:00' value='0.12619680827807' color='ff6600' showName='0'/> <set name='09-10 09:00' value='0.12617759812545' color='ff6600' showName='0'/> <set name='09-10 10:00' value='0.12621240540907' color='ff6600' showName='0'/> <set name='09-10 11:00' value='0.12622222228111' color='ff6600' showName='0'/> <set name='09-10 12:00' value='0.12621526338744' color='ff6600' showName='0'/> <set name='09-10 13:00' value='0.12620717098938' color='ff6600' showName='0'/> <set name='09-10 14:00' value='0.12619015089566' color='ff6600' showName='0'/> <set name='09-10 15:00' value='0.12616986267993' color='ff6600' showName='0'/> <set name='09-10 16:05' value='0.12617895736466' color='ff6600' showName='0'/> <set name='09-10 17:00' value='0.12616349342848' color='ff6600' showName='0'/> <set name='09-10 18:00' value='0.12615468283688' color='ff6600' showName='0'/> <set name='09-10 19:00' value='0.12616504668864' color='ff6600' showName='0'/> <set name='09-10 20:00' value='0.12615654590874' color='ff6600' showName='0'/> <set name='09-10 21:00' value='0.12614877757659' color='ff6600' showName='0'/> <set name='09-10 22:00' value='0.1261294035335' color='ff6600' showName='0'/> <set name='09-10 23:00' value='0.12610813164763' color='ff6600' showName='0'/> <set name='09-11 00:00' value='0.12609176758288' color='ff6600' showName='0'/> <set name='09-11 01:00' value='0.12608277035434' color='ff6600' showName='0'/> <set name='09-11 02:00' value='0.12605786456361' color='ff6600' showName='0'/> <set name='09-11 03:00' value='0.12603666526468' color='ff6600' showName='0'/> <set name='09-11 04:00' value='0.12601221712099' color='ff6600' showName='0'/> <set name='09-11 05:00' value='0.12598789278949' color='ff6600' showName='0'/> <set name='09-11 06:15' value='0.1259506075521' color='ff6600' showName='0'/> <set name='09-11 07:00' value='0.12594203460839' color='ff6600' showName='0'/> <set name='09-11 08:00' value='0.12593983504312' color='ff6600' showName='0'/> <set name='09-11 09:00' value='0.12593156640813' color='ff6600' showName='0'/> <set name='09-15 12:18' value='0.12482956456018' color='ff6600' showName='0'/> <set name='09-15 13:00' value='0.12483097557559' color='ff6600' showName='0'/> <set name='09-15 14:00' value='0.12484002054176' color='ff6600' showName='0'/> <set name='09-15 15:00' value='0.12484631360837' color='ff6600' showName='0'/> <set name='09-15 16:00' value='0.12484501381471' color='ff6600' showName='0'/> <set name='09-15 17:00' value='0.12484351268723' color='ff6600' showName='0'/> <set name='09-15 18:00' value='0.12483614865753' color='ff6600' showName='0'/> <set name='09-15 19:00' value='0.12483495504761' color='ff6600' showName='0'/> <set name='09-15 20:00' value='0.12483971055364' color='ff6600' showName='0'/> <set name='09-15 21:00' value='0.12482721779805' color='ff6600' showName='0'/> <set name='09-15 22:00' value='0.12482934779459' color='ff6600' showName='0'/> <set name='09-15 23:00' value='0.12482706077021' color='ff6600' showName='0'/> <set name='09-16 00:00' value='0.12482203907241' color='ff6600' showName='0'/> <set name='09-16 01:25' value='0.12481291461778' color='ff6600' showName='0'/> <set name='09-16 02:00' value='0.12481573657505' color='ff6600' showName='0'/> <set name='09-16 03:00' value='0.12480165485806' color='ff6600' showName='0'/> <set name='09-16 04:00' value='0.12479372829376' color='ff6600' showName='0'/> <set name='09-16 05:05' value='0.12479817955671' color='ff6600' showName='0'/> <set name='09-16 06:05' value='0.12480518389986' color='ff6600' showName='0'/> <set name='09-16 07:00' value='0.12480096378738' color='ff6600' showName='0'/> <set name='09-16 08:00' value='0.12480361098769' color='ff6600' showName='0'/> <set name='09-16 09:00' value='0.12481820979058' color='ff6600' showName='0'/> <set name='09-16 10:00' value='0.12482225608561' color='ff6600' showName='0'/> <set name='09-16 11:00' value='0.12483524231642' color='ff6600' showName='0'/> <set name='09-16 12:00' value='0.12483595239336' color='ff6600' showName='0'/> <set name='09-16 13:00' value='0.12483870743927' color='ff6600' showName='0'/> <set name='09-16 14:00' value='0.124851058982' color='ff6600' showName='0'/> <set name='09-16 15:00' value='0.12485941299772' color='ff6600' showName='0'/> <set name='09-16 16:00' value='0.12487024363921' color='ff6600' showName='0'/> <set name='09-16 17:00' value='0.12489502799822' color='ff6600' showName='0'/> <set name='09-16 18:05' value='0.12492407409059' color='ff6600' showName='0'/> <set name='09-16 19:00' value='0.12493178149801' color='ff6600' showName='0'/> <set name='09-16 20:00' value='0.12492655794449' color='ff6600' showName='0'/> <set name='09-16 21:00' value='0.12491913552869' color='ff6600' showName='0'/> <set name='09-16 22:00' value='0.12490611379279' color='ff6600' showName='0'/> <set name='09-16 23:00' value='0.12489769121818' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Bytes_received' xAxisName='' yAxisName='bytes/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='386.6198186878' color='ff6600' showName='0'/> <set name='09-10 01:00' value='388.19820483201' color='ff6600' showName='0'/> <set name='09-10 02:00' value='389.9252326786' color='ff6600' showName='0'/> <set name='09-10 03:00' value='391.47591716293' color='ff6600' showName='0'/> <set name='09-10 04:00' value='393.08814512196' color='ff6600' showName='0'/> <set name='09-10 05:15' value='395.66060152528' color='ff6600' showName='0'/> <set name='09-10 06:35' value='398.15266414951' color='ff6600' showName='0'/> <set name='09-10 07:00' value='398.60382118703' color='ff6600' showName='0'/> <set name='09-10 08:00' value='400.29206295403' color='ff6600' showName='0'/> <set name='09-10 09:00' value='401.98695260447' color='ff6600' showName='0'/> <set name='09-10 10:00' value='404.04037866063' color='ff6600' showName='0'/> <set name='09-10 11:00' value='405.98159266501' color='ff6600' showName='0'/> <set name='09-10 12:00' value='407.69170902705' color='ff6600' showName='0'/> <set name='09-10 13:00' value='409.38459271722' color='ff6600' showName='0'/> <set name='09-10 14:00' value='411.06998781192' color='ff6600' showName='0'/> <set name='09-10 15:00' value='412.81558440541' color='ff6600' showName='0'/> <set name='09-10 16:05' value='415.14425307227' color='ff6600' showName='0'/> <set name='09-10 17:00' value='416.48390585867' color='ff6600' showName='0'/> <set name='09-10 18:00' value='418.10381027503' color='ff6600' showName='0'/> <set name='09-10 19:00' value='419.73435963998' color='ff6600' showName='0'/> <set name='09-10 20:00' value='421.30827725499' color='ff6600' showName='0'/> <set name='09-10 21:00' value='422.93509290131' color='ff6600' showName='0'/> <set name='09-10 22:00' value='424.51517970611' color='ff6600' showName='0'/> <set name='09-10 23:00' value='426.04844878174' color='ff6600' showName='0'/> <set name='09-11 00:00' value='427.63555474875' color='ff6600' showName='0'/> <set name='09-11 01:00' value='429.24559872595' color='ff6600' showName='0'/> <set name='09-11 02:00' value='430.83799640207' color='ff6600' showName='0'/> <set name='09-11 03:00' value='432.3821258099' color='ff6600' showName='0'/> <set name='09-11 04:00' value='433.92226130063' color='ff6600' showName='0'/> <set name='09-11 05:00' value='435.87854014835' color='ff6600' showName='0'/> <set name='09-11 06:15' value='437.88211928669' color='ff6600' showName='0'/> <set name='09-11 07:00' value='439.16154144599' color='ff6600' showName='0'/> <set name='09-11 08:00' value='440.72764921146' color='ff6600' showName='0'/> <set name='09-11 09:00' value='442.2715944249' color='ff6600' showName='0'/> <set name='09-15 12:18' value='168.67372179246' color='ff6600' showName='0'/> <set name='09-15 13:00' value='170.12150470142' color='ff6600' showName='0'/> <set name='09-15 14:00' value='172.09111202507' color='ff6600' showName='0'/> <set name='09-15 15:00' value='173.98165255543' color='ff6600' showName='0'/> <set name='09-15 16:00' value='175.86280265586' color='ff6600' showName='0'/> <set name='09-15 17:00' value='177.80430205796' color='ff6600' showName='0'/> <set name='09-15 18:00' value='179.74018933424' color='ff6600' showName='0'/> <set name='09-15 19:00' value='181.64272227673' color='ff6600' showName='0'/> <set name='09-15 20:00' value='183.50253468631' color='ff6600' showName='0'/> <set name='09-15 21:00' value='185.39596571002' color='ff6600' showName='0'/> <set name='09-15 22:00' value='187.23987869486' color='ff6600' showName='0'/> <set name='09-15 23:00' value='189.35110932954' color='ff6600' showName='0'/> <set name='09-16 00:00' value='191.18398495713' color='ff6600' showName='0'/> <set name='09-16 01:25' value='193.9530625855' color='ff6600' showName='0'/> <set name='09-16 02:00' value='194.984279615' color='ff6600' showName='0'/> <set name='09-16 03:00' value='196.80008551618' color='ff6600' showName='0'/> <set name='09-16 04:00' value='198.6850922164' color='ff6600' showName='0'/> <set name='09-16 05:05' value='201.24058542099' color='ff6600' showName='0'/> <set name='09-16 06:05' value='203.24406278644' color='ff6600' showName='0'/> <set name='09-16 07:00' value='204.67952082123' color='ff6600' showName='0'/> <set name='09-16 08:00' value='206.40377833051' color='ff6600' showName='0'/> <set name='09-16 09:00' value='208.27096291857' color='ff6600' showName='0'/> <set name='09-16 10:00' value='210.01432863546' color='ff6600' showName='0'/> <set name='09-16 11:00' value='211.7643068226' color='ff6600' showName='0'/> <set name='09-16 12:00' value='213.5408175903' color='ff6600' showName='0'/> <set name='09-16 13:00' value='215.29312914432' color='ff6600' showName='0'/> <set name='09-16 14:00' value='217.0863691888' color='ff6600' showName='0'/> <set name='09-16 15:00' value='218.91343343365' color='ff6600' showName='0'/> <set name='09-16 16:00' value='220.78429539612' color='ff6600' showName='0'/> <set name='09-16 17:00' value='222.80360366882' color='ff6600' showName='0'/> <set name='09-16 18:05' value='225.02159143174' color='ff6600' showName='0'/> <set name='09-16 19:00' value='226.52359253251' color='ff6600' showName='0'/> <set name='09-16 20:00' value='228.21700440785' color='ff6600' showName='0'/> <set name='09-16 21:00' value='230.04622774971' color='ff6600' showName='0'/> <set name='09-16 22:00' value='231.79209861815' color='ff6600' showName='0'/> <set name='09-16 23:00' value='233.59010476054' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Bytes_received' xAxisName='' yAxisName='bytes/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='386.6198186878' color='ff6600' showName='0'/> <set name='09-10 01:00' value='388.19820483201' color='ff6600' showName='0'/> <set name='09-10 02:00' value='389.9252326786' color='ff6600' showName='0'/> <set name='09-10 03:00' value='391.47591716293' color='ff6600' showName='0'/> <set name='09-10 04:00' value='393.08814512196' color='ff6600' showName='0'/> <set name='09-10 05:15' value='395.66060152528' color='ff6600' showName='0'/> <set name='09-10 06:35' value='398.15266414951' color='ff6600' showName='0'/> <set name='09-10 07:00' value='398.60382118703' color='ff6600' showName='0'/> <set name='09-10 08:00' value='400.29206295403' color='ff6600' showName='0'/> <set name='09-10 09:00' value='401.98695260447' color='ff6600' showName='0'/> <set name='09-10 10:00' value='404.04037866063' color='ff6600' showName='0'/> <set name='09-10 11:00' value='405.98159266501' color='ff6600' showName='0'/> <set name='09-10 12:00' value='407.69170902705' color='ff6600' showName='0'/> <set name='09-10 13:00' value='409.38459271722' color='ff6600' showName='0'/> <set name='09-10 14:00' value='411.06998781192' color='ff6600' showName='0'/> <set name='09-10 15:00' value='412.81558440541' color='ff6600' showName='0'/> <set name='09-10 16:05' value='415.14425307227' color='ff6600' showName='0'/> <set name='09-10 17:00' value='416.48390585867' color='ff6600' showName='0'/> <set name='09-10 18:00' value='418.10381027503' color='ff6600' showName='0'/> <set name='09-10 19:00' value='419.73435963998' color='ff6600' showName='0'/> <set name='09-10 20:00' value='421.30827725499' color='ff6600' showName='0'/> <set name='09-10 21:00' value='422.93509290131' color='ff6600' showName='0'/> <set name='09-10 22:00' value='424.51517970611' color='ff6600' showName='0'/> <set name='09-10 23:00' value='426.04844878174' color='ff6600' showName='0'/> <set name='09-11 00:00' value='427.63555474875' color='ff6600' showName='0'/> <set name='09-11 01:00' value='429.24559872595' color='ff6600' showName='0'/> <set name='09-11 02:00' value='430.83799640207' color='ff6600' showName='0'/> <set name='09-11 03:00' value='432.3821258099' color='ff6600' showName='0'/> <set name='09-11 04:00' value='433.92226130063' color='ff6600' showName='0'/> <set name='09-11 05:00' value='435.87854014835' color='ff6600' showName='0'/> <set name='09-11 06:15' value='437.88211928669' color='ff6600' showName='0'/> <set name='09-11 07:00' value='439.16154144599' color='ff6600' showName='0'/> <set name='09-11 08:00' value='440.72764921146' color='ff6600' showName='0'/> <set name='09-11 09:00' value='442.2715944249' color='ff6600' showName='0'/> <set name='09-15 12:18' value='168.67372179246' color='ff6600' showName='0'/> <set name='09-15 13:00' value='170.12150470142' color='ff6600' showName='0'/> <set name='09-15 14:00' value='172.09111202507' color='ff6600' showName='0'/> <set name='09-15 15:00' value='173.98165255543' color='ff6600' showName='0'/> <set name='09-15 16:00' value='175.86280265586' color='ff6600' showName='0'/> <set name='09-15 17:00' value='177.80430205796' color='ff6600' showName='0'/> <set name='09-15 18:00' value='179.74018933424' color='ff6600' showName='0'/> <set name='09-15 19:00' value='181.64272227673' color='ff6600' showName='0'/> <set name='09-15 20:00' value='183.50253468631' color='ff6600' showName='0'/> <set name='09-15 21:00' value='185.39596571002' color='ff6600' showName='0'/> <set name='09-15 22:00' value='187.23987869486' color='ff6600' showName='0'/> <set name='09-15 23:00' value='189.35110932954' color='ff6600' showName='0'/> <set name='09-16 00:00' value='191.18398495713' color='ff6600' showName='0'/> <set name='09-16 01:25' value='193.9530625855' color='ff6600' showName='0'/> <set name='09-16 02:00' value='194.984279615' color='ff6600' showName='0'/> <set name='09-16 03:00' value='196.80008551618' color='ff6600' showName='0'/> <set name='09-16 04:00' value='198.6850922164' color='ff6600' showName='0'/> <set name='09-16 05:05' value='201.24058542099' color='ff6600' showName='0'/> <set name='09-16 06:05' value='203.24406278644' color='ff6600' showName='0'/> <set name='09-16 07:00' value='204.67952082123' color='ff6600' showName='0'/> <set name='09-16 08:00' value='206.40377833051' color='ff6600' showName='0'/> <set name='09-16 09:00' value='208.27096291857' color='ff6600' showName='0'/> <set name='09-16 10:00' value='210.01432863546' color='ff6600' showName='0'/> <set name='09-16 11:00' value='211.7643068226' color='ff6600' showName='0'/> <set name='09-16 12:00' value='213.5408175903' color='ff6600' showName='0'/> <set name='09-16 13:00' value='215.29312914432' color='ff6600' showName='0'/> <set name='09-16 14:00' value='217.0863691888' color='ff6600' showName='0'/> <set name='09-16 15:00' value='218.91343343365' color='ff6600' showName='0'/> <set name='09-16 16:00' value='220.78429539612' color='ff6600' showName='0'/> <set name='09-16 17:00' value='222.80360366882' color='ff6600' showName='0'/> <set name='09-16 18:05' value='225.02159143174' color='ff6600' showName='0'/> <set name='09-16 19:00' value='226.52359253251' color='ff6600' showName='0'/> <set name='09-16 20:00' value='228.21700440785' color='ff6600' showName='0'/> <set name='09-16 21:00' value='230.04622774971' color='ff6600' showName='0'/> <set name='09-16 22:00' value='231.79209861815' color='ff6600' showName='0'/> <set name='09-16 23:00' value='233.59010476054' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td><td> <!-- START Code Block for Chart kontrollbase --> <OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="240" height="130" id="kontrollbase"> <param name="allowScriptAccess" value="always" /> <param name="movie" value="http://testing.kontrollbase.com//includes/FCF_Line.swf"/> <param name="FlashVars" value="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Bytes_sent' xAxisName='' yAxisName='bytes/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='55.126923327081' color='ff6600' showName='0'/> <set name='09-10 01:00' value='63.222309844396' color='ff6600' showName='0'/> <set name='09-10 02:00' value='73.442195115491' color='ff6600' showName='0'/> <set name='09-10 03:00' value='80.625370552624' color='ff6600' showName='0'/> <set name='09-10 04:00' value='89.78813597063' color='ff6600' showName='0'/> <set name='09-10 05:15' value='253.20948168224' color='ff6600' showName='0'/> <set name='09-10 06:35' value='269.25568374937' color='ff6600' showName='0'/> <set name='09-10 07:00' value='273.39220897326' color='ff6600' showName='0'/> <set name='09-10 08:00' value='284.78539524451' color='ff6600' showName='0'/> <set name='09-10 09:00' value='295.72511210177' color='ff6600' showName='0'/> <set name='09-10 10:00' value='312.87205940989' color='ff6600' showName='0'/> <set name='09-10 11:00' value='329.17216379389' color='ff6600' showName='0'/> <set name='09-10 12:00' value='340.57415752173' color='ff6600' showName='0'/> <set name='09-10 13:00' value='351.67038440195' color='ff6600' showName='0'/> <set name='09-10 14:00' value='363.32587662647' color='ff6600' showName='0'/> <set name='09-10 15:00' value='375.24529679227' color='ff6600' showName='0'/> <set name='09-10 16:05' value='392.92963087491' color='ff6600' showName='0'/> <set name='09-10 17:00' value='403.30315634461' color='ff6600' showName='0'/> <set name='09-10 18:00' value='411.72255504912' color='ff6600' showName='0'/> <set name='09-10 19:00' value='420.4799713056' color='ff6600' showName='0'/> <set name='09-10 20:00' value='428.43383903758' color='ff6600' showName='0'/> <set name='09-10 21:00' value='436.77190342264' color='ff6600' showName='0'/> <set name='09-10 22:00' value='443.61131532893' color='ff6600' showName='0'/> <set name='09-10 23:00' value='450.22755499334' color='ff6600' showName='0'/> <set name='09-11 00:00' value='4.5885098336876' color='ff6600' showName='0'/> <set name='09-11 01:00' value='12.045133461661' color='ff6600' showName='0'/> <set name='09-11 02:00' value='20.135885072755' color='ff6600' showName='0'/> <set name='09-11 03:00' value='27.833687096945' color='ff6600' showName='0'/> <set name='09-11 04:00' value='35.233478660902' color='ff6600' showName='0'/> <set name='09-11 05:00' value='185.90301440063' color='ff6600' showName='0'/> <set name='09-11 06:15' value='202.41797844064' color='ff6600' showName='0'/> <set name='09-11 07:00' value='210.49913893515' color='ff6600' showName='0'/> <set name='09-11 08:00' value='218.73007147865' color='ff6600' showName='0'/> <set name='09-11 09:00' value='226.15433688165' color='ff6600' showName='0'/> <set name='09-15 12:18' value='427.15139926436' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2.476262269863' color='ff6600' showName='0'/> <set name='09-15 14:00' value='15.320533615863' color='ff6600' showName='0'/> <set name='09-15 15:00' value='28.60153553599' color='ff6600' showName='0'/> <set name='09-15 16:00' value='41.871683771652' color='ff6600' showName='0'/> <set name='09-15 17:00' value='56.843593498224' color='ff6600' showName='0'/> <set name='09-15 18:00' value='70.70940285524' color='ff6600' showName='0'/> <set name='09-15 19:00' value='85.30713627049' color='ff6600' showName='0'/> <set name='09-15 20:00' value='95.74477668321' color='ff6600' showName='0'/> <set name='09-15 21:00' value='109.77368924105' color='ff6600' showName='0'/> <set name='09-15 22:00' value='123.30455528265' color='ff6600' showName='0'/> <set name='09-15 23:00' value='144.33208697502' color='ff6600' showName='0'/> <set name='09-16 00:00' value='157.31064362579' color='ff6600' showName='0'/> <set name='09-16 01:25' value='175.93690701188' color='ff6600' showName='0'/> <set name='09-16 02:00' value='184.60586886577' color='ff6600' showName='0'/> <set name='09-16 03:00' value='196.90226274248' color='ff6600' showName='0'/> <set name='09-16 04:00' value='210.92005917677' color='ff6600' showName='0'/> <set name='09-16 05:05' value='334.50451173565' color='ff6600' showName='0'/> <set name='09-16 06:05' value='376.50206837391' color='ff6600' showName='0'/> <set name='09-16 07:00' value='387.35500236524' color='ff6600' showName='0'/> <set name='09-16 08:00' value='395.35771811426' color='ff6600' showName='0'/> <set name='09-16 09:00' value='404.06129300836' color='ff6600' showName='0'/> <set name='09-16 10:00' value='412.27354638452' color='ff6600' showName='0'/> <set name='09-16 11:00' value='420.6448755887' color='ff6600' showName='0'/> <set name='09-16 12:00' value='429.81064219579' color='ff6600' showName='0'/> <set name='09-16 13:00' value='7.089714014151' color='ff6600' showName='0'/> <set name='09-16 14:00' value='18.635501316388' color='ff6600' showName='0'/> <set name='09-16 15:00' value='29.354599507609' color='ff6600' showName='0'/> <set name='09-16 16:00' value='41.664117603989' color='ff6600' showName='0'/> <set name='09-16 17:00' value='54.509265547112' color='ff6600' showName='0'/> <set name='09-16 18:05' value='66.195136510707' color='ff6600' showName='0'/> <set name='09-16 19:00' value='75.930230330622' color='ff6600' showName='0'/> <set name='09-16 20:00' value='85.168823583024' color='ff6600' showName='0'/> <set name='09-16 21:00' value='97.074484459961' color='ff6600' showName='0'/> <set name='09-16 22:00' value='107.83171461828' color='ff6600' showName='0'/> <set name='09-16 23:00' value='119.81379104178' color='ff6600' showName='0'/> </graph>" /> <param name="quality" value="high" /> <embed src="http://testing.kontrollbase.com//includes/FCF_Line.swf" FlashVars="&chartWidth=240&chartHeight=130&dataXML=<graph caption='Bytes_sent' xAxisName='' yAxisName='bytes/sec' showValues='0' rotateNames='1' decimalPrecision='2' showLimits='1' animation='0' showgridbg='1' showhovercap='1' showColumnShadow='1' shadowYShift='0' shadowXShift='1' showAnchors='1' anchorRadius='2' anchorBgColor='b8b8b8' anchorScale='0' anchorAlpha='10' showAlternateHGridColor='1' AlternateHGridColor='ff5904' divLineColor='ff5904' divLineAlpha='20' alternateHGridAlpha='5' canvasBorderColor='b8b8b8' baseFontColor='666666' lineColor='99ccff' lineThickness='1'> <set name='09-10 00:00' value='55.126923327081' color='ff6600' showName='0'/> <set name='09-10 01:00' value='63.222309844396' color='ff6600' showName='0'/> <set name='09-10 02:00' value='73.442195115491' color='ff6600' showName='0'/> <set name='09-10 03:00' value='80.625370552624' color='ff6600' showName='0'/> <set name='09-10 04:00' value='89.78813597063' color='ff6600' showName='0'/> <set name='09-10 05:15' value='253.20948168224' color='ff6600' showName='0'/> <set name='09-10 06:35' value='269.25568374937' color='ff6600' showName='0'/> <set name='09-10 07:00' value='273.39220897326' color='ff6600' showName='0'/> <set name='09-10 08:00' value='284.78539524451' color='ff6600' showName='0'/> <set name='09-10 09:00' value='295.72511210177' color='ff6600' showName='0'/> <set name='09-10 10:00' value='312.87205940989' color='ff6600' showName='0'/> <set name='09-10 11:00' value='329.17216379389' color='ff6600' showName='0'/> <set name='09-10 12:00' value='340.57415752173' color='ff6600' showName='0'/> <set name='09-10 13:00' value='351.67038440195' color='ff6600' showName='0'/> <set name='09-10 14:00' value='363.32587662647' color='ff6600' showName='0'/> <set name='09-10 15:00' value='375.24529679227' color='ff6600' showName='0'/> <set name='09-10 16:05' value='392.92963087491' color='ff6600' showName='0'/> <set name='09-10 17:00' value='403.30315634461' color='ff6600' showName='0'/> <set name='09-10 18:00' value='411.72255504912' color='ff6600' showName='0'/> <set name='09-10 19:00' value='420.4799713056' color='ff6600' showName='0'/> <set name='09-10 20:00' value='428.43383903758' color='ff6600' showName='0'/> <set name='09-10 21:00' value='436.77190342264' color='ff6600' showName='0'/> <set name='09-10 22:00' value='443.61131532893' color='ff6600' showName='0'/> <set name='09-10 23:00' value='450.22755499334' color='ff6600' showName='0'/> <set name='09-11 00:00' value='4.5885098336876' color='ff6600' showName='0'/> <set name='09-11 01:00' value='12.045133461661' color='ff6600' showName='0'/> <set name='09-11 02:00' value='20.135885072755' color='ff6600' showName='0'/> <set name='09-11 03:00' value='27.833687096945' color='ff6600' showName='0'/> <set name='09-11 04:00' value='35.233478660902' color='ff6600' showName='0'/> <set name='09-11 05:00' value='185.90301440063' color='ff6600' showName='0'/> <set name='09-11 06:15' value='202.41797844064' color='ff6600' showName='0'/> <set name='09-11 07:00' value='210.49913893515' color='ff6600' showName='0'/> <set name='09-11 08:00' value='218.73007147865' color='ff6600' showName='0'/> <set name='09-11 09:00' value='226.15433688165' color='ff6600' showName='0'/> <set name='09-15 12:18' value='427.15139926436' color='ff6600' showName='0'/> <set name='09-15 13:00' value='2.476262269863' color='ff6600' showName='0'/> <set name='09-15 14:00' value='15.320533615863' color='ff6600' showName='0'/> <set name='09-15 15:00' value='28.60153553599' color='ff6600' showName='0'/> <set name='09-15 16:00' value='41.871683771652' color='ff6600' showName='0'/> <set name='09-15 17:00' value='56.843593498224' color='ff6600' showName='0'/> <set name='09-15 18:00' value='70.70940285524' color='ff6600' showName='0'/> <set name='09-15 19:00' value='85.30713627049' color='ff6600' showName='0'/> <set name='09-15 20:00' value='95.74477668321' color='ff6600' showName='0'/> <set name='09-15 21:00' value='109.77368924105' color='ff6600' showName='0'/> <set name='09-15 22:00' value='123.30455528265' color='ff6600' showName='0'/> <set name='09-15 23:00' value='144.33208697502' color='ff6600' showName='0'/> <set name='09-16 00:00' value='157.31064362579' color='ff6600' showName='0'/> <set name='09-16 01:25' value='175.93690701188' color='ff6600' showName='0'/> <set name='09-16 02:00' value='184.60586886577' color='ff6600' showName='0'/> <set name='09-16 03:00' value='196.90226274248' color='ff6600' showName='0'/> <set name='09-16 04:00' value='210.92005917677' color='ff6600' showName='0'/> <set name='09-16 05:05' value='334.50451173565' color='ff6600' showName='0'/> <set name='09-16 06:05' value='376.50206837391' color='ff6600' showName='0'/> <set name='09-16 07:00' value='387.35500236524' color='ff6600' showName='0'/> <set name='09-16 08:00' value='395.35771811426' color='ff6600' showName='0'/> <set name='09-16 09:00' value='404.06129300836' color='ff6600' showName='0'/> <set name='09-16 10:00' value='412.27354638452' color='ff6600' showName='0'/> <set name='09-16 11:00' value='420.6448755887' color='ff6600' showName='0'/> <set name='09-16 12:00' value='429.81064219579' color='ff6600' showName='0'/> <set name='09-16 13:00' value='7.089714014151' color='ff6600' showName='0'/> <set name='09-16 14:00' value='18.635501316388' color='ff6600' showName='0'/> <set name='09-16 15:00' value='29.354599507609' color='ff6600' showName='0'/> <set name='09-16 16:00' value='41.664117603989' color='ff6600' showName='0'/> <set name='09-16 17:00' value='54.509265547112' color='ff6600' showName='0'/> <set name='09-16 18:05' value='66.195136510707' color='ff6600' showName='0'/> <set name='09-16 19:00' value='75.930230330622' color='ff6600' showName='0'/> <set name='09-16 20:00' value='85.168823583024' color='ff6600' showName='0'/> <set name='09-16 21:00' value='97.074484459961' color='ff6600' showName='0'/> <set name='09-16 22:00' value='107.83171461828' color='ff6600' showName='0'/> <set name='09-16 23:00' value='119.81379104178' color='ff6600' showName='0'/> </graph>" quality="high" width="240" height="130" name="kontrollbase" allowScriptAccess="always" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" /> </object> <!-- END Code Block for Chart kontrollbase --></td></tr></tr></div></table></body></html>
Java
Order.class_eval do after_create :create_tax_charge! alias original_generate_order_number generate_order_number def generate_order_number return original_generate_order_number unless Spree::Config[:running_order_numbers] year = Time.now.year if last = Order.last num = last.number[5..9].to_i + 1 else num = 30000 end self.number = "R#{year}#{num}" end #small fix, as the scope by label doesn't always work def tax_total adjustments.where(:originator_type => "TaxRate").map(&:amount).sum end # create tax rate adjustments (note plural) that apply to the shipping address (not like billing in original). # removes any previous Tax - Adjustments (in case the address changed). Could probably be optimised (later) def create_tax_charge! #puts "Adjustments #{adjustments} TAX #{tax_total}" #puts "CREATE TAX for #{ship_address} " all_rates = TaxRate.all matching_rates = all_rates.select { |rate| rate.zone.include?(ship_address) } if matching_rates.empty? matching_rates = all_rates.select{|rate| # get all rates that apply to default country rate.zone.country_list.collect{|c| c.id}.include?(Spree::Config[:default_country_id]) } end adjustments.where(:originator_type => "TaxRate").each do |old_charge| old_charge.destroy end matching_rates.each do |rate| #puts "Creating rate #{rate.amount}" rate.create_adjustment( rate.tax_category.description , self, self, true) end end end
Java
using Microsoft.Extensions.DependencyInjection; using OrchardCore.Email.Workflows.Activities; using OrchardCore.Email.Workflows.Drivers; using OrchardCore.Modules; using OrchardCore.Workflows.Helpers; namespace OrchardCore.Email.Workflows { [RequireFeatures("OrchardCore.Workflows")] public class Startup : StartupBase { public override void ConfigureServices(IServiceCollection services) { services.AddActivity<EmailTask, EmailTaskDisplayDriver>(); } } }
Java
#------------------------------------------------------------------------------ # Copyright (c) 2007, Riverbank Computing Limited # All rights reserved. # # This software is provided without warranty under the terms of the BSD license. # However, when used with the GPL version of PyQt the additional terms described in the PyQt GPL exception also apply # # Author: Riverbank Computing Limited # Description: <Enthought pyface package component> #------------------------------------------------------------------------------ # Standard library imports. import sys # Major package imports. from pyface.qt import QtCore, QtGui # Enthought library imports. from traits.api import Bool, Event, provides, Unicode # Local imports. from pyface.i_python_editor import IPythonEditor, MPythonEditor from pyface.key_pressed_event import KeyPressedEvent from pyface.widget import Widget from pyface.ui.qt4.code_editor.code_widget import AdvancedCodeWidget @provides(IPythonEditor) class PythonEditor(MPythonEditor, Widget): """ The toolkit specific implementation of a PythonEditor. See the IPythonEditor interface for the API documentation. """ #### 'IPythonEditor' interface ############################################ dirty = Bool(False) path = Unicode show_line_numbers = Bool(True) #### Events #### changed = Event key_pressed = Event(KeyPressedEvent) ########################################################################### # 'object' interface. ########################################################################### def __init__(self, parent, **traits): super(PythonEditor, self).__init__(**traits) self.control = self._create_control(parent) ########################################################################### # 'PythonEditor' interface. ########################################################################### def load(self, path=None): """ Loads the contents of the editor. """ if path is None: path = self.path # We will have no path for a new script. if len(path) > 0: f = open(self.path, 'r') text = f.read() f.close() else: text = '' self.control.code.setPlainText(text) self.dirty = False def save(self, path=None): """ Saves the contents of the editor. """ if path is None: path = self.path f = open(path, 'w') f.write(self.control.code.toPlainText()) f.close() self.dirty = False def select_line(self, lineno): """ Selects the specified line. """ self.control.code.set_line_column(lineno, 0) self.control.code.moveCursor(QtGui.QTextCursor.EndOfLine, QtGui.QTextCursor.KeepAnchor) ########################################################################### # Trait handlers. ########################################################################### def _path_changed(self): self._changed_path() def _show_line_numbers_changed(self): if self.control is not None: self.control.code.line_number_widget.setVisible( self.show_line_numbers) self.control.code.update_line_number_width() ########################################################################### # Private interface. ########################################################################### def _create_control(self, parent): """ Creates the toolkit-specific control for the widget. """ self.control = control = AdvancedCodeWidget(parent) self._show_line_numbers_changed() # Install event filter to trap key presses. event_filter = PythonEditorEventFilter(self, self.control) self.control.installEventFilter(event_filter) self.control.code.installEventFilter(event_filter) # Connect signals for text changes. control.code.modificationChanged.connect(self._on_dirty_changed) control.code.textChanged.connect(self._on_text_changed) # Load the editor's contents. self.load() return control def _on_dirty_changed(self, dirty): """ Called whenever a change is made to the dirty state of the document. """ self.dirty = dirty def _on_text_changed(self): """ Called whenever a change is made to the text of the document. """ self.changed = True class PythonEditorEventFilter(QtCore.QObject): """ A thin wrapper around the advanced code widget to handle the key_pressed Event. """ def __init__(self, editor, parent): super(PythonEditorEventFilter, self).__init__(parent) self.__editor = editor def eventFilter(self, obj, event): """ Reimplemented to trap key presses. """ if self.__editor.control and obj == self.__editor.control and \ event.type() == QtCore.QEvent.FocusOut: # Hack for Traits UI compatibility. self.__editor.control.emit(QtCore.SIGNAL('lostFocus')) elif self.__editor.control and obj == self.__editor.control.code and \ event.type() == QtCore.QEvent.KeyPress: # Pyface doesn't seem to be Unicode aware. Only keep the key code # if it corresponds to a single Latin1 character. kstr = event.text() try: kcode = ord(str(kstr)) except: kcode = 0 mods = event.modifiers() self.key_pressed = KeyPressedEvent( alt_down = ((mods & QtCore.Qt.AltModifier) == QtCore.Qt.AltModifier), control_down = ((mods & QtCore.Qt.ControlModifier) == QtCore.Qt.ControlModifier), shift_down = ((mods & QtCore.Qt.ShiftModifier) == QtCore.Qt.ShiftModifier), key_code = kcode, event = event) return super(PythonEditorEventFilter, self).eventFilter(obj, event)
Java
#include <iostream> #include <stdlib.h> #include <unistd.h> #include <stdio.h> #include <fcntl.h> #include <sys/types.h> #include <sys/stat.h> #include <dirent.h> #include <errno.h> using namespace std; int main(int argc, char** argv) { if(argc <= 1) { cout << "Nothing passed in to argv." << endl; exit(1); } else { DIR *dirp; if(NULL == (dirp = opendir(argv[1]))) { perror("There was an error with opendir(). "); exit(1); } struct dirent *filespecs; errno = 0; while(NULL != (filespecs = readdir(dirp))) { cout << filespecs->d_name << " "; } if(errno != 0) { perror("There was an error with readdir(). "); exit(1); } cout << endl; if(-1 == closedir(dirp)) { perror("There was an error with closedir(). "); exit(1); } } return 0; }
Java
/* $OpenBSD: tls_server.c,v 1.4 2015/02/07 06:19:26 jsing Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include <openssl/ec.h> #include <openssl/ssl.h> #include <tls.h> #include "tls_internal.h" struct tls * tls_server(void) { struct tls *ctx; if ((ctx = tls_new()) == NULL) return (NULL); ctx->flags |= TLS_SERVER; return (ctx); } struct tls * tls_server_conn(struct tls *ctx) { struct tls *conn_ctx; if ((conn_ctx = tls_new()) == NULL) return (NULL); conn_ctx->flags |= TLS_SERVER_CONN; return (conn_ctx); } int tls_configure_server(struct tls *ctx) { EC_KEY *ecdh_key; unsigned char sid[SSL_MAX_SSL_SESSION_ID_LENGTH]; if ((ctx->ssl_ctx = SSL_CTX_new(SSLv23_server_method())) == NULL) { tls_set_error(ctx, "ssl context failure"); goto err; } if (tls_configure_ssl(ctx) != 0) goto err; if (tls_configure_keypair(ctx) != 0) goto err; if (ctx->config->dheparams == -1) SSL_CTX_set_dh_auto(ctx->ssl_ctx, 1); else if (ctx->config->dheparams == 1024) SSL_CTX_set_dh_auto(ctx->ssl_ctx, 2); if (ctx->config->ecdhecurve == -1) { SSL_CTX_set_ecdh_auto(ctx->ssl_ctx, 1); } else if (ctx->config->ecdhecurve != NID_undef) { if ((ecdh_key = EC_KEY_new_by_curve_name( ctx->config->ecdhecurve)) == NULL) { tls_set_error(ctx, "failed to set ECDHE curve"); goto err; } SSL_CTX_set_options(ctx->ssl_ctx, SSL_OP_SINGLE_ECDH_USE); SSL_CTX_set_tmp_ecdh(ctx->ssl_ctx, ecdh_key); EC_KEY_free(ecdh_key); } /* * Set session ID context to a random value. We don't support * persistent caching of sessions so it is OK to set a temporary * session ID context that is valid during run time. */ arc4random_buf(sid, sizeof(sid)); if (!SSL_CTX_set_session_id_context(ctx->ssl_ctx, sid, sizeof(sid))) { tls_set_error(ctx, "failed to set session id context"); goto err; } return (0); err: return (-1); } int tls_accept_socket(struct tls *ctx, struct tls **cctx, int socket) { struct tls *conn_ctx = *cctx; int ret, err; if ((ctx->flags & TLS_SERVER) == 0) { tls_set_error(ctx, "not a server context"); goto err; } if (conn_ctx == NULL) { if ((conn_ctx = tls_server_conn(ctx)) == NULL) { tls_set_error(ctx, "connection context failure"); goto err; } *cctx = conn_ctx; conn_ctx->socket = socket; if ((conn_ctx->ssl_conn = SSL_new(ctx->ssl_ctx)) == NULL) { tls_set_error(ctx, "ssl failure"); goto err; } if (SSL_set_fd(conn_ctx->ssl_conn, socket) != 1) { tls_set_error(ctx, "ssl set fd failure"); goto err; } SSL_set_app_data(conn_ctx->ssl_conn, conn_ctx); } if ((ret = SSL_accept(conn_ctx->ssl_conn)) != 1) { err = tls_ssl_error(conn_ctx, ret, "accept"); if (err == TLS_READ_AGAIN || err == TLS_WRITE_AGAIN) { return (err); } goto err; } return (0); err: return (-1); }
Java
import argparse import glob import hashlib import json import os IRMAS_INDEX_PATH = '../mirdata/indexes/irmas_index.json' def md5(file_path): """Get md5 hash of a file. Parameters ---------- file_path: str File path. Returns ------- md5_hash: str md5 hash of data in file_path """ hash_md5 = hashlib.md5() with open(file_path, 'rb') as fhandle: for chunk in iter(lambda: fhandle.read(4096), b''): hash_md5.update(chunk) return hash_md5.hexdigest() def strip_first_dir(full_path): return os.path.join(*(full_path.split(os.path.sep)[1:])) def make_irmas_index(irmas_data_path): count = 0 irmas_dict = dict() for root, dirs, files in os.walk(irmas_data_path): for directory in dirs: if 'Train' in directory: for root_, dirs_, files_ in os.walk( os.path.join(irmas_data_path, directory) ): for directory_ in dirs_: for root__, dirs__, files__ in os.walk( os.path.join(irmas_data_path, directory, directory_) ): for file in files__: if file.endswith('.wav'): if 'dru' in file: irmas_id_dru = file.split(']')[3] # Obtain id irmas_id_dru_no_wav = irmas_id_dru.split('.')[ 0 ] # Obtain id without '.wav' irmas_dict[irmas_id_dru_no_wav] = os.path.join( directory, directory_, file ) if 'nod' in file: irmas_id_nod = file.split(']')[3] # Obtain id irmas_id_nod_no_wav = irmas_id_nod.split('.')[ 0 ] # Obtain id without '.wav' irmas_dict[irmas_id_nod_no_wav] = os.path.join( directory, directory_, file ) else: irmas_id = file.split(']')[2] # Obtain id irmas_id_no_wav = irmas_id.split('.')[ 0 ] # Obtain id without '.wav' irmas_dict[irmas_id_no_wav] = os.path.join( directory, directory_, file ) irmas_test_dict = dict() for root, dirs, files in os.walk(irmas_data_path): for directory in dirs: if 'Test' in directory: for root_, dirs_, files_ in os.walk( os.path.join(irmas_data_path, directory) ): for directory_ in dirs_: for root__, dirs__, files__ in os.walk( os.path.join(irmas_data_path, directory, directory_) ): for file in files__: if file.endswith('.wav'): file_name = os.path.join( directory, directory_, file ) track_name = str(file_name.split('.wa')[0]) + '.txt' irmas_test_dict[count] = [file_name, track_name] count += 1 irmas_id_list = sorted(irmas_dict.items()) # Sort strokes by id irmas_index = {} for inst in irmas_id_list: print(inst[1]) audio_checksum = md5(os.path.join(irmas_data_path, inst[1])) irmas_index[inst[0]] = { 'audio': (inst[1], audio_checksum), 'annotation': (inst[1], audio_checksum), } index = 1 for inst in irmas_test_dict.values(): audio_checksum = md5(os.path.join(irmas_data_path, inst[0])) annotation_checksum = md5(os.path.join(irmas_data_path, inst[1])) irmas_index[index] = { 'audio': (inst[0], audio_checksum), 'annotation': (inst[1], annotation_checksum), } index += 1 with open(IRMAS_INDEX_PATH, 'w') as fhandle: json.dump(irmas_index, fhandle, indent=2) def make_irmas_test_index(irmas_data_path): count = 1 irmas_dict = dict() for root, dirs, files in os.walk(irmas_data_path): for directory in dirs: if 'Test' in directory: for root_, dirs_, files_ in os.walk( os.path.join(irmas_data_path, directory) ): for directory_ in dirs_: for root__, dirs__, files__ in os.walk( os.path.join(irmas_data_path, directory, directory_) ): for file in files__: if file.endswith('.wav'): file_name = os.path.join( directory, directory_, file ) track_name = str(file_name.split('.wa')[0]) + '.txt' irmas_dict[count] = [file_name, track_name] count += 1 irmas_index = {} index = 1 for inst in irmas_dict.values(): audio_checksum = md5(os.path.join(irmas_data_path, inst[0])) annotation_checksum = md5(os.path.join(irmas_data_path, inst[1])) irmas_index[index] = { 'audio': (inst[0], audio_checksum), 'annotation': (inst[1], annotation_checksum), } index += 1 with open(IRMAS_TEST_INDEX_PATH, 'w') as fhandle: json.dump(irmas_index, fhandle, indent=2) def main(args): make_irmas_index(args.irmas_data_path) # make_irmas_test_index(args.irmas_data_path) if __name__ == '__main__': PARSER = argparse.ArgumentParser(description='Make IRMAS index file.') PARSER.add_argument('irmas_data_path', type=str, help='Path to IRMAS data folder.') main(PARSER.parse_args())
Java
/************************************************************************************** * Copyright (c) 2013-2015, Finnish Social Science Data Archive/University of Tampere * * * * 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 the copyright holder nor the names of its contributors * * may be used to endorse or promote products derived from this software * * without specific prior written permission. * * * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR * * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON * * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * **************************************************************************************/ define(function (require) { 'use strict'; /** * Add localizations for general UI elements such as buttons * as well as all error messages even though most of these will not be needed at one time */ require('./addTranslation')('', { "page": { "&title": { "default": "Yhteiskuntatieteellinen tietoarkisto - Metka" } }, "topmenu": { "&desktop": { "default": "Työpöytä" }, "&expert": { "default": "Eksperttihaku" }, "&study": { "default": "Aineistot" }, "&variables": { "default": "Muuttujat" }, "&publication": { "default": "Julkaisut" }, "&series": { "default": "Sarjat" }, "&binder": { "default": "Mapit" }, "&report": { "default": "Raportit" }, "&settings": { "default": "Asetukset" }, "&help": { "default": "Ohjeet" }, "&logout": { "default": "Kirjaudu ulos" } }, "state": { "&DRAFT": { "default": "LUONNOS" }, "&APPROVED": { "default": "HYVÄKSYTTY" }, "&REMOVED": { "default": "POISTETTU" } }, "type": { "SERIES": { "&title": { "default": "Sarja" }, "&search": { "default": "Sarjahaku" } }, "STUDY": { "&title": { "default": "Aineisto" }, "&search": { "default": "Aineistohaku" }, "erroneous": { "&title": { "default": "Virheelliset" }, "table": { "&id": { "default": "Aineistonumero" }, "&name": { "default": "Aineiston nimi" }, "&errorPointCount": { "default": "Virhepisteet" } } } }, "STUDY_VARIABLES": { "&title": { "default": "Muuttujat" }, "&search": { "default": "Muuttujahaku" } }, "STUDY_VARIABLE": { "&title": { "default": "Muuttuja" }, "&search": { "default": "Muuttujahaku" } }, "STUDY_ATTACHMENT": { "&title": { "default": "Liite" }, "&search": { "default": "Liitehaku" } }, "PUBLICATION": { "&title": { "default": "Julkaisu" }, "&search": { "default": "Julkaisuhaku" } }, "BINDERS": { "&title": { "default": "Mapit" } }, "SETTINGS": { "&title": { "default": "Hallinta" } }, "BINDER_PAGE": { "&title": { "default": "Mapitus" } }, "STUDY_ERROR": { "&title": { "default": "Aineistovirhe" } } }, "general": { "result": { "&amount": { "default": "Rivejä: {length}" } }, "downloadInfo": { "&currentlyDownloading": { "default": "Lataus on jo käynnissä. Odota latauksen valmistumista ladataksesi uudelleen." } }, "buttons": { "&add": { "default": "Lisää" }, "&addSeries": { "default": "Lisää sarja" }, "&cancel": { "default": "Peruuta" }, "&close": { "default": "Sulje" }, "&download": { "default": "Lataa" }, "&upload": { "default": "Lataa" }, "&ok": { "default": "OK" }, "&save": { "default": "Tallenna" }, "&search": { "default": "Hae" }, "&remove": { "default": "Poista" }, "&no": { "default": "Ei" }, "&yes": { "default": "Kyllä" }, "&addGroup": { "default": "Lisää ryhmä" } }, "revision": { "compare": { "&begin": { "default": "Alku" }, "&changed": { "default": "Muutos" }, "&end": { "default": "Loppu" }, "&modifier": { "default": "Muuttaja" }, "&modifyDate": { "default": "Muutospvm" }, "&property": { "default": "Ominaisuus" }, "&original": { "default": "Alkuperäinen" }, "&title": { "default": "Revisioiden vertailu (revisio {0} -> revisio {1})" } }, "&compare": { "default": "Vertaa" }, "&publishDate": { "default": "Julkaisupvm" }, "&replace": { "default": "Korvaa" }, "&revisions": { "default": "Revisiot" } }, "&referenceValue": { "default": "Referenssiarvo" }, "&referenceType": { "default": "Tyyppi" }, "saveInfo": { "&savedAt": { "default": "Päivämäärä" }, "&savedBy": { "default": "Tallentaja" } }, "refSaveInfo": { "&savedAt": { "default": "Päivämäärä (viittaus)" }, "&savedBy": { "default": "Tallentaja (viittaus)" } }, "&refState": { "default": "Tila" }, "refApproveInfo": { "&approvedAt": { "default": "Hyväksytty (viittaus)" }, "&approvedBy": { "default": "Hyväksyjä (viittaus)" }, "&approvedRevision": { "default": "Revisio (viittaus)" } }, "selection": { "&empty": { "default": "-- Valitse --" } }, "table": { "&add": { "default": "Lisää" }, "countries": { "&addFinland": { "default": "Lisää Suomi" } } }, "&id": { "default": "ID" }, "&revision": { "default": "Revisio" }, "&handler": { "default": "Käsittelijä" }, "&noHandler": { "default": "Ei käsittelijää" } }, "search": { "state": { "&title": { "default": "Hae:" }, "&APPROVED": { "default": "Hyväksyttyjä" }, "&DRAFT": { "default": "Luonnoksia" }, "&REMOVED": { "default": "Poistettuja" } }, "result": { "&title": { "default": "Hakutulos" }, "&amount": { "default": "Hakutuloksia: {length}" }, "state": { "&title": { "default": "Tila" }, "&APPROVED": { "default": "Hyväksytty" }, "&DRAFT": { "default": "Luonnos" }, "&REMOVED": { "default": "Poistettu" } } } }, "settings": { "&title": { "default": "Asetukset" }, "upload": { "dataConfiguration": { "&title": { "default": "Datan konfiguraatio" }, "&upload": { "default": "Lataa datan konfiguraatio" } }, "guiConfiguration": { "&title": { "default": "GUI konfiguraatio" }, "&upload": { "default": "Lataa GUI konfiguraatio" } }, "miscJson": { "&title": { "default": "Json tiedosto" }, "&upload": { "default": "Lataa Json tiedosto" } } } }, "dialog": { "waitDialog": { "title": "Toimintoa suoritetaan..." } }, "alert": { "notice": { "&title": { "default": "Huomio" }, "approve": { "success": "Luonnos hyväksytty onnistuneesti." }, "save": { "success": "Luonnos tallennettu onnistuneesti." } }, "error": { "&title": { "default": "Virhe" }, "approve": { "fail": { "save": "Luonnoksen hyväksymisessä tapahtui virhe tallennuksen aikana.", "validate": "Luonnoksen hyväksymisessä tapahtui virhe datan validoinnin aikana." } }, "save": { "fail": "Luonnoksen tallentamisessa tapahtui virhe." } }, "gui": { "missingButtonHandler": { "&text": { "default": 'Ei käsittelijää painikkeelle [{0}] otsikolla "{1}"' } } } }, "confirmation": { "&title": { "default": "Varmistus" }, "remove": { "revision": { "&title": { "default": "Revision poiston varmistus" }, "draft": { "&text": { "default": "Haluatko varmasti poistaa {target} id:llä {id} luonnoksen {no}?" }, "data": { "&SERIES": { "default": "sarjalta" }, "&STUDY": { "default": "aineistolta" }, "&STUDY_VARIABLES": { "default": "aineistomuuttujilta" }, "&STUDY_VARIABLE": { "default": "muuttujalta" }, "&STUDY_ATTACHMENT": { "default": "aineistoliitteistä" }, "&PUBLICATION": { "default": "julkaisulta" }, "&BINDER_PAGE": { "default": "mapitukselta" } } }, "logical": { "&text": { "default": "Haluatko varmasti poistaa {target} id:llä {id}?" }, "data": { "&SERIES": { "default": "sarjan" }, "&STUDY": { "default": "aineiston" }, "&STUDY_ATTACHMENT": { "default": "aineistoliitteen" }, "&PUBLICATION": { "default": "julkaisun" }, "&BINDER_PAGE": { "default": "mapituksen" } } } } } } }); });
Java
# frozen_string_literal: true require 'rack/handler' module Rack module Handler module Puma DEFAULT_OPTIONS = { :Verbose => false, :Silent => false } def self.config(app, options = {}) require 'puma' require 'puma/configuration' require 'puma/log_writer' require 'puma/launcher' default_options = DEFAULT_OPTIONS.dup # Libraries pass in values such as :Port and there is no way to determine # if it is a default provided by the library or a special value provided # by the user. A special key `user_supplied_options` can be passed. This # contains an array of all explicitly defined user options. We then # know that all other values are defaults if user_supplied_options = options.delete(:user_supplied_options) (options.keys - user_supplied_options).each do |k| default_options[k] = options.delete(k) end end conf = ::Puma::Configuration.new(options, default_options) do |user_config, file_config, default_config| if options.delete(:Verbose) require 'rack/common_logger' app = Rack::CommonLogger.new(app, STDOUT) end if options[:environment] user_config.environment options[:environment] end if options[:Threads] min, max = options.delete(:Threads).split(':', 2) user_config.threads min, max end if options[:Host] || options[:Port] host = options[:Host] || default_options[:Host] port = options[:Port] || default_options[:Port] self.set_host_port_to_config(host, port, user_config) end if default_options[:Host] file_config.set_default_host(default_options[:Host]) end self.set_host_port_to_config(default_options[:Host], default_options[:Port], default_config) user_config.app app end conf end def self.run(app, **options) conf = self.config(app, options) log_writer = options.delete(:Silent) ? ::Puma::LogWriter.strings : ::Puma::LogWriter.stdio launcher = ::Puma::Launcher.new(conf, :log_writer => log_writer) yield launcher if block_given? begin launcher.run rescue Interrupt puts "* Gracefully stopping, waiting for requests to finish" launcher.stop puts "* Goodbye!" end end def self.valid_options { "Host=HOST" => "Hostname to listen on (default: localhost)", "Port=PORT" => "Port to listen on (default: 8080)", "Threads=MIN:MAX" => "min:max threads to use (default 0:16)", "Verbose" => "Don't report each request (default: false)" } end def self.set_host_port_to_config(host, port, config) config.clear_binds! if host || port if host && (host[0,1] == '.' || host[0,1] == '/') config.bind "unix://#{host}" elsif host && host =~ /^ssl:\/\// uri = URI.parse(host) uri.port ||= port || ::Puma::Configuration::DefaultTCPPort config.bind uri.to_s else if host port ||= ::Puma::Configuration::DefaultTCPPort end if port host ||= ::Puma::Configuration::DefaultTCPHost config.port port, host end end end end register :puma, Puma end end
Java
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>SetStartupInfo</title> <meta http-equiv="Content-Type" Content="text/html; charset=Windows-1251"> <link rel="stylesheet" type="text/css" href="../../styles/styles.css"> <script language="javascript" src='../links.js' type="text/javascript"></script> </head> <body> <h1>SetStartupInfo</h1> <div class=navbar> <a href="../index.html">ãëàâíàÿ</a> | <a href="index.html">ýêñïîðòèðóåìûå ôóíêöèè</a> </div> <div class=shortdescr> Ôóíêöèÿ <dfn>SetStartupInfo</dfn> âûçûâàåòñÿ îäèí ðàç, ïîñëå çàãðóçêè DLL-ìîäóëÿ â ïàìÿòü. FAR ïåðåäàåò ïëàãèíó èíôîðìàöèþ, íåîáõîäèìóþ äëÿ äàëüíåéøåé ðàáîòû.</div> <pre class=syntax> void WINAPI SetStartupInfo( const struct PluginStartupInfo *Info ); </pre> <h3>Ïàðàìåòðû</h3> <div class=descr> <div class=dfn>Info</div> <div class=dfndescr>Óêàçàòåëü íà ñòðóêòóðó <a href="../structures/pluginstartupinfo.html">PluginStartupInfo</a>. </div> </div> <h3>Âîçâðàùàåìîå çíà÷åíèå</h3> <div class=descr> Íåò. </div> <h3>Çàìå÷àíèÿ</h3> <div class=descr> <ol> <li> FAR Manager 1.65 è íèæå ýòà ôóíêöèÿ âûçûâàåòñÿ ïåðâîé, ñðàçó ïîñëå çàãðóçêè DLL-ìîäóëÿ. <li> FAR Manager 1.70 è âûøå ýòà ôóíêöèÿ âûçûâàåòñÿ ïîñëå âûçîâà ôóíêöèè <a href="getminfarversion.html">GetMinFarVersion</a>. <li>Óêàçàòåëü <dfn>Info</dfn> äåéñòâèòåëåí òîëüêî â îáëàñòè âèäèìîñòè äàííîé ôóíêöèè (äî âûõîäà èç ôóíêöèè), òàê ÷òî ñòðóêòóðà äîëæíà êîïèðîâàòüñÿ âî âíóòðåííþþ ïåðåìåííóþ ïëàãèíà äëÿ äàëüíåéøåãî èñïîëüçîâàíèÿ: <pre class=code>static struct PluginStartupInfo Info; ... void WINAPI _export SetStartupInfo(const struct PluginStartupInfo *Info) { ::Info=*Info; ... } </pre> <li>Åñëè â ïëàãèíå èñïîëüçóþòñÿ "ñòàíäàðòíûå ôóíêöèè" èç ñòðóêòóðû <a href="../fsf/index.html">FarStandardFunctions</a>, òî ÷ëåí <a href="../structures/pluginstartupinfo.html">PluginStartupInfo.FSF</a> òàê æå äîëæåí áûòü ñîõðàíåí â ëîêàëüíîå ïðîñòðàíñòâî ïëàãèíà: <pre class=code>static struct PluginStartupInfo Info; static struct FarStandardFunctions FSF; void _export SetStartupInfo(struct PluginStartupInfo *psInfo) { Info=*psInfo; FSF=*psInfo-&gt;FSF; Info.FSF=&amp;FSF; // ñêîððåêòèðóåì àäðåñ â ëîêàëüíîé ñòðóêòóðå ... } </pre> </ol> </div> </body> </html>
Java
/* * Copyright (c) 2005, Regents of the University of California * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * * Neither the name of the University of California, Berkeley nor * the names of its contributors may be used to endorse or promote * products derived from this software without specific prior * written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "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 THE * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED * OF THE POSSIBILITY OF SUCH DAMAGE. */ package blog.model; import java.util.Collection; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Set; import blog.bn.BayesNetVar; import blog.sample.EvalContext; /** * A Formula consisting of a single boolean-valued term. * * @see blog.model.Term * @see blog.model.Formula */ public class AtomicFormula extends Formula { public AtomicFormula(Term sent) { this.sent = sent; } public Term getTerm() { return sent; } public Object evaluate(EvalContext context) { Object value = sent.evaluate(context); if (value == null) { return null; } if (!(value instanceof Boolean)) { throw new IllegalStateException("Sentence " + sent + " has non-Boolean value " + value); } return (value.equals(Boolean.TRUE) ? Boolean.TRUE : Boolean.FALSE); } /** * Returns the (basic or derived) random variable that this atomic formula * corresponds to under the given assignment. This is just the random variable * corresponding to underlying Boolean term. */ public BayesNetVar getVariable() { return sent.getVariable(); } /** * Returns a singleton collection containing the term in this atomic formula. */ public Collection getSubExprs() { return Collections.singletonList(sent); } /** * Returns true. */ public boolean isLiteral() { return true; } public List<Term> getTopLevelTerms() { return Collections.singletonList(sent); } public Set getSatisfiersIfExplicit(EvalContext context, LogicalVar subject, GenericObject genericObj) { Set result = null; context.assign(subject, genericObj); // The only time we can determine the satisfiers is if this // formula can be evaluated on genericObj. Boolean value = (Boolean) evaluate(context); if (value != null) { result = (value.booleanValue() == true ? Formula.ALL_OBJECTS : Collections.EMPTY_SET); } context.unassign(subject); return result; } public Set getNonSatisfiersIfExplicit(EvalContext context, LogicalVar subject, GenericObject genericObj) { Set result = null; context.assign(subject, genericObj); // The only time we can determine the non-satisfiers is if // this formula can be evaluated on genericObj. Boolean value = (Boolean) evaluate(context); if (value != null) { result = (value.booleanValue() == false ? Formula.ALL_OBJECTS : Collections.EMPTY_SET); } context.unassign(subject); return result; } /** * Two atomic formulas are equal if their underlying terms are equal. */ public boolean equals(Object o) { if (o instanceof AtomicFormula) { AtomicFormula other = (AtomicFormula) o; return sent.equals(other.getTerm()); } return false; } public int hashCode() { return sent.hashCode(); } /** * Returns the string representation of the underlying term. */ public String toString() { return sent.toString(); } /** * Returns true if the underlying term satisfies the type/scope constraints * and has a Boolean type. */ public boolean checkTypesAndScope(Model model, Map scope, Type childType) { Term sentInScope = sent.getTermInScope(model, scope); if (sentInScope == null) { return false; } sent = sentInScope; if (!sent.getType().isSubtypeOf(BuiltInTypes.BOOLEAN)) { System.err.println("Error: Non-Boolean term treated as " + "atomic formula: " + sent); return false; } return true; } public ArgSpec replace(Term t, ArgSpec another) { Term newSent = (Term) sent.replace(t, another); if (newSent != sent) return compileAnotherIfCompiled(new AtomicFormula(newSent)); return this; } public ArgSpec getSubstResult(Substitution subst, Set<LogicalVar> boundVars) { return new AtomicFormula((Term) sent.getSubstResult(subst, boundVars)); } /** The Term instance, assumed to be boolean-valued */ private Term sent; }
Java
class RenameCurrencyTable < ActiveRecord::Migration def change rename_table :currencies, :spree_currencies end end
Java
import unittest import time import pprint import logging import scanner.logSetup as logSetup import pyximport print("Have Cython") pyximport.install() import dbPhashApi class TestCompareDatabaseInterface(unittest.TestCase): def __init__(self, *args, **kwargs): logSetup.initLogging() super().__init__(*args, **kwargs) def setUp(self): # We set up and tear down the tree a few times to validate the dropTree function self.log = logging.getLogger("Main.TestCompareDatabaseInterface") self.tree = dbPhashApi.PhashDbApi() self.tree.forceReload() def dist_check(self, distance, dbid, phash): qtime1 = time.time() have1 = self.tree.getWithinDistance_db(phash, distance=distance) qtime2 = time.time() qtime3 = time.time() have2 = self.tree.getIdsWithinDistance(phash, distance=distance) qtime4 = time.time() # print(dbid, have1) if have1 != have2: self.log.error("Mismatch!") for line in pprint.pformat(have1).split("\n"): self.log.error(line) for line in pprint.pformat(have2).split("\n"): self.log.error(line) self.assertTrue(dbid in have1) self.assertTrue(dbid in have2) self.assertEqual(have1, have2) self.log.info('Dist %s %s, %s', distance, qtime2-qtime1, qtime4-qtime3) def test_0(self): rand_r = self.tree.getRandomPhashRows(0.001) self.log.info("Have %s items to test with", len(rand_r)) stepno = 0 for dbid, phash in rand_r: self.dist_check(1, dbid, phash) self.dist_check(2, dbid, phash) self.dist_check(3, dbid, phash) self.dist_check(4, dbid, phash) self.dist_check(5, dbid, phash) self.dist_check(6, dbid, phash) self.dist_check(7, dbid, phash) self.dist_check(8, dbid, phash) stepno += 1 self.log.info("On step %s of %s", stepno, len(rand_r))
Java
require_relative '../../spec_helper' describe '/api/assessments' do before do login_to_environment end context 'GET /api/assessments' do it 'returns a list of assessments' do assessments = Controls.assessments assessments.each do |assessment| expect(assessment).to be_kind_of(Controls::Assessment) expect(assessment).to match_assessment_format end end end context 'GET /api/assessments/1' do it 'returns a single assessment' do assessment = Controls.assessments(1) expect(assessment).to be_kind_of(Controls::Assessment) expect(assessment).to match_assessment_format expect(assessment.id).to eq(1) expect(assessment.assessing?).to be_false expect(assessment.overall_risk_score).to be_within(5.0).of(5.0) end end end
Java
from numpy import array, zeros, ones, sqrt, ravel, mod, random, inner, conjugate from scipy.sparse import csr_matrix, csc_matrix, coo_matrix, bmat, eye from scipy import rand, mat, real, imag, linspace, hstack, vstack, exp, cos, sin, pi from pyamg.util.linalg import norm import pyamg from scipy.optimize import fminbound, fmin __all__ = ['one_D_helmholtz', 'min_wave'] def min_wave(A, omega, x, tol=1e-5, maxiter=25): ''' parameters ---------- A {matrix} 1D Helmholtz Operator omega {scalar} Wavenumber used to discretize Helmholtz problem x {array} 1D mesh for the problem tol {scalar} minimization tolerance maxit {integer} maximum iters for minimization algorithm returns ------- Applies minimization algorithm to find numerically lowest energy wavenumber for the matrix A, i.e., the omega shift that minimizes <Ac, c> / <c, c>, for c = cosine((omega+shift)x) ''' x = ravel(x) # Define scalar objective function, ignoring the # boundaries by only considering A*c at [1:-1] def obj_fcn(alpha): c = cos((omega+alpha)*x) Ac = (A*c)[1:-1] return norm(Ac)/norm(c[1:-1]) (xopt, fval, ierr, numfunc) = fminbound(obj_fcn, -0.99*omega, \ 0.99*omega, xtol=tol, maxfun=maxiter, full_output=True, disp=0) #print "Minimizer = %1.4f, Function Value at Min = %1.4e\nError Flag = %d,\ # Number of function evals = %d" % (xopt, fval, ierr, numfunc) return xopt def one_D_helmholtz(h, omega=1.0, nplane_waves=2): ''' parameters ---------- h {int} Number of grid spacings for 1-D Helmholtz omega {float} Defines Helmholtz wave number nplane_waves {int} Defines the number of planewaves used for the near null-space modes, B. 1: B = [ exp(ikx) ] 2: B = [ real(exp(ikx)), complex(exp(ikx)) ] returns ------- dictionary containing: A {matrix-like} LHS of linear system for Helmholtz problem, -laplace(u) - omega^2 u = f mesh_h {float} mesh size vertices {array-like} [X, Y] elements {None} None, just using 1-D finite-differencing ''' # Ensure Repeatability of "random" initial guess random.seed(10) # Mesh Spacing mesh_h = 1.0/(float(h)-1.0) # Construct Real Operator reA = pyamg.gallery.poisson( (h,), format='csr') reA = reA - mesh_h*mesh_h*omega*omega*\ eye(reA.shape[0], reA.shape[1], format='csr') dimen = reA.shape[0] # Construct Imaginary Operator imA = csr_matrix( coo_matrix( (array([2.0*mesh_h*omega]), \ (array([0]), array([0]))), shape=reA.shape) ) # Enforce Radiation Boundary Conditions at first grid point reA.data[1] = -2.0 # In order to maintain symmetry scale the first equation by 1/2 reA.data[0] = 0.5*reA.data[0] reA.data[1] = 0.5*reA.data[1] imA.data[0] = 0.5*imA.data[0] # Create complex-valued system complexA = reA + 1.0j*imA # For this case, the CG (continuous Galerkin) case is the default elements and vertices # because there is no DG mesh to speak of elements = None vertices = hstack((linspace(-1.0,1.0,h).reshape(-1,1), zeros((h,1)))) # Near null-space modes are 1-D Plane waves: [exp(ikx), i exp(ikx)] B = zeros( (dimen, nplane_waves), dtype=complex ) shift = min_wave(complexA, omega, vertices[:,0], tol=1e-9, maxiter=15) if nplane_waves == 1: B[:,0] = exp(1.0j*(omega+shift)*vertices[:,0]) elif nplane_waves == 2: B[:,0] = cos((omega+shift)*vertices[:,0]) B[:,1] = sin((omega+shift)*vertices[:,0]) return {'A' : complexA, 'B' : B, 'mesh_h' : mesh_h, \ 'elements' : elements, 'vertices' : vertices}
Java
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE762_Mismatched_Memory_Management_Routines__new_free_struct_54a.cpp Label Definition File: CWE762_Mismatched_Memory_Management_Routines__new_free.label.xml Template File: sources-sinks-54a.tmpl.cpp */ /* * @description * CWE: 762 Mismatched Memory Management Routines * BadSource: Allocate data using new * GoodSource: Allocate data using malloc() * Sinks: * GoodSink: Deallocate data using delete * BadSink : Deallocate data using free() * Flow Variant: 54 Data flow: data passed as an argument from one function through three others to a fifth; all five functions are in different source files * * */ #include "std_testcase.h" namespace CWE762_Mismatched_Memory_Management_Routines__new_free_struct_54 { #ifndef OMITBAD /* bad function declaration */ void badSink_b(twoIntsStruct * data); void bad() { twoIntsStruct * data; /* Initialize data*/ data = NULL; /* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */ data = new twoIntsStruct; badSink_b(data); } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B uses the GoodSource with the BadSink */ void goodG2BSink_b(twoIntsStruct * data); static void goodG2B() { twoIntsStruct * data; /* Initialize data*/ data = NULL; /* FIX: Allocate memory from the heap using malloc() */ data = (twoIntsStruct *)malloc(100*sizeof(twoIntsStruct)); if (data == NULL) {exit(-1);} goodG2BSink_b(data); } /* goodB2G uses the BadSource with the GoodSink */ void goodB2GSink_b(twoIntsStruct * data); static void goodB2G() { twoIntsStruct * data; /* Initialize data*/ data = NULL; /* POTENTIAL FLAW: Allocate memory with a function that requires delete to free the memory */ data = new twoIntsStruct; goodB2GSink_b(data); } void good() { goodG2B(); goodB2G(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE762_Mismatched_Memory_Management_Routines__new_free_struct_54; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
Java
<?php namespace backend\controllers; use Yii; use backend\models\Status; use backend\models\search\StatusSearch; use yii\web\Controller; use yii\web\NotFoundHttpException; use yii\filters\VerbFilter; use yii\filters\AccessControl; use common\models\PermissionHelpers; /** * StatusController implements the CRUD actions for Status model. */ class StatusController extends Controller { /** * @return array */ public function behaviors() { return [ 'access' => [ 'class' => AccessControl::className(), 'only' => ['index', 'view', 'create', 'update', 'delete'], 'rules' => [ [ 'actions' => ['index', 'view', 'create', 'update'], 'allow' => true, 'roles' => ['@'], 'matchCallback' => function($rule, $action){ return PermissionHelpers::requireMinimumRole('Admin') && PermissionHelpers::requireStatus('Active'); } ], [ 'actions' => ['delete'], 'allow' => true, 'roles' => ['@'], 'matchCallback' => function($rule, $action){ return PermissionHelpers::requireMinimumRole('SuperUser') && PermissionHelpers::requireStatus('Active'); } ], ], ], 'verbs'=> [ 'class' => VerbFilter::className(), 'actions' => [ 'delete' => ['post'], ], ], ]; } /** * Lists all Status models. * @return mixed */ public function actionIndex() { $searchModel = new StatusSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider, ]); } /** * Displays a single Status model. * @param integer $id * @return mixed */ public function actionView($id) { return $this->render('view', [ 'model' => $this->findModel($id), ]); } /** * Creates a new Status model. * If creation is successful, the browser will be redirected to the 'view' page. * @return mixed */ public function actionCreate() { $model = new Status(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->id]); } else { return $this->render('create', [ 'model' => $model, ]); } } /** * Updates an existing Status model. * If update is successful, the browser will be redirected to the 'view' page. * @param integer $id * @return mixed */ public function actionUpdate($id) { $model = $this->findModel($id); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->id]); } else { return $this->render('update', [ 'model' => $model, ]); } } /** * Deletes an existing Status model. * If deletion is successful, the browser will be redirected to the 'index' page. * @param integer $id * @return mixed */ public function actionDelete($id) { $this->findModel($id)->delete(); return $this->redirect(['index']); } /** * Finds the Status model based on its primary key value. * If the model is not found, a 404 HTTP exception will be thrown. * @param integer $id * @return Status the loaded model * @throws NotFoundHttpException if the model cannot be found */ protected function findModel($id) { if (($model = Status::findOne($id)) !== null) { return $model; } else { throw new NotFoundHttpException('Запрашиваемая страница не найдена.'); } } }
Java
from bluebottle.projects.serializers import ProjectPreviewSerializer from bluebottle.quotes.serializers import QuoteSerializer from bluebottle.slides.serializers import SlideSerializer from bluebottle.statistics.serializers import StatisticSerializer from rest_framework import serializers class HomePageSerializer(serializers.Serializer): id = serializers.CharField() quotes = QuoteSerializer(many=True) slides = SlideSerializer(many=True) statistics = StatisticSerializer(many=True) projects = ProjectPreviewSerializer(many=True)
Java
/* Copyright (c) 2015, Kripasindhu Sarkar All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder(s) nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 COPYRIGHT HOLDER BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOS 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. */ // // Created by sarkar on 03.06.15. // #pragma once #include <string> #include <vector> #include "od/common/pipeline/Detection.h" #include "od/common/pipeline/Scene.h" namespace od { enum DetectionMethod { PC_GLOBAL_FEATUREMATCHING, PC_LOCAL_CORRESPONDENCE_GROUPING, IMAGE_LOCAL_SIMPLE, IMAGE_GLOBAL_DENSE, IMAGE_GLOBAL_CLASSIFICATION, }; /** \brief The common class for detectors. Both Trainers and Detectors drerives from this and therefore, all the common data/functionalities of Trainers and Detectors should go here. * * * \author Kripasindhu Sarkar * */ class DetectorCommon { public: DetectorCommon(const std::string & trained_data_location); DetectorCommon() {} virtual void init() = 0; /** \brief Gets/Sets the directory containing the data for training. The trainer uses the data from directory for training. Detectors can use this location to get additional information in its detection algirhtms as well. */ std::string getTrainingInputLocation() const; /** \brief Gets/Sets the directory containing the data for training. The trainer uses the data from directory for training. Detectors can use this location to get additional information in its detection algirhtms as well. */ void setTrainingInputLocation(const std::string & training_input_location); /** \brief Gets/Sets the base directory for trained data. This should be same for all Trainers and Detectors and can be considered as the 'database' of trained data. Trainers uses one of its * subdirectories based on its type to store algo specific trained data. The corresponding Detector would use the same directory to fetch the trained data for online detection. */ std::string getTrainedDataLocation() const; /** \brief The base directory for trained data. This should be same for all Trainers and Detectors and can be considered as the 'database' of trained data. Trainers uses one of its * subdirectories based on its type to store algo specific trained data. The corresponding Detector would use the same directory to fetch the trained data for online detection. */ virtual void setTrainedDataLocation(const std::string & trained_data_location); /** \brief Gets the specific directory for a Trainer or a Detector inside trained_data_location_. */ std::string getSpecificTrainingDataLocation(); std::string getSpecificTrainingData(); const std::string & getTrainedDataID() const; void setTrainedDataID(const std::string & trainedDataID); protected: std::string training_input_location_, trained_data_location_; std::string trained_data_id_, trained_location_identifier_; }; /** \brief This is the main class for object detection and recognition. * * * \author Kripasindhu Sarkar * */ class ObjectDetector { public: const DetectionMethod & getMethod() const; void setDetectionMethod(const DetectionMethod & detection_method); bool getAlwaysTrain() const; void setAlwaysTrain(bool always_train); std::string getTrainingInputLocation() const; void setTrainingInputLocation(const std::string & training_input_location); std::string getTrainingDataLocation() const; void setTrainingDataLocation(const std::string & training_data_location); std::string getSpecificTrainingDataLocation(); virtual void init() = 0; virtual void initDetector(){} virtual void initTrainer(){} virtual int train() = 0; virtual int detect(shared_ptr<Scene> scene, const std::vector<shared_ptr<Detection> > & detections) = 0; virtual shared_ptr<Detection> detect(shared_ptr<Scene> scene) = 0; virtual shared_ptr<Detections> detectOmni(shared_ptr<Scene> scene) = 0; protected: DetectionMethod method_; bool always_train_; bool trained_; std::string training_input_location_, training_data_location_; std::string trained_data_ext_, trained_data_identifier_; }; }
Java
/**************************************************************************/ /* CONFIDENTIAL AND PROPRIETARY SOURCE CODE */ /* OF NETSCAPE COMMUNICATIONS CORPORATION */ /* */ /* Copyright © 1996,1997 Netscape Communications Corporation. All Rights */ /* Reserved. Use of this Source Code is subject to the terms of the */ /* applicable license agreement from Netscape Communications Corporation. */ /* */ /* The copyright notice(s) in this Source Code does not indicate actual */ /* or intended publication of this Source Code. */ /**************************************************************************/ #define LIBRARY_NAME "base" static char dbtbaseid[] = "$DBT: base referenced v1 $"; #include "i18n.h" /* Message IDs reserved for this file: CORE1000-CORE1999 */ BEGIN_STR(base) ResDef( DBT_LibraryID_, -1, dbtbaseid )/* extracted from dbtbase.h*/ ResDef( DBT_insufficientMemoryToCreateHashTa_, 1, "CORE1001: insufficient memory to create hash table" )/*extracted from cache.cpp*/ ResDef( DBT_insufficientMemoryToCreateHashTa_1, 2, "CORE1002: insufficient memory to create hash table" )/*extracted from cache.cpp*/ ResDef( DBT_cacheDestroyCacheTablesAppearCor_, 3, "CORE1003: cache_destroy: cache tables appear corrupt." )/*extracted from cache.cpp*/ ResDef( DBT_unableToAllocateHashEntry_, 4, "CORE1004: unable to allocate hash entry" )/*extracted from cache.cpp*/ ResDef( DBT_cacheInsertUnableToCreateCacheEn_, 5, "CORE1005: cache_insert: unable to create cache entry" )/*extracted from cache.cpp*/ ResDef( DBT_http10200OkNcontentTypeTextHtmlN_, 6, "HTTP/1.0 200 OK\nContent-type: text/html\n\n" )/*extracted from cache.cpp*/ ResDef( DBT_H2NetscapeCacheStatusReportH2N_, 7, "<H2>Server cache status report</H2>\n" )/*extracted from cache.cpp*/ ResDef( DBT_noCachesOnSystemP_, 8, "No caches on system<P>" )/*extracted from cache.cpp*/ ResDef( DBT_H2SCacheH2N_, 9, "<H2>%s cache</H2>\n" )/*extracted from cache.cpp*/ ResDef( DBT_cacheHitRatioDDFPNPN_, 10, "Cache hit ratio: %d/%d (%f)</P>\n</P>\n" )/*extracted from cache.cpp*/ ResDef( DBT_cacheSizeDDPNPN_, 11, "Cache size: %d/%d</P>\n</P>\n" )/*extracted from cache.cpp*/ ResDef( DBT_hashTableSizeDPNPN_, 12, "Hash table size: %d</P>\n</P>\n" )/*extracted from cache.cpp*/ ResDef( DBT_mruDPNlruDPN_, 13, "mru : %d</P>\nlru : %d</P>\n" )/*extracted from cache.cpp*/ ResDef( DBT_UlTableBorder4ThBucketThThAddres_, 14, "<UL><TABLE BORDER=4> <TH>Bucket</TH> <TH>Address</TH> <TH>Key</TH> <TH>Access Count</TH> <TH>Delete</TH> <TH>Next</TH> <TH>LRU</TH> <TH>MRU</TH> <TH>Data</TH>\n" )/*extracted from cache.cpp*/ ResDef( DBT_munmapFailedS_, 15, "CORE1015: munmap failed (%s)" )/*extracted from buffer.cpp*/ ResDef( DBT_munmapFailedS_1, 16, "CORE1016: munmap failed (%s)" )/*extracted from buffer.cpp*/ ResDef( DBT_closeFailedS_, 17, "CORE1017: close failed (%s)" )/*extracted from buffer.cpp*/ ResDef( DBT_Waitpid_Failed, 96, "CORE1096: waitpid failed for pid %d: errno = %d %s") ResDef( DBT_Waitpid_Returned, 97, "CORE1097: waitpid returned 0 for pid %d: errno = %d %s") ResDef( DBT_dnsCacheInsertErrorAllocatingEnt_, 113, "CORE1113: dns-cache-insert: Error allocating entry" )/*extracted from dns_cache.cpp*/ ResDef( DBT_dnsCacheInsertMallocFailure_, 114, "CORE1114: dns-cache-insert: malloc failure" )/*extracted from dns_cache.cpp*/ ResDef( DBT_SBS_, 116, "CORE1116: %s" )/*extracted from ereport.cpp*/ ResDef( DBT_netscapeExecutableAndSharedLibra_, 117, "CORE1117: Server executable and shared library have different versions" )/*extracted from ereport.cpp*/ ResDef( DBT_executableVersionIsS_, 118, "CORE1118: executable version is %s" )/*extracted from ereport.cpp*/ ResDef( DBT_sharedLibraryVersionIsS_, 119, "CORE1119: shared library version is %s" )/*extracted from ereport.cpp*/ ResDef( DBT_warning_, 121, "warning" )/*extracted from ereport.cpp*/ ResDef( DBT_config_, 122, "config" )/*extracted from ereport.cpp*/ ResDef( DBT_security_, 123, "security" )/*extracted from ereport.cpp*/ ResDef( DBT_failure_, 124, "failure" )/*extracted from ereport.cpp*/ ResDef( DBT_catastrophe_, 125, "catastrophe" )/*extracted from ereport.cpp*/ ResDef( DBT_info_, 126, "info" )/*extracted from ereport.cpp*/ ResDef( DBT_verbose_, 127, "fine" )/*extracted from ereport.cpp*/ ResDef( DBT_eventHandlerFailedToWaitOnEvents_, 128, "CORE1128: event_handler:Failed to wait on events %s" )/*extracted from eventhandler.cpp*/ ResDef( DBT_couldNotWaitOnResumeEventEventS_, 129, "CORE1129: could not wait on resume event event (%s)" )/*extracted from eventhandler.cpp*/ ResDef( DBT_dlopenOfSFailedS_, 130, "CORE1130: dlopen of %s failed (%s)" )/*extracted from LibMgr.cpp*/ ResDef( DBT_dlopenOfSFailedS_1, 131, "CORE1131: dlopen of %s failed (%s)" )/*extracted from LibMgr.cpp*/ ResDef( DBT_pipebufBuf2sdPipebufGrabIoErrorD_, 168, "CORE1168: pipebuf_buf2sd: pipebuf_grab IO_ERROR %d" )/*extracted from ntpipe.cpp*/ ResDef( DBT_poolInitInternalAllocatorDisabled_, 169, "CORE1169: pool-init: internal memory pool allocator disabled" )/*extracted from pool.cpp*/ ResDef( DBT_poolInitFreeSize0UsingD_, 170, "CORE1170: pool-init: free_size <= 0, using %d" )/*extracted from pool.cpp*/ ResDef( DBT_poolCreateBlockOutOfMemory_, 171, "CORE1171: pool-create-block: out of memory" )/*extracted from pool.cpp*/ ResDef( DBT_poolCreateOutOfMemory_, 172, "CORE1172: pool-create: out of memory" )/*extracted from pool.cpp*/ ResDef( DBT_poolCreateOutOfMemory_1, 173, "CORE1173: pool-create: out of memory" )/*extracted from pool.cpp*/ ResDef( DBT_poolMallocOutOfMemory_, 174, "CORE1174: pool-malloc: out of memory" )/*extracted from pool.cpp*/ ResDef( DBT_regexErrorSRegexS_, 176, "CORE1176: Invalid regular expression: %s (%s)" ) ResDef( DBT_couldNotRemoveTemporaryDirectory_, 204, "CORE1204: Could not remove temporary directory %s, Error %d" )/*extracted from util.cpp*/ ResDef( DBT_couldNotRemoveTemporaryDirectory_1, 205, "CORE1205: Could not remove temporary directory %s, Error %d" )/*extracted from util.cpp*/ ResDef( DBT_netAcceptEnter, 222, "CORE1222: Sem_grab failed (%s)") ResDef( DBT_netAcceptExit, 223, "CORE1223: Sem_release failed (%s)") ResDef( DBT_servNSSTerminatingService, 224, "CORE1224: Terminating service: %s\n") ResDef( DBT_servNSSSSLv2OnWithoutCiphers, 225, "CORE1225: SSLv2 is on, but no SSLv2 ciphers are enabled. SSLv2 connections will fail.") ResDef( DBT_servNSSSSLv3OnWithoutCiphers, 226, "CORE1226: SSLv3 is on, but no SSLv3 ciphers are enabled. SSLv3 connections will fail.") ResDef( DBT_servNSSPKCS11InitFailed, 227, "CORE1227: NSS PKCS #11 initialization failed (%s)") ResDef( DBT_servNSSSetDomesticFailed, 228, "CORE1228: NSS Set domestic policy failed: %d") ResDef( DBT_servNSSSetFrenchFailed, 229, "CORE1229: NSS Set French policy failed: %d") ResDef( DBT_servNSSSetExportFailed, 230, "CORE1230: NSS Set Export policy failed: %d") ResDef( DBT_servNSSClientAuthMisconfig, 231, "CORE1231: SSL v3 must be enabled to use SSLClientAuth") ResDef( DBT_servNSSNoCiphers, 232, "CORE1232: Security is on, but SSLv2, SSLv3 and TLS are all off. SSL/TLS connections will fail.") ResDef( DBT_servNSSPKCS11PinError, 233, "CORE1233: Error setting PKCS #11 PIN: %s") ResDef( DBT_servNSSExpiredCert, 234, "CORE1234: SSL server certificate %s is expired.") ResDef( DBT_servNSSCertNotValidYet, 235, "CORE1235: SSL server certificate %s is not yet valid.") ResDef( DBT_servNSSErrorSecureServerConfig, 236, "CORE1236: SSL error configuring server: %s") ResDef( DBT_servNSSHandshakeCallbackConfigureError, 237, "CORE1237: SSL error configuring handshake callback: %s") ResDef( DBT_servNSSSSLWarning, 240, "CORE1240: SSL_Warning: %s") ResDef( DBT_systemReallocSmallerSize, 241, "CORE1241: realloc: attempt to realloc to smaller size") ResDef( DBT_systemRFreeCorruptMemoryPre, 242, "CORE1242: free: corrupt memory (prebounds overwrite)") ResDef( DBT_systemRFreeCorruptMemoryPost, 243, "CORE1243: free: corrupt memory (postbounds overwrite)") ResDef( DBT_systemRFreeUnallocatedMem, 244, "CORE1244: free: freeing unallocated memory") ResDef( DBT_servNSSTLSOnWithoutCiphers, 245, "CORE1245: TLS is on, but no TLS ciphers are enabled. TLS connections will fail.") ResDef( DBT_notSupportedInThisRelease, 246, "CORE1246: %s is not supported in this release.") /* extracted from cinfo.cpp */ ResDef( DBT_servNSSnoPassfromWD, 247, "CORE1247: getting a SSL password from WD failed.") /* extracted from servnss.cpp */ ResDef( DBT_servNSSVirtualNoUrlhostSubjectMatch, 250, "CORE1250: In secure virtual server %s, host %s does not match subject %s of certificate %s.") /* extracted from sslconf.cpp */ ResDef( DBT_servNSSGroupNoServernameSubjectMatch, 251, "CORE1251: On HTTP listener %s, server name %s does not match subject \"%s\" of certificate %s.") /* extracted from sslconf.cpp */ ResDef( DBT_servNSSSSL2ProtocolDisabled, 252, "CORE1252: The SSL2 protocol is disabled, yet SSL2 ciphers were specified. Ignoring the following ciphers: %s") /* extracted from sslconf.cpp */ ResDef( DBT_servNSSSSL3TLSProtocolDisabled, 253, "CORE1253: The SSL3 and TLS protocols are disabled, yet SSL3/TLS ciphers were specified. Ignoring the following ciphers: %s") /* extracted from sslconf.cpp */ ResDef( DBT_GetHttpdObjsetCalledOutsideVS, 254, "CORE1254: NSAPI plugin called vs_get_httpd_objset outside of VSInitFunc/VSDestroyFunc processing") /* extracted from vs.cpp */ ResDef( DBT_GetDefaultHttpdObjsetCalledOutsideVS, 255, "CORE1255: NSAPI plugin called vs_get_default_httpd_objset outside of VSInitFunc/VSDestroyFunc processing") /* extracted from vs.cpp */ ResDef( DBT_servNSSdbnopassword, 256, "CORE1256: The server key database has not been initialized") ResDef( DBT_servNSStokenuninitialized, 257, "CORE1257: The token \"%s\" has not been initialized") ResDef( DBT_nocoredump, 258, "CORE1258: Failed to disable core dumps (%s)") ResDef( DBT_certnotfound, 259, "CORE1259: unable to find certificate %s") ResDef( DBT_keynotfound, 260, "CORE1260: unable to find a key for certificate %s") ResDef( DBT_badcipherstring, 261, "CORE1261: invalid cipher string %s. Format is +cipher1,-cipher2...") ResDef( DBT_badcipher, 262, "CORE1262: The cipher %s is not a valid cipher for this protocol") ResDef( DBT_unknowncipher, 263, "CORE1263: Unknown cipher: %s") ResDef( DBT_badsslparams, 265, "CORE1265: Error setting SSL parameters for HTTP listener") ResDef( DBT_slotnotfound, 266, "CORE1266: Unable to find slot %s for certificate %s") ResDef( DBT_outofmemory, 267, "CORE1267: out of memory") ResDef( DBT_securityoff, 268, "CORE1268: SSL/TLS cannot be enabled because PKCS #11 was explicitly disabled") ResDef( DBT_system_errmsg_outofmemory, 269, "out of memory") ResDef( DBT_system_errmsg_unknownerror, 270, "unknown error %d") ResDef( DBT_invalidshexp, 271, "invalid shell expression") ResDef( DBT_finer_, 272, "finer") ResDef( DBT_finest_, 273, "finest") ResDef( DBT_ereportFunctionUnsupported, 274, "CORE1274: %s is not supported in this release") ResDef( DBT_ereportErrorOpeningErrorLog, 275, "CORE1275: error opening error log %s (%s)") ResDef( DBT_ereportErrorReopeningErrorLog, 276, "CORE1276: error reopening error log %s (%s)") ResDef( DBT_ereportErrorRenamingErrorLog, 277, "CORE1277: error renaming error log %s to %s (%s)") ResDef( DBT_LineXTooLong, 278, "line %d too long") ResDef( DBT_maxVarDepthX, 279, "Exceeded maximum of %d nested variables") ResDef( DBT_varLoopFromXToY, 280, "Circular reference from $%s to $%s") ResDef( DBT_undefinedVarX, 281, "Undefined variable $%s") ResDef( DBT_badFragmentLenXStrY, 282, "Undefined variable %.*s") ResDef( DBT_tokenXPINPrompt, 283, "Please enter the PIN for the \"%s\" token: ") ResDef( DBT_tokenXPINIncorrect, 284, "The PIN specified for the \"%s\" token is incorrect.") ResDef( DBT_servNSSInitFailed, 285, "CORE1285: NSS initialization failed (%s)") ResDef( DBT_servNSSPINDlgError, 286, "CORE1286: Error prompting for PKCS #11 token PIN (Service may not be allowed to interact with desktop)") ResDef( DBT_servNSSPINWriteProcessMemoryError, 287, "CORE1287: Error writing PIN to shared memory") ResDef( DBT_tooManyCerts, 288, "CORE1288: Too many server certificates, installing only first %d") ResDef( DBT_unknownKEAType, 289, "CORE1289: Unknown cert KEA type (%d)") ResDef( DBT_badCiphersuite, 290, "CORE1290: Cipher suite %s is not supported (%s)") ResDef( DBT_suchWeakCipher, 291, "CORE1291: Weak cipher suite %s is enabled") ResDef (DBT_unknownCertType, 292, "CORE1292: Cert type required for cipher suite %s is unknown, the server may be unable to service SSL/TLS requests") ResDef( DBT_wantECCnoECC, 293, "CORE1293: Server has only ECC cert(s) but no suitable cipher suites are enabled. Enable some ECC cipher suites.") ResDef( DBT_wantRSAnoRSA, 294, "CORE1294: Server has only RSA cert(s) but no suitable cipher suites are enabled. Enable some RSA cipher suites.") ResDef( DBT_cannotBypass, 295, "CORE1295: PKCS#11 bypass has been disabled because the current configuration cannot support bypass") ResDef( DBT_nickCantBypass, 296, "CORE1296: Token associated with server certificate [%s] cannot support PKCS#11 bypass") /* DBT_nspr_errors_ */ ResDef( DBT_nspr_errors_0, 1000, "Out of memory" ) ResDef( DBT_nspr_errors_1, 1001, "Bad file descriptor" ) ResDef( DBT_nspr_errors_2, 1002, "Data temporarily not available" ) ResDef( DBT_nspr_errors_3, 1003, "Access fault" ) ResDef( DBT_nspr_errors_4, 1004, "Invalid method" ) ResDef( DBT_nspr_errors_5, 1005, "Illegal access" ) ResDef( DBT_nspr_errors_6, 1006, "Unknown error" ) ResDef( DBT_nspr_errors_7, 1007, "Pending interrupt" ) ResDef( DBT_nspr_errors_8, 1008, "Not implemented" ) ResDef( DBT_nspr_errors_9, 1009, "IO error" ) ResDef( DBT_nspr_errors_10, 1010, "IO timeout error" ) ResDef( DBT_nspr_errors_11, 1011, "IO already pending error" ) ResDef( DBT_nspr_errors_12, 1012, "Directory open error" ) ResDef( DBT_nspr_errors_13, 1013, "Invalid Argument" ) ResDef( DBT_nspr_errors_14, 1014, "Address not available" ) ResDef( DBT_nspr_errors_15, 1015, "Address not supported" ) ResDef( DBT_nspr_errors_16, 1016, "Already connected" ) ResDef( DBT_nspr_errors_17, 1017, "Bad address" ) ResDef( DBT_nspr_errors_18, 1018, "Address already in use" ) ResDef( DBT_nspr_errors_19, 1019, "Connection refused" ) ResDef( DBT_nspr_errors_20, 1020, "Network unreachable" ) ResDef( DBT_nspr_errors_21, 1021, "Connection timed out" ) ResDef( DBT_nspr_errors_22, 1022, "Not connected" ) ResDef( DBT_nspr_errors_23, 1023, "Load library error" ) ResDef( DBT_nspr_errors_24, 1024, "Unload library error" ) ResDef( DBT_nspr_errors_25, 1025, "Find symbol error" ) ResDef( DBT_nspr_errors_26, 1026, "Insufficient resources" ) ResDef( DBT_nspr_errors_27, 1027, "Directory lookup error" ) ResDef( DBT_nspr_errors_28, 1028, "Invalid thread private data key" ) ResDef( DBT_nspr_errors_29, 1029, "PR_PROC_DESC_TABLE_FULL_ERROR: file descriptor table full" ) ResDef( DBT_nspr_errors_30, 1030, "PR_SYS_DESC_TABLE_FULL_ERROR: file descriptor table full" ) ResDef( DBT_nspr_errors_31, 1031, "Descriptor is not a socket" ) ResDef( DBT_nspr_errors_32, 1032, "Descriptor is not a TCP socket" ) ResDef( DBT_nspr_errors_33, 1033, "Socket address is already bound" ) ResDef( DBT_nspr_errors_34, 1034, "No access rights" ) ResDef( DBT_nspr_errors_35, 1035, "Operation not supported" ) ResDef( DBT_nspr_errors_36, 1036, "Protocol not supported" ) ResDef( DBT_nspr_errors_37, 1037, "Remote file error" ) ResDef( DBT_nspr_errors_38, 1038, "Buffer overflow error" ) ResDef( DBT_nspr_errors_39, 1039, "Connection reset by peer" ) ResDef( DBT_nspr_errors_40, 1040, "Range error" ) ResDef( DBT_nspr_errors_41, 1041, "Deadlock error" ) ResDef( DBT_nspr_errors_42, 1042, "File is locked" ) ResDef( DBT_nspr_errors_43, 1043, "File is too big" ) ResDef( DBT_nspr_errors_44, 1044, "No space on device" ) ResDef( DBT_nspr_errors_45, 1045, "Pipe error" ) ResDef( DBT_nspr_errors_46, 1046, "No seek on device" ) ResDef( DBT_nspr_errors_47, 1047, "File is a directory" ) ResDef( DBT_nspr_errors_48, 1048, "Loop error" ) ResDef( DBT_nspr_errors_49, 1049, "Name too long" ) ResDef( DBT_nspr_errors_50, 1050, "File not found" ) ResDef( DBT_nspr_errors_51, 1051, "File is not a directory" ) ResDef( DBT_nspr_errors_52, 1052, "Read-only filesystem" ) ResDef( DBT_nspr_errors_53, 1053, "Directory not empty" ) ResDef( DBT_nspr_errors_54, 1054, "Filesystem mounted" ) ResDef( DBT_nspr_errors_55, 1055, "Not same device" ) ResDef( DBT_nspr_errors_56, 1056, "Directory corrupted" ) ResDef( DBT_nspr_errors_57, 1057, "File exists" ) ResDef( DBT_nspr_errors_58, 1058, "Maximum directory entries" ) ResDef( DBT_nspr_errors_59, 1059, "Invalid device state" ) ResDef( DBT_nspr_errors_60, 1060, "Device is locked" ) ResDef( DBT_nspr_errors_61, 1061, "No more files" ) ResDef( DBT_nspr_errors_62, 1062, "End of file" ) ResDef( DBT_nspr_errors_63, 1063, "File seek error" ) ResDef( DBT_nspr_errors_64, 1064, "File is busy" ) ResDef( DBT_nspr_errors_65, 1065, "NSPR error 65" ) ResDef( DBT_nspr_errors_66, 1066, "In progress error" ) ResDef( DBT_nspr_errors_67, 1067, "Already initiated" ) ResDef( DBT_nspr_errors_68, 1068, "Group empty" ) ResDef( DBT_nspr_errors_69, 1069, "Invalid state" ) ResDef( DBT_nspr_errors_70, 1070, "Network down" ) ResDef( DBT_nspr_errors_71, 1071, "Socket shutdown" ) ResDef( DBT_nspr_errors_72, 1072, "Connect aborted" ) ResDef( DBT_nspr_errors_73, 1073, "Host unreachable" ) ResDef( DBT_nspr_errors_74, 1074, "Library not loaded" ) ResDef( DBT_nspr_errors_75, 1075, "The one-time function was previously called and failed. Its error code is no longer available" ) /* DBT_libsec_errors: http://www.mozilla.org/projects/security/pki/nss/ref/ssl/sslerr.html */ ResDef( DBT_libsec_errors_0, 2000, "SEC_ERROR_IO: I/O error during authentication or crypto operation." ) ResDef( DBT_libsec_errors_1, 2001, "SEC_ERROR_LIBRARY_FAILURE: Library failure." ) ResDef( DBT_libsec_errors_2, 2002, "SEC_ERROR_BAD_DATA: Bad data was received." ) ResDef( DBT_libsec_errors_3, 2003, "SEC_ERROR_OUTPUT_LEN: Output length error." ) ResDef( DBT_libsec_errors_4, 2004, "SEC_ERROR_INPUT_LEN: Input length error." ) ResDef( DBT_libsec_errors_5, 2005, "SEC_ERROR_INVALID_ARGS: Invalid arguments." ) ResDef( DBT_libsec_errors_6, 2006, "SEC_ERROR_INVALID_ALGORITHM: Certificate contains invalid encryption or signature algorithm." ) ResDef( DBT_libsec_errors_7, 2007, "SEC_ERROR_INVALID_AVA: Invalid AVA." ) ResDef( DBT_libsec_errors_8, 2008, "SEC_ERROR_INVALID_TIME: Certificate contains an invalid time value." ) ResDef( DBT_libsec_errors_9, 2009, "SEC_ERROR_BAD_DER: Improper DER encoding." ) ResDef( DBT_libsec_errors_10, 2010, "SEC_ERROR_BAD_SIGNATURE: Client certificate has invalid signature." ) ResDef( DBT_libsec_errors_11, 2011, "SEC_ERROR_EXPIRED_CERTIFICATE: Client certificate has expired." ) ResDef( DBT_libsec_errors_12, 2012, "SEC_ERROR_REVOKED_CERTIFICATE: Client certificate has been revoked." ) ResDef( DBT_libsec_errors_13, 2013, "SEC_ERROR_UNKNOWN_ISSUER: Client certificate is signed by an unknown issuer." ) ResDef( DBT_libsec_errors_14, 2014, "SEC_ERROR_BAD_KEY: Client certificate contains an invalid public key." ) ResDef( DBT_libsec_errors_15, 2015, "SEC_ERROR_BAD_PASSWORD: Security password entered is incorrect." ) ResDef( DBT_libsec_errors_16, 2016, "SEC_ERROR_RETRY_PASSWORD: Password entered incorrectly." ) ResDef( DBT_libsec_errors_17, 2017, "SEC_ERROR_NO_NODELOCK: No nodelock." ) ResDef( DBT_libsec_errors_18, 2018, "SEC_ERROR_BAD_DATABASE: Problem using certificate or key database." ) ResDef( DBT_libsec_errors_19, 2019, "SEC_ERROR_NO_MEMORY: Out of memory." ) ResDef( DBT_libsec_errors_20, 2020, "SEC_ERROR_UNTRUSTED_ISSUER: Client certificate is signed by an untrusted issuer." ) ResDef( DBT_libsec_errors_21, 2021, "SEC_ERROR_UNTRUSTED_CERT: Client certificate has been marked as not trusted." ) ResDef( DBT_libsec_errors_22, 2022, "SEC_ERROR_DUPLICATE_CERT: Certificate already exists in your database." ) ResDef( DBT_libsec_errors_23, 2023, "SEC_ERROR_DUPLICATE_CERT_TIME: Downloaded certificate's name duplicates one already in your database." ) ResDef( DBT_libsec_errors_24, 2024, "SEC_ERROR_ADDING_CERT: Error adding certificate to database." ) ResDef( DBT_libsec_errors_25, 2025, "SEC_ERROR_FILING_KEY: Error re-filing the key for this certificate." ) ResDef( DBT_libsec_errors_26, 2026, "SEC_ERROR_NO_KEY: The private key for this certificate cannot be found in key database." ) ResDef( DBT_libsec_errors_27, 2027, "SEC_ERROR_CERT_VALID: This certificate is valid." ) ResDef( DBT_libsec_errors_28, 2028, "SEC_ERROR_CERT_NOT_VALID: This certificate is not valid." ) ResDef( DBT_libsec_errors_29, 2029, "SEC_ERROR_CERT_NO_RESPONSE: No Response." ) ResDef( DBT_libsec_errors_30, 2030, "SEC_ERROR_EXPIRED_ISSUER_CERTIFICATE: The certificate issuer's certificate has expired (check your system date and time)." ) ResDef( DBT_libsec_errors_31, 2031, "SEC_ERROR_CRL_EXPIRED: The CRL for the certificate's issuer has expired (update it or check your system data and time)." ) ResDef( DBT_libsec_errors_32, 2032, "SEC_ERROR_CRL_BAD_SIGNATURE: The CRL for the certificate's issuer has an invalid signature." ) ResDef( DBT_libsec_errors_33, 2033, "SEC_ERROR_CRL_INVALID: New CRL has an invalid format." ) ResDef( DBT_libsec_errors_34, 2034, "SEC_ERROR_EXTENSION_VALUE_INVALID: Certificate extension value is invalid." ) ResDef( DBT_libsec_errors_35, 2035, "SEC_ERROR_EXTENSION_NOT_FOUND: Certificate extension not found." ) ResDef( DBT_libsec_errors_36, 2036, "SEC_ERROR_CA_CERT_INVALID: Issuer certificate is invalid." ) ResDef( DBT_libsec_errors_37, 2037, "SEC_ERROR_PATH_LEN_CONSTRAINT_INVALID: Certificate path length constraint is invalid." ) ResDef( DBT_libsec_errors_38, 2038, "SEC_ERROR_CERT_USAGES_INVALID: Certificate usages field is invalid." ) ResDef( DBT_libsec_errors_39, 2039, "SEC_INTERNAL_ONLY: **Internal ONLY module**" ) ResDef( DBT_libsec_errors_40, 2040, "SEC_ERROR_INVALID_KEY: The key does not support the requested operation." ) ResDef( DBT_libsec_errors_41, 2041, "SEC_ERROR_UNKNOWN_CRITICAL_EXTENSION: Certificate contains unknown critical extension." ) ResDef( DBT_libsec_errors_42, 2042, "SEC_ERROR_OLD_CRL: New CRL is not later than the current one." ) ResDef( DBT_libsec_errors_43, 2043, "SEC_ERROR_NO_EMAIL_CERT: Not encrypted or signed: You do not yet have an email certificate." ) ResDef( DBT_libsec_errors_44, 2044, "SEC_ERROR_NO_RECIPIENT_CERTS_QUERY: Not encrypted: You do not have certificates for each of the recipients." ) ResDef( DBT_libsec_errors_45, 2045, "SEC_ERROR_NOT_A_RECIPIENT: Cannot decrypt: You are not a recipient, or matching certificate and private key not found." ) ResDef( DBT_libsec_errors_46, 2046, "SEC_ERROR_PKCS7_KEYALG_MISMATCH: Cannot decrypt: Key encryption algorithm does not match your certificate." ) ResDef( DBT_libsec_errors_47, 2047, "SEC_ERROR_PKCS7_BAD_SIGNATURE: Signature verification failed: No signer found, too many signers found, or improper or corrupted data." ) ResDef( DBT_libsec_errors_48, 2048, "SEC_ERROR_UNSUPPORTED_KEYALG: Unsupported or unknown key algorithm." ) ResDef( DBT_libsec_errors_49, 2049, "SEC_ERROR_DECRYPTION_DISALLOWED: Cannot decrypt: Encrypted using a disallowed algorithm or key size." ) ResDef( DBT_libsec_errors_50, 2050, "XP_LIBSEC_FORTEZZA_BAD_CARD: Fortezza card has not been properly initialized. Please remove it and return it to your issuer." ) ResDef( DBT_libsec_errors_51, 2051, "XP_LIBSEC_FORTEZZA_NO_CARD: No Fortezza cards Found." ) ResDef( DBT_libsec_errors_52, 2052, "XP_LIBSEC_FORTEZZA_NONE_SELECTED: No Fortezza card selected." ) ResDef( DBT_libsec_errors_53, 2053, "XP_LIBSEC_FORTEZZA_MORE_INFO: Please select a personality to get more info on." ) ResDef( DBT_libsec_errors_54, 2054, "XP_LIBSEC_FORTEZZA_PERSON_NOT_FOUND: Personality not found." ) ResDef( DBT_libsec_errors_55, 2055, "XP_LIBSEC_FORTEZZA_NO_MORE_INFO: No more information on that Personality." ) ResDef( DBT_libsec_errors_56, 2056, "XP_LIBSEC_FORTEZZA_BAD_PIN: Invalid PIN." ) ResDef( DBT_libsec_errors_57, 2057, "XP_LIBSEC_FORTEZZA_PERSON_ERROR: Couldn't initialize Fortezza personalities." ) ResDef( DBT_libsec_errors_58, 2058, "SEC_ERROR_NO_KRL: No KRL for this site's certificate has been found." ) ResDef( DBT_libsec_errors_59, 2059, "SEC_ERROR_KRL_EXPIRED: The KRL for this site's certificate has expired." ) ResDef( DBT_libsec_errors_60, 2060, "SEC_ERROR_KRL_BAD_SIGNATURE: The KRL for this site's certificate has an invalid signature." ) ResDef( DBT_libsec_errors_61, 2061, "SEC_ERROR_REVOKED_KEY: The key for this site's certificate has been revoked." ) ResDef( DBT_libsec_errors_62, 2062, "SEC_ERROR_KRL_INVALID: New KRL has an invalid format." ) ResDef( DBT_libsec_errors_63, 2063, "SEC_ERROR_NEED_RANDOM: Need random data." ) ResDef( DBT_libsec_errors_64, 2064, "SEC_ERROR_NO_MODULE: No security module can perform the requested operation." ) ResDef( DBT_libsec_errors_65, 2065, "SEC_ERROR_NO_TOKEN: The security card or token does not exist, needs to be initialized, or has been removed." ) ResDef( DBT_libsec_errors_66, 2066, "SEC_ERROR_READ_ONLY: Read-only database." ) ResDef( DBT_libsec_errors_67, 2067, "SEC_ERROR_NO_SLOT_SELECTED: No slot or token was selected." ) ResDef( DBT_libsec_errors_68, 2068, "SEC_ERROR_CERT_NICKNAME_COLLISION: A certificate with the same nickname already exists." ) ResDef( DBT_libsec_errors_69, 2069, "SEC_ERROR_KEY_NICKNAME_COLLISION: A key with the same nickname already exists." ) ResDef( DBT_libsec_errors_70, 2070, "SEC_ERROR_SAFE_NOT_CREATED: Error while creating safe object." ) ResDef( DBT_libsec_errors_71, 2071, "SEC_ERROR_BAGGAGE_NOT_CREATED: Error while creating baggage object." ) ResDef( DBT_libsec_errors_72, 2072, "XP_JAVA_REMOVE_PRINCIPAL_ERROR: Couldn't remove the principal." ) ResDef( DBT_libsec_errors_73, 2073, "XP_JAVA_DELETE_PRIVILEGE_ERROR: Couldn't delete the privilege." ) ResDef( DBT_libsec_errors_74, 2074, "XP_JAVA_CERT_NOT_EXISTS_ERROR: This principal doesn't have a certificate." ) ResDef( DBT_libsec_errors_75, 2075, "SEC_ERROR_BAD_EXPORT_ALGORITHM: Required algorithm is not allowed." ) ResDef( DBT_libsec_errors_76, 2076, "SEC_ERROR_EXPORTING_CERTIFICATES: Error attempting to export certificates." ) ResDef( DBT_libsec_errors_77, 2077, "SEC_ERROR_IMPORTING_CERTIFICATES: Error attempting to import certificates." ) ResDef( DBT_libsec_errors_78, 2078, "SEC_ERROR_PKCS12_DECODING_PFX: Unable to import. Decoding error. File not valid." ) ResDef( DBT_libsec_errors_79, 2079, "SEC_ERROR_PKCS12_INVALID_MAC: Unable to import. Invalid MAC. Incorrect password or corrupt file." ) ResDef( DBT_libsec_errors_80, 2080, "SEC_ERROR_PKCS12_UNSUPPORTED_MAC_ALGORITHM: Unable to import. MAC algorithm not supported." ) ResDef( DBT_libsec_errors_81, 2081, "SEC_ERROR_PKCS12_UNSUPPORTED_TRANSPORT_MODE: Unable to import." ) ResDef( DBT_libsec_errors_82, 2082, "SEC_ERROR_PKCS12_CORRUPT_PFX_STRUCTURE: Unable to import. File structure is corrupt." ) ResDef( DBT_libsec_errors_83, 2083, "SEC_ERROR_PKCS12_UNSUPPORTED_PBE_ALGORITHM: Unable to import. Encryption algorithm not supported." ) ResDef( DBT_libsec_errors_84, 2084, "SEC_ERROR_PKCS12_UNSUPPORTED_VERSION: Unable to import. File version not supported." ) ResDef( DBT_libsec_errors_85, 2085, "SEC_ERROR_PKCS12_PRIVACY_PASSWORD_INCORRECT: Unable to import. Incorrect privacy password." ) ResDef( DBT_libsec_errors_86, 2086, "SEC_ERROR_PKCS12_CERT_COLLISION: Unable to import. Same nickname already exists in database." ) ResDef( DBT_libsec_errors_87, 2087, "SEC_ERROR_USER_CANCELLED: The user pressed cancel." ) ResDef( DBT_libsec_errors_88, 2088, "SEC_ERROR_PKCS12_DUPLICATE_DATA: Not imported, already in database." ) ResDef( DBT_libsec_errors_89, 2089, "SEC_ERROR_MESSAGE_SEND_ABORTED: Message not sent." ) ResDef( DBT_libsec_errors_90, 2090, "SEC_ERROR_INADEQUATE_KEY_USAGE: Certificate key usage inadequate for attempted operation." ) ResDef( DBT_libsec_errors_91, 2091, "SEC_ERROR_INADEQUATE_CERT_TYPE: Certificate type not approved for application." ) ResDef( DBT_libsec_errors_92, 2092, "SEC_ERROR_CERT_ADDR_MISMATCH: Address in signing certificate does not match address in message headers." ) ResDef( DBT_libsec_errors_93, 2093, "SEC_ERROR_PKCS12_UNABLE_TO_IMPORT_KEY: Unable to import. Error attempting to import private key." ) ResDef( DBT_libsec_errors_94, 2094, "SEC_ERROR_PKCS12_IMPORTING_CERT_CHAIN: Unable to import. Error attempting to import certificate chain." ) ResDef( DBT_libsec_errors_95, 2095, "SEC_ERROR_PKCS12_UNABLE_TO_LOCATE_OBJECT_BY_NAME: Unable to export. Unable to locate certificate or key by nickname." ) ResDef( DBT_libsec_errors_96, 2096, "SEC_ERROR_PKCS12_UNABLE_TO_EXPORT_KEY: Unable to export. Private Key could not be located and exported." ) ResDef( DBT_libsec_errors_97, 2097, "SEC_ERROR_PKCS12_UNABLE_TO_WRITE: Unable to export. Unable to write the export file." ) ResDef( DBT_libsec_errors_98, 2098, "SEC_ERROR_PKCS12_UNABLE_TO_READ: Unable to import. Unable to read the import file." ) ResDef( DBT_libsec_errors_99, 2099, "SEC_ERROR_PKCS12_KEY_DATABASE_NOT_INITIALIZED: Unable to export. Key database corrupt or deleted." ) ResDef( DBT_libsec_errors_100, 2100, "SEC_ERROR_KEYGEN_FAIL: Unable to generate public/private key pair." ) ResDef( DBT_libsec_errors_101, 2101, "SEC_ERROR_INVALID_PASSWORD: Password entered is invalid." ) ResDef( DBT_libsec_errors_102, 2102, "SEC_ERROR_RETRY_OLD_PASSWORD: Old password entered incorrectly. Please try again." ) ResDef( DBT_libsec_errors_103, 2103, "SEC_ERROR_BAD_NICKNAME: Certificate nickname already in use." ) ResDef( DBT_libsec_errors_104, 2104, "SEC_ERROR_NOT_FORTEZZA_ISSUER: Peer FORTEZZA chain has a non-FORTEZZA Certificate." ) ResDef( DBT_libsec_errors_105, 2105, "SEC_ERROR_CANNOT_MOVE_SENSITIVE_KEY: A sensitive key cannot be moved to the slot where it is needed." ) ResDef( DBT_libsec_errors_106, 2106, "SEC_ERROR_JS_INVALID_MODULE_NAME: Invalid module name." ) ResDef( DBT_libsec_errors_107, 2107, "SEC_ERROR_JS_INVALID_DLL: Invalid module path/filename." ) ResDef( DBT_libsec_errors_108, 2108, "SEC_ERROR_JS_ADD_MOD_FAILURE: Unable to add module." ) ResDef( DBT_libsec_errors_109, 2109, "SEC_ERROR_JS_DEL_MOD_FAILURE: Unable to delete module." ) ResDef( DBT_libsec_errors_110, 2110, "SEC_ERROR_OLD_KRL: New KRL is not later than the current one." ) ResDef( DBT_libsec_errors_111, 2111, "SEC_ERROR_CKL_CONFLICT: New CKL has different issuer than current CKL. Delete current CKL." ) ResDef( DBT_libsec_errors_112, 2112, "SEC_ERROR_CERT_NOT_IN_NAME_SPACE: The Certifying Authority for this certificate is not permitted to issue a certificate with this name." ) ResDef( DBT_libsec_errors_113, 2113, "SEC_ERROR_KRL_NOT_YET_VALID: The KRL for this certificate is not yet valid." ) ResDef( DBT_libsec_errors_114, 2114, "SEC_ERROR_CRL_NOT_YET_VALID: The CRL for this certificate is not yet valid." ) ResDef( DBT_libsec_errors_115, 2115, "SEC_ERROR_UNKNOWN_CERT: The requested certificate could not be found." ) ResDef( DBT_libsec_errors_116, 2116, "SEC_ERROR_UNKNOWN_SIGNER: The signer's certificate could not be found." ) ResDef( DBT_libsec_errors_117, 2117, "SEC_ERROR_CERT_BAD_ACCESS_LOCATION: The location for the certificate status server has invalid format." ) ResDef( DBT_libsec_errors_118, 2118, "SEC_ERROR_OCSP_UNKNOWN_RESPONSE_TYPE: The OCSP response cannot be fully decoded, it is of an unknown type." ) ResDef( DBT_libsec_errors_119, 2119, "SEC_ERROR_OCSP_BAD_HTTP_RESPONSE: The OCSP server returned unexpected/invalid HTTP data." ) ResDef( DBT_libsec_errors_120, 2120, "SEC_ERROR_OCSP_MALFORMED_REQUEST: The OCSP server found the request to be corrupted or improperly formed." ) ResDef( DBT_libsec_errors_121, 2121, "SEC_ERROR_OCSP_SERVER_ERROR: The OCSP server experienced an internal error." ) ResDef( DBT_libsec_errors_122, 2122, "SEC_ERROR_OCSP_TRY_SERVER_LATER: The OCSP server suggests trying again later." ) ResDef( DBT_libsec_errors_123, 2123, "SEC_ERROR_OCSP_REQUEST_NEEDS_SIG: The OCSP server requires a signature on this request." ) ResDef( DBT_libsec_errors_124, 2124, "SEC_ERROR_OCSP_UNAUTHORIZED_REQUEST: The OCSP server has refused this request as unauthorized." ) ResDef( DBT_libsec_errors_125, 2125, "SEC_ERROR_OCSP_UNKNOWN_RESPONSE_STATUS: The OCSP server returned an unrecognizable status." ) ResDef( DBT_libsec_errors_126, 2126, "SEC_ERROR_OCSP_UNKNOWN_CERT: The OCSP server has no status for the certificate." ) ResDef( DBT_libsec_errors_127, 2127, "SEC_ERROR_OCSP_NOT_ENABLED: OCSP is not enabled." ) ResDef( DBT_libsec_errors_128, 2128, "SEC_ERROR_OCSP_NO_DEFAULT_RESPONDER: OCSP responder not set." ) ResDef( DBT_libsec_errors_129, 2129, "SEC_ERROR_OCSP_MALFORMED_RESPONSE: Response from OCSP server was corrupted or improperly formed." ) ResDef( DBT_libsec_errors_130, 2130, "SEC_ERROR_OCSP_UNAUTHORIZED_RESPONSE: The signer of the OCSP response is not authorized to give status for this certificate." ) ResDef( DBT_libsec_errors_131, 2131, "SEC_ERROR_OCSP_FUTURE_RESPONSE: The OCSP response is not yet valid (contains a date in the future)." ) ResDef( DBT_libsec_errors_132, 2132, "SEC_ERROR_OCSP_OLD_RESPONSE: The OCSP response contains out of date information." ) ResDef( DBT_libsec_errors_133, 2133, "SEC_ERROR_DIGEST_NOT_FOUND: The CMS or PKCS#7 digest was not found in signed message." ) ResDef( DBT_libsec_errors_134, 2134, "SEC_ERROR_UNSUPPORTED_MESSAGE_TYPE: The CMS or PKCS#7 message type is unsupported." ) ResDef( DBT_libsec_errors_135, 2135, "SEC_ERROR_MODULE_STUCK: PKCS#11 module could not be removed because it is still in use." ) ResDef( DBT_libsec_errors_136, 2136, "SEC_ERROR_BAD_TEMPLATE: Could not decode ASN.1 data, specified template is invalid." ) ResDef( DBT_libsec_errors_137, 2137, "SEC_ERROR_CRL_NOT_FOUND: No matching CRL was found." ) ResDef( DBT_libsec_errors_138, 2138, "SEC_ERROR_REUSED_ISSUER_AND_SERIAL: Attempting to import a cert which conflicts with issuer/serial of existing cert." ) ResDef( DBT_libsec_errors_139, 2139, "SEC_ERROR_BUSY: NSS cannot shut down, objects are still in use." ) ResDef( DBT_libsec_errors_140, 2140, "SEC_ERROR_EXTRA_INPUT: DER-encoded message contains extra unused data." ) ResDef( DBT_libsec_errors_141, 2141, "SEC_ERROR_UNSUPPORTED_ELLIPTIC_CURVE: Unsupported elliptic curve." ) ResDef( DBT_libsec_errors_142, 2142, "SEC_ERROR_UNSUPPORTED_EC_POINT_FORM: Unsupported elliptic curve point form." ) ResDef( DBT_libsec_errors_143, 2143, "SEC_ERROR_UNRECOGNIZED_OID: Unrecognized Object Identifier." ) ResDef( DBT_libsec_errors_144, 2144, "SEC_ERROR_OCSP_INVALID_SIGNING_CERT: Invalid OCSP signing certificate in response." ) ResDef( DBT_libsec_errors_145, 2145, "SEC_ERROR_REVOKED_CERTIFICATE_CRL: Certificate is revoked in issuer's CRL." ) ResDef( DBT_libsec_errors_146, 2146, "SEC_ERROR_REVOKED_CERTIFICATE_OCSP: Issuer's OCSP reports certificate is revoked." ) ResDef( DBT_libsec_errors_147, 2147, "SEC_ERROR_CRL_INVALID_VERSION: Issuer's CRL has unknown version number." ) ResDef( DBT_libsec_errors_148, 2148, "SEC_ERROR_CRL_V1_CRITICAL_EXTENSION: Issuer's v1 CRL has a critical extension." ) ResDef( DBT_libsec_errors_149, 2149, "SEC_ERROR_CRL_UNKNOWN_CRITICAL_EXTENSION: Issuer's v2 CRL has an unknown critical extension." ) /* Refer http://mxr.mozilla.org/security/source/security/nss/cmd/lib/SECerrs.h#499 */ ResDef( DBT_libsec_errors_150, 2150, "SEC_ERROR_UNKNOWN_OBJECT_TYPE: Unknown object type specified." ) ResDef( DBT_libsec_errors_151, 2151, "SEC_ERROR_INCOMPATIBLE_PKCS11: PKCS #11 driver violates the spec in an incompatible way." ) ResDef( DBT_libsec_errors_152, 2152, "SEC_ERROR_NO_EVENT: No new slot event is available at this time." ) ResDef( DBT_libsec_errors_153, 2153, "SEC_ERROR_CRL_ALREADY_EXISTS: CRL already exists." ) ResDef( DBT_libsec_errors_154, 2154, "SEC_ERROR_NOT_INITIALIZED: NSS is not initialized." ) ResDef( DBT_libsec_errors_155, 2155, "SEC_ERROR_TOKEN_NOT_LOGGED_IN: The operation failed because the PKCS#11 token is not logged in." ) ResDef( DBT_libsec_errors_156, 2156, "SEC_ERROR_OCSP_RESPONDER_CERT_INVALID: Configured OCSP responder's certificate is invalid." ) ResDef( DBT_libsec_errors_157, 2157, "SEC_ERROR_OCSP_BAD_SIGNATURE: OCSP response has an invalid signature." ) ResDef( DBT_libsec_errors_158, 2158, "SEC_ERROR_OUT_OF_SEARCH_LIMITS: Cert validation search is out of search limits" ) ResDef( DBT_libsec_errors_159, 2159, "SEC_ERROR_INVALID_POLICY_MAPPING: Policy mapping contains anypolicy" ) ResDef( DBT_libsec_errors_160, 2160, "SEC_ERROR_POLICY_VALIDATION_FAILED: Cert chain fails policy validation" ) ResDef( DBT_libsec_errors_161, 2161, "SEC_ERROR_UNKNOWN_AIA_LOCATION_TYPE: Unknown location type in cert AIA extension" ) ResDef( DBT_libsec_errors_162, 2162, "SEC_ERROR_BAD_HTTP_RESPONSE: Server returned bad HTTP response" ) ResDef( DBT_libsec_errors_163, 2163, "SEC_ERROR_BAD_LDAP_RESPONSE: Server returned bad LDAP response" ) ResDef( DBT_libsec_errors_164, 2164, "SEC_ERROR_FAILED_TO_ENCODE_DATA: Failed to encode data with ASN1 encoder" ) ResDef( DBT_libsec_errors_165, 2165, "SEC_ERROR_BAD_INFO_ACCESS_LOCATION: Bad information access location in cert extension" ) ResDef( DBT_libsec_errors_166, 2166, "SEC_ERROR_LIBPKIX_INTERNAL: Libpkix internal error occured during cert validation." ) ResDef( DBT_libsec_errors_167, 2167, "SEC_ERROR_PKCS11_GENERAL_ERROR: PKCS11 general error occured during cert validation." ) ResDef( DBT_libsec_errors_168, 2168, "SEC_ERROR_PKCS11_FUNCTION_FAILED: PKCS11 function failed." ) ResDef( DBT_libsec_errors_169, 2169, "SEC_ERROR_PKCS11_DEVICE_ERROR: PKCS11 device error." ) ResDef( DBT_libsec_errors_170, 2170, "SEC_ERROR_BAD_INFO_ACCESS_METHOD: Bad access info." ) ResDef( DBT_libsec_errors_171, 2171, "SEC_ERROR_CRL_IMPORT_FAILED: CRL import failed." ) /* DBT_libssl_errors: http://www.mozilla.org/projects/security/pki/nss/ref/ssl/sslerr.html */ ResDef( DBT_libssl_errors_0, 3000, "SSL_ERROR_EXPORT_ONLY_SERVER: Client does not support high-grade encryption." ) ResDef( DBT_libssl_errors_1, 3001, "SSL_ERROR_US_ONLY_SERVER: Client requires high-grade encryption which is not supported." ) ResDef( DBT_libssl_errors_2, 3002, "SSL_ERROR_NO_CYPHER_OVERLAP: No common encryption algorithm(s) with client." ) ResDef( DBT_libssl_errors_3, 3003, "SSL_ERROR_NO_CERTIFICATE: Unable to find the certificate or key necessary for authentication." ) ResDef( DBT_libssl_errors_4, 3004, "SSL_ERROR_BAD_CERTIFICATE: Unable to communicate securely: Client certificate was rejected." ) ResDef( DBT_libssl_errors_5, 3005, "libssl error 5 (unused error)" ) ResDef( DBT_libssl_errors_6, 3006, "SSL_ERROR_BAD_CLIENT: Invalid data read from client." ) ResDef( DBT_libssl_errors_7, 3007, "SSL_ERROR_BAD_SERVER: Invalid data read from server (only applicable on client side)." ) ResDef( DBT_libssl_errors_8, 3008, "SSL_ERROR_UNSUPPORTED_CERTIFICATE_TYPE: Unsupported certificate type." ) ResDef( DBT_libssl_errors_9, 3009, "SSL_ERROR_UNSUPPORTED_VERSION: Client is using unsupported SSL version." ) ResDef( DBT_libssl_errors_10, 3010, "libssl error 10 (unused error)" ) ResDef( DBT_libssl_errors_11, 3011, "SSL_ERROR_WRONG_CERTIFICATE: Public key in the server's own certificate does not match its private key." ) ResDef( DBT_libssl_errors_12, 3012, "SSL_ERROR_BAD_CERT_DOMAIN: Requested domain name does not match the server's certificate." ) ResDef( DBT_libssl_errors_13, 3013, "SSL_ERROR_POST_WARNING (unused error)" ) ResDef( DBT_libssl_errors_14, 3014, "SSL_ERROR_SSL2_DISABLED: Client only supports SSL version 2, which is disabled." ) ResDef( DBT_libssl_errors_15, 3015, "SSL_ERROR_BAD_MAC_READ: Server has received a record with an incorrect Message Authentication Code." ) ResDef( DBT_libssl_errors_16, 3016, "SSL_ERROR_BAD_MAC_ALERT: Client indicated receiving record with an incorrect Message Authentication Code." ) ResDef( DBT_libssl_errors_17, 3017, "SSL_ERROR_BAD_CERT_ALERT: Client indicated it cannot verify server certificate." ) ResDef( DBT_libssl_errors_18, 3018, "SSL_ERROR_REVOKED_CERT_ALERT: Client has rejected server certificate as revoked." ) ResDef( DBT_libssl_errors_19, 3019, "SSL_ERROR_EXPIRED_CERT_ALERT: Client has rejected server certificate as expired." ) ResDef( DBT_libssl_errors_20, 3020, "SSL_ERROR_SSL_DISABLED: Cannot connect: SSL is disabled." ) ResDef( DBT_libssl_errors_21, 3021, "SSL_ERROR_FORTEZZA_PQG: Cannot connect: Client is in another Fortezza domain (unused error)." ) ResDef( DBT_libssl_errors_22, 3022, "SSL_ERROR_UNKNOWN_CIPHER_SUITE: An unknown SSL cipher suite has been requested." ) ResDef( DBT_libssl_errors_23, 3023, "SSL_ERROR_NO_CIPHERS_SUPPORTED: No cipher suites are present and enabled." ) ResDef( DBT_libssl_errors_24, 3024, "SSL_ERROR_BAD_BLOCK_PADDING: Server received a record with bad block padding." ) ResDef( DBT_libssl_errors_25, 3025, "SSL_ERROR_RX_RECORD_TOO_LONG: Server received a record that exceeded the maximum permissible length." ) ResDef( DBT_libssl_errors_26, 3026, "SSL_ERROR_TX_RECORD_TOO_LONG: Server attempted to send a record that exceeded the maximum permissible length." ) ResDef( DBT_libssl_errors_27, 3027, "SSL_ERROR_RX_MALFORMED_HELLO_REQUEST: Malformed Hello Request handshake message." ) ResDef( DBT_libssl_errors_28, 3028, "SSL_ERROR_RX_MALFORMED_CLIENT_HELLO: Malformed Client Hello handshake message." ) ResDef( DBT_libssl_errors_29, 3029, "SSL_ERROR_RX_MALFORMED_SERVER_HELLO: Malformed Server Hello handshake message." ) ResDef( DBT_libssl_errors_30, 3030, "SSL_ERROR_RX_MALFORMED_CERTIFICATE: Malformed Certificate handshake message." ) ResDef( DBT_libssl_errors_31, 3031, "SSL_ERROR_RX_MALFORMED_SERVER_KEY_EXCH: Malformed Server Key Exchange handshake message." ) ResDef( DBT_libssl_errors_32, 3032, "SSL_ERROR_RX_MALFORMED_CERT_REQUEST: Malformed Certificate Request handshake message." ) ResDef( DBT_libssl_errors_33, 3033, "SSL_ERROR_RX_MALFORMED_HELLO_DONE: Malformed Server Hello Done handshake message." ) ResDef( DBT_libssl_errors_34, 3034, "SSL_ERROR_RX_MALFORMED_CERT_VERIFY: Malformed Certificate Verify handshake message." ) ResDef( DBT_libssl_errors_35, 3035, "SSL_ERROR_RX_MALFORMED_CLIENT_KEY_EXCH: Malformed Client Key Exchange handshake message." ) ResDef( DBT_libssl_errors_36, 3036, "SSL_ERROR_RX_MALFORMED_FINISHED: Malformed Finished handshake message." ) ResDef( DBT_libssl_errors_37, 3037, "SSL_ERROR_RX_MALFORMED_CHANGE_CIPHER: Malformed Change Cipher Spec record." ) ResDef( DBT_libssl_errors_38, 3038, "SSL_ERROR_RX_MALFORMED_ALERT: Malformed Alert record." ) ResDef( DBT_libssl_errors_39, 3039, "SSL_ERROR_RX_MALFORMED_HANDSHAKE: Malformed Handshake record." ) ResDef( DBT_libssl_errors_40, 3040, "SSL_ERROR_RX_MALFORMED_APPLICATION_DATA: Malformed Application Data record." ) ResDef( DBT_libssl_errors_41, 3041, "SSL_ERROR_RX_UNEXPECTED_HELLO_REQUEST: Unexpected Hello Request handshake message." ) ResDef( DBT_libssl_errors_42, 3042, "SSL_ERROR_RX_UNEXPECTED_CLIENT_HELLO: Unexpected Client Hello handshake message." ) ResDef( DBT_libssl_errors_43, 3043, "SSL_ERROR_RX_UNEXPECTED_SERVER_HELLO: Unexpected Server Hello handshake message." ) ResDef( DBT_libssl_errors_44, 3044, "SSL_ERROR_RX_UNEXPECTED_CERTIFICATE: Unexpected Certificate handshake message." ) ResDef( DBT_libssl_errors_45, 3045, "SSL_ERROR_RX_UNEXPECTED_SERVER_KEY_EXCH: Unexpected Server Key Exchange handshake message." ) ResDef( DBT_libssl_errors_46, 3046, "SSL_ERROR_RX_UNEXPECTED_CERT_REQUEST: Unexpected Certificate Request handshake message." ) ResDef( DBT_libssl_errors_47, 3047, "SSL_ERROR_RX_UNEXPECTED_HELLO_DONE: Unexpected Server Hello Done handshake message." ) ResDef( DBT_libssl_errors_48, 3048, "SSL_ERROR_RX_UNEXPECTED_CERT_VERIFY: Unexpected Certificate Verify handshake message." ) ResDef( DBT_libssl_errors_49, 3049, "SSL_ERROR_RX_UNEXPECTED_CLIENT_KEY_EXCH: Unexpected Client Key Exchange handshake message." ) ResDef( DBT_libssl_errors_50, 3050, "SSL_ERROR_RX_UNEXPECTED_FINISHED: Unexpected Finished handshake message." ) ResDef( DBT_libssl_errors_51, 3051, "SSL_ERROR_RX_UNEXPECTED_CHANGE_CIPHER: Unexpected Change Cipher Spec record." ) ResDef( DBT_libssl_errors_52, 3052, "SSL_ERROR_RX_UNEXPECTED_ALERT: Unexpected Alert record." ) ResDef( DBT_libssl_errors_53, 3053, "SSL_ERROR_RX_UNEXPECTED_HANDSHAKE: Unexpected Handshake record." ) ResDef( DBT_libssl_errors_54, 3054, "SSL_ERROR_RX_UNEXPECTED_APPLICATION_DATA: Unexpected Application Data record." ) ResDef( DBT_libssl_errors_55, 3055, "SSL_ERROR_RX_UNKNOWN_RECORD_TYPE: Server received a record with an unknown content type." ) ResDef( DBT_libssl_errors_56, 3056, "SSL_ERROR_RX_UNKNOWN_HANDSHAKE: Server received a handshake message with an unknown message type." ) ResDef( DBT_libssl_errors_57, 3057, "SSL_ERROR_RX_UNKNOWN_ALERT: Server received an alert record with an unknown alert description." ) ResDef( DBT_libssl_errors_58, 3058, "SSL_ERROR_CLOSE_NOTIFY_ALERT: Client has closed the connection." ) ResDef( DBT_libssl_errors_59, 3059, "SSL_ERROR_HANDSHAKE_UNEXPECTED_ALERT: Client was not expecting a handshake message it received." ) ResDef( DBT_libssl_errors_60, 3060, "SSL_ERROR_DECOMPRESSION_FAILURE_ALERT: Client was unable to successfully decompress an SSL record it received." ) ResDef( DBT_libssl_errors_61, 3061, "SSL_ERROR_HANDSHAKE_FAILURE_ALERT: Client was unable to negotiate an acceptable set of security parameters." ) ResDef( DBT_libssl_errors_62, 3062, "SSL_ERROR_ILLEGAL_PARAMETER_ALERT: Client rejected a handshake message for unacceptable content." ) ResDef( DBT_libssl_errors_63, 3063, "SSL_ERROR_UNSUPPORTED_CERT_ALERT: Client does not support certificates of the type it received." ) ResDef( DBT_libssl_errors_64, 3064, "SSL_ERROR_CERTIFICATE_UNKNOWN_ALERT: Client had some unspecified issue with the certificate it received." ) ResDef( DBT_libssl_errors_65, 3065, "SSL_ERROR_GENERATE_RANDOM_FAILURE: Failure of random number generator." ) ResDef( DBT_libssl_errors_66, 3066, "SSL_ERROR_SIGN_HASHES_FAILURE: Unable to digitally sign data required to verify certificate." ) ResDef( DBT_libssl_errors_67, 3067, "SSL_ERROR_EXTRACT_PUBLIC_KEY_FAILURE: Unable to extract the public key from client certificate." ) ResDef( DBT_libssl_errors_68, 3068, "SSL_ERROR_SERVER_KEY_EXCHANGE_FAILURE: Unspecified failure while processing SSL Server Key Exchange handshake." ) ResDef( DBT_libssl_errors_69, 3069, "SSL_ERROR_CLIENT_KEY_EXCHANGE_FAILURE: Unspecified failure while processing SSL Client Key Exchange handshake." ) ResDef( DBT_libssl_errors_70, 3070, "SSL_ERROR_ENCRYPTION_FAILURE: Bulk data encryption algorithm failed in selected cipher suite." ) ResDef( DBT_libssl_errors_71, 3071, "SSL_ERROR_DECRYPTION_FAILURE: Bulk data decryption algorithm failed in selected cipher suite." ) ResDef( DBT_libssl_errors_72, 3072, "SSL_ERROR_SOCKET_WRITE_FAILURE: Attempt to write encrypted data to underlying socket failed." ) ResDef( DBT_libssl_errors_73, 3073, "SSL_ERROR_MD5_DIGEST_FAILURE: MD5 digest function failed." ) ResDef( DBT_libssl_errors_74, 3074, "SSL_ERROR_SHA_DIGEST_FAILURE: SHA-1 digest function failed." ) ResDef( DBT_libssl_errors_75, 3075, "SSL_ERROR_MAC_COMPUTATION_FAILURE: MAC computation failed." ) ResDef( DBT_libssl_errors_76, 3076, "SSL_ERROR_SYM_KEY_CONTEXT_FAILURE: Failure to create Symmetric Key context." ) ResDef( DBT_libssl_errors_77, 3077, "SSL_ERROR_SYM_KEY_UNWRAP_FAILURE: Failure to unwrap the Symmetric key in Client Key Exchange message." ) ResDef( DBT_libssl_errors_78, 3078, "SSL_ERROR_PUB_KEY_SIZE_LIMIT_EXCEEDED: Internal error: Server attempted to use domestic-grade public key with export cipher suite." ) ResDef( DBT_libssl_errors_79, 3079, "SSL_ERROR_IV_PARAM_FAILURE: PKCS #11 code failed to translate an IV into a param." ) ResDef( DBT_libssl_errors_80, 3080, "SSL_ERROR_INIT_CIPHER_SUITE_FAILURE: Failed to initialize the selected cipher suite." ) ResDef( DBT_libssl_errors_81, 3081, "SSL_ERROR_SESSION_KEY_GEN_FAILURE: Failed to generate session keys for SSL session." ) ResDef( DBT_libssl_errors_82, 3082, "SSL_ERROR_NO_SERVER_KEY_FOR_ALG: Server has no key for the attempted key exchange algorithm." ) ResDef( DBT_libssl_errors_83, 3083, "SSL_ERROR_TOKEN_INSERTION_REMOVAL: PKCS #11 token was inserted or removed while operation was in progress." ) ResDef( DBT_libssl_errors_84, 3084, "SSL_ERROR_TOKEN_SLOT_NOT_FOUND: No PKCS #11 token could be found to do a required operation." ) ResDef( DBT_libssl_errors_85, 3085, "SSL_ERROR_NO_COMPRESSION_OVERLAP: Cannot communicate securely with peer: No common compression algorithm(s)." ) ResDef( DBT_libssl_errors_86, 3086, "SSL_ERROR_HANDSHAKE_NOT_COMPLETED: Cannot initiate another SSL handshake until current handshake is complete." ) ResDef( DBT_libssl_errors_87, 3087, "SSL_ERROR_BAD_HANDSHAKE_HASH_VALUE: Received incorrect handshake hash values from peer." ) ResDef( DBT_libssl_errors_88, 3088, "SSL_ERROR_CERT_KEA_MISMATCH: Certificate provided cannot be used with the selected key exchange algorithm." ) ResDef( DBT_libssl_errors_89, 3089, "SSL_ERROR_NO_TRUSTED_SSL_CLIENT_CA: Server configuration does not have any certificate authority trusted for SSL client authentication." ) ResDef( DBT_libssl_errors_90, 3090, "SSL_ERROR_SESSION_NOT_FOUND: Client SSL session ID not found in server session cache." ) ResDef( DBT_libssl_errors_91, 3091, "SSL_ERROR_DECRYPTION_FAILED_ALERT: Client was unable to decrypt an SSL record it received." ) ResDef( DBT_libssl_errors_92, 3092, "SSL_ERROR_RECORD_OVERFLOW_ALERT: Client received an SSL record that was longer than permitted." ) ResDef( DBT_libssl_errors_93, 3093, "SSL_ERROR_UNKNOWN_CA_ALERT: Client does not recognize and trust the CA that issues server certificate." ) ResDef( DBT_libssl_errors_94, 3094, "SSL_ERROR_ACCESS_DENIED_ALERT: Client received a valid certificate but denied access." ) ResDef( DBT_libssl_errors_95, 3095, "SSL_ERROR_DECODE_ERROR_ALERT: Client could not decode an SSL handshake message." ) ResDef( DBT_libssl_errors_96, 3096, "SSL_ERROR_DECRYPT_ERROR_ALERT: Client reports signature verification or key exchange failure." ) ResDef( DBT_libssl_errors_97, 3097, "SSL_ERROR_EXPORT_RESTRICTION_ALERT: Client reports negotiation not in compliance with export regulations." ) ResDef( DBT_libssl_errors_98, 3098, "SSL_ERROR_PROTOCOL_VERSION_ALERT: Client reports incompatible or unsupported protocol version." ) ResDef( DBT_libssl_errors_99, 3099, "SSL_ERROR_INSUFFICIENT_SECURITY_ALERT: Server configuration requires ciphers more secure than those supported by client." ) ResDef( DBT_libssl_errors_100, 3100, "SSL_ERROR_INTERNAL_ERROR_ALERT: Client reports it experienced an internal error." ) ResDef( DBT_libssl_errors_101, 3101, "SSL_ERROR_USER_CANCELED_ALERT: Client canceled handshake." ) ResDef( DBT_libssl_errors_102, 3102, "SSL_ERROR_NO_RENEGOTIATION_ALERT: Client does not permit renegotiation of SSL security parameters." ) /* Refer http://mxr.mozilla.org/security/source/security/nss/cmd/lib/SSLerrs.h#370 */ ResDef( DBT_libssl_errors_103, 3103, "SSL_ERROR_SERVER_CACHE_NOT_CONFIGURED: SSL server cache not configured and not disabled for this socket." ) ResDef( DBT_libssl_errors_104, 3104, "SSL_ERROR_UNSUPPORTED_EXTENSION_ALERT: SSL peer does not support requested TLS hello extension." ) ResDef( DBT_libssl_errors_105, 3105, "SSL_ERROR_CERTIFICATE_UNOBTAINABLE_ALERT: SSL peer could not obtain your certificate from the supplied URL." ) ResDef( DBT_libssl_errors_106, 3106, "SSL_ERROR_UNRECOGNIZED_NAME_ALERT: SSL peer has no certificate for the requested DNS name." ) ResDef( DBT_libssl_errors_107, 3107, "SSL_ERROR_BAD_CERT_STATUS_RESPONSE_ALERT: SSL peer was unable to get an OCSP response for its certificate." ) ResDef( DBT_libssl_errors_108, 3108, "SSL_ERROR_BAD_CERT_HASH_VALUE_ALERT: SSL peer reported bad certificate hash value." ) ResDef( DBT_libssl_errors_109, 3109, "SSL_ERROR_RX_UNEXPECTED_NEW_SESSION_TICKET: SSL received an unexpected New Session Ticket handshake message." ) ResDef( DBT_libssl_errors_110, 3110, "SSL_ERROR_RX_MALFORMED_NEW_SESSION_TICKET: SSL received a malformed New Session Ticket handshake message." ) ResDef( DBT_libssl_errors_111, 3111, "SSL_ERROR_DECOMPRESSION_FAILURE: SSL decompression failed." ) ResDef( DBT_libssl_errors_112, 3112, "SSL_ERROR_RENEGOTIATION_NOT_ALLOWED: SSL renegotiation is not allowed." ) END_STR(base)
Java
/* Copyright (c) 2010 Anders Bakken Copyright (c) 2010 Donald Carr All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. Neither the name of any associated organizations nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.*/ #ifndef PHONONBACKEND_H #define PHONONBACKEND_H #include <QtCore> #include <phonon> #include "backend.h" #include "backendplugin.h" struct Private; class Q_DECL_EXPORT PhononBackend : public Backend { public: PhononBackend(QObject *tail); virtual ~PhononBackend(); virtual bool initBackend(); virtual void shutdown(); virtual bool trackData(TrackData *data, const QUrl &url, int types = All) const; virtual bool isValid(const QUrl &url) const; virtual void play(); virtual void pause(); virtual void setProgress(int type, int progress); virtual int progress(int type); virtual void stop(); virtual bool loadUrl(const QUrl &url); virtual int status() const; virtual int volume() const; virtual void setVolume(int vol); virtual QString errorMessage() const; virtual int errorCode() const; virtual void setMute(bool on); virtual bool isMute() const; virtual int flags() const; private: Private *d; }; class Q_DECL_EXPORT PhononBackendPlugin : public BackendPlugin { public: PhononBackendPlugin() : BackendPlugin(QStringList() << "phonon" << "phononbackend") {} virtual Backend *createBackend(QObject *parent) { return new PhononBackend(parent); } }; #endif
Java
<?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta content="text/html; charset=utf-8" http-equiv="Content-Type" /> <title>File: INDEX.rdoc [Annotations Plugin]</title> <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet" /> <script src="./js/jquery.js" type="text/javascript" charset="utf-8"></script> <script src="./js/thickbox-compressed.js" type="text/javascript" charset="utf-8"></script> <script src="./js/quicksearch.js" type="text/javascript" charset="utf-8"></script> <script src="./js/darkfish.js" type="text/javascript" charset="utf-8"></script> </head> <body class="file"> <div id="metadata"> <div id="project-metadata"> <div id="fileindex-section" class="section project-section"> <h3 class="section-header">Files</h3> <ul> <li class="file"><a href="./AUTHORS_rdoc.html">AUTHORS.rdoc</a></li> <li class="file"><a href="./CHANGELOG_rdoc.html">CHANGELOG.rdoc</a></li> <li class="file"><a href="./INDEX_rdoc.html">INDEX.rdoc</a></li> <li class="file"><a href="./LICENSE.html">LICENSE</a></li> <li class="file"><a href="./README_rdoc.html">README.rdoc</a></li> <li class="file"><a href="./RUNNING_TESTS_rdoc.html">RUNNING_TESTS.rdoc</a></li> <li class="file"><a href="./RakeFile.html">RakeFile</a></li> <li class="file"><a href="./TODO_rdoc.html">TODO.rdoc</a></li> <li class="file"><a href="./VERSION_yml.html">VERSION.yml</a></li> </ul> </div> <div id="classindex-section" class="section project-section"> <h3 class="section-header">Class Index <span class="search-toggle"><img src="./images/find.png" height="16" width="16" alt="[+]" title="show/hide quicksearch" /></span></h3> <form action="#" method="get" accept-charset="utf-8" class="initially-hidden"> <fieldset> <legend>Quicksearch</legend> <input type="text" name="quicksearch" value="" class="quicksearch-field" /> </fieldset> </form> <ul class="link-list"> <li><a href="./Annotations/Acts/Annotatable/ClassMethods.html">Annotations::Acts::Annotatable::ClassMethods</a></li> <li><a href="./Annotations/Acts/Annotatable/InstanceMethods.html">Annotations::Acts::Annotatable::InstanceMethods</a></li> <li><a href="./Annotations/Acts/Annotatable/SingletonMethods.html">Annotations::Acts::Annotatable::SingletonMethods</a></li> <li><a href="./Annotations/Acts/AnnotationSource/ClassMethods.html">Annotations::Acts::AnnotationSource::ClassMethods</a></li> <li><a href="./Annotations/Acts/AnnotationSource/InstanceMethods.html">Annotations::Acts::AnnotationSource::InstanceMethods</a></li> <li><a href="./Annotations/Acts/AnnotationSource/SingletonMethods.html">Annotations::Acts::AnnotationSource::SingletonMethods</a></li> <li><a href="./Annotations/Config.html">Annotations::Config</a></li> <li><a href="./AnnotationsVersionFu.html">AnnotationsVersionFu</a></li> <li><a href="./AnnotationsVersionFu/ClassMethods.html">AnnotationsVersionFu::ClassMethods</a></li> <li><a href="./AnnotationsVersionFu/InstanceMethods.html">AnnotationsVersionFu::InstanceMethods</a></li> <li><a href="./Annotation.html">Annotation</a></li> <li><a href="./AnnotationAttribute.html">AnnotationAttribute</a></li> <li><a href="./AnnotationValueSeed.html">AnnotationValueSeed</a></li> <li><a href="./AnnotationsController.html">AnnotationsController</a></li> <li><a href="./AnnotationsMigrationGenerator.html">AnnotationsMigrationGenerator</a></li> <li><a href="./AnnotationsMigrationV1.html">AnnotationsMigrationV1</a></li> </ul> <div id="no-class-search-results" style="display: none;">No matching classes.</div> </div> </div> </div> <div id="documentation"> <h1>Annotations Plugin (for Ruby on Rails applications)</h1> <table> <tr><td valign="top">Original Author:</td><td>Jiten Bhagat (<a href="mailto:mail@jits.co.uk">mail@jits.co.uk</a>) </td></tr> <tr><td valign="top">Copyright:</td><td>&#169; 2008-2009, the University of Manchester and the European Bioinformatics Institute (EMBL-EBI) </td></tr> <tr><td valign="top">License:</td><td>BSD </td></tr> <tr><td valign="top">Version:</td><td>0.1.0 </td></tr> </table> <p> For information on the plugin and to get started, see <a href="README_rdoc.html">README.rdoc</a> </p> <p> For credits and origins, see <a href="AUTHORS_rdoc.html">AUTHORS.rdoc</a> </p> <p> For license, see <a href="LICENSE.html">LICENSE</a> </p> <p> For the latest updates, see <a href="CHANGELOG_rdoc.html">CHANGELOG.rdoc</a> </p> <p> To test the plugin, see <a href="RUNNING_TESTS_rdoc.html">RUNNING_TESTS.rdoc</a> </p> </div> <div id="validator-badges"> <p><small><a href="http://validator.w3.org/check/referer">[Validate]</a></small></p> <p><small>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 1.1.6</small>.</p> </div> </body> </html>
Java
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="viewport" content="width=device-width,initial-scale=1"> <meta http-equiv="x-ua-compatible" content="ie=edge"> <meta name="lang:clipboard.copy" content="Copy to clipboard"> <meta name="lang:clipboard.copied" content="Copied to clipboard"> <meta name="lang:search.language" content="en"> <meta name="lang:search.pipeline.stopwords" content="True"> <meta name="lang:search.pipeline.trimmer" content="True"> <meta name="lang:search.result.none" content="No matching documents"> <meta name="lang:search.result.one" content="1 matching document"> <meta name="lang:search.result.other" content="# matching documents"> <meta name="lang:search.tokenizer" content="[\s\-]+"> <link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin> <link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet"> <style> body, input { font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif } code, kbd, pre { font-family: "Roboto Mono", "Courier New", Courier, monospace } </style> <link rel="stylesheet" href="../_static/stylesheets/application.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-palette.css"/> <link rel="stylesheet" href="../_static/stylesheets/application-fixes.css"/> <link rel="stylesheet" href="../_static/fonts/material-icons.css"/> <meta name="theme-color" content="#3f51b5"> <script src="../_static/javascripts/modernizr.js"></script> <title>statsmodels.tsa.vector_ar.var_model.FEVD.plot &#8212; statsmodels</title> <link rel="icon" type="image/png" sizes="32x32" href="../_static/icons/favicon-32x32.png"> <link rel="icon" type="image/png" sizes="16x16" href="../_static/icons/favicon-16x16.png"> <link rel="manifest" href="../_static/icons/site.webmanifest"> <link rel="mask-icon" href="../_static/icons/safari-pinned-tab.svg" color="#919191"> <meta name="msapplication-TileColor" content="#2b5797"> <meta name="msapplication-config" content="../_static/icons/browserconfig.xml"> <link rel="stylesheet" href="../_static/stylesheets/examples.css"> <link rel="stylesheet" href="../_static/stylesheets/deprecation.css"> <link rel="stylesheet" href="../_static/material.css" type="text/css" /> <link rel="stylesheet" href="../_static/pygments.css" type="text/css" /> <link rel="stylesheet" type="text/css" href="../_static/graphviz.css" /> <script id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script> <script src="../_static/jquery.js"></script> <script src="../_static/underscore.js"></script> <script src="../_static/doctools.js"></script> <script src="../_static/language_data.js"></script> <script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script> <script async="async" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/latest.js?config=TeX-AMS-MML_HTMLorMML"></script> <script type="text/x-mathjax-config">MathJax.Hub.Config({"tex2jax": {"inlineMath": [["$", "$"], ["\\(", "\\)"]], "processEscapes": true, "ignoreClass": "document", "processClass": "math|output_area"}})</script> <link rel="shortcut icon" href="../_static/favicon.ico"/> <link rel="author" title="About these documents" href="../about.html" /> <link rel="index" title="Index" href="../genindex.html" /> <link rel="search" title="Search" href="../search.html" /> <link rel="next" title="statsmodels.tsa.vector_ar.var_model.FEVD.summary" href="statsmodels.tsa.vector_ar.var_model.FEVD.summary.html" /> <link rel="prev" title="statsmodels.tsa.vector_ar.var_model.FEVD.cov" href="statsmodels.tsa.vector_ar.var_model.FEVD.cov.html" /> </head> <body dir=ltr data-md-color-primary=indigo data-md-color-accent=blue> <svg class="md-svg"> <defs data-children-count="0"> <svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg> </defs> </svg> <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer"> <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search"> <label class="md-overlay" data-md-component="overlay" for="__drawer"></label> <a href="#generated/statsmodels.tsa.vector_ar.var_model.FEVD.plot" tabindex="1" class="md-skip"> Skip to content </a> <header class="md-header" data-md-component="header"> <nav class="md-header-nav md-grid"> <div class="md-flex navheader"> <div class="md-flex__cell md-flex__cell--shrink"> <a href="../index.html" title="statsmodels" class="md-header-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" height="26" alt="statsmodels logo"> </a> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label> </div> <div class="md-flex__cell md-flex__cell--stretch"> <div class="md-flex__ellipsis md-header-nav__title" data-md-component="title"> <span class="md-header-nav__topic">statsmodels v0.12.1</span> <span class="md-header-nav__topic"> statsmodels.tsa.vector_ar.var_model.FEVD.plot </span> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <label class="md-icon md-icon--search md-header-nav__button" for="__search"></label> <div class="md-search" data-md-component="search" role="dialog"> <label class="md-search__overlay" for="__search"></label> <div class="md-search__inner" role="search"> <form class="md-search__form" action="../search.html" method="GET" name="search"> <input type="text" class="md-search__input" name="q" placeholder="Search" autocapitalize="off" autocomplete="off" spellcheck="false" data-md-component="query" data-md-state="active"> <label class="md-icon md-search__icon" for="__search"></label> <button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1"> &#xE5CD; </button> </form> <div class="md-search__output"> <div class="md-search__scrollwrap" data-md-scrollfix> <div class="md-search-result" data-md-component="result"> <div class="md-search-result__meta"> Type to start searching </div> <ol class="md-search-result__list"></ol> </div> </div> </div> </div> </div> </div> <div class="md-flex__cell md-flex__cell--shrink"> <div class="md-header-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> </div> <script src="../_static/javascripts/version_dropdown.js"></script> <script> var json_loc = "../_static/versions.json", target_loc = "../../", text = "Versions"; $( document ).ready( add_version_dropdown(json_loc, target_loc, text)); </script> </div> </nav> </header> <div class="md-container"> <nav class="md-tabs" data-md-component="tabs"> <div class="md-tabs__inner md-grid"> <ul class="md-tabs__list"> <li class="md-tabs__item"><a href="../user-guide.html" class="md-tabs__link">User Guide</a></li> <li class="md-tabs__item"><a href="../vector_ar.html" class="md-tabs__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a></li> <li class="md-tabs__item"><a href="statsmodels.tsa.vector_ar.var_model.FEVD.html" class="md-tabs__link">statsmodels.tsa.vector_ar.var_model.FEVD</a></li> </ul> </div> </nav> <main class="md-main"> <div class="md-main__inner md-grid" data-md-component="container"> <div class="md-sidebar md-sidebar--primary" data-md-component="navigation"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--primary" data-md-level="0"> <label class="md-nav__title md-nav__title--site" for="__drawer"> <a href="../index.html" title="statsmodels" class="md-nav__button md-logo"> <img src="../_static/statsmodels-logo-v2-bw.svg" alt=" logo" width="48" height="48"> </a> <a href="../index.html" title="statsmodels">statsmodels v0.12.1</a> </label> <div class="md-nav__source"> <a href="https://github.com/statsmodels/statsmodels" title="Go to repository" class="md-source" data-md-source="github"> <div class="md-source__icon"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28"> <use xlink:href="#__github" width="24" height="24"></use> </svg> </div> <div class="md-source__repository"> statsmodels </div> </a> </div> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../install.html" class="md-nav__link">Installing statsmodels</a> </li> <li class="md-nav__item"> <a href="../gettingstarted.html" class="md-nav__link">Getting started</a> </li> <li class="md-nav__item"> <a href="../user-guide.html" class="md-nav__link">User Guide</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../user-guide.html#background" class="md-nav__link">Background</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#regression-and-linear-models" class="md-nav__link">Regression and Linear Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#time-series-analysis" class="md-nav__link">Time Series Analysis</a> <ul class="md-nav__list"> <li class="md-nav__item"> <a href="../tsa.html" class="md-nav__link">Time Series analysis <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa</span></code></a> </li> <li class="md-nav__item"> <a href="../statespace.html" class="md-nav__link">Time Series Analysis by State Space Methods <code class="xref py py-mod docutils literal notranslate"><span class="pre">statespace</span></code></a> </li> <li class="md-nav__item"> <a href="../vector_ar.html" class="md-nav__link">Vector Autoregressions <code class="xref py py-mod docutils literal notranslate"><span class="pre">tsa.vector_ar</span></code></a> </li></ul> </li> <li class="md-nav__item"> <a href="../user-guide.html#other-models" class="md-nav__link">Other Models</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#statistics-and-tools" class="md-nav__link">Statistics and Tools</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#data-sets" class="md-nav__link">Data Sets</a> </li> <li class="md-nav__item"> <a href="../user-guide.html#sandbox" class="md-nav__link">Sandbox</a> </li></ul> </li> <li class="md-nav__item"> <a href="../examples/index.html" class="md-nav__link">Examples</a> </li> <li class="md-nav__item"> <a href="../api.html" class="md-nav__link">API Reference</a> </li> <li class="md-nav__item"> <a href="../about.html" class="md-nav__link">About statsmodels</a> </li> <li class="md-nav__item"> <a href="../dev/index.html" class="md-nav__link">Developer Page</a> </li> <li class="md-nav__item"> <a href="../release/index.html" class="md-nav__link">Release Notes</a> </li> </ul> </nav> </div> </div> </div> <div class="md-sidebar md-sidebar--secondary" data-md-component="toc"> <div class="md-sidebar__scrollwrap"> <div class="md-sidebar__inner"> <nav class="md-nav md-nav--secondary"> <ul class="md-nav__list" data-md-scrollfix=""> <li class="md-nav__item"><a class="md-nav__extra_link" href="../_sources/generated/statsmodels.tsa.vector_ar.var_model.FEVD.plot.rst.txt">Show Source</a> </li> <li id="searchbox" class="md-nav__item"></li> </ul> </nav> </div> </div> </div> <div class="md-content"> <article class="md-content__inner md-typeset" role="main"> <h1 id="generated-statsmodels-tsa-vector-ar-var-model-fevd-plot--page-root">statsmodels.tsa.vector_ar.var_model.FEVD.plot<a class="headerlink" href="#generated-statsmodels-tsa-vector-ar-var-model-fevd-plot--page-root" title="Permalink to this headline">¶</a></h1> <dl class="py method"> <dt id="statsmodels.tsa.vector_ar.var_model.FEVD.plot"> <code class="sig-prename descclassname">FEVD.</code><code class="sig-name descname">plot</code><span class="sig-paren">(</span><em class="sig-param"><span class="n">periods</span><span class="o">=</span><span class="default_value">None</span></em>, <em class="sig-param"><span class="n">figsize</span><span class="o">=</span><span class="default_value">10, 10</span></em>, <em class="sig-param"><span class="o">**</span><span class="n">plot_kwds</span></em><span class="sig-paren">)</span><a class="reference internal" href="../_modules/statsmodels/tsa/vector_ar/var_model.html#FEVD.plot"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#statsmodels.tsa.vector_ar.var_model.FEVD.plot" title="Permalink to this definition">¶</a></dt> <dd><p>Plot graphical display of FEVD</p> <dl class="field-list"> <dt class="field-odd">Parameters</dt> <dd class="field-odd"><dl> <dt><strong>periods</strong><span class="classifier"><a class="reference external" href="https://docs.python.org/3/library/functions.html#int" title="(in Python v3.9)"><code class="docutils literal notranslate"><span class="pre">int</span></code></a>, <code class="xref py py-obj docutils literal notranslate"><span class="pre">default</span></code> <a class="reference external" href="https://docs.python.org/3/library/constants.html#None" title="(in Python v3.9)"><code class="docutils literal notranslate"><span class="pre">None</span></code></a></span></dt><dd><p>Defaults to number originally specified. Can be at most that number</p> </dd> </dl> </dd> </dl> </dd></dl> </article> </div> </div> </main> </div> <footer class="md-footer"> <div class="md-footer-nav"> <nav class="md-footer-nav__inner md-grid"> <a href="statsmodels.tsa.vector_ar.var_model.FEVD.cov.html" title="statsmodels.tsa.vector_ar.var_model.FEVD.cov" class="md-flex md-footer-nav__link md-footer-nav__link--prev" rel="prev"> <div class="md-flex__cell md-flex__cell--shrink"> <i class="md-icon md-icon--arrow-back md-footer-nav__button"></i> </div> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"> <span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Previous </span> statsmodels.tsa.vector_ar.var_model.FEVD.cov </span> </div> </a> <a href="statsmodels.tsa.vector_ar.var_model.FEVD.summary.html" title="statsmodels.tsa.vector_ar.var_model.FEVD.summary" class="md-flex md-footer-nav__link md-footer-nav__link--next" rel="next"> <div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span class="md-flex__ellipsis"> <span class="md-footer-nav__direction"> Next </span> statsmodels.tsa.vector_ar.var_model.FEVD.summary </span> </div> <div class="md-flex__cell md-flex__cell--shrink"><i class="md-icon md-icon--arrow-forward md-footer-nav__button"></i> </div> </a> </nav> </div> <div class="md-footer-meta md-typeset"> <div class="md-footer-meta__inner md-grid"> <div class="md-footer-copyright"> <div class="md-footer-copyright__highlight"> &#169; Copyright 2009-2019, Josef Perktold, Skipper Seabold, Jonathan Taylor, statsmodels-developers. </div> Last updated on Oct 29, 2020. <br/> Created using <a href="http://www.sphinx-doc.org/">Sphinx</a> 3.2.1. and <a href="https://github.com/bashtage/sphinx-material/">Material for Sphinx</a> </div> </div> </div> </footer> <script src="../_static/javascripts/application.js"></script> <script>app.initialize({version: "1.0.4", url: {base: ".."}})</script> </body> </html>
Java