Vmware dvSwitch UI integration - tooltips
Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/b1fd3716 Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/b1fd3716 Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/b1fd3716 Branch: refs/heads/ui-multiple-nics Commit: b1fd37165564a590a9f593ac6940af39c9e794ac Parents: c25a0d8 Author: Pranav Saxena <[email protected]> Authored: Thu Feb 28 12:16:50 2013 +0530 Committer: Pranav Saxena <[email protected]> Committed: Thu Feb 28 12:16:50 2013 +0530 ---------------------------------------------------------------------- ui/scripts/docs.js | 14 ++++++++++++++ ui/scripts/system.js | 7 +++++-- 2 files changed, 19 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/b1fd3716/ui/scripts/docs.js ---------------------------------------------------------------------- diff --git a/ui/scripts/docs.js b/ui/scripts/docs.js index 5a38613..0ccedc5 100755 --- a/ui/scripts/docs.js +++ b/ui/scripts/docs.js @@ -20,6 +20,20 @@ cloudStack.docs = { desc: 'Any desired login ID. Must be unique in the current domain. The same username can exist in other domains, including sub-domains.', externalLink: '' }, + + helpOverridePublicNetwork:{ + desc:'Choose to override zone wide traffic label for guest traffic for this cluster', + externalLink:'' + + }, + + helpOverrideGuestNetwork:{ + + desc:'Choose to override zone wide traffic label for guest traffic for this cluster', + externalLink:'' + + }, + helpAccountPassword: { desc: 'Any desired password', externalLink: '' http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/b1fd3716/ui/scripts/system.js ---------------------------------------------------------------------- diff --git a/ui/scripts/system.js b/ui/scripts/system.js index d73b9f4..d5c2a4c 100644 --- a/ui/scripts/system.js +++ b/ui/scripts/system.js @@ -7531,7 +7531,8 @@ label:'Override Public-Traffic', isBoolean:true, isHidden:true, - isChecked:false + isChecked:false, + docID:'helpOverridePublicNetwork' }, @@ -7593,7 +7594,9 @@ label:'Override Guest-Traffic', isBoolean:true, isHidden:true, - isChecked:false + isChecked:false, + docID:'helpOverrideGuestNetwork' + },
