~vcs-imports/elasticfox/trunk

« back to all changes in this revision

Viewing changes to src/chrome/content/ec2ui/eipdetaildialog.js

  • Committer: jhatax
  • Date: 2009-05-21 23:27:40 UTC
  • Revision ID: vcs-imports@canonical.com-20090521232740-bi5hmpcscpub0ar4
In this Release:
- Reserved Instances support comes to Elasticfox

Bug fixes to/for:
- EBS volume attachment to an instance from both the instances and volumes view
- Strict Javascript warnings

M    trunk/src/chrome/locale/ec2ui/en-US/ec2ui.dtd
A    trunk/src/chrome/content/ec2ui/dialog_purchase_offering.xul
A    trunk/src/chrome/content/ec2ui/dialog_offering_details.xul
M    trunk/src/chrome/content/ec2ui/eipdetaildialog.js
M    trunk/src/chrome/content/ec2ui/controller.js
M    trunk/src/chrome/content/ec2ui/volumesview.js
M    trunk/src/chrome/content/ec2ui/securitygroupdetaildialog.js
M    trunk/src/chrome/content/ec2ui/dialog_volume_details.xul
M    trunk/src/chrome/content/ec2ui/utils.js
A    trunk/src/chrome/content/ec2ui/offeringdetaildialog.js
M    trunk/src/chrome/content/ec2ui/attachebsvolumedialog.js
A    trunk/src/chrome/content/ec2ui/dialog_reserved_instances_details.xul
M    trunk/src/chrome/content/ec2ui/client.js
M    trunk/src/chrome/content/ec2ui/bundletaskdetailsdialog.js
M    trunk/src/chrome/content/ec2ui/instancesview.js
A    trunk/src/chrome/content/ec2ui/reservedinstancesdetaildialog.js
M    trunk/src/chrome/content/ec2ui/dialog_new_volume.xul
M    trunk/src/chrome/content/ec2ui/permissiondetaildialog.js
M    trunk/src/chrome/content/ec2ui/keypairdetaildialog.js
A    trunk/src/chrome/content/ec2ui/purchaseofferingdialog.js
M    trunk/src/chrome/content/ec2ui/dialog_new_attachment.xul
M    trunk/src/chrome/content/ec2ui/dialog_snapshot_details.xul
A    trunk/src/chrome/content/ec2ui/reservedinstancesview.js
A    trunk/src/chrome/content/ec2ui/leaseofferingsview.js
AM   trunk/src/chrome/content/ec2ui/images/cash.png
M    trunk/src/chrome/content/ec2ui/dialog_attach_ebs_volume.xul
A    trunk/src/chrome/content/ec2ui/leases_tab_overlay.xul
M    trunk/src/chrome/content/ec2ui/snapshotdetaildialog.js
M    trunk/src/chrome/content/ec2ui/instancedetaildialog.js
M    trunk/src/chrome/content/ec2ui/volumedetaildialog.js
M    trunk/src/chrome/content/ec2ui/bundleInstanceDialog.js
M    trunk/src/chrome/content/ec2ui/session.js
M    trunk/src/chrome/content/ec2ui/ec2ui_main_window.xul
M    trunk/src/chrome/content/ec2ui/model.js

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
var ec2_ElasticIPDetails = {
2
2
   init : function() {
3
 
      eip = window.arguments[0];
 
3
      var eip = window.arguments[0];
4
4
      document.getElementById("ec2ui.eip.address").value = eip.address;
5
5
      document.getElementById("ec2ui.eip.instanceid").value = eip.instanceid;
6
6
      document.getElementById("ec2ui.eip.tag").value = eip.tag || "";