Commit Graph

4167 Commits

Author SHA1 Message Date
Brian Federle 143a0223e7 CS-15913: Add state column to VPN connection listing 2012-08-09 16:13:44 -07:00
Brian Federle d833372a29 VPC UI, VPN connections: fix 'DPD' boolean field 2012-08-09 16:13:39 -07:00
Brian Federle c008637fbf multiEdit: support hiding fields dynamically via dataProvider
If 'hideFields' array is passed to .success(), then hide the field IDs
specified.
2012-08-09 15:52:17 -07:00
Jessica Wang f32f55f7ac CS-15803: cloudstack 3.0 UI - VPC - fix a bug that root-admin failed to create a VM in a tier that belonged to regular-user or domain-admin. 2012-08-09 14:51:38 -07:00
Brian Federle 1ced3fc287 Fix typo 2012-08-09 14:30:09 -07:00
Jessica Wang 2c1d33d085 CS-15801: cloudstack 3.0 UI - VPC - create new tier - fix an error "Owner of vpc with specified vpcId is different from the network owner Acct[2-admin]". 2012-08-09 14:28:28 -07:00
Brian Federle ce23f29e25 CS-15916: Show network name in IP details 2012-08-09 11:43:23 -07:00
Jessica Wang 02e7797f3f cloudstack 3.0 UI - autoscale - add validation, prompt "Please disable the Autoscale VM Group first" when users try to update autoscale that's in Enabled state. UI does not automatically fire disableAutoScaleVmGroup API any more when VM Group is in Enabled state. 2012-08-09 11:18:59 -07:00
Brian Federle afe78348c9 CS-15902: Remove loading overlay from VPC actions
For add VPN and add gateway actions: remove loading overlay to allow
user to perform other actions. The overlay is replaced with a set of
notification messages indicating the status of the job.
2012-08-09 11:02:10 -07:00
Pranav Saxena fd7b1e757f CS-15909:[Autoscale] UI: Autoscaler references to be replaced with Autoscale 2012-08-09 12:55:42 +05:30
Pranav Saxena 1e19ff9bf0 CS-15915:InterVlan - UI - Static route - instead of CIDR should say CIDR of destination network 2012-08-09 10:34:26 +05:30
Jessica Wang f59d5d8dd1 CS-15885: cloudstack 3.0 UI - autoscale - add UI-side validation - at least one condition is required in Scale Up/Down Policy. 2012-08-08 16:44:49 -07:00
Jessica Wang 5d5d8b2d67 CS-15825: cloudstack 3.0 UI - VPC - Tier - detailView - allow all actions for regular-user and domain-admin since server-side doesn't have restriction. 2012-08-08 16:07:06 -07:00
Jessica Wang f2b73d86c2 CS-15773: cloudstack 3.0 UI - VPC - create private gateway dialog - add Physical Network dropdown. 2012-08-08 15:50:08 -07:00
Jessica Wang 8327719d2c CS-15773: cloudstack 3.0 UI - VPC - create private gateway dialog - add Physical Network dropdown. 2012-08-08 15:50:08 -07:00
Jessica Wang a4ca478df5 cloudstack 3.0 UI - autoscale - add validation that scale policy duration can not be less than Polling Interval. 2012-08-08 14:36:28 -07:00
Jessica Wang 5a9dbcf187 cloudstack 3.0 UI - autoscale -fix a bug that action bar was not refreshed after action was complete. 2012-08-08 13:56:13 -07:00
Brian Federle deb7ffa031 Autoscale UI actions: Support passing new actionFilter on complete 2012-08-08 10:23:20 -07:00
Pranav Saxena 29cbd5ea42 CS-15900:InterVlan - UI - Confirmation Note on Acquisition of a Public IP Address to a VPC should mention this VPC instead of this Network 2012-08-08 20:24:14 +05:30
Pranav Saxena ee22f88578 CS-15900:InterVlan - UI - Confirmation Note on Acquisition of a Public IP Address to a VPC should mention this VPC instead of this Network 2012-08-08 20:14:11 +05:30
Pranav Saxena fc14cead15 CS-15851:Intervlan - VMware - Enable Static NAT > if no tier selected> Apply> Status should display 'Please select a tier' 2012-08-08 18:05:47 +05:30
Pranav Saxena 4c6421abf7 CS-15901:InterVlan - UI - Site-to-Site VPN Gateway - Confirmation Message should mention Site-to-Site VPN Gateway instead of just VPN Gateway 2012-08-08 14:57:35 +05:30
Pranav Saxena 88bad6cbcb CS-15903:Detail page of vpn connection miss ike/esp lifetime 2012-08-08 13:52:42 +05:30
Pranav Saxena 9da438b24c Merge branch '3.0.x' of ssh://git.cloud.com/var/lib/git/cloudstack-oss into 3.0.x 2012-08-08 10:59:57 +05:30
Pranav Saxena 65edf654e2 CS-15898:Change drop down options in vm tier for vpc 2012-08-08 10:58:02 +05:30
Jessica Wang 2e6aeee9af cloudstack 3.0 UI - autoscale - implement enableAutoScaleVmGroup API, disableAutoScaleVmGroup API. 2012-08-07 16:33:39 -07:00
Brian Federle 4618f5f449 CS-15890: ACL multiEdit: Change 'Source CIDR' -> 'CIDR' 2012-08-07 15:57:57 -07:00
Brian Federle ff29e4f02f CS-15891: Add view console action to VPC instances list view 2012-08-07 15:53:19 -07:00
Brian Federle f541d85fce List view: support external link actions
Support actions which point to an external link, primary to support
launching the console proxy.

Example:

