You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by mw...@apache.org on 2013/07/04 20:19:43 UTC

[08/20] [CB-3827] rename 'getting-started' dirs as 'platforms'

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/docs/en/edge/guide/platforms/windows-phone-8/index.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/platforms/windows-phone-8/index.md b/docs/en/edge/guide/platforms/windows-phone-8/index.md
new file mode 100644
index 0000000..85a02ae
--- /dev/null
+++ b/docs/en/edge/guide/platforms/windows-phone-8/index.md
@@ -0,0 +1,135 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+
+           http://www.apache.org/licenses/LICENSE-2.0
+
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+Windows Phone 8 Platform Guide
+==================================
+
+This guide describes how to set up your development environment for Cordova and run a sample application.  Note that Cordova used to be called PhoneGap, so some of the sites still use the old PhoneGap name.
+
+__NOTE:__ Applications built with Apache Cordova for Windows Phone 8 run only on Windows Phone 8 devices. If you want to target both 7.5 'and' 8 devices, then use Apache Cordova for Windows Phone 7, which does not have all the advanced features included in IE10, but implements the same APIs.
+
+1. System Requirements
+---------------
+
+- Operating System:
+    - Windows 8 or Windows 8 Pro
+        - The 64-bit version (x64) of Windows is required for the SDK.
+        - The Pro version is recommended so you can run a device emulator.
+
+- Hardware:
+    - 6.5 GB of free hard disk space
+    - 4 GB RAM
+    - 64-bit (x64) CPU
+
+- Windows Phone 8 Emulator
+    - The phone emulator uses Hyper-V, so this list includes those pre-requisites.
+    - Windows 8 Pro 64-bit edition or greater
+    - Requires a processor that supports virtualization and [Second Level Address Translation (SLAT)](http://en.wikipedia.org/wiki/Second_Level_Address_Translation)
+        - See the [list of Intel processors that support VT-x (virtualization) and EPT (SLAT)](http://ark.intel.com/Products/VirtualizationTechnology)
+    - Enable the virtualization capability (i.e., VT-x on Intel) in your BIOS settings, as usually this is disabled by default.
+
+- SDK + IDE ( Visual Studio )
+    - Visual Studio 2012 Professional, Premium, or Ultimate. Note that Visual Studio Express for Windows Phone (included in the SDK) is not recommended because you can not build the template (see below) with VS Express, as it does not have the __Export Template__ functionality, which is only in VS Pro or higher.
+
+- Register and pay for a [Windows Phone Dev Center](http://dev.windowsphone.com/en-us/publish) account if you want to install your app on a real device and/or submit it to Market Place.
+
+__NOTE:__ Running the SDK in Virtual Machine might present some challenges. You can read this blog post that gives insight on the solutions to develop for [Windows Phone on a Mac](http://aka.ms/BuildaWP8apponaMac).
+
+2. Install SDK + Cordova
+----------------------------
+
+- Download and install [Windows Phone SDK](http://www.microsoft.com/en-us/download/details.aspx?id=35471)
+- Download and extract the latest copy of [Cordova](http://phonegap.com/download). You will be working in the `lib\windows-phone-8` subfolder.
+- Copy the file CordovaWP8_x_x_x.zip to the folder : \My Documents\Visual Studio 2012\Templates\ProjectTemplates\
+
+2.1. Building the template
+-----------------------------
+
+__NOTE:__ this step may not be required.  If the lib\windows-phone directory already contains a file CordovaWP8_x_x_x.zip then you may skip this step.
+
+In order to simplify the development process, Cordova comes with a Visual Studio template that allows creating a Cordova application rapidly. This template can be modified if needed and the below steps indicate how to proceed if you want to modify and re-generate the template.
+
+- Open the `lib\windows-phone\templates\standalone\CordovaSolution.sln` file in Visual Studio Express for Windows Phone.
+- Select __Export Template...__ from the __File__ menu.
+- Choose template type __Project template__
+- Give the exported template a name, such as `CordovaStarter-2.1.0`, which produces a `CordovaStarter-2.1.0.zip` archive.
+- Optionally, you may add a description, icon image, and preview image.  These  display in Visual Studio's __New Project__ dialog.
+- __NOTE:__ If you select __Automatically import the template...__, then you don't need to copy the `.zip` file over as outlined in step 2.
+- Press __Finish__
+
+2.2 About the different templates
+---------------------------------
+
+Apache Cordova for Windows Phone 8 only supports the standalone template.
+
+The 'Stand-Alone' template includes _all_ the source code for Apache
+Cordova.  This project is easier to fine-tune to use just the features
+you need, thereby working around the permissions issues of the 'Full'
+template, however this type of project is more difficult to update, as
+you update individual files within your project and manage any
+dependancies yourself.  In order to exclude an unused API, simply
+right-click-select the __Command__ class file in Visual Studio and
+choose __do not include in project__.
+
+3. Set up New Project
+--------------------
+
+- Open Visual Studio Express for Windows Phone and choose **New Project**.
+- Select **CordovaWP8**. (The version number is displayed in the template description.)
+- Give the project a name, and select __OK__.
+
+![](img/guide/platforms/windows-phone-8/StandAloneTemplate.png)
+
+4. Review the project structure
+-------------------------------
+
+- The 'www' folder contains your Cordova html/js/css and any other resources included in your app.
+- Any content that you add here needs to be a part of the Visual Studio project, and it must be set as content.
+- Note: This screen capture was from the cordova-2.3.0 download, your listing will vary based on the actual version installed.
+
+![](img/guide/platforms/windows-phone-8/projectStructure.png)
+
+5. Build and Deploy to Emulator
+-------------------------------
+
+- Make sure **Windows Phone Emulator** is selected in the main drop-down menu.
+- Press the green **play** button next to the drop-down menu to start debugging, or type __F5__.
+
+![](img/guide/platforms/windows-phone-8/BuildEmulator.png)
+
+6. Build your project for the device
+------------------------------------
+
+In order to test your application on a device, the device must be registered. Click [here][register-url] to read documentation on deploying and testing on your Windows Phone 8.
+
+- Make sure your phone is connected, and the screen is unlocked.
+- In Visual Studio, select 'Device' from the top drop-down menu.
+- Press the green **play** button next to the main drop-down menu to start debugging, or type __F5__.
+
+![](img/guide/platforms/windows-phone-7/wpd.png)
+
+Done!
+-----
+
+Further Reading
+-------
+
+For more details on the specific differences between IE10 and WebKit browsers, and how to support both MS has a helpful [guide here](http://blogs.windows.com/windows_phone/b/wpdev/archive/2012/11/15/adapting-your-webkit-optimized-site-for-internet-explorer-10.aspx)
+
+[register-url]: http://msdn.microsoft.com/en-us/library/windowsphone/develop/ff402565(v=vs.105).aspx

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/docs/en/edge/guide/platforms/windows-phone-8/tools.md
----------------------------------------------------------------------
diff --git a/docs/en/edge/guide/platforms/windows-phone-8/tools.md b/docs/en/edge/guide/platforms/windows-phone-8/tools.md
new file mode 100644
index 0000000..df821e2
--- /dev/null
+++ b/docs/en/edge/guide/platforms/windows-phone-8/tools.md
@@ -0,0 +1,77 @@
+---
+license: Licensed to the Apache Software Foundation (ASF) under one
+         or more contributor license agreements.  See the NOTICE file
+         distributed with this work for additional information
+         regarding copyright ownership.  The ASF licenses this file
+         to you under the Apache License, Version 2.0 (the
+         "License"); you may not use this file except in compliance
+         with the License.  You may obtain a copy of the License at
+         
+           http://www.apache.org/licenses/LICENSE-2.0
+         
+         Unless required by applicable law or agreed to in writing,
+         software distributed under the License is distributed on an
+         "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+         KIND, either express or implied.  See the License for the
+         specific language governing permissions and limitations
+         under the License.
+---
+
+# Windows Phone Command-line Tools
+
+The `cordova` command-line utility is a high-level tool that allows
+you to build applications across several platforms at once. An older
+version of the Cordova framework provides sets of command-line tools
+specific to each platform. To use them as an alternative to the CLI,
+you need to download this version of Cordova from
+[cordova.apache.org](http://cordova.apache.org). The download contains
+separate archives for each platform. Expand the platform you wish to
+target. The tools described here are typically available in the
+top-level `bin` directory, otherwise consult the __README__ file for
+more detailed directions.
+
+## Windows Phone
+
+The Windows Phone command-line tools support creating, building, and
+running new projects. Commands must be run from a cmd or powershell
+prompt.
+
+The WP8 repo now includes code for building both WP7 + WP8 apps.  The
+repo has subfolders for each: wp7/ and wp8/
+
+## Create a project
+
+Run the `create` command, specifying the existing path to the project,
+the reverse-domain-style package identifier, and the app's display
+name.  Here is the syntax for both Windows Phone 7 and 8:
+
+    $ C:\path\to\cordova-wp8\wp7\bin\create C:\path\to\my_new_project com.example.project_name ProjectName
+    $ C:\path\to\cordova-wp8\wp8\bin\create C:\path\to\my_new_project com.example.project_name ProjectName    
+
+## Building your project (cleans then builds)
+
+* Debug
+
+    $ C:\path\to\my_new_project\cordova\build --debug
+
+* Release
+
+    $ C:\path\to\my_new_project\cordova\build --release
+
+## Running your application
+
+Run the 'run' command with the following *optional* parameters
+
+* Target specification. This includes `--emulator`, `--device`, or `--target=<targetID>`.
+* Build specification. This includes `--debug`, `--release`, or `--nobuild`.
+
+    $ C:\path\to\my_new_project\cordova\run [Target] [Build]
+
+By default the `run` command will look for a connected device, if no
+device is found it will look for any started emulators. If you have
+multiple emulators, you can specify a target ID.
+
+## Cleaning
+
+    $ C:\path\to\my_new_project\cordova\clean
+

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/AndroidFlow.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/AndroidFlow.png b/template/docs/default/img/guide/getting-started/android/AndroidFlow.png
deleted file mode 100644
index 7d019b6..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/AndroidFlow.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/asdk_avds.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/asdk_avds.png b/template/docs/default/img/guide/getting-started/android/asdk_avds.png
deleted file mode 100644
index c882cc3..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/asdk_avds.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/asdk_device.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/asdk_device.png b/template/docs/default/img/guide/getting-started/android/asdk_device.png
deleted file mode 100644
index 2873cec..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/asdk_device.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/asdk_emulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/asdk_emulator.png b/template/docs/default/img/guide/getting-started/android/asdk_emulator.png
deleted file mode 100644
index 0e8e954..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/asdk_emulator.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/asdk_newAVD.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/asdk_newAVD.png b/template/docs/default/img/guide/getting-started/android/asdk_newAVD.png
deleted file mode 100644
index b1f51a5..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/asdk_newAVD.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/asdk_window.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/asdk_window.png b/template/docs/default/img/guide/getting-started/android/asdk_window.png
deleted file mode 100644
index b134ef1..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/asdk_window.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/buildPath.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/buildPath.jpg b/template/docs/default/img/guide/getting-started/android/buildPath.jpg
deleted file mode 100755
index ae3f7ee..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/buildPath.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/eclipse_android_sdk_button.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/eclipse_android_sdk_button.png b/template/docs/default/img/guide/getting-started/android/eclipse_android_sdk_button.png
deleted file mode 100644
index 0e84666..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/eclipse_android_sdk_button.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/eclipse_new_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/eclipse_new_project.png b/template/docs/default/img/guide/getting-started/android/eclipse_new_project.png
deleted file mode 100644
index 9d9106e..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/eclipse_new_project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/javaSrc.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/javaSrc.jpg b/template/docs/default/img/guide/getting-started/android/javaSrc.jpg
deleted file mode 100644
index ab93051..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/javaSrc.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/manifest.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/manifest.jpg b/template/docs/default/img/guide/getting-started/android/manifest.jpg
deleted file mode 100644
index 6039194..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/manifest.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/manifest.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/manifest.png b/template/docs/default/img/guide/getting-started/android/manifest.png
deleted file mode 100644
index 88163b1..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/manifest.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/new_android_project.jpeg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/new_android_project.jpeg b/template/docs/default/img/guide/getting-started/android/new_android_project.jpeg
deleted file mode 100644
index 20bc29d..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/new_android_project.jpeg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/step_1.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/step_1.png b/template/docs/default/img/guide/getting-started/android/step_1.png
deleted file mode 100644
index bb3202a..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/step_1.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/step_2.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/step_2.png b/template/docs/default/img/guide/getting-started/android/step_2.png
deleted file mode 100644
index 20929e6..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/step_2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/step_3.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/step_3.png b/template/docs/default/img/guide/getting-started/android/step_3.png
deleted file mode 100644
index cf3f87d..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/step_3.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/step_4.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/step_4.png b/template/docs/default/img/guide/getting-started/android/step_4.png
deleted file mode 100644
index d8033d8..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/step_4.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/android/step_5.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/android/step_5.png b/template/docs/default/img/guide/getting-started/android/step_5.png
deleted file mode 100644
index 9b64bfa..0000000
Binary files a/template/docs/default/img/guide/getting-started/android/step_5.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/bada/bada_1_run.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/bada/bada_1_run.png b/template/docs/default/img/guide/getting-started/bada/bada_1_run.png
deleted file mode 100644
index 64e41a7..0000000
Binary files a/template/docs/default/img/guide/getting-started/bada/bada_1_run.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/bada/bada_2_run.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/bada/bada_2_run.png b/template/docs/default/img/guide/getting-started/bada/bada_2_run.png
deleted file mode 100644
index a569a05..0000000
Binary files a/template/docs/default/img/guide/getting-started/bada/bada_2_run.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/bada/bada_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/bada/bada_project.png b/template/docs/default/img/guide/getting-started/bada/bada_project.png
deleted file mode 100644
index 9ec1534..0000000
Binary files a/template/docs/default/img/guide/getting-started/bada/bada_project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/bada/bada_set_target.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/bada/bada_set_target.png b/template/docs/default/img/guide/getting-started/bada/bada_set_target.png
deleted file mode 100644
index 4b11851..0000000
Binary files a/template/docs/default/img/guide/getting-started/bada/bada_set_target.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/bada/import_bada_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/bada/import_bada_project.png b/template/docs/default/img/guide/getting-started/bada/import_bada_project.png
deleted file mode 100644
index 9a934b3..0000000
Binary files a/template/docs/default/img/guide/getting-started/bada/import_bada_project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/bada/import_bada_project_2.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/bada/import_bada_project_2.png b/template/docs/default/img/guide/getting-started/bada/import_bada_project_2.png
deleted file mode 100644
index 61a3db8..0000000
Binary files a/template/docs/default/img/guide/getting-started/bada/import_bada_project_2.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/HelloWorldStandard.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/HelloWorldStandard.png b/template/docs/default/img/guide/getting-started/ios/HelloWorldStandard.png
deleted file mode 100644
index 3e6c0af..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/HelloWorldStandard.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/HelloWorldiPhone4.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/HelloWorldiPhone4.png b/template/docs/default/img/guide/getting-started/ios/HelloWorldiPhone4.png
deleted file mode 100644
index e2aa147..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/HelloWorldiPhone4.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/XCode4-templates.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/XCode4-templates.png b/template/docs/default/img/guide/getting-started/ios/XCode4-templates.png
deleted file mode 100644
index e3eee61..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/XCode4-templates.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/active_scheme_device.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/active_scheme_device.png b/template/docs/default/img/guide/getting-started/ios/active_scheme_device.png
deleted file mode 100644
index a77d70f..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/active_scheme_device.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/active_scheme_simulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/active_scheme_simulator.png b/template/docs/default/img/guide/getting-started/ios/active_scheme_simulator.png
deleted file mode 100644
index 7e952d2..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/active_scheme_simulator.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/bin_create_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/bin_create_project.png b/template/docs/default/img/guide/getting-started/ios/bin_create_project.png
deleted file mode 100644
index 8984141..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/bin_create_project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/bin_dir_listing.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/bin_dir_listing.png b/template/docs/default/img/guide/getting-started/ios/bin_dir_listing.png
deleted file mode 100644
index 9e5bfc3..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/bin_dir_listing.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/bin_folder.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/bin_folder.png b/template/docs/default/img/guide/getting-started/ios/bin_folder.png
deleted file mode 100644
index 3848df7..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/bin_folder.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/create-folder-reference.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/create-folder-reference.png b/template/docs/default/img/guide/getting-started/ios/create-folder-reference.png
deleted file mode 100644
index 0ca53e5..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/create-folder-reference.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/create.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/create.png b/template/docs/default/img/guide/getting-started/ios/create.png
deleted file mode 100644
index 47f8227..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/create.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/helloworld_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/helloworld_project.png b/template/docs/default/img/guide/getting-started/ios/helloworld_project.png
deleted file mode 100644
index 71434b3..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/helloworld_project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/index-not-found.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/index-not-found.png b/template/docs/default/img/guide/getting-started/ios/index-not-found.png
deleted file mode 100644
index 3ed84d3..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/index-not-found.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/make.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/make.png b/template/docs/default/img/guide/getting-started/ios/make.png
deleted file mode 100644
index 78cc848..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/make.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/project.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/project.jpg b/template/docs/default/img/guide/getting-started/ios/project.jpg
deleted file mode 100644
index 6e74ca2..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/project.jpg and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/select_xcode_scheme.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/select_xcode_scheme.png b/template/docs/default/img/guide/getting-started/ios/select_xcode_scheme.png
deleted file mode 100644
index 630dab0..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/select_xcode_scheme.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/www-folder.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/www-folder.png b/template/docs/default/img/guide/getting-started/ios/www-folder.png
deleted file mode 100644
index 8abcdd8..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/www-folder.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/xcode4-name_your_app.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/xcode4-name_your_app.png b/template/docs/default/img/guide/getting-started/ios/xcode4-name_your_app.png
deleted file mode 100644
index 22395e7..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/xcode4-name_your_app.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/ios/xcode_build_location.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/ios/xcode_build_location.png b/template/docs/default/img/guide/getting-started/ios/xcode_build_location.png
deleted file mode 100644
index 8fbb1b5..0000000
Binary files a/template/docs/default/img/guide/getting-started/ios/xcode_build_location.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/build_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/build_project.png b/template/docs/default/img/guide/getting-started/tizen/build_project.png
deleted file mode 100644
index 498b4c1..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/build_project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/connection_explorer.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/connection_explorer.png b/template/docs/default/img/guide/getting-started/tizen/connection_explorer.png
deleted file mode 100644
index 55bfd95..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/connection_explorer.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/import_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/import_project.png b/template/docs/default/img/guide/getting-started/tizen/import_project.png
deleted file mode 100644
index f5207e0..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/import_project.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/import_widget.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/import_widget.png b/template/docs/default/img/guide/getting-started/tizen/import_widget.png
deleted file mode 100644
index af1330d..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/import_widget.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/project_explorer.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/project_explorer.png b/template/docs/default/img/guide/getting-started/tizen/project_explorer.png
deleted file mode 100644
index dd6a23c..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/project_explorer.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/project_template.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/project_template.png b/template/docs/default/img/guide/getting-started/tizen/project_template.png
deleted file mode 100644
index 9e6e6ab..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/project_template.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/runas_web_app.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/runas_web_app.png b/template/docs/default/img/guide/getting-started/tizen/runas_web_app.png
deleted file mode 100644
index 0e77483..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/runas_web_app.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/tizen/runas_web_sim_app.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/tizen/runas_web_sim_app.png b/template/docs/default/img/guide/getting-started/tizen/runas_web_sim_app.png
deleted file mode 100644
index d87039e..0000000
Binary files a/template/docs/default/img/guide/getting-started/tizen/runas_web_sim_app.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-8/wsalert.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-8/wsalert.png b/template/docs/default/img/guide/getting-started/windows-8/wsalert.png
deleted file mode 100755
index 9680e53..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-8/wsalert.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-8/wschangemanifest.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-8/wschangemanifest.png b/template/docs/default/img/guide/getting-started/windows-8/wschangemanifest.png
deleted file mode 100755
index 1dd67da..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-8/wschangemanifest.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-8/wsnewproject.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-8/wsnewproject.png b/template/docs/default/img/guide/getting-started/windows-8/wsnewproject.png
deleted file mode 100755
index 8e1df69..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-8/wsnewproject.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-7/wp7emulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-7/wp7emulator.png b/template/docs/default/img/guide/getting-started/windows-phone-7/wp7emulator.png
deleted file mode 100644
index e3de172..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-7/wp7emulator.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-7/wp7projectstructure.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-7/wp7projectstructure.png b/template/docs/default/img/guide/getting-started/windows-phone-7/wp7projectstructure.png
deleted file mode 100644
index 0c7d42d..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-7/wp7projectstructure.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-7/wp7vs.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-7/wp7vs.png b/template/docs/default/img/guide/getting-started/windows-phone-7/wp7vs.png
deleted file mode 100644
index 4e14c2f..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-7/wp7vs.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-7/wpd.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-7/wpd.png b/template/docs/default/img/guide/getting-started/windows-phone-7/wpd.png
deleted file mode 100644
index 0a0b2db..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-7/wpd.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-7/wpfirstrun.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-7/wpfirstrun.png b/template/docs/default/img/guide/getting-started/windows-phone-7/wpfirstrun.png
deleted file mode 100644
index 8a82ec6..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-7/wpfirstrun.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-7/wpnewproj.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-7/wpnewproj.png b/template/docs/default/img/guide/getting-started/windows-phone-7/wpnewproj.png
deleted file mode 100644
index ed2f143..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-7/wpnewproj.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-7/wprun.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-7/wprun.png b/template/docs/default/img/guide/getting-started/windows-phone-7/wprun.png
deleted file mode 100644
index ce67de9..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-7/wprun.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-8/BuidDevice.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-8/BuidDevice.png b/template/docs/default/img/guide/getting-started/windows-phone-8/BuidDevice.png
deleted file mode 100644
index 92ea56d..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-8/BuidDevice.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-8/BuildEmulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-8/BuildEmulator.png b/template/docs/default/img/guide/getting-started/windows-phone-8/BuildEmulator.png
deleted file mode 100644
index 5893f64..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-8/BuildEmulator.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-8/FullTemplate.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-8/FullTemplate.png b/template/docs/default/img/guide/getting-started/windows-phone-8/FullTemplate.png
deleted file mode 100644
index 85f49cf..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-8/FullTemplate.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-8/StandAloneTemplate.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-8/StandAloneTemplate.png b/template/docs/default/img/guide/getting-started/windows-phone-8/StandAloneTemplate.png
deleted file mode 100644
index 62a98c4..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-8/StandAloneTemplate.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/getting-started/windows-phone-8/projectStructure.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/getting-started/windows-phone-8/projectStructure.png b/template/docs/default/img/guide/getting-started/windows-phone-8/projectStructure.png
deleted file mode 100644
index 9956094..0000000
Binary files a/template/docs/default/img/guide/getting-started/windows-phone-8/projectStructure.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/AndroidFlow.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/AndroidFlow.png b/template/docs/default/img/guide/platforms/android/AndroidFlow.png
new file mode 100644
index 0000000..7d019b6
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/AndroidFlow.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/asdk_avds.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/asdk_avds.png b/template/docs/default/img/guide/platforms/android/asdk_avds.png
new file mode 100644
index 0000000..c882cc3
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/asdk_avds.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/asdk_device.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/asdk_device.png b/template/docs/default/img/guide/platforms/android/asdk_device.png
new file mode 100644
index 0000000..2873cec
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/asdk_device.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/asdk_emulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/asdk_emulator.png b/template/docs/default/img/guide/platforms/android/asdk_emulator.png
new file mode 100644
index 0000000..0e8e954
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/asdk_emulator.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/asdk_newAVD.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/asdk_newAVD.png b/template/docs/default/img/guide/platforms/android/asdk_newAVD.png
new file mode 100644
index 0000000..b1f51a5
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/asdk_newAVD.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/asdk_window.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/asdk_window.png b/template/docs/default/img/guide/platforms/android/asdk_window.png
new file mode 100644
index 0000000..b134ef1
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/asdk_window.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/buildPath.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/buildPath.jpg b/template/docs/default/img/guide/platforms/android/buildPath.jpg
new file mode 100755
index 0000000..ae3f7ee
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/buildPath.jpg differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/eclipse_android_sdk_button.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/eclipse_android_sdk_button.png b/template/docs/default/img/guide/platforms/android/eclipse_android_sdk_button.png
new file mode 100644
index 0000000..0e84666
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/eclipse_android_sdk_button.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/eclipse_new_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/eclipse_new_project.png b/template/docs/default/img/guide/platforms/android/eclipse_new_project.png
new file mode 100644
index 0000000..9d9106e
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/eclipse_new_project.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/javaSrc.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/javaSrc.jpg b/template/docs/default/img/guide/platforms/android/javaSrc.jpg
new file mode 100644
index 0000000..ab93051
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/javaSrc.jpg differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/manifest.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/manifest.jpg b/template/docs/default/img/guide/platforms/android/manifest.jpg
new file mode 100644
index 0000000..6039194
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/manifest.jpg differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/manifest.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/manifest.png b/template/docs/default/img/guide/platforms/android/manifest.png
new file mode 100644
index 0000000..88163b1
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/manifest.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/new_android_project.jpeg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/new_android_project.jpeg b/template/docs/default/img/guide/platforms/android/new_android_project.jpeg
new file mode 100644
index 0000000..20bc29d
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/new_android_project.jpeg differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/step_1.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/step_1.png b/template/docs/default/img/guide/platforms/android/step_1.png
new file mode 100644
index 0000000..bb3202a
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/step_1.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/step_2.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/step_2.png b/template/docs/default/img/guide/platforms/android/step_2.png
new file mode 100644
index 0000000..20929e6
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/step_2.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/step_3.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/step_3.png b/template/docs/default/img/guide/platforms/android/step_3.png
new file mode 100644
index 0000000..cf3f87d
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/step_3.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/step_4.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/step_4.png b/template/docs/default/img/guide/platforms/android/step_4.png
new file mode 100644
index 0000000..d8033d8
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/step_4.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/android/step_5.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/android/step_5.png b/template/docs/default/img/guide/platforms/android/step_5.png
new file mode 100644
index 0000000..9b64bfa
Binary files /dev/null and b/template/docs/default/img/guide/platforms/android/step_5.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/bada/bada_1_run.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/bada/bada_1_run.png b/template/docs/default/img/guide/platforms/bada/bada_1_run.png
new file mode 100644
index 0000000..64e41a7
Binary files /dev/null and b/template/docs/default/img/guide/platforms/bada/bada_1_run.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/bada/bada_2_run.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/bada/bada_2_run.png b/template/docs/default/img/guide/platforms/bada/bada_2_run.png
new file mode 100644
index 0000000..a569a05
Binary files /dev/null and b/template/docs/default/img/guide/platforms/bada/bada_2_run.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/bada/bada_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/bada/bada_project.png b/template/docs/default/img/guide/platforms/bada/bada_project.png
new file mode 100644
index 0000000..9ec1534
Binary files /dev/null and b/template/docs/default/img/guide/platforms/bada/bada_project.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/bada/bada_set_target.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/bada/bada_set_target.png b/template/docs/default/img/guide/platforms/bada/bada_set_target.png
new file mode 100644
index 0000000..4b11851
Binary files /dev/null and b/template/docs/default/img/guide/platforms/bada/bada_set_target.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/bada/import_bada_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/bada/import_bada_project.png b/template/docs/default/img/guide/platforms/bada/import_bada_project.png
new file mode 100644
index 0000000..9a934b3
Binary files /dev/null and b/template/docs/default/img/guide/platforms/bada/import_bada_project.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/bada/import_bada_project_2.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/bada/import_bada_project_2.png b/template/docs/default/img/guide/platforms/bada/import_bada_project_2.png
new file mode 100644
index 0000000..61a3db8
Binary files /dev/null and b/template/docs/default/img/guide/platforms/bada/import_bada_project_2.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/HelloWorldStandard.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/HelloWorldStandard.png b/template/docs/default/img/guide/platforms/ios/HelloWorldStandard.png
new file mode 100644
index 0000000..3e6c0af
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/HelloWorldStandard.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/HelloWorldiPhone4.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/HelloWorldiPhone4.png b/template/docs/default/img/guide/platforms/ios/HelloWorldiPhone4.png
new file mode 100644
index 0000000..e2aa147
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/HelloWorldiPhone4.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/XCode4-templates.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/XCode4-templates.png b/template/docs/default/img/guide/platforms/ios/XCode4-templates.png
new file mode 100644
index 0000000..e3eee61
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/XCode4-templates.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/active_scheme_device.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/active_scheme_device.png b/template/docs/default/img/guide/platforms/ios/active_scheme_device.png
new file mode 100644
index 0000000..a77d70f
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/active_scheme_device.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/active_scheme_simulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/active_scheme_simulator.png b/template/docs/default/img/guide/platforms/ios/active_scheme_simulator.png
new file mode 100644
index 0000000..7e952d2
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/active_scheme_simulator.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/bin_create_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/bin_create_project.png b/template/docs/default/img/guide/platforms/ios/bin_create_project.png
new file mode 100644
index 0000000..8984141
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/bin_create_project.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/bin_dir_listing.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/bin_dir_listing.png b/template/docs/default/img/guide/platforms/ios/bin_dir_listing.png
new file mode 100644
index 0000000..9e5bfc3
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/bin_dir_listing.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/bin_folder.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/bin_folder.png b/template/docs/default/img/guide/platforms/ios/bin_folder.png
new file mode 100644
index 0000000..3848df7
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/bin_folder.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/create-folder-reference.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/create-folder-reference.png b/template/docs/default/img/guide/platforms/ios/create-folder-reference.png
new file mode 100644
index 0000000..0ca53e5
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/create-folder-reference.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/create.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/create.png b/template/docs/default/img/guide/platforms/ios/create.png
new file mode 100644
index 0000000..47f8227
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/create.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/helloworld_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/helloworld_project.png b/template/docs/default/img/guide/platforms/ios/helloworld_project.png
new file mode 100644
index 0000000..71434b3
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/helloworld_project.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/index-not-found.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/index-not-found.png b/template/docs/default/img/guide/platforms/ios/index-not-found.png
new file mode 100644
index 0000000..3ed84d3
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/index-not-found.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/make.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/make.png b/template/docs/default/img/guide/platforms/ios/make.png
new file mode 100644
index 0000000..78cc848
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/make.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/project.jpg
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/project.jpg b/template/docs/default/img/guide/platforms/ios/project.jpg
new file mode 100644
index 0000000..6e74ca2
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/project.jpg differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/select_xcode_scheme.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/select_xcode_scheme.png b/template/docs/default/img/guide/platforms/ios/select_xcode_scheme.png
new file mode 100644
index 0000000..630dab0
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/select_xcode_scheme.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/www-folder.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/www-folder.png b/template/docs/default/img/guide/platforms/ios/www-folder.png
new file mode 100644
index 0000000..8abcdd8
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/www-folder.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/xcode4-name_your_app.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/xcode4-name_your_app.png b/template/docs/default/img/guide/platforms/ios/xcode4-name_your_app.png
new file mode 100644
index 0000000..22395e7
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/xcode4-name_your_app.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/ios/xcode_build_location.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/ios/xcode_build_location.png b/template/docs/default/img/guide/platforms/ios/xcode_build_location.png
new file mode 100644
index 0000000..8fbb1b5
Binary files /dev/null and b/template/docs/default/img/guide/platforms/ios/xcode_build_location.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/build_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/build_project.png b/template/docs/default/img/guide/platforms/tizen/build_project.png
new file mode 100644
index 0000000..498b4c1
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/build_project.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/connection_explorer.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/connection_explorer.png b/template/docs/default/img/guide/platforms/tizen/connection_explorer.png
new file mode 100644
index 0000000..55bfd95
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/connection_explorer.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/import_project.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/import_project.png b/template/docs/default/img/guide/platforms/tizen/import_project.png
new file mode 100644
index 0000000..f5207e0
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/import_project.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/import_widget.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/import_widget.png b/template/docs/default/img/guide/platforms/tizen/import_widget.png
new file mode 100644
index 0000000..af1330d
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/import_widget.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/project_explorer.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/project_explorer.png b/template/docs/default/img/guide/platforms/tizen/project_explorer.png
new file mode 100644
index 0000000..dd6a23c
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/project_explorer.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/project_template.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/project_template.png b/template/docs/default/img/guide/platforms/tizen/project_template.png
new file mode 100644
index 0000000..9e6e6ab
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/project_template.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/runas_web_app.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/runas_web_app.png b/template/docs/default/img/guide/platforms/tizen/runas_web_app.png
new file mode 100644
index 0000000..0e77483
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/runas_web_app.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/tizen/runas_web_sim_app.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/tizen/runas_web_sim_app.png b/template/docs/default/img/guide/platforms/tizen/runas_web_sim_app.png
new file mode 100644
index 0000000..d87039e
Binary files /dev/null and b/template/docs/default/img/guide/platforms/tizen/runas_web_sim_app.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-8/wsalert.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-8/wsalert.png b/template/docs/default/img/guide/platforms/windows-8/wsalert.png
new file mode 100755
index 0000000..9680e53
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-8/wsalert.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-8/wschangemanifest.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-8/wschangemanifest.png b/template/docs/default/img/guide/platforms/windows-8/wschangemanifest.png
new file mode 100755
index 0000000..1dd67da
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-8/wschangemanifest.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-8/wsnewproject.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-8/wsnewproject.png b/template/docs/default/img/guide/platforms/windows-8/wsnewproject.png
new file mode 100755
index 0000000..8e1df69
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-8/wsnewproject.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-7/wp7emulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-7/wp7emulator.png b/template/docs/default/img/guide/platforms/windows-phone-7/wp7emulator.png
new file mode 100644
index 0000000..e3de172
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-7/wp7emulator.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-7/wp7projectstructure.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-7/wp7projectstructure.png b/template/docs/default/img/guide/platforms/windows-phone-7/wp7projectstructure.png
new file mode 100644
index 0000000..0c7d42d
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-7/wp7projectstructure.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-7/wp7vs.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-7/wp7vs.png b/template/docs/default/img/guide/platforms/windows-phone-7/wp7vs.png
new file mode 100644
index 0000000..4e14c2f
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-7/wp7vs.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-7/wpd.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-7/wpd.png b/template/docs/default/img/guide/platforms/windows-phone-7/wpd.png
new file mode 100644
index 0000000..0a0b2db
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-7/wpd.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-7/wpfirstrun.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-7/wpfirstrun.png b/template/docs/default/img/guide/platforms/windows-phone-7/wpfirstrun.png
new file mode 100644
index 0000000..8a82ec6
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-7/wpfirstrun.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-7/wpnewproj.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-7/wpnewproj.png b/template/docs/default/img/guide/platforms/windows-phone-7/wpnewproj.png
new file mode 100644
index 0000000..ed2f143
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-7/wpnewproj.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-7/wprun.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-7/wprun.png b/template/docs/default/img/guide/platforms/windows-phone-7/wprun.png
new file mode 100644
index 0000000..ce67de9
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-7/wprun.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-8/BuidDevice.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-8/BuidDevice.png b/template/docs/default/img/guide/platforms/windows-phone-8/BuidDevice.png
new file mode 100644
index 0000000..92ea56d
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-8/BuidDevice.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-8/BuildEmulator.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-8/BuildEmulator.png b/template/docs/default/img/guide/platforms/windows-phone-8/BuildEmulator.png
new file mode 100644
index 0000000..5893f64
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-8/BuildEmulator.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-8/FullTemplate.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-8/FullTemplate.png b/template/docs/default/img/guide/platforms/windows-phone-8/FullTemplate.png
new file mode 100644
index 0000000..85f49cf
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-8/FullTemplate.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-8/StandAloneTemplate.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-8/StandAloneTemplate.png b/template/docs/default/img/guide/platforms/windows-phone-8/StandAloneTemplate.png
new file mode 100644
index 0000000..62a98c4
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-8/StandAloneTemplate.png differ

http://git-wip-us.apache.org/repos/asf/cordova-docs/blob/cfebdc34/template/docs/default/img/guide/platforms/windows-phone-8/projectStructure.png
----------------------------------------------------------------------
diff --git a/template/docs/default/img/guide/platforms/windows-phone-8/projectStructure.png b/template/docs/default/img/guide/platforms/windows-phone-8/projectStructure.png
new file mode 100644
index 0000000..9956094
Binary files /dev/null and b/template/docs/default/img/guide/platforms/windows-phone-8/projectStructure.png differ