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/10/31 01:50:50 UTC

[1/2] js commit: windows8 - cleanup and moved window.alert stuff to platform init

Updated Branches:
  refs/heads/2.9.x d138f5d6c -> 835f00ec9


windows8 - cleanup and moved window.alert stuff to platform init


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/5d699b7c
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/5d699b7c
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/5d699b7c

Branch: refs/heads/2.9.x
Commit: 5d699b7c1e191b827540729d4047710affafc70e
Parents: d138f5d
Author: purplecabbage <pu...@gmail.com>
Authored: Wed Oct 30 14:30:17 2013 -0700
Committer: purplecabbage <pu...@gmail.com>
Committed: Wed Oct 30 14:30:17 2013 -0700

----------------------------------------------------------------------
 lib/windows8/platform.js                        |  3 ++
 lib/windows8/plugin/windows8/console.js         | 46 --------------------
 lib/windows8/plugin/windows8/console/symbols.js | 24 ----------
 .../plugin/windows8/notification/plugininit.js  | 23 ----------
 4 files changed, 3 insertions(+), 93 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/5d699b7c/lib/windows8/platform.js
----------------------------------------------------------------------
diff --git a/lib/windows8/platform.js b/lib/windows8/platform.js
index 3b3076a..37f331f 100755
--- a/lib/windows8/platform.js
+++ b/lib/windows8/platform.js
@@ -44,6 +44,9 @@ module.exports = {
 
         modulemapper.mapModules(window);
 
+        window.alert = window.alert || require("cordova/plugin/notification").alert;
+        window.confirm = window.confirm || require("cordova/plugin/notification").confirm;
+
         var onWinJSReady = function () {
             var app = WinJS.Application;
             var checkpointHandler = function checkpointHandler() {

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/5d699b7c/lib/windows8/plugin/windows8/console.js
----------------------------------------------------------------------
diff --git a/lib/windows8/plugin/windows8/console.js b/lib/windows8/plugin/windows8/console.js
deleted file mode 100644
index a71a2c5..0000000
--- a/lib/windows8/plugin/windows8/console.js
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- *
- * 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.
- *
-*/
-
-
-if(!console || !console.log)
-{
-    var exec = require('cordova/exec');
-
-    var debugConsole = {
-        log:function(msg){
-            exec(null,null,"DebugConsole","log",msg);
-        },
-        warn:function(msg){
-            exec(null,null,"DebugConsole","warn",msg);
-        },
-        error:function(msg){
-            exec(null,null,"DebugConsole","error",msg);
-        }
-    };
-
-    module.exports = debugConsole;
-}
-else if(console && console.log) {
-
-    console.log("console.log exists already!");
-    console.warn = console.warn || function(msg){console.log("warn:"+msg);};
-    console.error = console.error || function(msg){console.log("error:"+msg);};
-}

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/5d699b7c/lib/windows8/plugin/windows8/console/symbols.js
----------------------------------------------------------------------
diff --git a/lib/windows8/plugin/windows8/console/symbols.js b/lib/windows8/plugin/windows8/console/symbols.js
deleted file mode 100644
index c91f429..0000000
--- a/lib/windows8/plugin/windows8/console/symbols.js
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * 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.
- *
-*/
-
-
-var modulemapper = require('cordova/modulemapper');
-
-modulemapper.clobbers('cordova/plugin/windows8/console', 'navigator.console');

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/5d699b7c/lib/windows8/plugin/windows8/notification/plugininit.js
----------------------------------------------------------------------
diff --git a/lib/windows8/plugin/windows8/notification/plugininit.js b/lib/windows8/plugin/windows8/notification/plugininit.js
deleted file mode 100644
index 38ba60f..0000000
--- a/lib/windows8/plugin/windows8/notification/plugininit.js
+++ /dev/null
@@ -1,23 +0,0 @@
-/*
- * 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.
- *
-*/
-
-window.alert = window.alert || require("cordova/plugin/notification").alert;
-window.confirm = window.confirm || require("cordova/plugin/notification").confirm;
-


[2/2] js commit: windows8 remove unused symbols

Posted by pu...@apache.org.
windows8 remove unused symbols


Project: http://git-wip-us.apache.org/repos/asf/cordova-js/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-js/commit/835f00ec
Tree: http://git-wip-us.apache.org/repos/asf/cordova-js/tree/835f00ec
Diff: http://git-wip-us.apache.org/repos/asf/cordova-js/diff/835f00ec

Branch: refs/heads/2.9.x
Commit: 835f00ec9b630b79dfeac1a455c43bb80dce30f6
Parents: 5d699b7
Author: purplecabbage <pu...@gmail.com>
Authored: Wed Oct 30 17:50:20 2013 -0700
Committer: purplecabbage <pu...@gmail.com>
Committed: Wed Oct 30 17:50:20 2013 -0700

----------------------------------------------------------------------
 lib/windows8/plugin/capture/symbols.js | 31 -----------------------------
 lib/windows8/plugin/file/symbols.js    | 27 -------------------------
 lib/windows8/plugin/media/symbols.js   | 25 -----------------------
 3 files changed, 83 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-js/blob/835f00ec/lib/windows8/plugin/capture/symbols.js
----------------------------------------------------------------------
diff --git a/lib/windows8/plugin/capture/symbols.js b/lib/windows8/plugin/capture/symbols.js
deleted file mode 100644
index d47db46..0000000
--- a/lib/windows8/plugin/capture/symbols.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * 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.
- *
-*/
-
-var modulemapper = require('cordova/modulemapper');
-
-modulemapper.clobbers('cordova/plugin/CaptureError', 'CaptureError');
-modulemapper.clobbers('cordova/plugin/CaptureAudioOptions', 'CaptureAudioOptions');
-modulemapper.clobbers('cordova/plugin/CaptureImageOptions', 'CaptureImageOptions');
-modulemapper.clobbers('cordova/plugin/CaptureVideoOptions', 'CaptureVideoOptions');
-modulemapper.clobbers('cordova/plugin/MediaFile', 'MediaFile');
-modulemapper.clobbers('cordova/plugin/MediaFileData', 'MediaFileData');
-modulemapper.clobbers('cordova/plugin/capture', 'navigator.device.capture');
-
-modulemapper.merges('cordova/plugin/windows8/MediaFile', 'MediaFile');

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/835f00ec/lib/windows8/plugin/file/symbols.js
----------------------------------------------------------------------
diff --git a/lib/windows8/plugin/file/symbols.js b/lib/windows8/plugin/file/symbols.js
deleted file mode 100644
index 12a1c8c..0000000
--- a/lib/windows8/plugin/file/symbols.js
+++ /dev/null
@@ -1,27 +0,0 @@
-/*
- * 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.
- *
-*/
-
-
-var modulemapper = require('cordova/modulemapper'),
-    symbolshelper = require('cordova/plugin/file/symbolshelper');
-
-symbolshelper(modulemapper.defaults);
-modulemapper.clobbers('cordova/plugin/File', 'File');
-modulemapper.clobbers('cordova/plugin/FileReader', 'FileReader');

http://git-wip-us.apache.org/repos/asf/cordova-js/blob/835f00ec/lib/windows8/plugin/media/symbols.js
----------------------------------------------------------------------
diff --git a/lib/windows8/plugin/media/symbols.js b/lib/windows8/plugin/media/symbols.js
deleted file mode 100644
index 2039a1f..0000000
--- a/lib/windows8/plugin/media/symbols.js
+++ /dev/null
@@ -1,25 +0,0 @@
-/*
- * 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.
- *
-*/
-
-
-var modulemapper = require('cordova/modulemapper');
-
-modulemapper.defaults('cordova/plugin/Media', 'Media');
-modulemapper.clobbers('cordova/plugin/MediaError', 'MediaError');