listView: {
  actions: {
    viewConsole: {
      label: 'label.view.console',
      action: {
        externalLink: {
          url: function(args) {
            return clientConsoleUrl + '?cmd=access&vm=' + args.context.vpcTierInstances[0].id;
          },
          title: function(args) {
            return args.context.vpcTierInstances[0].id.substr(0,8);
          },
          width: 820,
          height: 640
        }
      }
    }
  }
}
2012-08-07 15:53:19 -07:00
Brian Federle 170b1d833f Reduce whitespace to overcome file size limit 2012-08-07 15:53:19 -07:00
Brian Federle 5c850c9b4c CS-15892: Tier detail view: Show 'tier details' instead of 'details' 2012-08-07 15:53:19 -07:00
Jessica Wang db3692e448 cloudstack 3.0 UI - autoscale - configure AutoScale - resolve an error returned by updateAutoScaleVmGroup API "Only scaleup policies can be specified in scaleuppolicyids". 2012-08-07 15:31:56 -07:00
Jessica Wang 698097a3ce cloudstack 3.0 UI - autoscale - configure AutoScale - fix a bug when root-admin tried to update an AutoScale created by regular-user or domain-admin, users dropdown was not correctly populated (should be populated with users under owner account instead of users under current login account). 2012-08-07 15:17:08 -07:00
Jessica Wang 0cd51eafc3 CS-15836: cloudstack 3.0 UI - autoscale - existing LB - configure AutoScale - fix a bug that root-admin was unable to see autoscale created by regular-user or domain-admin. 2012-08-07 14:33:16 -07:00
Jessica Wang 15d1e57b92 cloudstack 3.0 UI - autoscale - existing LB - configure AutoScale - fix a JS bug "otherdeployparams is undefined". 2012-08-07 14:10:12 -07:00
Brian Federle 38a269c1bf CS-15861: Validate form fields before showing autoscale UI
--only applies to new LB rule form, not existing LB rules.
2012-08-07 13:46:32 -07:00
Brian Federle 365e8803cd multiEdit: support validate on custom action
If requireValidation: true is set for a custom action, then only
perform action if multiEdit's form fields are valid. This does not
apply to clicking on existing rules' action buttons.

Syntax:

multiEdit: {
  fields: {
    testField: {
      custom: {
        requireValidation: true,
        ...
      },
      ...
    },
    ...
  }
}
2012-08-07 13:46:32 -07:00
Jessica Wang fa2d392ba2 cloudstack 3.0 UI - autoscale - for regular user - fix a bug that createAutoScaleVmProfile API fails because autoscaleuserid is undefined. 2012-08-07 13:21:26 -07:00
Brian Federle 98b4f598be Autoscale UI: Add actions to top of dialog
Support performing actions via the autoscaler dialog. This adds
'autoscaleActions' and 'actionFilter' options to the autoscaler, which
specify and handle the actions appearing in the UI.

Performing these actions will cause a loading overlay to appear until
actions are finished, when the action bar is refreshed via the action
filter.
2012-08-07 13:19:35 -07:00
Jessica Wang 530fb65278 cloudstack 3.0 UI - VPC - private gateways - preCheck() should not call args.response.success(). 2012-08-07 11:48:36 -07:00
Jessica Wang 9f707a6b7d cloudstack 3.0 UI - site to site VPN - create VPN connection - fix a bug that wrong vpnGatewayId is passed to API command where there are multiple VPN gateways are present in one account. 2012-08-07 11:27:45 -07:00
Jessica Wang b8e3a20ba0 cloudstack 3.0 UI - VPC - IP Address page - configuration tab - fix a bug that root-admin was unable to see LB service of IP Address owned by regular-user or domain-admin. 2012-08-07 10:45:58 -07:00
Jessica Wang 25bb243a6f cloudstack 3.0 UI - infrastructure - Virtual Routers - detailView - add Reboot action to VPC Virtual Router. 2012-08-06 16:36:53 -07:00
Jessica Wang da9603cfe6 cloudstack 3.0 UI - infrastructure - zone detail - network service providers - VPC Virtual Router - Instances tab - detailView - add Reboot action. 2012-08-06 16:28:23 -07:00
Jessica Wang 9edbc70e5b cloudstack 3.0 UI - infrastructure - Virtual Routers - detailView - add ChangeService action to VPC Virtual Router. 2012-08-06 15:45:31 -07:00
Jessica Wang 5ec9cf3081 cloudstack 3.0 UI - infrastructure - zone detail - network service providers - VPC Virtual Router - Instances tab - detailView - add ChangeService action. 2012-08-06 15:39:29 -07:00
Jessica Wang 6620020477 cloudstack 3.0 UI - infrastructure - zone detail - network service providers - Virtual Router - Instances tab - exclude VPC Virtual Router here. 2012-08-06 14:41:46 -07:00
Brian Federle ad132d43b0 CS-15518: Fix password field garbling on login screen.
From ASF master @ b10a619635
2012-08-06 14:34:48 -07:00
Brian Federle 31fbc7bf80 multiEdit: better handling for tag widget
Place tagging widget in a separate action and dialog class; it is
indicated by a 'tag' icon for better clarity.

-- This removes the requirement to specify a dummy 'edit' action on
multi-rules; instead, the separate tag action will appear automatically
as long as 'tags' is specified under the multiEdit's properties.
2012-08-06 14:14:30 -07:00
Jessica Wang ba5a72d73e cloudstack 3.0 UI - infrastructure - zone detail - network service providers - VPC Virtual Router - Instances tab - add Type to listView (System, VPC or Project). 2012-08-06 14:05:35 -07:00