Updated Branches:
  refs/heads/master 33782b8c7 -> 625d3e5d9

Spell BlackBerry with two capital B's


Project: 
http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/commit/625d3e5d
Tree: 
http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/tree/625d3e5d
Diff: 
http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/diff/625d3e5d

Branch: refs/heads/master
Commit: 625d3e5d9c127d75337609fdda46cb2b4546f0c2
Parents: 33782b8
Author: Josh Soref <jso...@rim.com>
Authored: Wed Aug 8 16:48:11 2012 -0400
Committer: Tim Kim <tim....@nitobi.com>
Committed: Mon Aug 13 15:19:22 2012 -0700

----------------------------------------------------------------------
 README.md                                          |    2 +-
 bin/templates/project/project.properties           |    4 ++--
 framework/ext/src/org/apache/cordova/util/Log.java |    2 +-
 .../src/org/apache/cordova/util/LogFunction.java   |    2 +-
 .../ext/src/org/apache/cordova/util/Logger.java    |    6 +++---
 5 files changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/625d3e5d/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 0a4869b..f28d375 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Introduction
 
 BlackBerry WebWorks is a framework for developing web-based applications for 
BlackBerry SmartPhones (BlackBerry OS 5.0 and higher) and the TabletOS.  
Creating a web application is one of the easiest ways to have an application 
that runs on both platforms.
 
-The WebWorks framework allows developers to create applications using web 
content and resources (HTML/CSS/JavaScript) that are able to access device 
features through the [Blackberry WebWorks 
API](http://www.blackberry.com/developers/docs/widgetapi/).  In addition, the 
framework allows developers to create their own WebWorks JavaScript Extensions 
to expose additional device capabilities through JavaScript APIs.  These 
extensions are written using either the BlackBerry Java API for SmartPhones, or 
Adobe AIR for the Tablet OS.
+The WebWorks framework allows developers to create applications using web 
content and resources (HTML/CSS/JavaScript) that are able to access device 
features through the [BlackBerry WebWorks 
API](http://www.blackberry.com/developers/docs/widgetapi/).  In addition, the 
framework allows developers to create their own WebWorks JavaScript Extensions 
to expose additional device capabilities through JavaScript APIs.  These 
extensions are written using either the BlackBerry Java API for SmartPhones, or 
Adobe AIR for the Tablet OS.
 
 The cordova-blackberry-webworks platform allows web developers to develop 
applications targeting BlackBerry 5.0 and higher devices using the common 
[Cordova API](http://docs.phonegap.com).  When possible, Cordova makes use of 
the WebWorks JavaScript API; however, most Cordova features are implemented in 
the native Java or AIR environment as a WebWorks JavaScript Extension.
 

http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/625d3e5d/bin/templates/project/project.properties
----------------------------------------------------------------------
diff --git a/bin/templates/project/project.properties 
b/bin/templates/project/project.properties
index ee05983..72c3841 100644
--- a/bin/templates/project/project.properties
+++ b/bin/templates/project/project.properties
@@ -28,7 +28,7 @@ playbook.bbwp.dir=C:\\Program Files\\Research In 
Motion\\BlackBerry WebWorks SDK
 # (Optional) Simulator Directory 
 # 
 #   If sim.dir is not specified, the build script will use the simulator 
directory 
-#   within the Blackberry WebWorks Packager.
+#   within the BlackBerry WebWorks Packager.
 #
 blackberry.sim.dir=C:\\Program Files\\Research In Motion\BlackBerry WebWorks 
Packager\\simpack\\6.0.0.227
 
@@ -42,7 +42,7 @@ blackberry.sim.dir=C:\\Program Files\\Research In 
Motion\BlackBerry WebWorks Pac
 # (Optional) MDS Directory 
 # 
 #   If mds.dir is not specified, the build script will attempt to use the MDS 
that 
-#   is installed with the Blackberry WebWorks Packager.
+#   is installed with the BlackBerry WebWorks Packager.
 #
 blackberry.mds.dir=C:\\Program Files\\Research In Motion\\BlackBerry WebWorks 
Packager\\mds
 

http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/625d3e5d/framework/ext/src/org/apache/cordova/util/Log.java
----------------------------------------------------------------------
diff --git a/framework/ext/src/org/apache/cordova/util/Log.java 
b/framework/ext/src/org/apache/cordova/util/Log.java
index ce48323..54396e7 100644
--- a/framework/ext/src/org/apache/cordova/util/Log.java
+++ b/framework/ext/src/org/apache/cordova/util/Log.java
@@ -29,7 +29,7 @@ import net.rim.device.api.script.ScriptableFunction;
  * Log provides a function, <code>log(msg)</code>, that logs messages to the
  * BlackBerry Event Log as well as to System.out.
  *
- * To use of the Blackberry Event Log from JavaScript, you must first
+ * To use of the BlackBerry Event Log from JavaScript, you must first
  * invoke the <code>enable()</code> method:
  *
  * <code>cordova.Logger.enable();</code>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/625d3e5d/framework/ext/src/org/apache/cordova/util/LogFunction.java
----------------------------------------------------------------------
diff --git a/framework/ext/src/org/apache/cordova/util/LogFunction.java 
b/framework/ext/src/org/apache/cordova/util/LogFunction.java
index 63d6d9c..918371d 100644
--- a/framework/ext/src/org/apache/cordova/util/LogFunction.java
+++ b/framework/ext/src/org/apache/cordova/util/LogFunction.java
@@ -22,7 +22,7 @@ import net.rim.device.api.script.ScriptableFunction;
 
 /**
  * LogFunction represents a function that can be invoked from the script
- * environment of the widget framework.  Messages are logged to the Blackberry
+ * environment of the widget framework.  Messages are logged to the BlackBerry
  * Event Log.  From JavaScript, invoke
  *
  * <code>cordova.Logger.log(msg);</code>

http://git-wip-us.apache.org/repos/asf/incubator-cordova-blackberry-webworks/blob/625d3e5d/framework/ext/src/org/apache/cordova/util/Logger.java
----------------------------------------------------------------------
diff --git a/framework/ext/src/org/apache/cordova/util/Logger.java 
b/framework/ext/src/org/apache/cordova/util/Logger.java
index 8b7f29b..c5c21ad 100644
--- a/framework/ext/src/org/apache/cordova/util/Logger.java
+++ b/framework/ext/src/org/apache/cordova/util/Logger.java
@@ -26,10 +26,10 @@ import net.rim.device.api.i18n.SimpleDateFormat;
 import net.rim.device.api.system.EventLogger;
 
 /**
- * Logger provides a mechanism to log the the Blackberry Event Log.  It uses
- * the Blackberry EventLogger class.
+ * Logger provides a mechanism to log the the BlackBerry Event Log.  It uses
+ * the BlackBerry EventLogger class.
  *
- * The Event Log can be viewed on Blackberry simulators using Tools > Show 
Event
+ * The Event Log can be viewed on BlackBerry simulators using Tools > Show 
Event
  * Log, or on physical devices by pressing the <code>Alt</code> key, followed 
by
  * the <code>LGLG</code> key combination.
  *

Reply via email to