UI plugins: Add more metadata Add more metadata to plugin config.js:
- externalLink: Link to plugin/author's web site - authorName: Author's full name - authorEmail: Author's contact e-mail Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/a065aabd Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/a065aabd Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/a065aabd Branch: refs/heads/master Commit: a065aabda77c167c1533569ee7a7425a8f4e4f47 Parents: b18bca6 Author: Brian Federle <[email protected]> Authored: Tue Jan 29 14:34:42 2013 -0800 Committer: Brian Federle <[email protected]> Committed: Tue Jan 29 14:34:42 2013 -0800 ---------------------------------------------------------------------- ui/plugins/testPlugin/config.js | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/a065aabd/ui/plugins/testPlugin/config.js ---------------------------------------------------------------------- diff --git a/ui/plugins/testPlugin/config.js b/ui/plugins/testPlugin/config.js index 7b653db..e6f648c 100644 --- a/ui/plugins/testPlugin/config.js +++ b/ui/plugins/testPlugin/config.js @@ -1,6 +1,9 @@ (function (cloudStack) { cloudStack.plugins.testPlugin.config = { title: 'Test Plugin', - desc: 'Sample plugin' + desc: 'Sample plugin', + externalLink: 'http://www.cloudstack.org/', + authorName: 'Test Plugin Developer', + authorEmail: '[email protected]' }; }(cloudStack)); \ No newline at end of file
