code stringlengths 1 2.08M | language stringclasses 1
value |
|---|---|
var ec2_Createlb = {
ec2ui_session : null,
retVal : null,
reginstanceid : new Array(),
launch : function() {
// var Idx = 0;
this.retVal.LoadBalancerName = document.getElementById("ec2ui.createlb.Name").value.trim();
this.retVal.Protocol = document.getElementById("ec2ui.createlb.Protocol... | JavaScript |
var ec2_InstanceLauncher = {
image : null,
ec2ui_session : null,
retVal : null,
unusedSecGroupsList : null,
usedSecGroupsList : null,
unused : new Array(),
used : new Array(),
launch : function() {
if (!this.validateMin()) return false;
if (!this.validateMax()) return fa... | JavaScript |
var ec2ui_ReservedInstancesTreeView = {
COLNAMES: ['rsvdInst.id',
'rsvdInst.instanceType',
'rsvdInst.azone',
'rsvdInst.start',
'rsvdInst.duration',
'rsvdInst.fixedPrice',
'rsvdInst.usagePrice',
'rsvdInst.count',... | JavaScript |
var ec2ui_AMIDeleter = {
session : null,
imageLoc : null,
getProgressMeter : function() {
if (document)
return document.getElementById("ec2ui.delete.ami.progress");
},
getCurrentOperation : function() {
if (document)
return document.getElementById("ec2ui.del... | JavaScript |
var ec2_InstanceConsole = {
init : function() {
document.getElementById("ec2ui.console.instanceid").value = window.arguments[0];
document.getElementById("ec2ui.console.timestamp").value = window.arguments[1];
var output = "<no output available>";
if (window.arguments[2] != null) {
... | JavaScript |
var ec2ui_HealthcheckTreeView = {
COLNAMES : ['Healthcheck.Interval','Healthcheck.HealthyThreshold','Healthcheck.Timeout','Healthcheck.UnhealthyThreshold'],
treeBox : null,
selection : null,
healthckeckList : new Array(),
get rowCount() { return this.healthckeckList.length; },
setTree : fu... | JavaScript |
var ec2_LoadbalancerDetails = {
init : function() {
var loadbalancer = window.arguments[0];
document.getElementById("ec2ui.loadbalancer.LoadBalancerName").value = loadbalancer.LoadBalancerName;
document.getElementById("ec2ui.loadbalancer.CreatedTime").value = loadbalancer.CreatedTime;
... | JavaScript |
var ec2ui_PermissionsTreeView = {
COLNAMES : ['permission.protocol','permission.fromPort','permission.toPort','permission.groups','permission.cidrs'],
treeBox : null,
selection : null,
permissionList : new Array(),
get rowCount() { return this.permissionList.length; },
setTree : function(t... | JavaScript |
// "Classes" representing objects like AMIs, Instances etc.
function Credential(name, accessKey, secretKey, regionPref) {
this.name = name;
this.accessKey = accessKey;
this.secretKey = secretKey;
this.regionPref = regionPref;
}
function AccountIdName(id, name) {
this.accountid = id;
this.displa... | JavaScript |
var ec2ui_SecurityGroupsTreeView = {
COLNAMES : ['securitygroup.ownerId','securitygroup.name','securitygroup.description'],
treeBox : null,
selection : null,
groupList : new Array(),
registered : false,
get rowCount() { return this.groupList.length; },
setTree : function(treeBox) {... | JavaScript |
/* With due thanks to http://whytheluckystiff.net */
/* other support functions -- thanks, ecmanaut! */
var strftime_funks = {
zeropad: function( n ){ return n>9 ? n : '0'+n; },
a: function(t) { return ['Sun','Mon','Tue','Wed','Thu','Fri','Sat'][t.getDay()] },
A: function(t) { return ['Sunday','Monday','Tuedsay',... | JavaScript |
var BaseImagesView = {
COLNAMES: [],
treeBox: null,
selection: null,
selectedImageId: null, // for preserving selection across filters and refreshes
imageList : new Array(),
registered : false,
get rowCount() { return this.imageList.length; },
setTree : function(treeBox) { thi... | JavaScript |
var ec2ui_LoadBalancerTreeView = {
COLNAMES : ['loadbalancer.LoadBalancerName','loadbalancer.CreatedTime','loadbalancer.DNSName','loadbalancer.InstanceId',
,'loadbalancer.Lbzone','loadbalancer.Interval','loadbalancer.Target','loadbalancer.HealthyThreshold',
'loadbalancer.Timeout','lo... | JavaScript |
var ec2_InstanceBundler = {
id : null,
ec2ui_session : null,
retVal : null,
getBucketName : function() {
return document.getElementById("ec2ui.bundleInstance.bucketName");
},
getPrefix : function() {
return document.getElementById("ec2ui.bundleInstance.prefix");
},
bun... | JavaScript |
// Depends on rsa.js and jsbn2.js
// Undo PKCS#1 (type 2, random) padding and, if valid, return the plaintext
function pkcs1unpad2(d,n) {
var b = d.toByteArray();
var i = 0;
while(i < b.length && b[i] == 0) ++i;
if(b.length-i != n-1 || b[i] != 2)
return null;
++i;
while(b[i] != 0)
if(++i >= b.lengt... | JavaScript |
var ec2_VolumeDetails = {
init : function() {
var volume = window.arguments[0];
document.getElementById("ec2ui.volume.id").value = volume.id;
document.getElementById("ec2ui.volume.size").value = volume.size;
document.getElementById("ec2ui.volume.snapshotId").value = volume.snapshotId... | JavaScript |
var ec2_InstanceDetails = {
init : function() {
var session = window.arguments[0];
var instance = window.arguments[1];
document.getElementById("ec2ui.instance.resid").value = instance.resId;
document.getElementById("ec2ui.instance.instanceid").value = instance.id;
var amiLab... | JavaScript |
var ec2_SecGroupCreator = {
ec2ui_session : null,
retVal : null,
createGroup : function() {
if (!this.validateGroupName()) return false;
if (!this.validateGroupDesc()) return false;
this.retVal.name = document.getElementById("ec2ui.newsecgroup.name").value.trim();
this.retVa... | JavaScript |
var ec2_ConfigureAzone = {
ec2ui_session : null,
retVal : null,
loadbalancer : null,
launch : function() {
this.retVal.LoadBalancerName = document.getElementById("ec2ui.createlb.Name").value.trim();
this.retVal.ok = true;
return true;
},
init : function() {
this.ec2ui_se... | JavaScript |
var ec2_ImageRegistrar = {
ec2ui_session : null,
retVal : null,
getTextBox : function() {
return document.getElementById("ec2ui.newimage.manifest");
},
registerImage : function() {
if (!this.validateManifest()) return false;
this.retVal.manifestPath = this.getTextBox().valu... | JavaScript |
//main object that holds the current session information
var ec2ui_session =
{
accessCode : "",
secretKey : "",
initialized : false,
controller : null,
model : null,
credentials : null,
accountidmap : null,
endpointmap : null,
instanceTags ... | JavaScript |
var ec2ui_credentialsTreeView = {
COLNAMES: ['credential.name','credential.accessKey'],
treeBox: null,
selection: null,
credentials : new Array(),
get rowCount() { return this.credentials.length; },
setTree : function(treeBox) { this.treeBox = treeBox; },
getCellText : function(idx, col... | JavaScript |
var ec2_PermissionDetails = {
init : function() {
var perm = window.arguments[0];
document.getElementById("ec2ui.permission.protocol").value = perm.protocol;
document.getElementById("ec2ui.permission.fromport").value = perm.fromPort;
document.getElementById("ec2ui.permission.toport")... | JavaScript |
var ec2_createlbstickness = {
ec2ui_session : null,
retVal : null,
launch : function() {
this.retVal.CookieName = document.getElementById("ec2ui.stickiness.cookiname").value.trim();
this.retVal.CookieExpirationPeriod = document.getElementById("ec2ui.stickiness.timeout").value.trim();
this.retVal.o... | JavaScript |
var ec2ui_KeypairTreeView = {
COLNAMES : ['keypair.name','keypair.fingerprint'],
treeBox : null,
selection : null,
arrLocalFiles : new Array(),
keypairList : new Array(),
registered : false,
get rowCount() { return this.keypairList.length; },
setTree : function(treeBox) { t... | JavaScript |
var ec2_AMIMigrator = {
image : null,
session : null,
retVal : null,
manifest : null,
regionSelected : null,
getSourceBucketName : function() {
return document.getElementById("ec2ui.migrateAMI.bucketName.source");
},
getDestBucketName : function() {
return document.getE... | JavaScript |
// Functions to parse the EC2 RSA Private Key
// A BER object has 3 pieces
// type: (Numeric)
// Array: (Byte array)
// Value (Defined for integer)
// Expects a byte array, returns the values in hex
function parseRSAKey(bytes) {
var location = 0;
var key = new Object()
// Step 1 is to remove the wrapper
... | JavaScript |
var ec2ui_credentialManager = {
REALM : "chrome://ec2ui/",
HOST : "chrome://ec2ui/",
credentials : new Array(),
endpointmap : null,
initDialog : function() {
ec2ui_prefs.init();
document.getElementById("ec2ui.credentials.view").view = ec2ui_credentialsTreeView;
this.credentials = thi... | JavaScript |
var ec2ui_SnapshotTreeView = {
COLNAMES: ['snap.id', 'snap.volumeId', 'snap.status', 'snap.startTime',
'snap.progress', 'snap.tag'],
imageIdRegex : new RegExp("^snap-"),
getSearchText : function() {
return document.getElementById('ec2ui.snapshots.search').value;
},
refresh : ... | JavaScript |
// XpiInstaller
// By Pike (Heavily inspired by code from Henrik Gemal and Stephen Clavering)
var XpiInstaller = {
// --- Editable items begin ---
extFullName: 'Hybridfox', // The name displayed to the user (don't include the version)
extShortName: 'ec2ui', // The leafname of the JAR file (without the .ja... | JavaScript |
/*------------------------------------------------------------------------
# Analyst - May 12, 2013
# ------------------------------------------------------------------------
# Designed by BestWebSoft & HTML by MegaDrupal
# Websites: http://www.megadrupal.com - Email: info@megadrupal.com
------------------------... | JavaScript |
/*!
* jQuery Form Plugin
* version: 2.94 (13-DEC-2011)
* @requires jQuery v1.3.2 or later
*
* Examples and documentation at: http://malsup.com/jquery/form/
* Dual licensed under the MIT and GPL licenses:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*/
;(function($... | JavaScript |
/**
* Created with JetBrains WebStorm.
* User: hoangnm
* Date: 4/24/13
* Time: 10:53 PM
* To change this template use File | Settings | File Templates.
*/
function scrollBanner() {
//Get the scoll position of the page
scrollPos = $(this).scrollTop();
//Scroll the background of the banner
... | JavaScript |
/**
* remy sharp / http://remysharp.com
* Twitter / @rem
* http://remysharp.com/2007/05/18/add-twitter-to-your-blog-step-by-step/
*
* @params
* cssIdOfContainer: e.g. twitters
* options:
* {
* id: {String} username,
* count: {Int} 1-20, defaults to 1 - max limit 200
* ... | JavaScript |
// Effect.Tooltip
// Nick Stakenburg
// requires - prototype : http://www.prototypejs.org
// - scriptaculous : http://script.aculo.us
Effect.Tooltip = Class.create();
Object.extend(Object.extend(Effect.Tooltip.prototype, Effect.Base.prototype), {
initialize: function(element, content) {
this.eleme... | JavaScript |
/*
Copyright (C) 2006 Robert Scriva (dashalytics@rovingrob.com)
This program 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 2
of the License, or (at your option) any later version.
This program ... | JavaScript |
/*
Copyright (C) 2006 Robert Scriva (dashalytics@rovingrob.com)
This program 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 2
of the License, or (at your option) any later version.
This program ... | JavaScript |
/*
* Copyright (C) 2006 Baron Schwartz <baron at sequent dot org>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as published by the
* Free Software Foundation, version 2.1.
*
* This program is distributed in the hope that it... | JavaScript |
/*
ProgressIndicator and all associated images care of Sean Billig of the Wikipedida Widget fame
the copyright that applies is from his widget - it is as follows:
Copyright (c) 2005 Sean Billig
sbillig@whatsinthehouse.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software
a... | JavaScript |
/**
* @author Bruno Bornsztein <bruno@missingmethod.com>
* @copyright 2007 Curbly LLC
* @package Glider
* @license MIT
* @url http://www.missingmethod.com/projects/glider/
* @version 0.0.3
* @dependencies prototype.js 1.5.1+, effects.js
*/
/* Thanks to Andrew Dupont for refactoring help and code cleanup - htt... | JavaScript |
/*
© Copyright 2005 Apple Computer, Inc. All rights reserved.
IMPORTANT: This Apple software and the associated images located in
/System/Library/WidgetResources/AppleClasses/ (collectively "Apple Software")
are supplied to you by Apple Computer, Inc. (“Apple”) in consideration of your
agreement to the following term... | JavaScript |
/*
Copyright © 2005, Apple Computer, Inc. All rights reserved.
NOTE: Use of this source code is subject to the terms of the Software
License Agreement for Mac OS X, which accompanies the code. Your use
of this source code signifies your agreement to such license terms and
conditions. Except as expressly grante... | JavaScript |
/*
© Copyright 2005 Apple Computer, Inc. All rights reserved.
IMPORTANT: This Apple software and the associated images located in
/System/Library/WidgetResources/AppleClasses/ (collectively "Apple Software")
are supplied to you by Apple Computer, Inc. (“Apple”) in consideration of your
agreement to the following term... | JavaScript |
/*
© Copyright 2005 Apple Computer, Inc. All rights reserved.
IMPORTANT: This Apple software and the associated images located in
/System/Library/WidgetResources/AppleClasses/ (collectively "Apple Software")
are supplied to you by Apple Computer, Inc. (“Apple”) in consideration of your
agreement to the following term... | JavaScript |
/*
© Copyright 2005 Apple Computer, Inc. All rights reserved.
IMPORTANT: This Apple software and the associated images located in
/System/Library/WidgetResources/AppleClasses/ (collectively "Apple Software")
are supplied to you by Apple Computer, Inc. (“Apple”) in consideration of your
agreement to the following term... | JavaScript |
/*
© Copyright 2005 Apple Computer, Inc. All rights reserved.
IMPORTANT: This Apple software and the associated images located in
/System/Library/WidgetResources/AppleClasses/ (collectively "Apple Software")
are supplied to you by Apple Computer, Inc. (“Apple”) in consideration of your
agreement to the following term... | JavaScript |
/*
© Copyright 2005 Apple Computer, Inc. All rights reserved.
IMPORTANT: This Apple software and the associated images located in
/System/Library/WidgetResources/AppleClasses/ (collectively "Apple Software")
are supplied to you by Apple Computer, Inc. (“Apple”) in consideration of your
agreement to the following term... | JavaScript |
// English Localization
var localizedStrings = new Array;
localizedStrings['No Site Selected'] = 'No Site Selected';
localizedStrings['Username:'] = 'Username: ';
localizedStrings['Password:'] = 'Password: ';
localizedStrings['visit'] = 'Visitors Overview';
localizedStrings['traffic'] = 'Traffic Sources Overview';
lo... | JavaScript |
/*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software is distributed in the hope that it will be u... | JavaScript |
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
function mensaje(mensaje,tipo){
if(tipo == 1){
var color = "#000000";
mensaje = "<font size=1>"+mensaje+"</font>";
}else{
var color = "#FF0000";
mensaje = "<font size=1>"+mensa... | JavaScript |
/**
* @license
*
* Copyright 2011 Google Inc.
*
* 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 l... | JavaScript |
/**
* Creates a new level control.
* @constructor
* @param {IoMap} iomap the IO map controller.
* @param {Array.<string>} levels the levels to create switchers for.
*/
function LevelControl(iomap, levels) {
var that = this;
this.iomap_ = iomap;
this.el_ = this.initDom_(levels);
google.maps.event.addList... | JavaScript |
/**
* Creates a new Floor.
* @constructor
* @param {google.maps.Map=} opt_map
*/
function Floor(opt_map) {
/**
* @type Array.<google.maps.MVCObject>
*/
this.overlays_ = [];
/**
* @type boolean
*/
this.shown_ = true;
if (opt_map) {
this.setMap(opt_map);
}
}
/**
* @param {google.maps.M... | JavaScript |
// Copyright 2011 Google
/**
* 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 wri... | JavaScript |
<!--
// script by yvoschaap.com
// freely useable
// optional link back would be very web 2.0 :)
// Modifica Martin Radosta 22/05/2007
// Ejemplo:
/*
<span title='Presione aqui para modificar el valor'
onclick=\"editarEnLinea(this, 'urlQueRecibe.php', 'un_div');\"
style='cursor:pointer;' id='xx'>"
zzzzzz
</span... | JavaScript |
/**************************************************************************
Copyright (c) 2001-2003 Geir Landr� (drop@destroydrop.com)
JavaScript Tree - www.destroydrop.com/hjavascripts/tree/
Version 0.96
This script can be used freely as long as all copyright messages are
intact.
**********************... | JavaScript |
// ** I18N
// Calendar ES (spanish) language
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
// Updater: Servilio Afre Puentes <servilios@yahoo.com>
// Updated: 2004-06-03
// Encoding: utf-8
// Distributed under the same terms as the calendar itself.
// For translators: please use UTF-8 if possible. We strongly beli... | JavaScript |
//defino la variable para que este accesible desde todos lados (como una global)
var timer;
/**
* Permite manipular una serie de checks dentro de un contenedor
* @param string accion indica la acciona realizar: seleccionar (selecicona todos los checks)
* deseleccionar (deseleccionar todos los checks)
*... | JavaScript |
// script.aculo.us unittest.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
// (c) 2005, 2006 Jon Tirsen (http://www.tirsen.com)
// (c) 2005, 2006 Michael Schuerig (http://www.schuerig.de/michael/)
//
// script.aculo.us ... | JavaScript |
// script.aculo.us slider.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
// Copyright (c) 2005, 2006 Marty Haught, Thomas Fuchs
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/
if(!Control) var Control = {};
Cont... | JavaScript |
/* Copyright Mihai Bazon, 2002-2005 | www.bazon.net/mishoo
* -----------------------------------------------------------
*
* The DHTML Calendar, version 1.0 "It is happening again"
*
* Details and latest version at:
* www.dynarch.com/projects/calendar
*
* This script is developed by Dynarch.com. Visit us at... | JavaScript |
/* Copyright Mihai Bazon, 2002, 2003 | http://dynarch.com/mishoo/
* ---------------------------------------------------------------------------
*
* The DHTML Calendar
*
* Details and latest version at:
* http://dynarch.com/mishoo/calendar.epl
*
* This script is distributed under the GNU Lesser General Public... | JavaScript |
// script.aculo.us scriptaculous.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"),... | JavaScript |
// script.aculo.us builder.js v1.7.0, Fri Jan 19 19:16:36 CET 2007
// Copyright (c) 2005, 2006 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)
//
// script.aculo.us is freely distributable under the terms of an MIT-style license.
// For details, see the script.aculo.us web site: http://script.aculo.us/
var... | JavaScript |
// Title: Tigra Color Picker
// URL: http://www.softcomplex.com/products/tigra_color_picker/
// Version: 1.1
// Date: 06/26/2003 (mm/dd/yyyy)
// Feedback: feedback@softcomplex.com (specify product title in the subject)
// Note: Permission given to use this script in ANY kind of applications if
// header lines are le... | JavaScript |
function tipoNotificacion(elSelect, elDiv) {
var miDiv = document.getElementById(elDiv);
if(elSelect.value == 8) {//email
miDiv.innerHTML = 'E-Mail (nombre@ejemplo.com)';
}
else if(elSelect.value == 7) {//sms
miDiv.innerHTML = 'Celular (cod. area + numero sin el 15)<br/><font color="red">Se consumira un SMS d... | JavaScript |
// Tooltip Object
var Tooltip = Class.create();
Tooltip.prototype = {
initialize: function(el, options) {
this.el = $(el);
this.initialized = false;
this.setOptions(options);
// Event handlers
this.showEvent = this.show.bindAsEventListener(this);
this.hideEvent = this.hide.bindAsEventListener(this);
t... | JavaScript |
// Start Inverting Opamp Tutor
// Preload Images
var inc_0 = new Image();
inc_0.src = "pngs/inc-off.png";
var inc_1 = new Image();
inc_1.src = "pngs/inc-on.png";
var dec_0 = new Image();
dec_0.src = "pngs/dec-off.png";
var dec_1 = new Image();
dec_1.src = "pngs/dec-on.png";
// set values
var rf_pot=170;
var... | JavaScript |
// Start Inverting Opamp Tutor
// Preload Images
var inc_0 = new Image();
inc_0.src = "pngs/inc-off.png";
var inc_1 = new Image();
inc_1.src = "pngs/inc-on.png";
var dec_0 = new Image();
dec_0.src = "pngs/dec-off.png";
var dec_1 = new Image();
dec_1.src = "pngs/dec-on.png";
// set values
var volt_i = 0;
var... | JavaScript |
// Start Inverting Opamp Tutor
// Preload Images
var inc_0 = new Image();
inc_0.src = "pngs/inc-off.png";
var inc_1 = new Image();
inc_1.src = "pngs/inc-on.png";
var dec_0 = new Image();
dec_0.src = "pngs/dec-off.png";
var dec_1 = new Image();
dec_1.src = "pngs/dec-on.png";
// set values
var rf_pot=170;
var... | JavaScript |
// Start Diff Opamp Tutor
// Preload Images
var inc_0 = new Image();
inc_0.src = "pngs/inc-off.png";
var inc_1 = new Image();
inc_1.src = "pngs/inc-on.png";
var dec_0 = new Image();
dec_0.src = "pngs/dec-off.png";
var dec_1 = new Image();
dec_1.src = "pngs/dec-on.png";
// set values
var rf_pot=170;
var ri_p... | JavaScript |
// Start Inst Opamp Tutor
// Preload Images
var inc_0 = new Image();
inc_0.src = "pngs/inc-off.png";
var inc_1 = new Image();
inc_1.src = "pngs/inc-on.png";
var dec_0 = new Image();
dec_0.src = "pngs/dec-off.png";
var dec_1 = new Image();
dec_1.src = "pngs/dec-on.png";
// set values
var rf_pot=170;
var ri_p... | JavaScript |
// Start Inverting Opamp Tutor
// Preload Images
var inc_0 = new Image();
inc_0.src = "pngs/inc-off.png";
var inc_1 = new Image();
inc_1.src = "pngs/inc-on.png";
var dec_0 = new Image();
dec_0.src = "pngs/dec-off.png";
var dec_1 = new Image();
dec_1.src = "pngs/dec-on.png";
// set values
var rf_pot=170;
var... | JavaScript |
/**************************************************
* dom-drag.js
* 09.25.2001
* www.youngpup.net
**************************************************
* 10.28.2001 - fixed minor bug where events
* sometimes fired off the handle, not the root.
**************************************************/
var Drag =... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
// Copyright 2012 Google Inc. 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... | JavaScript |
$(document).ready(function(){
$("#clickForShow").click(function () {
$("#HiddenValue_Users").show("slow");
});
}); | JavaScript |
var ec2ui_ConfigureHealthCheck = {
ec2ui_session : null,
retVal : null,
launch : function() {
this.retVal.LoadBalancerName = document.getElementById("ec2ui.loadbalancer.LoadBalancerName").value.trim();
this.retVal.Target = document.getElementById("ec2ui.loadbalancer.target").value.trim();
t... | JavaScript |
var ec2ui_LeaseOfferingsTreeView = {
COLNAMES : ['offering.id',
'offering.instanceType',
'offering.azone',
'offering.duration',
'offering.fixedPrice',
'offering.usagePrice',
'offering.description'],
imageIdRegex : ne... | JavaScript |
// controller: slightly higher level of abstraction over the EC2 API
var ec2ui_controller = {
getNsResolver : function() {
return ec2_httpclient.getNsResolver();
},
registerImageInRegion : function(manifestPath, region, callback) {
region = region.toLowerCase();
// Determine the cu... | JavaScript |
var ec2_SecurityGroupDetails = {
init : function() {
var group = window.arguments[0];
document.getElementById("ec2ui.secgroup.name").value = group.name;
document.getElementById("ec2ui.secgroup.ownerid").value = group.ownerId;
document.getElementById("ec2ui.secgroup.description").valu... | JavaScript |
/////////////////////////////////////////////////
/////////////////////////////////////////////////
//
// Basic JavaScript File and Directory IO module
// By: MonkeeSage, v0.1
//
/////////////////////////////////////////////////
/////////////////////////////////////////////////
if (typeof(JSIO) != 'boolean') {
var ... | JavaScript |
function empty() { } ;
var ec2_httpclient = {
handler : null,
ec2ui_session : null,
uri : null,
auxObj : null,
serviceURL : null,
regions : null,
elbURL : null,
iamURL : null,
accessCode : null,
secretKey : null,
timers : {},
// Change the name since Eucalyptus 1.6.2 h... | JavaScript |
var ec2ui_BundleTasksTreeView = {
COLNAMES: [
'bun.id',
'bun.instanceId',
'bun.state',
'bun.startTime',
'bun.updateTime',
'bun.s3bucket',
'bun.s3prefix',
'bun.errorMsg'
],
treeBox: null,
selection: null,
selectedBundleId: null,
task... | JavaScript |
var ec2_VolumeAttacher = {
ec2ui_session : null,
retVal : null,
volumeId : null,
attach : function() {
if (!this.validateDevice()) return false;
this.retVal.instanceId = document.getElementById("ec2ui.newattachment.instanceId").value.split(":")[0];
this.retVal.volumeId = this.volumeId;
this.re... | JavaScript |
// Copyright (c) 2005 Tom Wu
// All Rights Reserved.
// See "LICENSE" for details.
// Basic JavaScript BN library - subset useful for RSA encryption.
// Bits per digit
var dbits;
// JavaScript engine analysis
var canary = 0xdeadbeefcafe;
var j_lm = ((canary&0xffffff)==0xefcafe);
// (public) Constructor
function Bi... | JavaScript |
var ec2ui_InstanceEventsTreeView = {
COLNAMES : ['instanceevent.instanceId','instanceevent.availabilityZone','instanceevent.event',
'instanceevent.description','instanceevent.startTime','instanceevent.endTime'],
treeBox : null,
selection : null,
arrLocalFiles : new Array(),
eventList... | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.