http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/tool/scripts/create.bat ---------------------------------------------------------------------- diff --git a/tool/scripts/create.bat b/tool/scripts/create.bat deleted file mode 100755 index f420158..0000000 --- a/tool/scripts/create.bat +++ /dev/null @@ -1,25 +0,0 @@ - -@echo off -goto start - -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. - - -:start -csc /out:..\CordovaBuilder\CordovaBuilder\bin\Debug\CordovaBuilder.exe ..\CordovaBuilder\CordovaBuilder\CordovaBuilder.cs -csc /out:..\CordovaBuilder\CordovaBuilder\bin\Release\CordovaBuilder.exe ..\CordovaBuilder\CordovaBuilder\CordovaBuilder.cs \ No newline at end of file
http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/LICENSE ---------------------------------------------------------------------- diff --git a/windows8/LICENSE b/windows8/LICENSE new file mode 100644 index 0000000..6b6bd20 --- /dev/null +++ b/windows8/LICENSE @@ -0,0 +1,12 @@ + +Licensed 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. \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/NOTICE ---------------------------------------------------------------------- diff --git a/windows8/NOTICE b/windows8/NOTICE new file mode 100644 index 0000000..c38e7d7 --- /dev/null +++ b/windows8/NOTICE @@ -0,0 +1,5 @@ +Apache Cordova +Copyright 2012 The Apache Software Foundation + +This product includes software developed by +The Apache Software Foundation (http://www.apache.org) \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/QuickBuildReadme.txt ---------------------------------------------------------------------- diff --git a/windows8/QuickBuildReadme.txt b/windows8/QuickBuildReadme.txt new file mode 100644 index 0000000..ed2079e --- /dev/null +++ b/windows8/QuickBuildReadme.txt @@ -0,0 +1,28 @@ +Explanation + The tools in this repository will generate a cordova.js file from the .js files in "src\cordova-win8\js". This file will then be put in a folder (framework), which will be zipped to be used as a template for Visual Studio. Instead of creating a template, you can create your own Visual Studio project from a normal template and use the cordova API from these instructions. + +Instructions +1. Follow the instructions listed in README.md up to creating the Cordova-Metro.zip file (which should be listed for after 'For Metro App develop'. This process should create cordova.js in framework/Cordova-Metro/js. +2. Create a javascript/html Windows 8 (formerly Metro Style) app or use an existing one from Visual Studio 2012. +3. Add a copy of cordova.js created in step 1 to the project. +4. Add the contents of the lib folder in framework/ to the lib folder in the project from step 2. If there is no lib folder, create one. +5. Then press `Add` -> `Existing project...` select the `SQLite3.vcxproj` in the `lib\SQLite\SQLite3`. +6. Select the project from step 2 in the Solution Explorer, then `Project` -> `Add Reference...` -> select the SQLite3. +7. On each html page in the project that needs the cordova scripts, add these lines to those files: + + <script src="lib/Jscex/src/jscex.js"></script> + <script src="lib/Jscex/src/jscex-builderbase.js"></script> + <script src="lib/Jscex/src/jscex-parser.js"></script> + <script src="lib/Jscex/src/jscex-async.js"></script> + <script src="lib/Jscex/src/jscex-jit.js"></script> + <script src="lib/Jscex/src/jscex-promise.js"></script> + + <script src="/js/cordova.js"></script> +7. Confirm that these links correctly reference the files. If not, update the location pointed to by source accordingly. +8. Build and run. + +References + Cordova API + http://docs.phonegap.com/en/2.0.0/index.html + +Any questions or issues, please email matthew.p.b...@intel.com \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/README.md ---------------------------------------------------------------------- diff --git a/windows8/README.md b/windows8/README.md new file mode 100644 index 0000000..df4d33a --- /dev/null +++ b/windows8/README.md @@ -0,0 +1,79 @@ +# Apache Cordova for Windows 8 Metro +=== +- The project supports Cordova on Win8, and uses WinLib4JS for most implementation (others with SQLite3, Jscex and so on). +- [The wiki about Cordova-Win8: Impl and not Impl.](https://github.com/01org/cordova-win8/wiki) + +## Getting Started + + +### For Cordova API developer + - **Who want to develop Cordova API** + - You could use the project in `src` folder directly. + - If you want to export the project with zip package, open the project in `\tool\CordovaBuilder` with Visual Studio (`Administrator`) , build and run it, then open you command prompt(`Administrator`), type the command according to the guide: + + ~~~ + Usage: CordovaBuilder [ BuildOutputPath -c:Type ]. + BuildOutputPath : path to save the built application. + -c : which type of project you want to create, 0 for Metro App developers, 1 for Cordova API developers, default is 0. + examples: + CordovaBuilder bin\Debug. + CordovaBuilder bin\Release -c:1. + ~~~ + + - A ZIP file named *CordovaStarter.zip* will be generated. + +### For Metro App developer + - **Who want to develop Metro App by using Cordova API** + - Do the same steps as above. -c:Type should be 0. + - A Visual Studio template named **Cordova-Metro.zip** will be generated. Move it to the directory of your VS Template. You do not need to unzip it. + e.g.:`C:\Users\xxxx\Documents\Visual Studio 2012\Templates\ProjectTemplates` + - Open the VS, `FILE` -> `New` -> `Project...`, input the template name 'Cordova-Metro' in the search textField. Select the template and modify items about your new proj at the bottom of the pop-up window. +<img src="http://i.imgur.com/DvkAN.png" width="80%"/> + - Click the button `OK`. Then `Add` -> `Existing project...` select the `SQLite3.vcxproj` in the `lib\SQLite\SQLite3`. Build it. + - Select the Cordova project in the Solution Explorer, then `Project` -> `Add Reference...` -> select the SQLite3. + - Build and Run the project Cordova-Metro. If running takes a long time, simply stop the running, then rerun (known issue). + +### Run the Sample App + - Open the `samples\TestAppCordova\TestAppCordova.sln` with visual studio. + - Build and run. + - Play around with accelerometer, geolocation, and compass. + +### How to Run the Tests + - Open the `src\src.sln` with Visual Studio. + - Build or re-build the project. + - Modify the `default.html` under `test` folder, choose the test case you want to run, and comment out any other tests. + +```html +<!-- Tests --> +<!-- +<script type="text/javascript" src="tests/accelerometer.tests.js"></script> +<script type="text/javascript" src="tests/battery.tests.js"></script> +<script type="text/javascript" src="tests/camera.tests.js"></script> +<script type="text/javascript" src="tests/capture.tests.js"></script> +--> +<script type="text/javascript" src="tests/compass.tests.js"></script> +>!-- +<script type="text/javascript" src="tests/contacts.tests.js"></script> +<script type="text/javascript" src="tests/device.tests.js"></script> +<script type="text/javascript" src="tests/file.tests.js"></script> +<script type="text/javascript" src="tests/filetransfer.tests.js"></script> +<script type="text/javascript" src="tests/geolocation.tests.js"></script> +<script type="text/javascript" src="tests/media.tests.js"></script> +<script type="text/javascript" src="tests/network.tests.js"></script> +<script type="text/javascript" src="tests/notification.tests.js"></script> +<script type="text/javascript" src="tests/platform.tests.js"></script> +<script type="text/javascript" src="tests/storage.tests.js"></script> +--> +``` + + - Now run the project, and you will get a result page as below. +<img src="http://i.imgur.com/OgTUP.png" /> + +### Reference + - [SQLite3 WinRT Component](https://github.com/doo/SQLite3-WinRT) + - [Jscex: Asynchronous flow control in JavaScript, with JavaScript](https://github.com/JeffreyZhao/jscex) + + +## Further Reading +- [http://docs.phonegap.com](http://docs.phonegap.com) +- [http://wiki.phonegap.com](http://wiki.phonegap.com) http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/VERSION ---------------------------------------------------------------------- diff --git a/windows8/VERSION b/windows8/VERSION new file mode 100644 index 0000000..bcaffe1 --- /dev/null +++ b/windows8/VERSION @@ -0,0 +1 @@ +0.7.0 \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/Cordova-Metro.jsproj ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/Cordova-Metro.jsproj b/windows8/framework/Cordova-Metro/Cordova-Metro.jsproj new file mode 100644 index 0000000..12ce9ed --- /dev/null +++ b/windows8/framework/Cordova-Metro/Cordova-Metro.jsproj @@ -0,0 +1,98 @@ +<?xml version="1.0" encoding="utf-8"?> +<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <ItemGroup Label="ProjectConfigurations"> + <ProjectConfiguration Include="Debug|AnyCPU"> + <Configuration>Debug</Configuration> + <Platform>AnyCPU</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|ARM"> + <Configuration>Debug</Configuration> + <Platform>ARM</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|x64"> + <Configuration>Debug</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Debug|x86"> + <Configuration>Debug</Configuration> + <Platform>x86</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|AnyCPU"> + <Configuration>Release</Configuration> + <Platform>AnyCPU</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|ARM"> + <Configuration>Release</Configuration> + <Platform>ARM</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|x64"> + <Configuration>Release</Configuration> + <Platform>x64</Platform> + </ProjectConfiguration> + <ProjectConfiguration Include="Release|x86"> + <Configuration>Release</Configuration> + <Platform>x86</Platform> + </ProjectConfiguration> + </ItemGroup> + <PropertyGroup Label="Globals"> + <ProjectGuid>a2bef493-a029-424e-b455-47c772af0d0e</ProjectGuid> + </PropertyGroup> + <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\$(WMSJSProjectDirectory)\Microsoft.VisualStudio.$(WMSJSProject).Default.props" /> + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\$(WMSJSProjectDirectory)\Microsoft.VisualStudio.$(WMSJSProject).props" /> + <PropertyGroup> + <TargetPlatformIdentifier>Windows</TargetPlatformIdentifier> + <TargetPlatformVersion>8.0</TargetPlatformVersion> + <DefaultLanguage>en-US</DefaultLanguage> + <PackageCertificateKeyFile>Cordova-Metro_TemporaryKey.pfx</PackageCertificateKeyFile> + </PropertyGroup> + <ItemGroup> + <AppxManifest Include="package.appxmanifest"> + <SubType>Designer</SubType> + </AppxManifest> + <Content Include="default.html" /> + <Content Include="images\logo.png" /> + <Content Include="images\smalllogo.png" /> + <Content Include="images\splashscreen.png" /> + <Content Include="images\storelogo.png" /> + <Content Include="js\cordova.js" /> + <Content Include="css\default.css" /> + <Content Include="lib\Jscex\src\incubations\jscex-async-agent.js" /> + <Content Include="lib\Jscex\src\incubations\jscex-async-include.js" /> + <Content Include="lib\Jscex\src\incubations\jscex.async.xhr.js" /> + <Content Include="lib\Jscex\src\incubations\jscex.seq.js" /> + <Content Include="lib\Jscex\src\incubations\jscex.seq.powerpack.js" /> + <Content Include="lib\Jscex\src\jscex-async-powerpack.js" /> + <Content Include="lib\Jscex\src\jscex-async.js" /> + <Content Include="lib\Jscex\src\jscex-builderbase.js" /> + <Content Include="lib\Jscex\src\jscex-jit.js" /> + <Content Include="lib\Jscex\src\jscex-parser.js" /> + <Content Include="lib\Jscex\src\jscex-promise.js" /> + <Content Include="lib\Jscex\src\jscex.js" /> + <Content Include="lib\Jscex\src\jscexc.js" /> + <Content Include="lib\SQLite\SQLite3\Common.cpp" /> + <Content Include="lib\SQLite\SQLite3\Common.h" /> + <Content Include="lib\SQLite\SQLite3\Constants.cpp" /> + <Content Include="lib\SQLite\SQLite3\Constants.h" /> + <Content Include="lib\SQLite\SQLite3\Database.cpp" /> + <Content Include="lib\SQLite\SQLite3\Database.h" /> + <Content Include="lib\SQLite\SQLite3\sqlite3.c" /> + <Content Include="lib\SQLite\SQLite3\sqlite3.h" /> + <Content Include="lib\SQLite\SQLite3\SQLite3.vcxproj" /> + <Content Include="lib\SQLite\SQLite3\SQLite3.vcxproj.filters" /> + <Content Include="lib\SQLite\SQLite3\Statement.cpp" /> + <Content Include="lib\SQLite\SQLite3\Statement.h" /> + <None Include="Cordova-Metro_TemporaryKey.pfx" /> + </ItemGroup> + <ItemGroup> + <SDKReference Include="Microsoft.WinJS.1.0.RC, Version=1.0" /> + </ItemGroup> + <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\$(WMSJSProjectDirectory)\Microsoft.VisualStudio.$(WMSJSProject).targets" /> + <!-- To modify your build process, add your task inside one of the targets below and uncomment it. + Other similar extension points exist, see Microsoft.Common.targets. + <Target Name="BeforeBuild"> + </Target> + <Target Name="AfterBuild"> + </Target> + --> +</Project> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/Cordova-Metro_TemporaryKey.pfx ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/Cordova-Metro_TemporaryKey.pfx b/windows8/framework/Cordova-Metro/Cordova-Metro_TemporaryKey.pfx new file mode 100644 index 0000000..6478694 Binary files /dev/null and b/windows8/framework/Cordova-Metro/Cordova-Metro_TemporaryKey.pfx differ http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/MyTemplate.vstemplate ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/MyTemplate.vstemplate b/windows8/framework/Cordova-Metro/MyTemplate.vstemplate new file mode 100644 index 0000000..8699658 --- /dev/null +++ b/windows8/framework/Cordova-Metro/MyTemplate.vstemplate @@ -0,0 +1,72 @@ +<VSTemplate Version="3.0.0" xmlns="http://schemas.microsoft.com/developer/vstemplate/2005" Type="Project"> + <TemplateData> + <Name>Cordova-Metro</Name> + <Description><No description available></Description> + <ProjectType>JavaScript</ProjectType> + <ProjectSubType> + </ProjectSubType> + <SortOrder>1000</SortOrder> + <CreateNewFolder>true</CreateNewFolder> + <DefaultName>Cordova-Metro</DefaultName> + <ProvideDefaultName>true</ProvideDefaultName> + <LocationField>Enabled</LocationField> + <EnableLocationBrowseButton>true</EnableLocationBrowseButton> + <Icon>__TemplateIcon.ico</Icon> + </TemplateData> + <TemplateContent> + <Project TargetFileName="Cordova-Metro.jsproj" File="Cordova-Metro.jsproj" ReplaceParameters="true"> + <Folder Name="css" TargetFolderName="css"> + <ProjectItem ReplaceParameters="true" TargetFileName="default.css">default.css</ProjectItem> + </Folder> + <Folder Name="images" TargetFolderName="images"> + <ProjectItem ReplaceParameters="false" TargetFileName="logo.png">logo.png</ProjectItem> + <ProjectItem ReplaceParameters="false" TargetFileName="smalllogo.png">smalllogo.png</ProjectItem> + <ProjectItem ReplaceParameters="false" TargetFileName="splashscreen.png">splashscreen.png</ProjectItem> + <ProjectItem ReplaceParameters="false" TargetFileName="storelogo.png">storelogo.png</ProjectItem> + </Folder> + <Folder Name="js" TargetFolderName="js"> + <ProjectItem ReplaceParameters="true" TargetFileName="cordova.js">cordova.js</ProjectItem> + </Folder> + <Folder Name="lib" TargetFolderName="lib"> + <Folder Name="Jscex" TargetFolderName="Jscex"> + <Folder Name="src" TargetFolderName="src"> + <Folder Name="incubations" TargetFolderName="incubations"> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex.async.xhr.js">jscex.async.xhr.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex.seq.js">jscex.seq.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex.seq.powerpack.js">jscex.seq.powerpack.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-async-agent.js">jscex-async-agent.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-async-include.js">jscex-async-include.js</ProjectItem> + </Folder> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex.js">jscex.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-async.js">jscex-async.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-async-powerpack.js">jscex-async-powerpack.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-builderbase.js">jscex-builderbase.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscexc.js">jscexc.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-jit.js">jscex-jit.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-parser.js">jscex-parser.js</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="jscex-promise.js">jscex-promise.js</ProjectItem> + </Folder> + </Folder> + <Folder Name="SQLite" TargetFolderName="SQLite"> + <Folder Name="SQLite3" TargetFolderName="SQLite3"> + <ProjectItem ReplaceParameters="true" TargetFileName="Common.cpp">Common.cpp</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="Common.h">Common.h</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="Constants.cpp">Constants.cpp</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="Constants.h">Constants.h</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="Database.cpp">Database.cpp</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="Database.h">Database.h</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="sqlite3.c">sqlite3.c</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="sqlite3.h">sqlite3.h</ProjectItem> + <ProjectItem ReplaceParameters="false" TargetFileName="SQLite3.vcxproj">SQLite3.vcxproj</ProjectItem> + <ProjectItem ReplaceParameters="false" TargetFileName="SQLite3.vcxproj.filters">SQLite3.vcxproj.filters</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="Statement.cpp">Statement.cpp</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="Statement.h">Statement.h</ProjectItem> + </Folder> + </Folder> + </Folder> + <ProjectItem ReplaceParameters="false" TargetFileName="Cordova-Metro_TemporaryKey.pfx">Cordova-Metro_TemporaryKey.pfx</ProjectItem> + <ProjectItem ReplaceParameters="true" TargetFileName="default.html">default.html</ProjectItem> + <ProjectItem ReplaceParameters="false" TargetFileName="package.appxmanifest">package.appxmanifest</ProjectItem> + </Project> + </TemplateContent> +</VSTemplate> \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/__TemplateIcon.ico ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/__TemplateIcon.ico b/windows8/framework/Cordova-Metro/__TemplateIcon.ico new file mode 100644 index 0000000..5df2ab2 Binary files /dev/null and b/windows8/framework/Cordova-Metro/__TemplateIcon.ico differ http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/css/default.css ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/css/default.css b/windows8/framework/Cordova-Metro/css/default.css new file mode 100644 index 0000000..da816d5 --- /dev/null +++ b/windows8/framework/Cordova-Metro/css/default.css @@ -0,0 +1,14 @@ +body { +} + +@media screen and (-ms-view-state: fullscreen-landscape) { +} + +@media screen and (-ms-view-state: filled) { +} + +@media screen and (-ms-view-state: snapped) { +} + +@media screen and (-ms-view-state: fullscreen-portrait) { +} http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/default.html ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/default.html b/windows8/framework/Cordova-Metro/default.html new file mode 100644 index 0000000..16222c1 --- /dev/null +++ b/windows8/framework/Cordova-Metro/default.html @@ -0,0 +1,29 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8" /> + <title>Cordova_Metro</title> + + <!-- WinJS references --> + <link href="//Microsoft.WinJS.1.0.RC/css/ui-dark.css" rel="stylesheet" /> + <script src="//Microsoft.WinJS.1.0.RC/js/base.js"></script> + <script src="//Microsoft.WinJS.1.0.RC/js/ui.js"></script> + + + <!-- Jscex references --> + + <script src="lib/Jscex/src/jscex.js"></script> + <script src="lib/Jscex/src/jscex-builderbase.js"></script> + <script src="lib/Jscex/src/jscex-parser.js"></script> + <script src="lib/Jscex/src/jscex-async.js"></script> + <script src="lib/Jscex/src/jscex-jit.js"></script> + <script src="lib/Jscex/src/jscex-promise.js"></script> + + <!-- Cordova_Metro references --> + <link href="/css/default.css" rel="stylesheet" /> + <script src="/js/default.js"></script> +</head> +<body> + <p>Content goes here</p> +</body> +</html> http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/images/logo.png ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/images/logo.png b/windows8/framework/Cordova-Metro/images/logo.png new file mode 100644 index 0000000..e26771c Binary files /dev/null and b/windows8/framework/Cordova-Metro/images/logo.png differ http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/images/smalllogo.png ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/images/smalllogo.png b/windows8/framework/Cordova-Metro/images/smalllogo.png new file mode 100644 index 0000000..1eb0d9d Binary files /dev/null and b/windows8/framework/Cordova-Metro/images/smalllogo.png differ http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/images/splashscreen.png ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/images/splashscreen.png b/windows8/framework/Cordova-Metro/images/splashscreen.png new file mode 100644 index 0000000..c951e03 Binary files /dev/null and b/windows8/framework/Cordova-Metro/images/splashscreen.png differ http://git-wip-us.apache.org/repos/asf/incubator-cordova-windows/blob/03bf0cde/windows8/framework/Cordova-Metro/images/storelogo.png ---------------------------------------------------------------------- diff --git a/windows8/framework/Cordova-Metro/images/storelogo.png b/windows8/framework/Cordova-Metro/images/storelogo.png new file mode 100644 index 0000000..dcb6727 Binary files /dev/null and b/windows8/framework/Cordova-Metro/images/storelogo.png differ