Brian Federle
df4a4a6b21
CS-15913: Add state column to VPN connection listing
2012-08-09 16:15:29 -07:00
Brian Federle
241d83aa09
VPC UI, VPN connections: fix 'DPD' boolean field
2012-08-09 16:15:29 -07:00
Brian Federle
41afde3207
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 16:15:29 -07:00
Jessica Wang
3b8494131f
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:53:06 -07:00
Jessica Wang
ed28accdf0
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:30:07 -07:00
Mice Xia
c91463f43e
show zone name in secondary storage detail page
2012-08-09 17:29:11 +08:00
Pranav Saxena
695f727cfd
CS-15915:InterVlan - UI - Static route - instead of CIDR should say CIDR of destination network
2012-08-09 10:37:09 +05:30
Jessica Wang
965da2ce99
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:08:36 -07:00
Jessica Wang
c33c19dd31
CS-15773: cloudstack 3.0 UI - VPC - create private gateway dialog - add Physical Network dropdown.
2012-08-08 15:53:36 -07:00
Jessica Wang
cd5b79414b
CS-15773: cloudstack 3.0 UI - VPC - create private gateway dialog - add Physical Network dropdown.
2012-08-08 15:52:55 -07:00
Alena Prokharchyk
048c5e50cf
Merge branch 'master' into vpc
...
Conflicts:
utils/test/com/cloud/utils/component/MockComponentLocator.java
2012-08-08 11:50:39 -07:00
Jessica Wang
b74a6a7a9c
cloudstack 3.0 UI - VPC - private gateways - preCheck() should not call args.response.success().
2012-08-08 10:27:51 -07:00
Jessica Wang
406ae0d724
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-08 10:26:52 -07:00
Jessica Wang
0db332887e
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-08 10:22:49 -07:00
Jessica Wang
0c8ce06f6b
cloudstack 3.0 UI - infrastructure - Virtual Routers - detailView - add Reboot action to VPC Virtual Router.
2012-08-08 10:13:17 -07:00
Jessica Wang
a1143acf85
cloudstack 3.0 UI - infrastructure - zone detail - network service providers - VPC Virtual Router - Instances tab - detailView - add Reboot action.
2012-08-08 10:08:38 -07:00
Pranav Saxena
a5f979355b
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:29:27 +05:30
Pranav Saxena
8f34776dd8
CS-15851:Intervlan - VMware - Enable Static NAT > if no tier selected> Apply> Status should display 'Please select a tier'
2012-08-08 18:02:39 +05:30
Pranav Saxena
dd7a0da9a7
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 15:00:48 +05:30
Pranav Saxena
1323d7f32f
CS-15903:Detail page of vpn connection miss ike/esp lifetime
2012-08-08 13:59:34 +05:30
Mice Xia
8d75c8fe7d
fix for empty event detail page
2012-08-08 15:49:27 +08:00
Pranav Saxena
1aea98f622
CS-15898:Change drop down options in vm tier for vpc
2012-08-08 11:03:08 +05:30
Brian Federle
b5e1c53137
CS-15892: Tier detail view: Show 'tier details' instead of 'details'
...
Conflicts:
ui/index.jsp
2012-08-07 16:02:07 -07:00
Brian Federle
7de225baa9
CS-15890: ACL multiEdit: Change 'Source CIDR' -> 'CIDR'
2012-08-07 16:00:44 -07:00
Brian Federle
72651f62b7
CS-15891: Add view console action to VPC instances list view
...
Conflicts:
ui/css/cloudstack3.css
2012-08-07 16:00:35 -07:00
Brian Federle
310b24b285
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:59:36 -07:00
Brian Federle
8630891c07
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:58:57 -07:00
Brian Federle
c6e58b6ece
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,
...
},
...
},
...
}
}
Conflicts:
ui/scripts/ui/widgets/multiEdit.js
2012-08-07 13:48:27 -07:00
Jessica Wang
37b66d3fb2
cloudstack 3.0 UI - infrastructure - Virtual Routers - detailView - add ChangeService action to VPC Virtual Router.
2012-08-06 16:01:02 -07:00
Jessica Wang
8da249e2a3
cloudstack 3.0 UI - infrastructure - zone detail - network service providers - VPC Virtual Router - Instances tab - detailView - add ChangeService action.
2012-08-06 16:00:05 -07:00
Jessica Wang
1e69966f75
cloudstack 3.0 UI - infrastructure - zone detail - network service providers - Virtual Router - Instances tab - exclude VPC Virtual Router here.
2012-08-06 15:59:11 -07:00
Jessica Wang
648dcf0ccf
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 15:50:38 -07:00
Brian Federle
469e180515
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.
Conflicts:
client/WEB-INF/classes/resources/messages.properties
ui/css/cloudstack3.css
ui/index.jsp
2012-08-06 14:15:41 -07:00
Jessica Wang
feb2ed1d2d
cloudstack 3.0 UI - site to site VPN - Edit mode - (1)split IKE policy field into 3 fields. (2)split ESP plicy field into 3 fields. (3)split lifetime field into 2 fields. (4) add Dead Peer Detection field.
2012-08-06 13:26:59 -07:00
Jessica Wang
532806ba13
cloudstack 3.0 UI - site to site VPN - listView - (1)split IKE policy field into 3 fields. (2)split ESP plicy field into 3 fields. (3)split lifetime field into 2 fields. (4) add Dead Peer Detection field.
2012-08-06 13:25:21 -07:00
Jessica Wang
8b16e32b50
cloudstack 3.0 UI - site to site VPN - Create action - (1)split IKE policy field into 3 fields. (2)split ESP plicy field into 3 fields. (3)split lifetime field into 2 fields. (4) add Dead Peer Detection field.
2012-08-06 13:13:59 -07:00
Pranav Saxena
feaea413c7
CS-15844:InterVlan - UI - Remove ACL Icon is not displayed properly for ACL Rules
2012-08-06 16:06:30 +05:30
Jessica Wang
6aee5f2aef
cloudstack 3.0 UI - site to site VPN - VPN customer gateway - implement Edit mode.
...
Conflicts:
ui/scripts/network.js
2012-08-03 13:24:34 -07:00
Brian Federle
9697860938
CS-15842: VPC gateway create form: Put 'VLAN' field at the top
2012-08-03 12:29:53 -07:00
Brian Federle
26a4132b11
CS-15841: Better add VPC gateway flow
...
- Because only 1 gateway can exist per VPC, remove 'add' button from
list view and immediately show create form on click if no gateway is
present; show list view on successful creation. If there is a
gateway, go to list view immediately.
- Rename "Gateways" -> "Private Gateway"
2012-08-03 12:26:34 -07:00
Brian Federle
75242b49ce
VPC details: Display 'restart required' field
2012-08-03 12:03:57 -07:00
Brian Federle
5cb356024f
CS-15802: Add VPC filter to instance wizard network select
...
Adds drop-down select to filter networks by VPC.
-If no VPC is selected, only show non-VPC isolated networks
-If VPC is selected, show tiers from specified VPC. Note that only one
tier/network can be checked at a time in this mode, and 'add network'
text field is hidden
2012-08-03 11:42:40 -07:00
Brian Federle
20b0790753
CS-15809: Show account/domain fields on VPC detail view
...
Conflicts:
ui/scripts/network.js
2012-08-03 11:13:32 -07:00
Brian Federle
7fb1e13957
CS-15793: Fix static NAT select when in a VPC network
...
Conflicts:
ui/scripts/network.js
2012-08-03 11:07:06 -07:00
Pranav Saxena
20407ec863
CS-15793:Enable static NAT for the public IP address screen is not showing VMs
2012-08-03 15:54:10 +05:30
Alena Prokharchyk
0e0b75a041
Merge branch 'master' into vpc
...
Conflicts:
api/src/com/cloud/api/ApiConstants.java
2012-08-02 18:45:37 -07:00
Jessica Wang
25b75c1bff
cloudstack 3.0 UI - site to site VPN - (1) implement Add VPN connection action in VPN connection listView. (2) remove Add VPN connection action from VPN customer gateway detailView.
2012-08-02 16:01:34 -07:00
Jessica Wang
47f309af6d
cloudstack 3.0 UI - site to site VPN - VPN customer gateway - add name field.
2012-08-02 15:30:15 -07:00
Pranav Saxena
95b6a5eeda
CS-15807 :Network label for OVM support on UI : Reviewed-By - Brian Federle
2012-08-03 03:18:26 +05:30
Brian Federle
c12734eab6
CS-15798: Support editing of VPC resource limits
2012-08-02 14:22:45 -07:00
Brian Federle
2cb141e6ae
VPC: Update site-to-site VPN creation flow
...
If no VPN gateway exists for a VPC, then immediately show a dialog box
asking if user wants to add. If so, create VPN gateway and show list
view afterwards.
- This removes the 'add' button from the list view, moving the code up
a level in the object to siteToSiteVPN.add
- In addition there is a new function, siteToSiteVPN.preCheck, which
returns true/false. If true, then show list view immediately; if
false, show dialog and go through creation process, showing list
view afterwards.
Conflicts:
ui/scripts/vpc.js
2012-08-02 11:34:51 -07:00
Pranav Saxena
eb116b6ecb
CS-15318: Do not allow user to stop a VM in Starting State (hiding the stop button)
2012-08-02 14:22:53 +05:30
Alena Prokharchyk
ce9f1afa78
Merge branch 'master' into vpc
...
Conflicts:
server/src/com/cloud/network/NetworkManagerImpl.java
2012-08-01 19:04:28 -07:00
Jessica Wang
10cf9c2f20
CS-15687: cloudstack 3.0 UI - zone wizard - change timer setting for adding netcaler provider.
2012-08-01 17:18:28 -07:00
Jessica Wang
a902443708
CS-15792: cloudstack 3.0 UI - VPC - pass domainid+account instead of listAll to all listNetworks API calls under VPC section.
2012-08-01 16:10:41 -07:00
Brian Federle
babc868de6
listView UI: Fix case where $breadcrumb isn't present
2012-08-01 15:57:28 -07:00
Brian Federle
640dcdec1f
cloudBrowser / list view UI: Show subsection in breadcrumb
...
If in a section with multiple subsections, show active subsection in
the breadcrumb.
For example, if in storage->snapshots, display 'Storage - Snapshots'
based on the 'title' attribute for the main section and subsetion.
-- Note: this disables the 'fixSize' functionality which resizes long
breadcrumb trails, due to incompatibility with this new feature. It
is going to be reimplemented anyway, as it is fairly glitchy in its
current incarnation.
2012-08-01 15:57:24 -07:00
Brian Federle
8120785bab
listView UI: Fix case where $breadcrumb isn't present
2012-08-01 15:57:00 -07:00
Brian Federle
6ad7f2f80b
CS-15740: Show 'please select a tier' instead of blank default option
...
For VPC enable static NAT dialog, a tier always needs to be selected
-- this is now indicated in the default option select.
2012-08-01 14:36:46 -07:00
Brian Federle
ef9dd4210e
cloudBrowser / list view UI: Show subsection in breadcrumb
...
If in a section with multiple subsections, show active subsection in
the breadcrumb.
For example, if in storage->snapshots, display 'Storage - Snapshots'
based on the 'title' attribute for the main section and subsetion.
-- Note: this disables the 'fixSize' functionality which resizes long
breadcrumb trails, due to incompatibility with this new feature. It
is going to be reimplemented anyway, as it is fairly glitchy in its
current incarnation.
2012-08-01 14:36:15 -07:00
Pranav Saxena
250501c56d
CS-14907:Download volume option to be present only if it is in READY state since it has moved to the primary storage
2012-08-01 10:58:22 +05:30
Brian Federle
379ba3b292
Update VPC UI:
...
-Update with additional actions
-Fix dataProvider for tiers
-Add 'view all IP addresses' link to tier details
2012-07-31 14:38:46 -07:00
Brian Federle
1c7e68aa49
VPC widget: fix missing $browser reference
2012-07-31 14:37:55 -07:00
Brian Federle
6cbf43e89b
CS-15761: Show type of router in list view
...
Adds a 'type' column to virtual router list views, which is labeled
either 'VPC,' 'Project,' or 'System' [default router].
--This also fixes an issue where project routers were never listed
2012-07-31 14:20:49 -07:00
Brian Federle
c4e2fe7b74
CS-15760
...
Don't show Configuration tab for VPC static NAT
2012-07-31 13:44:54 -07:00
Alena Prokharchyk
7706a9c32f
Merge branch 'master' into vpc
...
Conflicts:
server/src/com/cloud/network/NetworkManagerImpl.java
server/src/com/cloud/network/rules/RulesManagerImpl.java
2012-07-31 13:37:28 -07:00
Pranav Saxena
9644a62014
CS-15724:S2S vpn- Customer vpn gateway page does not display all the configured parameters
2012-07-31 16:27:50 +05:30
olgasmola
05c9e0bb36
CS-15770: Hide Dedicated option when Basic EIP/ELB is chosen as Network Offering.
2012-07-31 13:35:41 +03:00
Brian Federle
3622039feb
CS-15620
...
Fix edit instance 'displayname' parameter not being sent over, even if
content was updated.
2012-07-30 15:17:06 -07:00
Pranav Saxena
5f2bbf0e2a
CS-15720:Site 2 Site VPN:Front End development for adding a vpn conenction from vpn connection page
2012-07-31 03:46:45 +05:30
Brian Federle
1fbf5952cd
Add license header to tagger widget
2012-07-30 14:32:32 -07:00
Brian Federle
6b47907f39
CS-15726: Use custom validation for tagger widget
...
Show a generic dialog box for tagger validation, instead of using
jQuery validate
--it conflicted with the detail view's edit fields and prevented
submission unless the key and value fields were filled out.
2012-07-30 14:32:32 -07:00
Pranav Saxena
36fc2bd9b5
CS-15044:API changes and UI changes to provide option to view the name of the guestnetwork a virtual machine belongs
2012-07-31 02:57:46 +05:30
Pranav Saxena
e47b6da603
CS-15746:S2S VPN: vpn connection details page does not show the vpn connection state
2012-07-30 23:33:03 +05:30
olgasmola
9c895b14ab
CS-15317: Fix operations with accounts on the Project tab after making another account project owner.
2012-07-27 23:37:46 -04:00
olgasmola
82bb1e5592
CS-15349: Fix incorrect result when Make owner in New project/Add account.
2012-07-27 23:37:46 -04:00
olgasmola
0be4230f91
CS-15325: Fix selected name of user from the drop down list overlay.
2012-07-27 23:37:45 -04:00
olgasmola
9d67ecdbb7
CS-15518: Fix password field garbling on login screen.
2012-07-27 23:37:45 -04:00
Wido den Hollander
4dd2854d61
rbd: Small JavaScript fix
2012-07-27 23:37:45 -04:00
Alena Prokharchyk
a39fd61249
Merge branch 'master' into vpc
...
Conflicts:
server/src/com/cloud/network/rules/RulesManagerImpl.java
server/src/com/cloud/vm/UserVmManagerImpl.java
server/src/com/cloud/vm/VirtualMachineGuru.java
2012-07-27 13:47:46 -07:00
olgasmola
7fbd612d69
CS-15317: Fix operations with accounts on the Project tab after making another account project owner.
2012-07-27 18:23:07 +03:00
olgasmola
7fc3adbacc
CS-15349: Fix incorrect result when Make owner in New project/Add account.
2012-07-27 17:32:54 +03:00
olgasmola
b7d68ac5d5
CS-15325: Fix selected name of user from the drop down list overlay.
2012-07-27 16:27:59 +03:00
olgasmola
730f808d18
Merge branch 'CS-15518'
2012-07-27 15:37:32 +03:00
olgasmola
b10a619635
CS-15518: Fix password field garbling on login screen.
2012-07-27 15:36:58 +03:00
Wido den Hollander
fe5595e9ae
rbd: Small JavaScript fix
2012-07-27 08:44:17 +02:00
Brian Federle
00af517003
VPC UI: IP address configuration fix
...
After acquiring a new IP, immeditaly clicking on its configuration tab
will show an enabled firewall, which is incorrect. This fix always
disables the firewall if in a VPC network.
2012-07-26 16:13:57 -07:00
Brian Federle
4a38f2be17
Cleanup formatting/whitespace
...
Conflicts:
ui/scripts/vpc.js
2012-07-26 15:40:24 -07:00
Brian Federle
e76f8dc577
Disable listView filters for PF/LB/Static NAT
2012-07-26 15:36:33 -07:00
Brian Federle
21290ef8f1
Networks section: Only show VPC dropdown for Advanced zones
2012-07-26 15:22:03 -07:00
Brian Federle
ae45ed65c6
VPC tier UI: Fix loading state for other actions
...
Fix actions other than the add VM action, whose loading state was
never removed
2012-07-26 14:41:37 -07:00
Brian Federle
1ba451b65f
VPC UI: Better launch VM loading state for tiers
...
When launching a VM via the 'add VM' button on a VPC tier, show
loading icon to the side of the VM count, so that the tier area isn't
blocked, allowing the user to add more VMs or do other actions to the
tier.
2012-07-26 14:33:14 -07:00
Wido den Hollander
406fd95d87
Add RBD support for primary storage
...
This patch adds RBD (RADOS Block Device) support for primary storage in combination with KVM.
To get this patch working you need:
- libvirt-java 0.4.8
- libvirt with RBD storage pool support (>0.9.13)
- Qemu with RBD support (>0.14)
The primary storage does not support all the functions of CloudStack yet, for example snapshotting is disabled
due to the fact that backupping up a RBD snapshot is not possible in the way CloudStack wants to do it.
Creating templates from RBD volumes goes well, creating a VM from a template however is still a hit-and-miss.
NFS primary storage is also still required, you are not able to run your System VM's from RBD, they will need
to run on NFS.
Other then these points you can run instances with RBD backed disks.
2012-07-26 22:22:26 +02:00
olgasmola
f090fdeea7
CS-15292: Split long OS Type list when create Template,ISO.
2012-07-25 12:05:05 +03:00
olgasmola
1075344f03
CS-15353: Larger click boxes in UI.
2012-07-25 11:54:45 +03:00
olgasmola
2b1758b233
CS-15391: Add required fields validation when Edit on the Details tab for Infrastructure/Zones, Infrastructure/Pods.
2012-07-25 11:48:25 +03:00
olgasmola
63f6308f03
CS-15393: Scroll bar fix when any point is selected.
2012-07-25 11:41:02 +03:00
olgasmola
85a13dfe1a
CS-15478: UI cosmetic fix for empty buttons/viewAll section.
2012-07-25 11:33:35 +03:00
olgasmola
dc19c86fde
CS-15533: Add instance/Review tab fix empty value.
2012-07-25 10:42:43 +03:00
Pranav Saxena
12ee8810f6
TAGS feature implementation throughout CloudStack UI
2012-07-24 15:36:43 -07:00
Brian Federle
e626291a34
Notifications widget: support custom interval
...
If 'interval' attribute is passed in notification object, use that
interval instead of the default.
Conflicts:
ui/scripts/ui/widgets/notifications.js
2012-07-24 15:30:57 -07:00
Brian Federle
d7d9b341c8
Notifications widget: support custom interval
...
If 'interval' attribute is passed in notification object, use that
interval instead of the default.
Conflicts:
ui/scripts/ui/widgets/notifications.js
2012-07-24 15:30:47 -07:00
Brian Federle
8683fc4e05
Add tag UI support for VPC resource types:
...
- Vpc,
- NetworkACL,
- StaticRoute
2012-07-24 15:26:59 -07:00
Brian Federle
5126ca95e6
Add tags to FW rule multi-edit
2012-07-24 15:26:27 -07:00
Brian Federle
f01f687601
Fix tag widget being appended to all dialogs
2012-07-24 15:26:09 -07:00
Brian Federle
c839cf68a6
Add tags to edit PF dialog
2012-07-24 15:25:57 -07:00
Brian Federle
87f0ec6796
Fix tag notification messages
2012-07-24 15:25:57 -07:00
Brian Federle
a59afac31f
Add tag edit to LB rule
2012-07-24 15:25:57 -07:00
Brian Federle
c5dc569aaa
multiEdit: Pass context to tagger widget
2012-07-24 15:25:56 -07:00
Brian Federle
e97c47b9ae
Always make tags editable
2012-07-24 15:25:56 -07:00
Brian Federle
2fdf6837ec
Pass projectId to listTags, when viewing a project resource
2012-07-24 15:25:13 -07:00
bfederle
ea35f48d7e
Implement tags for project detail view
2012-07-24 15:23:58 -07:00
Brian Federle
003c62583c
Add tags to FW rule multi-edit
2012-07-24 15:22:37 -07:00
Pranav Saxena
ab6ef4bceb
TAGS feature implementation throughout CloudStack UI
2012-07-24 15:07:43 -07:00
Brian Federle
2ec005c628
Fix tag widget being appended to all dialogs
2012-07-24 15:05:30 -07:00
Brian Federle
a924eb196f
Fix tag notification messages
2012-07-24 12:24:25 -07:00
Brian Federle
06101ea27e
Add tags to edit PF dialog
2012-07-24 12:24:25 -07:00
Brian Federle
17ac3a7e3e
Add tag edit to LB rule
2012-07-24 12:24:24 -07:00
Brian Federle
53cc0a953d
multiEdit: Pass context to tagger widget
2012-07-24 12:24:11 -07:00
Brian Federle
874536a768
Always make tags editable
2012-07-24 12:24:05 -07:00
Brian Federle
7a2be05c24
Pass projectId to listTags, when viewing a project resource
2012-07-24 12:23:57 -07:00
bfederle
8e1b8d1f56
Implement tags for project detail view
2012-07-24 12:23:45 -07:00
Brian Federle
e13a7a8387
Revert "CS-15572 : StartIndex handled incorrectly when switching between the various Filter by options while listing ISOs in the UI"
...
This was reverted, as another commit fixed the issue already:
commit 2b2e491f27
Author: bfederle <bfederle@gmail.com>
Date: Tue Jul 17 11:38:56 2012 -0700
CS-15572: Fix page index for list view filters
This reverts commit 374be31b63 .
2012-07-24 11:56:11 -07:00
Pranav Saxena
5ba20b328d
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cloudstack
2012-07-25 00:06:39 +05:30
Alena Prokharchyk
766b7a2706
Merge branch 'master' into vpc
...
Conflicts:
server/src/com/cloud/api/ApiResponseHelper.java
2012-07-23 16:38:58 -07:00
bfederle
64605e7703
UI: Add tag API call generator
...
Adds a helper to return an object to pass to the 'tagger' widget,
including all required data and action functions.
Syntax is as follows, just include anywhere were the tags widget is
supported:
tags: cloudStack.api.tags({
resourceType: 'Project',
contextId: 'projects'
})
2012-07-23 15:18:36 -07:00
bfederle
1c2780f233
Tag UI: Make sure data is passed to remove action
2012-07-23 15:18:36 -07:00
bfederle
39e1936c87
Fix tags widget overlap with long detail views
2012-07-23 15:18:36 -07:00
bfederle
5e94b0d12e
Implement tag UI widget
...
Create UI for handling new tag API. This currently supports the detail view and multi-edit
To enable tags UI, add a 'tags' object to each detailView/multiEdit configuration:
tabs: {
...
details: {
...
tags: {
actions: {
add: function(args) {
setTimeout(function() {
args.response.success({
notification: {
desc: 'Add tags for instance',
poll: testData.notifications.testPoll
}
});
}, 500);
},
remove: function(args) {
args.response.success({
notification: {
desc: 'Remove tags for instance',
poll: testData.notifications.testPoll
}
});
}
},
dataProvider: function(args) {
args.response.success({
data: [
{
id: '1',
key: 'user',
value: 'brian'
},
{
id: '2',
key: 'region',
value: 'usa'
}
]
});
}
}
...
Conflicts:
ui/css/cloudstack3.css
ui/scripts/ui/widgets/tagger.js
2012-07-23 15:18:36 -07:00
Pranav Saxena
018a243ca1
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cloudstack
2012-07-24 00:52:22 +05:30
Jessica Wang
2a822de5e0
cloudstack 3.0 UI - multiEdit widget - make headerFields hidden as default.
2012-07-20 16:13:03 -07:00
Jessica Wang
f3841b3b8f
cloudstack 3.0 UI - VPC - add LB rule - fix a JS error "args.context.networks is undefined" when configure stickiness.
2012-07-20 16:10:35 -07:00
Jessica Wang
1381fa46e1
cloudstack 3.0 UI - listView widget - pass context from caller function.
2012-07-20 16:05:11 -07:00
Jessica Wang
9176d13246
cloudstack 3.0 UI - VPC - infrasture page - network service providers - add "VPC Virtual Router".
2012-07-20 15:59:05 -07:00
Jessica Wang
254c05813c
cloudstack 3.0 UI - VPC - add zone wizard - enable VpcVirtualRouter element, enable VpcVirtualRouter provider for advanced zone.
2012-07-20 15:49:13 -07:00
Jessica Wang
dc847ed832
cloudstack 3.0 UI - VPC - tier - implement "Add VM to tier" action.
2012-07-20 15:44:45 -07:00
Jessica Wang
20db2e515b
cloudstack 3.0 UI - VPC - add network offering dialog - when service(s) has VPC Virtual Router as provider: (1) conserve mode is set to unchecked and grayed out. (2) redundant router capability checkbox is set to unchecked and grayed out. (3) remove Firewall service, SecurityGroup service.
2012-07-20 14:28:20 -07:00
Jessica Wang
ee9074a175
cloudstack 3.0 UI - VPC - sync VPC UI from citrix-hosted repo to apache-hosted repo.
2012-07-20 14:12:53 -07:00
Brian Federle
152b17b7f3
Remove dummy VPC UI from networks section
2012-07-20 14:05:44 -07:00
bfederle
71bfeae487
Update VPC UI
2012-07-20 11:02:28 -07:00
bfederle
2b2e491f27
CS-15572: Fix page index for list view filters
...
This fixes an issue where the page index is not reset back 1 when
activating the search or filter functionality, causing truncation when
trying to scroll down to later pages.
2012-07-17 11:41:53 -07:00
Pranav Saxena
374be31b63
CS-15572 : StartIndex handled incorrectly when switching between the various Filter by options while listing ISOs in the UI
2012-07-13 12:32:38 +05:30
Brian Federle
50373b99d6
Detail view: Fix layout of text actions
2012-07-12 15:29:15 -07:00
Brian Federle
2a971d7c1b
Detail view UI: Support for text action buttons
...
Currently, only icons are rendered on detail view actions. This change
adds support for showing a text label next to specified actions, which
has a button appearance. This is to allow certain actions to be more
visible, in the case where an icon isn't clear enough.
To make an action have a text label, add a 'textLabel' attribute to
the action properties:
editVpc: {
label: 'Edit VPC',
// textLabel property
textLabel: 'label.configure',
action: {
...
}
}
2012-07-12 15:29:15 -07:00
Brian Federle
9b039d9a8d
List view UI: Support for text action buttons
...
Currently, only icons are rendered on list view actions. This change
adds support for showing a text label next to specified actions, which
has a button appearance. This is to allow certain actions to be more
visible, in the case where an icon isn't clear enough.
To make an action have a text label, add a 'textLabel' attribute to
the action properties:
editVpc: {
label: 'Edit VPC',
// textLabel property
textLabel: 'label.configure',
action: {
...
}
}
2012-07-12 13:46:19 -07:00
Hugo Trippaers
79c7da07ab
Phase 1 of Nicira integration
2012-07-11 17:16:06 -07:00
Brian Federle
262bbbe800
Add block to show/hide tier select
...
-- Hidden by default, needs real conditional code
2012-07-10 15:41:23 -07:00
Brian Federle
9f093817f3
Implement static NAT tier select UI
...
Adds a new drop-down to the enable static NAT dialog to allow selecting a tier to be associated with the VM. This is in the header of the list view.
It is defined as follows:
enableStaticNAT: {
...
action: {
noAdd: true,
custom: cloudStack.uiCustom.enableStaticNAT({
// VPC
tierSelect: function(args) {
args.response.success({
data: [
{ id: '1', description: 'VPC 1' },
{ id: '2', description: 'VPC 2' }
]
});
},
...
2012-07-10 15:41:23 -07:00
Brian Federle
5b8f5d6ae3
multiEdit: Correctly pass context to header fields
2012-07-10 14:57:07 -07:00
Brian Federle
dd52157f09
Add code to show/hide 'tiers' header fields
2012-07-10 14:57:07 -07:00
Brian Federle
5fa4f4cf37
Pass mulit-edit form data to add VM dialogs, as part of context
2012-07-10 14:57:06 -07:00
Brian Federle
04ac28202f
Multi-edit: refactor form serialization
...
To support header-level form items, serialize every form within the
multi-edit div (not just the main table form). For reusability, make
data serialization handled in separate 'getMultiData' function.
2012-07-10 14:57:06 -07:00
Brian Federle
7de02b6d5c
Update dummy tier data
2012-07-10 14:57:05 -07:00
Brian Federle
081f1e335d
Add header fields
2012-07-10 14:57:05 -07:00
Brian Federle
b000b8047e
CS-15475: Fix missing 'add guest network' action from network list
...
Original patch by: Pranav Saxena <pranav.saxena@citrix.com>
Reviewed by: Brian Federle <brian.federle@citrix.com>
2012-07-10 11:24:07 -07:00
Brian Federle
10e70bcb9c
CS-15392: Add error handling to edit user action
...
Original patch by: Olga Smola <olya.smola@gmail.com>
Reviewed by: Brian Federle <brian.federle@citrix.com>
2012-07-09 14:54:15 -07:00
Brian Federle
5fafb0e5e5
CS-15313: Error handling for account section
...
This fixes an issue where an error is not displayed when entering an
invalid account name.
Original patch by: Pranav Saxena <pranav.saxena@citrix.com>
reviewed-by: Brian Federle <brian.federle@citrix.com>
2012-07-02 11:01:38 -07:00
Brian Federle
b70bc92f46
CS-14907: Only allow download volume for uploaded volumes
...
This fixes an issue where an uploaded volume that hasn't been moved to
primary storage yet is downloaded, causing an error. This adjusts the
actionFilter to fix this.
Original patch by: Pranav Saxena <pranav.saxena@citrix.com>
reviewed-by: Brian Federle <brian.federle@citrix.com>
2012-07-02 10:41:35 -07:00
Brian Federle
49c3c8b2e3
VPC UI: Add link to site-to-site VPN
...
Add link in tooltip for site-to-site VPN, which opens a new panel
showing the list view. This draws from the existing 'siteToSiteVpn'
network subsection, so no modification should be required to the
existing list view.
2012-06-29 13:36:07 -07:00
Brian Federle
683b7d7822
Add configure VPC tooltip and links
2012-06-29 13:13:59 -07:00
Brian Federle
f026387103
Add configure icon to VPC
2012-06-29 13:13:59 -07:00
Brian Federle
4c6738266d
Fix add tier UI
...
Properly pass context for add tier dialog, which broke due to recent
changes that requires context to be present, for the action filter.
2012-06-28 15:34:22 -07:00
Brian Federle
b1a5ec13cd
VPC tier UI: Update state after performing actions
...
After performing an action that changes state, namely starting and
stopping a tier, run through the action pre-filter again, to make sure
that the allowable actions are properly refreshed.
Conflicts:
ui/scripts/ui-custom/vpc.js
2012-06-28 15:23:37 -07:00
Brian Federle
28e49e8880
VPC UI: Refactor tier action filter handling
...
For reusability, move action filter handling for VPC tier actions to a
separate function. This allows for easier refreshing of actions after a
tier's state has changed.
2012-06-28 15:22:41 -07:00
Brian Federle
9bbbc4e356
Pass _custom correctly to VPC tier add VM action
2012-06-28 14:21:08 -07:00
Brian Federle
6d78cc4000
Add Apache license to new JS files
2012-06-28 13:40:19 -07:00
Brian Federle
2fe2a0e2fb
Fix missing actionFilter causing instance wizard to never complete
2012-06-28 12:30:11 -07:00
Brian Federle
808a3d75d9
Instance wizard: Don't try to add a new row if list view isn't present
2012-06-28 11:14:02 -07:00
Brian Federle
c347c6bd09
Add base VPC UI
...
** Note: this is a work-in-progress, and only contains dummy content
Implement UI for managing VPC tiers, via a custom chart-like UI list
tiers and allowing the management of VMs associated with the VPCs.
2012-06-28 10:51:56 -07:00
Brian Federle
e6a6f84361
Pass context to instance wizard
2012-06-28 10:51:56 -07:00
bfederle
6015df9137
CS-13535: Error handling for add domain operation
...
Original patch by: olga.smola
reviewed-by: jessica, r5583
2012-06-27 16:20:30 -07:00
Jessica Wang
af1d5d00f7
cloudstack 3.0 UI - fix space problem from a patch
2012-06-27 14:11:25 -07:00
olgasmola
a30fe62b11
CS-14047: Return the user to the log in page when login time out.
2012-06-27 13:43:05 -07:00
Jessica Wang
d03fb2a7e2
cloudstack 3.0 UI - (1) to distinguish between getUpdatedItem() and getUpdatedData(), rename getUpdatedData() to getUpdatedItemWhenAsyncJobFails() since it's being called only when async job fails. (2) fix the space problem (tab size is not 2) from patch.
2012-06-27 10:57:29 -07:00
olgasmola
367e32adbc
CS-15329: Instances with Error states appear in Instances list after creating.
2012-06-26 16:28:59 -07:00
bfederle
4e9a97177f
CS-15290: Fix 'Path' field validation
...
Original patch by: olga.smola
reviewed-by: brian
2012-06-26 13:43:30 -07:00
bfederle
cbe1f3e4c4
CS-15287
...
Support validation on edit detail view
Original patch by: olga.smola
reviewed-by: brian
2012-06-26 13:30:36 -07:00
bfederle
80b8515347
CS-15315: Fix overlay positioning
...
Original patch by: olga.smola
reviewed-by: brian
2012-06-26 10:24:54 -07:00
David Nalley
9687520712
applying Chip Childer's patches for license headers in the ui directory
2012-06-26 10:46:53 -04:00
Jessica Wang
3ee3e4122a
cloudstack 3.0 UI - add zone wizard - (1) When sdn.ovs.controller is true and when the physical network is in Advanced zone, show isolation method dropdown with two options (VLAN, GRE). VLAN is the default option in the dropdown.
...
(2) When sdn.ovs.controller is false: hide isolation method dropdown. isolationmethods parameter won’t be passed to createPhysicalNetwork API.
(3) When the physical network is in Basic zone (regardless of sdn.ovs.controller) : hide isolation method dropdown. isolationmethods parameter won’t be passed to createPhysicalNetwork API.
2012-06-22 16:07:12 -07:00
bfederle
e442e3a7cf
CS-12478: Add cluster name to primary storage list view
...
Original patch by: olga.smola
reviewed-by: brian
2012-06-22 10:50:04 -07:00
Jessica Wang
791986268a
(1) CS-15311: cloudstack 3.0 UI - Add Zone Wizard - add physical network step - no isolation method dropdown if network type is Basic.
...
(2) CS-15312 - cloudstack 3.0 UI - Add Zone Wizard - add physical network - remove "L3" option from isolation method.
2012-06-21 13:48:11 -07:00
Jessica Wang
aac1ac555d
CS-14854: cloudstack 3.0 UI - (1) extend detailView widget to take in dynamic isEditable value. (2) template page - edit template action - for regular user and domain admin: make Extractable field and Featured field non-editable. Do NOT send “isfeatured”, “isextractable” to updateTemplatePermission API when they are non-editable.
2012-06-21 13:43:04 -07:00
Jessica Wang
79410f90bc
cloudstack 3.0 UI - account page - fix a bug that happens when account name includes ampersand or other special characters. Encode account name before it's being passed to API calls.
2012-06-21 13:02:52 -07:00
Jessica Wang
a00c21686f
(1) CS-15057: Remove jquery.timer.js from source code. Replace it with native JavaScript functions.
...
(2) CS-14604: cloudstack 3.0 UI - Add Zone Wizard - skip Guest Traffic step if OVS tunnel manager is enabled.
(3) CS-15311: cloudstack 3.0 UI - Add Zone Wizard - add physical network step - no isolation method dropdown if network type is Basic.
(4) CS-14769: Don't pass subdomainaccess param when scope=project.
(5) CS-15157: cloudstack 3.0 UI - infrastructure page - physical network - network service providers - reset nspMap before populating listNetworkServiceProviders response to nspMap.
2012-06-21 12:13:41 -07:00
olgasmola
e48ebf07a8
Make templates or Isos calls when setup new instance on templates tab.
2012-06-20 18:13:18 -07:00
bfederle
01f172cd37
CS-14110: Show timestamp for general alerts
...
Original patch by: olga.smola
reviewed-by: brian
2012-06-20 14:51:36 -07:00
bfederle
9e9b2cbdcc
cs-15286: incorrect result when edit pod
...
Original patch by: olga.smola
reviewed-by: brian
2012-06-20 14:21:05 -07:00
Brian Federle
e5db0ebc0f
CS-15148 : Delete Nexus dvSwitch UI option is not Functional so removing this functionality
...
reviewed-by: brian
2012-06-19 11:11:11 -07:00
Brian Federle
920eadffd5
CS-15126: Removing the zone field for now
...
Conflicts:
ui/scripts/system.js
2012-06-19 11:11:11 -07:00
Brian Federle
073829638f
CS-14769
...
-Don't pass subdomainaccess param when scope=project
-Fix guest network detail view by passing projectid=-1, due to project
details not returning response for project-level guest networks
2012-06-19 11:11:11 -07:00
Brian Federle
7c1698fb15
CS-15126
...
-Hide 'type' field, as dvSwitch doesn't return a type
-Get zone name from the cluster's data
reviewed-by: jessica
2012-06-19 11:11:11 -07:00
Brian Federle
237fd426e1
CS-14230
...
Add password confirm to add account/user forms
Original patch by: oyla.smola@gmail.com
Reviewed-by: brian
2012-06-14 11:33:28 -07:00
Pranav Saxena
52c8feb670
CS-15202: Rename all references in UI of Nexus VSM/dvswitch to Nexus 1000v
2012-06-13 11:24:09 -07:00
Brian Federle
1371764abd
Update breadcrumb hover effect
...
-Use 1s interval (instead of 2s) until showing panel
-Use .fadeOut on panel focus, for smoother transition
2012-06-11 15:13:14 -07:00
Brian Federle
93e87a5b31
CS-14877: Focus browser panel on breadcrumb hover
...
When mouse is over a breadcrumb for a period of > 2s, show its
respective panel until mouseout. This allows a user to see the
contents of the panel without having to select it.
reviewed-by: brian
Original commit:
commit 88be929e04826cd1159a2db7dbca220f7eadf5fd
Author: Pranav Saxena <pranav.saxena@citrix.com>
Date: Fri Jun 8 14:17:42 2012 +0530
CS-14877: Expanded breadcrumb navigation on hover UI Requirement
2012-06-11 12:52:22 -07:00
bfederle
815f55d916
CS-14010
...
Add 'about' dialog to the CloudStack top header, showing current verison
information.
Patch submitted by: oyla.smola@gmail.com
Reviewed-by: brian
Conflicts:
ui/scripts/ui/core.js
2012-06-11 11:40:55 -07:00
Devdeep Singh
1593900402
CS-9919: Changes to integrate UI changes for nexus feature.
...
Reviewed by: Sateesh, Pranav.
Conflicts:
ui/scripts/system.js
2012-05-25 18:33:53 -07:00
Brian Federle
c71790b5c7
CS-15096: Disable network actions for non-admins
...
reviewed-by: jessica
2012-05-25 12:55:47 -07:00
Brian Federle
70687e4b44
CS-14844: Fix edit action
...
Fix edit action by referring to the new td.value <span>, instead of
td.value
2012-05-25 12:24:19 -07:00