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/02/01 23:23:25 UTC

webworks commit: Changing instructions in ./bin/create; terminology of "activity" is Android-specific.

Updated Branches:
  refs/heads/master 5c3226f32 -> 93bd701ec


Changing instructions in ./bin/create; terminology of "activity" is Android-specific.


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

Branch: refs/heads/master
Commit: 93bd701ecdcaac585a9a346fa84c8ded648e18fc
Parents: 5c3226f
Author: Fil Maj <ma...@gmail.com>
Authored: Fri Feb 1 14:27:03 2013 -0800
Committer: Fil Maj <ma...@gmail.com>
Committed: Fri Feb 1 14:27:03 2013 -0800

----------------------------------------------------------------------
 bin/create    |    6 +++---
 bin/create.js |    2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/93bd701e/bin/create
----------------------------------------------------------------------
diff --git a/bin/create b/bin/create
index dda216b..d6dc32e 100755
--- a/bin/create
+++ b/bin/create
@@ -19,13 +19,13 @@
 # create a cordova/blackberry project
 # 
 # USAGE
-#   ./create [path package activity]
+#   ./create [path package appname]
 #
 set -e
 
 if [ -n "$1" ] && [ "$1" == "-h" ]
 then
-    echo 'usage: create package activity'
+    echo 'usage: create path package appname'
     echo 'After you have created your application, make sure to customize the project.properties file inside your app directory with your environment specifics!'
     exit 0
 fi
@@ -90,4 +90,4 @@ fi
 # interpolate the activity and package into config.xml
 echo "Updating config.xml ..."
 sed -i '' -e "s/__ACTIVITY__/${ACTIVITY}/g" "$MANIFEST_PATH"
-sed -i '' -e "s/__PACKAGE__/${PACKAGE}/g" "$MANIFEST_PATH"
\ No newline at end of file
+sed -i '' -e "s/__PACKAGE__/${PACKAGE}/g" "$MANIFEST_PATH"

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/93bd701e/bin/create.js
----------------------------------------------------------------------
diff --git a/bin/create.js b/bin/create.js
index ae610a4..5020f53 100644
--- a/bin/create.js
+++ b/bin/create.js
@@ -21,7 +21,7 @@
  * create a cordova/blackberry project
  *
  * USAGE
- *  ./create [path package activity]
+ *  ./create [path package appname]
  */
 
 var fso = WScript.CreateObject('Scripting.FileSystemObject');