You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by za...@apache.org on 2015/03/02 19:12:55 UTC

[1/3] spec commit: add firefoxos platform

Repository: cordova-mobile-spec
Updated Branches:
  refs/heads/master 0e6bc66b0 -> 4a125d63c


add firefoxos platform


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

Branch: refs/heads/master
Commit: cb5a4e132600047691a6d42aaab980b07f4effdf
Parents: 420e330
Author: Willy Aguirre <ma...@gmail.com>
Authored: Sat Feb 21 13:23:17 2015 -0500
Committer: Willy Aguirre <ma...@gmail.com>
Committed: Sat Feb 21 13:23:17 2015 -0500

----------------------------------------------------------------------
 createmobilespec/createmobilespec.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/cb5a4e13/createmobilespec/createmobilespec.js
----------------------------------------------------------------------
diff --git a/createmobilespec/createmobilespec.js b/createmobilespec/createmobilespec.js
index 6157bd9..7a836e0 100755
--- a/createmobilespec/createmobilespec.js
+++ b/createmobilespec/createmobilespec.js
@@ -89,10 +89,12 @@ var top_dir =             process.cwd() + path.sep,
                                               "www": ["www"] },
                             "wp8":          { "bin": ["cordova-wp8"],
                                               "www": ["www"] } },
+                            "firefoxos":      { "bin": ["cordova-firefoxos"],
+                                              "www": ["www"] },
     argv = optimist.usage("\nUsage: $0 PLATFORM... [--help] [--plugman] [--link] [--global] [--globalplugins] [--skipjs] [--skiplink] [directoryName]\n" +
                           "A project will be created with the mobile-spec app and all the core plugins.\n" +
                           "At least one platform must be specified. See the included README.md.\n" +
-                          "\tPLATFORM: [--<amazon|android|blackberry10|ios|windows|windows8|wp8>]\n" +
+                          "\tPLATFORM: [--<amazon|android|blackberry10|ios|windows|windows8|wp8|firefoxos>]\n" +
                           "")
                    .boolean("help").describe("help", "Shows usage.")
                    .boolean("debug").describe("debug", "Debug logging.")
@@ -103,6 +105,7 @@ var top_dir =             process.cwd() + path.sep,
                    .boolean("windows").describe("windows", "Add Windows (universal) platform.")
                    .boolean("windows8").describe("windows8", "Add Windows 8 (desktop) platform.")
                    .boolean("wp8").describe("wp8", "Add Windows Phone 8 platform.")
+                   .boolean("firefoxos").describe("firefoxos", "Add FirefoxOS platform.")
                    .boolean("plugman").describe("plugman", "Use {platform}/bin/create and plugman directly instead of the CLI.")
                    .boolean("global").describe("global", "Use the globally-installed `cordova` and the downloaded platforms/plugins from the registry instead of the local git repo.\n" +
                                                "\t\t\tWill use the local git repo of mobile-spec.\n" +
@@ -188,6 +191,7 @@ if (argv.blackberry10) { platforms.push("blackberry10"); }
 if (argv.wp8) { platforms.push("wp8"); }
 if (argv.windows8) { platforms.push("windows8"); }
 if (argv.windows) { platforms.push("windows"); }
+if (argv.firefoxos) { platforms.push("firefoxos"); }
 if (argv.plugman && argv.global) {
     console.log("The --global option can not be used with the --plugman option.");
     optimist.showHelp();


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[2/3] spec commit: correct an error in add platform firefoxos

Posted by za...@apache.org.
correct an error in add platform firefoxos


Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/37fe23c0
Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/37fe23c0
Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/37fe23c0

Branch: refs/heads/master
Commit: 37fe23c06f63232ea72fe438579961b9becbd952
Parents: cb5a4e1
Author: Willy Aguirre <ma...@gmail.com>
Authored: Sat Feb 21 14:39:23 2015 -0500
Committer: Willy Aguirre <ma...@gmail.com>
Committed: Sat Feb 21 14:39:23 2015 -0500

----------------------------------------------------------------------
 createmobilespec/createmobilespec.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/37fe23c0/createmobilespec/createmobilespec.js
----------------------------------------------------------------------
diff --git a/createmobilespec/createmobilespec.js b/createmobilespec/createmobilespec.js
index 7a836e0..7a79c54 100755
--- a/createmobilespec/createmobilespec.js
+++ b/createmobilespec/createmobilespec.js
@@ -88,9 +88,9 @@ var top_dir =             process.cwd() + path.sep,
                             "windows":      { "bin": ["cordova-windows"],
                                               "www": ["www"] },
                             "wp8":          { "bin": ["cordova-wp8"],
-                                              "www": ["www"] } },
-                            "firefoxos":      { "bin": ["cordova-firefoxos"],
                                               "www": ["www"] },
+                            "firefoxos":    { "bin": ["cordova-firefoxos"],
+                                              "www": ["www"] } },
     argv = optimist.usage("\nUsage: $0 PLATFORM... [--help] [--plugman] [--link] [--global] [--globalplugins] [--skipjs] [--skiplink] [directoryName]\n" +
                           "A project will be created with the mobile-spec app and all the core plugins.\n" +
                           "At least one platform must be specified. See the included README.md.\n" +


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org


[3/3] spec commit: Merge branch 'master' of github.com:marti1125/cordova-mobile-spec

Posted by za...@apache.org.
Merge branch 'master' of github.com:marti1125/cordova-mobile-spec


Project: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/commit/4a125d63
Tree: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/tree/4a125d63
Diff: http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/diff/4a125d63

Branch: refs/heads/master
Commit: 4a125d63cd8ef5665c90bcb25e027664a62242ff
Parents: 0e6bc66 37fe23c
Author: Piotr Zalewa <pi...@zalewa.info>
Authored: Mon Mar 2 19:12:32 2015 +0100
Committer: Piotr Zalewa <pi...@zalewa.info>
Committed: Mon Mar 2 19:12:32 2015 +0100

----------------------------------------------------------------------
 createmobilespec/createmobilespec.js | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-mobile-spec/blob/4a125d63/createmobilespec/createmobilespec.js
----------------------------------------------------------------------


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org