You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by bf...@apache.org on 2013/01/29 23:35:44 UTC

[2/3] git commit: UI plugins: Add more metadata

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/ui-plugins
Commit: a065aabda77c167c1533569ee7a7425a8f4e4f47
Parents: b18bca6
Author: Brian Federle <br...@citrix.com>
Authored: Tue Jan 29 14:34:42 2013 -0800
Committer: Brian Federle <br...@citrix.com>
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: 'plugin.developer@example.com'
   };
 }(cloudStack));
\ No newline at end of file