You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by sh...@apache.org on 2012/12/05 04:07:50 UTC

ios commit: Removed "incubator" prefix from URLs (except for main website which hasn't changed over yet)

Updated Branches:
  refs/heads/master 9229bac7b -> 8d1e52fd6


Removed "incubator" prefix from URLs (except for main website which hasn't changed over yet)


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

Branch: refs/heads/master
Commit: 8d1e52fd62588095978b6129c72291aea68e45bc
Parents: 9229bac
Author: Shazron Abdullah <sh...@apache.org>
Authored: Tue Dec 4 19:07:30 2012 -0800
Committer: Shazron Abdullah <sh...@apache.org>
Committed: Tue Dec 4 19:07:42 2012 -0800

----------------------------------------------------------------------
 README.md                              |    2 +-
 RELEASENOTES.md                        |    6 +++---
 bin/test                               |    2 +-
 guides/Cordova Plugin Upgrade Guide.md |    4 ++--
 4 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/8d1e52fd/README.md
----------------------------------------------------------------------
diff --git a/README.md b/README.md
index 77a11ad..d853569 100644
--- a/README.md
+++ b/README.md
@@ -90,7 +90,7 @@ It will ask you to confirm whether you want to delete the installed CordovaLib d
 Unit Tests
 --------------------------------------------------------------------
 1. **Create** a new Cordova-based Application project
-2. **Download** the code from the **[mobile-spec](https://github.com/apache/incubator-cordova-mobile-spec)** and put all of it in the root of your **www** folder
+2. **Download** the code from the **[mobile-spec](https://github.com/apache/cordova-mobile-spec)** and put all of it in the root of your **www** folder
 3. **Modify cordova.js** to point to your correct cordova-X.X.X.js version
 4. **Run** the project
 

http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/8d1e52fd/RELEASENOTES.md
----------------------------------------------------------------------
diff --git a/RELEASENOTES.md b/RELEASENOTES.md
index c860787..112c95e 100644
--- a/RELEASENOTES.md
+++ b/RELEASENOTES.md
@@ -68,9 +68,9 @@
 * [CB-1694] View controller not properly unregistered in CDVURLProtocol
 * [CB-1698] Remove WebScriptDebugDelegate.h
 * [CB-1746] IOS events onAppWillResignActive and onAppDidEnterBackground do not execute JS until after app is launched again.
-* [GH-PR-54]Update CDVDebug.h with better logging tools (https://github.com/apache/incubator-cordova-ios/pull/54 )
-* [GH-PR-55] Removing useless NSLog (https://github.com/apache/incubator-cordova-ios/pull/55)
-* [GH-PR-59] Fixed two bugs in CDVFileTransfer concerning file uploads (https://github.com/apache/incubator-cordova-ios/pull/59)
+* [GH-PR-54]Update CDVDebug.h with better logging tools (https://github.com/apache/cordova-ios/pull/54 )
+* [GH-PR-55] Removing useless NSLog (https://github.com/apache/cordova-ios/pull/55)
+* [GH-PR-59] Fixed two bugs in CDVFileTransfer concerning file uploads (https://github.com/apache/cordova-ios/pull/59)
 * Added CDV\_IsIPhone5 macro
 * Add uncrustify config and script for auto-formatting code.
 * Add git hook that runs uncrustify before commits.

http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/8d1e52fd/bin/test
----------------------------------------------------------------------
diff --git a/bin/test b/bin/test
index 8aac6c4..3f7df13 100755
--- a/bin/test
+++ b/bin/test
@@ -34,7 +34,7 @@ TESTDIR=$BINDIR/mobile-spec-test
 echo "TESTDIR" $SCRIPT
 
 # get the latest mobile-spec
-git clone git://github.com/apache/incubator-cordova-mobile-spec.git $BINDIR/mobile-spec
+git clone git://github.com/apache/cordova-mobile-spec.git $BINDIR/mobile-spec
 
 # clobber test if it exists
 if [ -e $TESTDIR ]

http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/8d1e52fd/guides/Cordova Plugin Upgrade Guide.md
----------------------------------------------------------------------
diff --git a/guides/Cordova Plugin Upgrade Guide.md b/guides/Cordova Plugin Upgrade Guide.md
index ddf44a8..3b9e944 100644
--- a/guides/Cordova Plugin Upgrade Guide.md	
+++ b/guides/Cordova Plugin Upgrade Guide.md	
@@ -46,7 +46,7 @@ This document is for developers who need to upgrade their Cordova  plugins to a
 
         - (void) myMethod:(NSMutableArray*)arguments withDict:(NSMutableDictionary*)options;
 
-    Basically, the options dictionary has been removed for the new signature, and the callbackId is not the 0th index item for the arguments array, but it is now in a separate property. View [CDVInvokedUrlCommand.h](https://github.com/apache/incubator-cordova-ios/blob/master/CordovaLib/Classes/CDVInvokedUrlCommand.h)
+    Basically, the options dictionary has been removed for the new signature, and the callbackId is not the 0th index item for the arguments array, but it is now in a separate property. View [CDVInvokedUrlCommand.h](https://github.com/apache/cordova-ios/blob/master/CordovaLib/Classes/CDVInvokedUrlCommand.h)
     
 ## Upgrading older Cordova plugins to 2.0.0 ##
 
@@ -135,7 +135,7 @@ This document is for developers who need to upgrade their Cordova  plugins to a
 
 1. The UIViewController returned from the **viewController property** will be a CDVViewController subclass.
 2. The **appDelegate method** basically returns an (id) now, and is the same as calling **[[UIApplication sharedApplication] delegate]**. In the past it returned a PhoneGapDelegate class.
-3. There is a new **commandDelegate property** now, which gives access to the [CDVCommandDelegate protocol](https://github.com/apache/incubator-cordova-ios/blob/master/CordovaLib/Classes/CDVCommandDelegate.h) used by the app
+3. There is a new **commandDelegate property** now, which gives access to the [CDVCommandDelegate protocol](https://github.com/apache/cordova-ios/blob/master/CordovaLib/Classes/CDVCommandDelegate.h) used by the app
 4. There is a new header file **CDVAvailability.h** that defines Cordova versions during compile time - to check for the current version during run-time, call **[CDVViewController cordovaVersion]**