You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by fi...@apache.org on 2013/01/03 02:07:42 UTC

git commit: removed subtask creation for mac platform, for updating js + sample app. unnecessary for that marginal platform.

Updated Branches:
  refs/heads/jira efc1181e9 -> ed8868558


removed subtask creation for mac platform, for updating js + sample app. unnecessary for that marginal platform.


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

Branch: refs/heads/jira
Commit: ed8868558fae93a817addead0a2cb0b0b0be1b8b
Parents: efc1181
Author: Fil Maj <ma...@gmail.com>
Authored: Wed Jan 2 17:09:32 2013 -0800
Committer: Fil Maj <ma...@gmail.com>
Committed: Wed Jan 2 17:09:32 2013 -0800

----------------------------------------------------------------------
 jira.js |    7 +++----
 1 files changed, 3 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-labs/blob/ed886855/jira.js
----------------------------------------------------------------------
diff --git a/jira.js b/jira.js
index 3960a3d..aefbd37 100644
--- a/jira.js
+++ b/jira.js
@@ -127,8 +127,9 @@ request.get(API_URL + 'project/' + JIRA_PROJECT_KEY + '/components', function(er
                     // - tag docs
                     // - 11 platforms * 3 tasks (update js, update sample app, tag) = 33
                     // - generate source release
-                    //   = 38
-                    var end = n(38, function() {
+                    // - cordova-mac does not need update-js or update-sample-app tasks
+                    //   = 36
+                    var end = n(36, function() {
                         console.log('All sub-tasks created. JIRA spam complete.');
                     });
                     var subtask_error_check = function(err, res, body) {
@@ -146,7 +147,6 @@ request.get(API_URL + 'project/' + JIRA_PROJECT_KEY + '/components', function(er
                     create(subtask(parent_key, "Update JavaScript for Bada", "Update the cordova.js after CordovaJS has been tagged.", component_map['Bada'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update JavaScript for BlackBerry", "Update the cordova.js after CordovaJS has been tagged.", component_map['BlackBerry'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update JavaScript for iOS", "Update the cordova.js after CordovaJS has been tagged.", component_map['iOS'], version_id), subtask_error_check);
-                    create(subtask(parent_key, "Update JavaScript for Mac", "Update the cordova.js after CordovaJS has been tagged.", component_map['Mac'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update JavaScript for Qt", "Update the cordova.js after CordovaJS has been tagged.", component_map['Qt'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update JavaScript for Tizen", "Update the cordova.js after CordovaJS has been tagged.", component_map['Tizen'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update JavaScript for webOS", "Update the cordova.js after CordovaJS has been tagged.", component_map['webOS'], version_id), subtask_error_check);
@@ -157,7 +157,6 @@ request.get(API_URL + 'project/' + JIRA_PROJECT_KEY + '/components', function(er
                     create(subtask(parent_key, "Update www/ Application for Bada", "Update the www/ sample application after App-Hello-World has been tagged. IMPORTANT: Remove irrelevant platfroms from www/res/icon and www/res/screen.", component_map['Bada'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update www/ Application for BlackBerry", "Update the www/ sample application after App-Hello-World has been tagged. IMPORTANT: Remove irrelevant platfroms from www/res/icon and www/res/screen.", component_map['BlackBerry'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update www/ Application for iOS", "Update the www/ sample application after App-Hello-World has been tagged. IMPORTANT: Remove irrelevant platfroms from www/res/icon and www/res/screen.", component_map['iOS'], version_id), subtask_error_check);
-                    create(subtask(parent_key, "Update www/ Application for Mac", "Update the www/ sample application after App-Hello-World has been tagged. IMPORTANT: Remove irrelevant platfroms from www/res/icon and www/res/screen.", component_map['Mac'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update www/ Application for Qt", "Update the www/ sample application after App-Hello-World has been tagged. IMPORTANT: Remove irrelevant platfroms from www/res/icon and www/res/screen.", component_map['Qt'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update www/ Application for Tizen", "Update the www/ sample application after App-Hello-World has been tagged. IMPORTANT: Remove irrelevant platfroms from www/res/icon and www/res/screen.", component_map['Tizen'], version_id), subtask_error_check);
                     create(subtask(parent_key, "Update www/ Application for webOS", "Update the www/ sample application after App-Hello-World has been tagged. IMPORTANT: Remove irrelevant platfroms from www/res/icon and www/res/screen.", component_map['webOS'], version_id), subtask_error_check);