You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2014/05/27 04:34:51 UTC

git commit: Create a new repo group: tools (CLI+Plugman+Lib+Coho)

Repository: cordova-coho
Updated Branches:
  refs/heads/master 0dc8f488a -> a5f7b1a2d


Create a new repo group: tools (CLI+Plugman+Lib+Coho)


Project: http://git-wip-us.apache.org/repos/asf/cordova-coho/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-coho/commit/a5f7b1a2
Tree: http://git-wip-us.apache.org/repos/asf/cordova-coho/tree/a5f7b1a2
Diff: http://git-wip-us.apache.org/repos/asf/cordova-coho/diff/a5f7b1a2

Branch: refs/heads/master
Commit: a5f7b1a2dd8fd08f2b27ee5daff374ff2e47302b
Parents: 0dc8f48
Author: Andrew Grieve <ag...@chromium.org>
Authored: Mon May 26 22:34:30 2014 -0400
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Mon May 26 22:34:30 2014 -0400

----------------------------------------------------------------------
 src/repoutil.js | 29 +++++++++++++++--------------
 1 file changed, 15 insertions(+), 14 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-coho/blob/a5f7b1a2/src/repoutil.js
----------------------------------------------------------------------
diff --git a/src/repoutil.js b/src/repoutil.js
index 9bdefc1..13528a3 100644
--- a/src/repoutil.js
+++ b/src/repoutil.js
@@ -287,26 +287,32 @@ var pluginRepos = [
     }*/
 ];
 
-var otherRepos = [
+var toolRepos = [
     {
         title: 'Cordova CLI',
         id: 'cli',
         repoName: 'cordova-cli',
-        jiraComponentName: 'CLI',
-        inactive: true
+        jiraComponentName: 'CLI'
     }, {
         title: 'Cordova Plugman',
         id: 'plugman',
         repoName: 'cordova-plugman',
-        jiraComponentName: 'Plugman',
-        inactive: true
+        jiraComponentName: 'Plugman'
     }, {
         title: 'Cordova Lib',
         id: 'lib',
         repoName: 'cordova-lib',
-        jiraComponentName: 'CordovaLib',
-        inactive: true
+        jiraComponentName: 'CordovaLib'
     }, {
+        title: 'Cordova Coho',
+        id: 'coho',
+        repoName: 'cordova-coho',
+        jiraComponentName: 'Coho'
+    }
+];
+
+var otherRepos = [
+    {
         title: 'Cordova Medic',
         id: 'medic',
         repoName: 'cordova-medic',
@@ -318,12 +324,6 @@ var otherRepos = [
         inactive: true,
         jiraComponentName: 'AppHarness'
     }, {
-        title: 'Cordova Coho',
-        id: 'coho',
-        repoName: 'cordova-coho',
-        jiraComponentName: 'Coho',
-        inactive: true
-    }, {
         title: 'Cordova Labs',
         id: 'labs',
         repoName: 'cordova-labs',
@@ -364,12 +364,13 @@ var otherRepos = [
     }
 ];
 
-var allRepos = platformRepos.concat(nonPlatformRepos).concat(pluginRepos).concat(otherRepos);
+var allRepos = platformRepos.concat(nonPlatformRepos).concat(pluginRepos).concat(toolRepos).concat(otherRepos);
 
 var repoGroups = {
     'all': allRepos,
     'platform': platformRepos,
     'plugins': pluginRepos,
+    'tools': toolRepos,
     'active-platform': platformRepos.filter(function(r) { return !r.inactive }),
     'release-repos': allRepos.filter(function(r) { return !r.inactive })
 };