Updated Branches: refs/heads/4.2 1305697ea -> e995c0cef
CLOUDSTACK-3818: Cache Storage API commands have been renamed. Here is related UI change. Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/e995c0ce Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/e995c0ce Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/e995c0ce Branch: refs/heads/4.2 Commit: e995c0cefcf4fcc381f54645cd0958dd1334e9f2 Parents: 1305697 Author: Jessica Wang <[email protected]> Authored: Fri Jul 26 14:44:01 2013 -0700 Committer: Jessica Wang <[email protected]> Committed: Fri Jul 26 14:46:41 2013 -0700 ---------------------------------------------------------------------- ui/scripts/system.js | 16 ++++++++-------- ui/scripts/zoneWizard.js | 2 +- 2 files changed, 9 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e995c0ce/ui/scripts/system.js ---------------------------------------------------------------------- diff --git a/ui/scripts/system.js b/ui/scripts/system.js index 03a65d8..14a71df 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -7371,11 +7371,11 @@ }; $.ajax({ - url: createURL('listCacheStores' + searchByArgs), + url: createURL('listSecondaryStagingStore' + searchByArgs), data: data, success: function(json) { args.response.success({ - data: json.listcachestoreresponse.imagestore + data: json.listsecondarystagingstoreresponse.imagestore }); }, error: function(json) { @@ -14869,7 +14869,7 @@ }; $.ajax({ - url: createURL('createCacheStore'), + url: createURL('createSecondaryStagingStore'), data: nfsCacheData, success: function(json) { //do nothing @@ -15157,10 +15157,10 @@ url: nfsURL(args.data.nfsServer, args.data.path) }; $.ajax({ - url: createURL('createCacheStore'), + url: createURL('createSecondaryStagingStore'), data: data, success: function(json) { - var item = json.createcachestoreresponse.secondarystorage; + var item = json.createsecondarystagingstoreresponse.secondarystorage; args.response.success({ data: item }); @@ -15202,7 +15202,7 @@ id: args.context.cacheStorage[0].id }; $.ajax({ - url: createURL('deleteCacheStore'), + url: createURL('deleteSecondaryStagingStore'), data: data, async: true, success: function(json) { @@ -15262,13 +15262,13 @@ dataProvider: function(args) { $.ajax({ - url: createURL('listCacheStores'), + url: createURL('listSecondaryStagingStore'), data: { id: args.context.cacheStorage[0].id }, async: false, success: function(json) { - var item = json.listcachestoreresponse.imagestore[0]; + var item = json.listsecondarystagingstoreresponse.imagestore[0]; args.response.success({ data: item }); http://git-wip-us.apache.org/repos/asf/cloudstack/blob/e995c0ce/ui/scripts/zoneWizard.js ---------------------------------------------------------------------- diff --git a/ui/scripts/zoneWizard.js b/ui/scripts/zoneWizard.js index 67f67d9..10aa486 100755 --- a/ui/scripts/zoneWizard.js +++ b/ui/scripts/zoneWizard.js @@ -4171,7 +4171,7 @@ }; $.ajax({ - url: createURL('createCacheStore'), + url: createURL('createSecondaryStagingStore'), data: nfsCacheData, success: function(json) { //do nothing
