You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by pu...@apache.org on 2013/06/07 00:27:03 UTC

[06/19] removed everything that is not library code or template

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/05ef0316/windows8/samples/Notification Test/Notification Test/css/default.css
----------------------------------------------------------------------
diff --git a/windows8/samples/Notification Test/Notification Test/css/default.css b/windows8/samples/Notification Test/Notification Test/css/default.css
deleted file mode 100644
index da816d5..0000000
--- a/windows8/samples/Notification Test/Notification Test/css/default.css	
+++ /dev/null
@@ -1,14 +0,0 @@
-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/cordova-windows/blob/05ef0316/windows8/samples/Notification Test/Notification Test/images/logo.png
----------------------------------------------------------------------
diff --git a/windows8/samples/Notification Test/Notification Test/images/logo.png b/windows8/samples/Notification Test/Notification Test/images/logo.png
deleted file mode 100644
index 86a48a8..0000000
Binary files a/windows8/samples/Notification Test/Notification Test/images/logo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/05ef0316/windows8/samples/Notification Test/Notification Test/images/smalllogo.png
----------------------------------------------------------------------
diff --git a/windows8/samples/Notification Test/Notification Test/images/smalllogo.png b/windows8/samples/Notification Test/Notification Test/images/smalllogo.png
deleted file mode 100644
index 0e648ef..0000000
Binary files a/windows8/samples/Notification Test/Notification Test/images/smalllogo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/05ef0316/windows8/samples/Notification Test/Notification Test/images/splashscreen.png
----------------------------------------------------------------------
diff --git a/windows8/samples/Notification Test/Notification Test/images/splashscreen.png b/windows8/samples/Notification Test/Notification Test/images/splashscreen.png
deleted file mode 100644
index d1e6c98..0000000
Binary files a/windows8/samples/Notification Test/Notification Test/images/splashscreen.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/05ef0316/windows8/samples/Notification Test/Notification Test/images/storelogo.png
----------------------------------------------------------------------
diff --git a/windows8/samples/Notification Test/Notification Test/images/storelogo.png b/windows8/samples/Notification Test/Notification Test/images/storelogo.png
deleted file mode 100644
index dd00478..0000000
Binary files a/windows8/samples/Notification Test/Notification Test/images/storelogo.png and /dev/null differ

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/05ef0316/windows8/samples/Notification Test/Notification Test/index.html
----------------------------------------------------------------------
diff --git a/windows8/samples/Notification Test/Notification Test/index.html b/windows8/samples/Notification Test/Notification Test/index.html
deleted file mode 100644
index d230cee..0000000
--- a/windows8/samples/Notification Test/Notification Test/index.html	
+++ /dev/null
@@ -1,44 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-    <meta charset="utf-8" />
-    <title>Cordova_Metro</title>
-
-    
-    <!-- Cordova_Metro references -->
-    <link href="/css/default.css" rel="stylesheet" />
-    <script src="/cordova.js"></script>
-</head>
-<body>
-    <button id="btnAlert" onclick="alertFunc()">Alert</button>
-    <button id="btnConfirm" onclick="confirm()">Confirm</button>
-    <br />
-    <p>Title: <input id="inTitle" value="Hiya"/></p>
-    <p>Button: <input id="inButtonName" value="Yes,No"/></p>
-    <p>Message: <input id="inMessage" value="Hit me!"/></p>
-    <p id="status"></p>
-
-    <script type="text/javascript">
-        function id (elementId) {
-            return document.getElementById(elementId);
-        };
-        function status (message) {
-            id('status').innerHTML = message;
-        };
-        function alertFunc() {
-            navigator.notification.alert(id('inMessage').value, function () {
-                status('Alert hit!');
-            }, id('inTitle').value, id('inButtonName').value);
-            navigator.notification
-        };
-        function confirm() {
-            navigator.notification.confirm(id('inMessage').value, function (i) {
-                status('Confirm hit button '+i+'!');
-            }, id('inTitle').value, id('inButtonName').value);
-        };
-
-    </script>
-
-</body>
-</html>
-

http://git-wip-us.apache.org/repos/asf/cordova-windows/blob/05ef0316/windows8/samples/Notification Test/Notification Test/package.appxmanifest
----------------------------------------------------------------------
diff --git a/windows8/samples/Notification Test/Notification Test/package.appxmanifest b/windows8/samples/Notification Test/Notification Test/package.appxmanifest
deleted file mode 100644
index 99d30f3..0000000
--- a/windows8/samples/Notification Test/Notification Test/package.appxmanifest	
+++ /dev/null
@@ -1,74 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
-  <Identity Name="a2bef493-a029-424e-b455-47c772af0d0e" Version="1.0.0.0" Publisher="CN=Cordova" />
-  <Properties>
-    <DisplayName>Cordova-Metro</DisplayName>
-    <PublisherDisplayName>Cordova</PublisherDisplayName>
-    <Logo>images\storelogo.png</Logo>
-  </Properties>
-  <Prerequisites>
-    <OSMinVersion>6.2.0</OSMinVersion>
-    <OSMaxVersionTested>6.2.0</OSMaxVersionTested>
-  </Prerequisites>
-  <Resources>
-    <Resource Language="x-generate" />
-  </Resources>
-  <Applications>
-    <Application Id="App" StartPage="index.html">
-      <VisualElements DisplayName="CordovaNotifications" Logo="images\logo.png" SmallLogo="images\smalllogo.png" Description="Cordova-MetroApp" ForegroundText="light" BackgroundColor="#464646">
-        <DefaultTile ShowName="allLogos" />
-        <SplashScreen Image="images\splashscreen.png" />
-      </VisualElements>
-      <Extensions>
-        <Extension Category="windows.fileOpenPicker">
-          <FileOpenPicker>
-            <SupportedFileTypes>
-              <SupportsAnyFileType />
-            </SupportedFileTypes>
-          </FileOpenPicker>
-        </Extension>
-        <Extension Category="windows.fileSavePicker">
-          <FileSavePicker>
-            <SupportedFileTypes>
-              <SupportsAnyFileType />
-            </SupportedFileTypes>
-          </FileSavePicker>
-        </Extension>
-        <Extension Category="windows.fileTypeAssociation">
-          <FileTypeAssociation Name="all">
-            <EditFlags OpenIsSafe="true" />
-            <SupportedFileTypes>
-              <FileType>.uri</FileType>
-              <FileType>.txt</FileType>
-              <FileType>.file</FileType>
-              <FileType>.methods</FileType>
-              <FileType>.createWriter</FileType>
-              <FileType>.dir</FileType>
-              <FileType>.empty</FileType>
-              <FileType>.err</FileType>
-              <FileType>.xml</FileType>
-              <FileType>.json</FileType>
-              <FileType>.js</FileType>
-              <FileType>.jpg</FileType>
-              <FileType>.png</FileType>
-              <FileType>.mp4</FileType>
-              <FileType>.mp3</FileType>
-              <FileType>.path</FileType>
-            </SupportedFileTypes>
-          </FileTypeAssociation>
-        </Extension>
-      </Extensions>
-    </Application>
-  </Applications>
-  <Capabilities>
-    <Capability Name="videosLibrary" />
-    <Capability Name="picturesLibrary" />
-    <Capability Name="musicLibrary" />
-    <Capability Name="enterpriseAuthentication" />
-    <Capability Name="documentsLibrary" />
-    <Capability Name="internetClient" />
-    <DeviceCapability Name="microphone" />
-    <DeviceCapability Name="location" />
-    <DeviceCapability Name="webcam" />
-  </Capabilities>
-</Package>
\ No newline at end of file