Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 4DFD610AAC for ; Wed, 12 Jun 2013 17:50:43 +0000 (UTC) Received: (qmail 21639 invoked by uid 500); 12 Jun 2013 17:50:41 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 21400 invoked by uid 500); 12 Jun 2013 17:50:40 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 20773 invoked by uid 99); 12 Jun 2013 17:50:37 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 12 Jun 2013 17:50:37 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 21B5C8A3B62; Wed, 12 Jun 2013 17:50:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: mwbrooks@apache.org To: commits@cordova.apache.org Date: Wed, 12 Jun 2013 17:50:48 -0000 Message-Id: <2a017b31f8a54183af8e006a257f00cf@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [13/46] docs commit: various inline formatting various inline formatting Project: http://git-wip-us.apache.org/repos/asf/cordova-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-docs/commit/3986e794 Tree: http://git-wip-us.apache.org/repos/asf/cordova-docs/tree/3986e794 Diff: http://git-wip-us.apache.org/repos/asf/cordova-docs/diff/3986e794 Branch: refs/heads/master Commit: 3986e7945fbd742831d8384799af6a42298731f9 Parents: 85730c3 Author: Mike Sierra Authored: Mon Apr 29 13:41:09 2013 -0400 Committer: Mike Sierra Committed: Mon Apr 29 13:41:09 2013 -0400 ---------------------------------------------------------------------- docs/en/edge/guide/getting-started/android/index.md | 8 ++++---- docs/en/edge/guide/getting-started/ios/index.md | 12 ++++++------ docs/en/edge/guide/upgrading/blackberry/index.md | 4 ++-- 3 files changed, 12 insertions(+), 12 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3986e794/docs/en/edge/guide/getting-started/android/index.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/guide/getting-started/android/index.md b/docs/en/edge/guide/getting-started/android/index.md index 60812d8..d652ab4 100644 --- a/docs/en/edge/guide/getting-started/android/index.md +++ b/docs/en/edge/guide/getting-started/android/index.md @@ -67,11 +67,11 @@ platforms are deprecated as they dip below 5% on Google's 3B. Set up your PATH environment variable on Windows --------------------------------------- -- From the Desktop, right-click My Computer and click Properties. -- Click Advanced System Settings link in the left column. -- In the System Properties window, click the Environment Variables button. +- From the Desktop, right-click __My Computer__ and click __Properties__. +- Click the __Advanced System Settings__ link in the left column. +- In the __System Properties__ window, click the __Environment Variables__ button. - Select the PATH variable from the System variables section. -- Select the Edit button. +- Select the __Edit__ button. - You need to add the path to your Android SDK platform-tools and tools directory. This example uses `C:\Development\android-sdk-windows` as the SDK's install directory. Append the following into the text box: `;C:\Development\android-sdk-windows\platform-tools;C:\Development\android-sdk-windows\tools` http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3986e794/docs/en/edge/guide/getting-started/ios/index.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/guide/getting-started/ios/index.md b/docs/en/edge/guide/getting-started/ios/index.md index 02ac381..1fa7d6b 100644 --- a/docs/en/edge/guide/getting-started/ios/index.md +++ b/docs/en/edge/guide/getting-started/ios/index.md @@ -239,8 +239,8 @@ references the deprecated invokeString API: Some users have encountered compilation errors relating to missing headers. This refers to a problem in the build location and is fixed via Xcode preferences. - 1. Within the Xcode menus select **Xcode>Preferences>Locations**. - 2. In the Derived Data section click the Advanced button and select Unique as the Build Location as shown: + 1. Within the Xcode menus select **Xcode → Preferences → Locations**. + 2. In the __Derived Data__ section click the __Advanced__ button and select __Unique__ as the __Build Location_ as shown: ![](img/guide/getting-started/ios/xcode_build_location.png) This is the default setting for a new Xcode install, but it may be set differently if you upgraded from an older version of Xcode. @@ -251,7 +251,7 @@ references the deprecated invokeString API: **Include Cordova** - All of the code for the sample application is contained within the www directory in the Xcode project structure. The starting page is named index.html. Any page that uses Cordova must include the cordova-*.js file for the associated Cordova version and platform. The format of the JavaScript file name is cordova-x.y.z where x represents the major version number, y the minor version and z any point release. For example, the Cordova 2.2.0 file was named cordova-2.2.0.js. The sample HelloWorld application includes this file from index.html. + All of the code for the sample application is contained within the `www` directory in the Xcode project structure. The starting page is named index.html. Any page that uses Cordova must include the cordova-*.js file for the associated Cordova version and platform. The format of the JavaScript file name is cordova-x.y.z where x represents the major version number, y the minor version and z any point release. For example, the Cordova 2.2.0 file was named cordova-2.2.0.js. The sample HelloWorld application includes this file from index.html. @@ -261,9 +261,9 @@ references the deprecated invokeString API: **Wait for deviceReady Event** - When loading a page, Cordova’s deviceReady event must fire before you can access any of the platform features via the Cordova JavaScript APIs. Within the sample application this is set up within the app object found within the js/index.js file. The app.initialze() call at the bottom of the index.html file (visible in the previous code example) sets in motion the binding of events to receive and respond to the deviceReady event. + When loading a page, Cordova’s `deviceReady` event must fire before you can access any of the platform features via the Cordova JavaScript APIs. Within the sample application this is set up within the app object found within the js/index.js file. The app.initialze() call at the bottom of the `index.html` file (visible in the previous code example) sets in motion the binding of events to receive and respond to the `deviceReady` event. - Another common method of initializing a page is to add an event listener for the deviceReady event within the handler for the body onload event as shown in the code snippet below: + Another common way to initialize a page is to add a `deviceReady` event listener from the body's `onload` event handler as shown below: @@ -290,7 +290,7 @@ references the deprecated invokeString API: ###Code Your Application - Replace the sample code in the www directory of a new project with the HTML, JavaScript and CSS code for your application. The name of the initial file to load when the app is launched should be index.html (advanced users can change this if necessary). As demonstrated in the HelloWorld sample application, subdirectories within the www directory are permitted. Note that the www directory is readonly, you can not write information to this directory during app execution. If you need to store information use the Cordova File or Storage APIs. + Replace the sample code in the `www` directory of a new project with the HTML, JavaScript and CSS code for your application. The name of the initial file to load when the app is launched should be `index.html` (advanced users can change this if necessary). As demonstrated in the HelloWorld sample application, subdirectories within the `www` directory are permitted. Note that the `www` directory is readonly, you can not write information to this directory during app execution. If you need to store information use the Cordova File or Storage APIs. You can use many mobile JavaScript frameworks with Cordova to create the UI and page navigation of your application. Popular ones include: http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/3986e794/docs/en/edge/guide/upgrading/blackberry/index.md ---------------------------------------------------------------------- diff --git a/docs/en/edge/guide/upgrading/blackberry/index.md b/docs/en/edge/guide/upgrading/blackberry/index.md index 1e65812..bc4b31e 100644 --- a/docs/en/edge/guide/upgrading/blackberry/index.md +++ b/docs/en/edge/guide/upgrading/blackberry/index.md @@ -24,7 +24,7 @@ This document is for people who need to upgrade their Cordova versions from an o ## Upgrade to 2.0.0 from 1.9.0 ## -Updating just the www folder: +Updating just the `www` folder: 1. Open your `www/` folder, which contains your app. 2. Remove and update the .jar file in the `ext/` folder. @@ -69,7 +69,7 @@ Updating the sample folder (ie, updating using the ant tools): ## Upgrade to 1.8.0 from 1.7.0 ## -Updating just the www folder: +Updating just the `www` folder: 1. Open your `www/` folder, which contains your app. 2. Remove and update the .jar file in the `ext/` folder.