Return-Path: X-Original-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Delivered-To: apmail-incubator-callback-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 16752CD26 for ; Fri, 27 Jul 2012 00:29:21 +0000 (UTC) Received: (qmail 36346 invoked by uid 500); 27 Jul 2012 00:29:18 -0000 Delivered-To: apmail-incubator-callback-commits-archive@incubator.apache.org Received: (qmail 36273 invoked by uid 500); 27 Jul 2012 00:29:17 -0000 Mailing-List: contact callback-commits-help@incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@incubator.apache.org Delivered-To: mailing list callback-commits@incubator.apache.org Received: (qmail 35149 invoked by uid 99); 27 Jul 2012 00:29:16 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 27 Jul 2012 00:29:16 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 6B5B31930A; Fri, 27 Jul 2012 00:29:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: anis@apache.org To: callback-commits@incubator.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [54/78] [abbrv] [partial] added platform specs and basic work Message-Id: <20120727002916.6B5B31930A@tyr.zones.apache.org> Date: Fri, 27 Jul 2012 00:29:16 +0000 (UTC) http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/badaWac/Res/js/sample.js ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/badaWac/Res/js/sample.js b/lib/cordova-1.9.0/lib/badaWac/Res/js/sample.js deleted file mode 100755 index 5a1fd23..0000000 --- a/lib/cordova-1.9.0/lib/badaWac/Res/js/sample.js +++ /dev/null @@ -1,404 +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. - */ - -/* - * Device - */ - -function setDeviceInfo() { - var deviceInfo = document.getElementById("device"); - deviceInfo.innerHTML = "device.name: " + device.name + - "
device.cordova: " + device.cordova + - "
device.uuid: " + device.uuid + - "
device.version: " + device.version + - "
device.platform " + device.platform - -} - -/* - * Acceleration - */ -var accelWatchID = null; - -function getCurrentAcceleration() { - var successCallback = function(acceleration) { - var accelEm = document.getElementById("acceleration"); - accelEm.innerHTML = "X: "+acceleration.x + " Y: " + acceleration.y + " Z: " + acceleration.z; - }; - - var errorCallback = function(error) { - console.log(error); - document.getElementById("acceleration").innerHTML = "ERROR"; - }; - navigator.accelerometer.getCurrentAcceleration(successCallback, errorCallback, null); -} - -function toggleAcceleration() { - var accelBtn = document.getElementById("accelBtn"); - if(accelBtn.innerHTML == "watchAcceleration") { - watchAcceleration(); - accelBtn.innerHTML = "clearWatch"; - } else { - clearAccelerationWatch(); - accelBtn.innerHTML = "watchAcceleration"; - } -} - -function watchAcceleration() { - var successCallback = function(acceleration) { - console.log("watchAcceleration::successCallback"); - var accelEm = document.getElementById("acceleration"); - accelEm.innerHTML = "X: "+acceleration.x + " Y: " + acceleration.y + " Z: " + acceleration.z; - }; - - var errorCallback = function(error) { - console.log(JSON.stringify(error)); - document.getElementById("acceleration").innerHTML = "ERROR"; - }; - accelWatchID = navigator.accelerometer.watchAcceleration(successCallback, errorCallback, {frequency: 1000}); - console.log("watchAcceleration "+accelWatchID); -} -function clearAccelerationWatch() { - if(accelWatchID != null) { - navigator.accelerometer.clearWatch(accelWatchID); - accelWatchID = null; - document.getElementById("acceleration").innerHTML = ""; - console.log("clearAccelerationWatch"); - } -} - -/* - * Geolocation - */ - -var geoWatchID = null; - -function getCurrentPosition() { - var successCallback = function(geolocation) { - var geoEm = document.getElementById("geolocation"); - geoEm.innerHTML = "Latitude: "+geolocation.coords.latitude + " Longitude: " + geolocation.coords.longitude; - }; - - var errorCallback = function(error) { - console.log(error); - var geoEm = document.getElementById("geolocation"); - geoEm.innerHTML = "ERROR"; - }; - navigator.geolocation.getCurrentPosition(successCallback, errorCallback); -} - -function togglePosition() { - var geoBtn = document.getElementById("geoBtn"); - if(geoBtn.innerHTML == "watchPosition") { - watchPosition(); - geoBtn.innerHTML = "clearWatch"; - } else { - clearPositionWatch(); - geoBtn.innerHTML = "watchPosition"; - } -} - -function watchPosition() { - var successCallback = function(geolocation) { - console.log("watchPosition::successCallback"); - var geoEm = document.getElementById("geolocation"); - geoEm.innerHTML = "latitude: "+geolocation.coords.latitude + " longitude: " + geolocation.coords.longitude; - }; - - var errorCallback = function(error) { - console.log(error); - var geoEm = document.getElementById("geolocation"); - geoEm.innerHTML = "ERROR"; - }; - geoWatchID = navigator.geolocation.watchPosition(successCallback, errorCallback); - console.log("watchPosition "+geoWatchID); -} -function clearPositionWatch() { - if(geoWatchID != null) { - navigator.geolocation.clearWatch(geoWatchID); - geoWatchID = null; - document.getElementById("geolocation").innerHTML = ""; - console.log("clearPositionWatch"); - } -} - -/* - * Compass - */ - -var compassWatchID = null; - -function getCurrentHeading() { - var successCallback = function(heading) { - var headingEm = document.getElementById("heading"); - headingEm.innerHTML = "magnetic Heading: "+ heading.magneticHeading + - " true Heading: " + heading.trueHeading + - " heading accuracy: " + heading.headingAccuracy + - " heading timestamp " + heading.timestamp; - }; - - var errorCallback = function(error) { - console.log(error); - var headingEm = document.getElementById("heading"); - headingEm.innerHTML = "ERROR"; - }; - navigator.compass.getCurrentHeading(successCallback, errorCallback); -} - -function toggleCompass() { - var geoBtn = document.getElementById("compassBtn"); - if(geoBtn.innerHTML == "watchHeading") { - watchHeading(); - compassBtn.innerHTML = "clearWatch"; - } else { - clearHeadingWatch(); - compassBtn.innerHTML = "watchHeading"; - } -} - -function watchHeading() { - var successCallback = function(heading) { - console.log("watchHeading::successCallback"); - var headingEm = document.getElementById("heading"); - headingEm.innerHTML = "magnetic Heading: "+ heading.magneticHeading + - " true Heading: " + heading.trueHeading + - " heading accuracy: " + heading.headingAccuracy + - " heading timestamp " + heading.timestamp; - }; - - var errorCallback = function(error) { - console.log(error); - var headingEm = document.getElementById("heading"); - headingEm.innerHTML = "ERROR"; - }; - compassWatchID = navigator.compass.watchHeading(successCallback, errorCallback); - console.log("watchHeading "+compassWatchID); -} -function clearHeadingWatch() { - if(compassWatchID != null) { - navigator.compass.clearWatch(compassWatchID); - compassWatchID = null; - document.getElementById("heading").innerHTML = ""; - console.log("clearHeadingWatch"); - } -} - -/* - * Connection - */ - -function getConnection() { - var connectionEm = document.getElementById("connection"); - connectionEm.innerHTML = "Connection type "+navigator.network.connection.type; -} - -/* - * Notification - */ - -function notificationAlert() { - var notifEm = document.getElementById('result'); - var alertDismissed = function() { - console.log('alertDismissed'); - }; - navigator.notification.alert('You are the winner!', alertDismissed, 'Game Over', 'Done'); -} - -function notificationVibrate() { - navigator.notification.vibrate(2000); -} - -function notificationBeep() { - navigator.notification.beep(4, 2000); -} - -function notificationLightOn() { - navigator.notification.lightOn(2000); -} - -function cameraPreview() { - var preview = document.getElementById("preview"); - if(preview.childNodes[0]) { - navigator.camera.hidePreview("preview"); - document.getElementById("cameraControls").style.display = "none"; - } else { - navigator.camera.showPreview("preview"); - document.getElementById("cameraControls").style.display = ""; - } -} - -function startVideoCapture() { - var success = function(filename) {console.log(filename); }; - var fail = function(error) { console.log("ERROR "+JSON.stringify(error)); }; - navigator.capture.startVideoCapture(success, fail, {duration: 5000, destinationFilename: "videos/a.3gp"}); -} - -function stopVideoCapture() { - navigator.capture.stopVideoCapture(); -} - -function captureImage2() { - var success = function(filename) { - console.log(filename); - }; - var fail = function(error) { - console.log("ERROR"+JSON.stringify(error)); - }; - var options = { destinationFilename: "images/cam01.jpg", highRes: false}; - navigator.capture.captureImage(success, fail, options); -} - -function getPicture() { - var success = function(imageURI) { - var i; - var media = document.getElementById("media"); - var image = document.createElement("img"); - image.src = imageURI; - image.style.width = "256px"; - media.appendChild(image); - }; - var fail = function(error) { - console.log("ERROR"+JSON.stringify(error)); - }; - navigator.camera.getPicture(success, fail, {}); -} - -function captureImage() { - var success = function(mediaFiles) { - var i; - var media = document.getElementById("media"); - for(i = 0 ; i < mediaFiles.length ; i += 1) { - var image = document.createElement("img"); - image.src = mediaFiles[i].fullPath; - image.style.width = "256px"; - media.appendChild(image); - } - }; - var fail = function(error) { - console.log("ERROR"+JSON.stringify(error)); - }; - navigator.device.capture.captureImage(success, fail); -} - -function captureVideo() { - var success = function(mediaFiles) { - var i; - var media = document.getElementById("media"); - for(i = 0 ; i < mediaFiles.length ; i += 1) { - console.log(mediaFiles[i].fullPath); - } - }; - var fail = function(error) { - console.log(error); - }; - navigator.device.capture.captureVideo(success, fail); -} - -function createContact() { - function onSuccess(contact) { - alert("Save Success "+JSON.stringify(contact)); - }; - - function onError(contactError) { - alert("Error = " + contactError.code); - }; - - // create a new contact object - var contact = navigator.contacts.create(); - contact.displayName = "Plumber"; - contact.nickname = "Plumber"; //specify both to support all devices - - // populate some fields - var name = new ContactName(); - name.givenName = "Jackson"; - name.familyName = "Doe"; - contact.name = name; - - // save to device - contact.save(onSuccess,onError); -} - -function findContact() { - function onSuccess(contacts) { - alert(JSON.stringify(contacts)); - alert('Found ' + contacts.length + ' contacts.'); - }; - - function onError(contactError) { - alert('onError!'); - }; - - var options = new ContactFindOptions(); - options.filter="Jane"; - var fields = ["displayName", "name"]; - navigator.contacts.find(fields, onSuccess, onError, options); - -} - -function updateContact() { - function onSuccess(contact) { - alert("Save Success "+JSON.stringify(contact)); - }; - - function onError(contactError) { - alert("Error = " + contactError.code); - }; - - // create a new contact object - var contact = navigator.contacts.create(); - contact.displayName = "Plumber"; - contact.nickname = "Plumber"; //specify both to support all devices - - // populate some fields - var name = new ContactName(); - name.givenName = "Jane"; - name.familyName = "Doe"; - contact.name = name; - - // save to device - contact.save(onSuccess,onError); - - // update - name.givenName = "John"; - contact.name = name; - contact.save(onSuccess,onError); -} - -function removeContact() { - function onSuccess(contacts) { - var i, j; - var success = function(c) { - alert('contact removed!'); - }; - var error = function(c) { - alert('error removing'); - }; - for(i = 0, j = contacts.length ; i < j ; i++) { - contacts[i].remove(success, error); - } - }; - - function onError(contactError) { - alert('onError!'); - }; - var options = new ContactFindOptions(); - options.filter="Doe"; - var fields = ["displayName", "name"]; - navigator.contacts.find(fields, onSuccess, onError, options); -} \ No newline at end of file http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/badaWac/VERSION ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/badaWac/VERSION b/lib/cordova-1.9.0/lib/badaWac/VERSION deleted file mode 100755 index f8e233b..0000000 --- a/lib/cordova-1.9.0/lib/badaWac/VERSION +++ /dev/null @@ -1 +0,0 @@ -1.9.0 http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/badaWac/application.xml ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/badaWac/application.xml b/lib/cordova-1.9.0/lib/badaWac/application.xml deleted file mode 100755 index d096903..0000000 --- a/lib/cordova-1.9.0/lib/badaWac/application.xml +++ /dev/null @@ -1,51 +0,0 @@ - - - - - cordova-bada-wac - - cordova-bada-wac - cordova-bada-wac - - - - - cordova_bada_wac_icon_type4.png - - cordova_bada_wac_icon_type3.png - cordova_bada_wac_icon_type4.png - cordova_bada_wac_icon_type5.png - - - - - codova_bada_wac_splash_type4.png - - codova_bada_wac_splash_type3.png - codova_bada_wac_splash_type4.png - codova_bada_wac_splash_type5.png - - - - false - - http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/badaWac/manifest.xml ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/badaWac/manifest.xml b/lib/cordova-1.9.0/lib/badaWac/manifest.xml deleted file mode 100755 index c1d5e85..0000000 --- a/lib/cordova-1.9.0/lib/badaWac/manifest.xml +++ /dev/null @@ -1,58 +0,0 @@ - - - - - texp59v0qj - BC1078A6ABEBA3A60AA9DBDBA9A68869 - 2.0.0 - 1.2 - WebApp - - - CALENDARBOOK - - - CAMERA - - - RECORDING - - - ADDRESSBOOK - - - SYSTEM_SERVICE - - - TELEPHONY - - - MESSAGING - - - WEB_SERVICE - - - - 2.0 - - http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/LICENSE ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/LICENSE b/lib/cordova-1.9.0/lib/blackberry/LICENSE deleted file mode 100755 index ee6a935..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/LICENSE +++ /dev/null @@ -1,268 +0,0 @@ - - Apache License - Version 2.0, January 2004 - http://www.apache.org/licenses/ - - TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION - - 1. Definitions. - - "License" shall mean the terms and conditions for use, reproduction, - and distribution as defined by Sections 1 through 9 of this document. - - "Licensor" shall mean the copyright owner or entity authorized by - the copyright owner that is granting the License. - - "Legal Entity" shall mean the union of the acting entity and all - other entities that control, are controlled by, or are under common - control with that entity. For the purposes of this definition, - "control" means (i) the power, direct or indirect, to cause the - direction or management of such entity, whether by contract or - otherwise, or (ii) ownership of fifty percent (50%) or more of the - outstanding shares, or (iii) beneficial ownership of such entity. - - "You" (or "Your") shall mean an individual or Legal Entity - exercising permissions granted by this License. - - "Source" form shall mean the preferred form for making modifications, - including but not limited to software source code, documentation - source, and configuration files. - - "Object" form shall mean any form resulting from mechanical - transformation or translation of a Source form, including but - not limited to compiled object code, generated documentation, - and conversions to other media types. - - "Work" shall mean the work of authorship, whether in Source or - Object form, made available under the License, as indicated by a - copyright notice that is included in or attached to the work - (an example is provided in the Appendix below). - - "Derivative Works" shall mean any work, whether in Source or Object - form, that is based on (or derived from) the Work and for which the - editorial revisions, annotations, elaborations, or other modifications - represent, as a whole, an original work of authorship. For the purposes - of this License, Derivative Works shall not include works that remain - separable from, or merely link (or bind by name) to the interfaces of, - the Work and Derivative Works thereof. - - "Contribution" shall mean any work of authorship, including - the original version of the Work and any modifications or additions - to that Work or Derivative Works thereof, that is intentionally - submitted to Licensor for inclusion in the Work by the copyright owner - or by an individual or Legal Entity authorized to submit on behalf of - the copyright owner. For the purposes of this definition, "submitted" - means any form of electronic, verbal, or written communication sent - to the Licensor or its representatives, including but not limited to - communication on electronic mailing lists, source code control systems, - and issue tracking systems that are managed by, or on behalf of, the - Licensor for the purpose of discussing and improving the Work, but - excluding communication that is conspicuously marked or otherwise - designated in writing by the copyright owner as "Not a Contribution." - - "Contributor" shall mean Licensor and any individual or Legal Entity - on behalf of whom a Contribution has been received by Licensor and - subsequently incorporated within the Work. - - 2. Grant of Copyright License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - copyright license to reproduce, prepare Derivative Works of, - publicly display, publicly perform, sublicense, and distribute the - Work and such Derivative Works in Source or Object form. - - 3. Grant of Patent License. Subject to the terms and conditions of - this License, each Contributor hereby grants to You a perpetual, - worldwide, non-exclusive, no-charge, royalty-free, irrevocable - (except as stated in this section) patent license to make, have made, - use, offer to sell, sell, import, and otherwise transfer the Work, - where such license applies only to those patent claims licensable - by such Contributor that are necessarily infringed by their - Contribution(s) alone or by combination of their Contribution(s) - with the Work to which such Contribution(s) was submitted. If You - institute patent litigation against any entity (including a - cross-claim or counterclaim in a lawsuit) alleging that the Work - or a Contribution incorporated within the Work constitutes direct - or contributory patent infringement, then any patent licenses - granted to You under this License for that Work shall terminate - as of the date such litigation is filed. - - 4. Redistribution. You may reproduce and distribute copies of the - Work or Derivative Works thereof in any medium, with or without - modifications, and in Source or Object form, provided that You - meet the following conditions: - - (a) You must give any other recipients of the Work or - Derivative Works a copy of this License; and - - (b) You must cause any modified files to carry prominent notices - stating that You changed the files; and - - (c) You must retain, in the Source form of any Derivative Works - that You distribute, all copyright, patent, trademark, and - attribution notices from the Source form of the Work, - excluding those notices that do not pertain to any part of - the Derivative Works; and - - (d) If the Work includes a "NOTICE" text file as part of its - distribution, then any Derivative Works that You distribute must - include a readable copy of the attribution notices contained - within such NOTICE file, excluding those notices that do not - pertain to any part of the Derivative Works, in at least one - of the following places: within a NOTICE text file distributed - as part of the Derivative Works; within the Source form or - documentation, if provided along with the Derivative Works; or, - within a display generated by the Derivative Works, if and - wherever such third-party notices normally appear. The contents - of the NOTICE file are for informational purposes only and - do not modify the License. You may add Your own attribution - notices within Derivative Works that You distribute, alongside - or as an addendum to the NOTICE text from the Work, provided - that such additional attribution notices cannot be construed - as modifying the License. - - You may add Your own copyright statement to Your modifications and - may provide additional or different license terms and conditions - for use, reproduction, or distribution of Your modifications, or - for any such Derivative Works as a whole, provided Your use, - reproduction, and distribution of the Work otherwise complies with - the conditions stated in this License. - - 5. Submission of Contributions. Unless You explicitly state otherwise, - any Contribution intentionally submitted for inclusion in the Work - by You to the Licensor shall be under the terms and conditions of - this License, without any additional terms or conditions. - Notwithstanding the above, nothing herein shall supersede or modify - the terms of any separate license agreement you may have executed - with Licensor regarding such Contributions. - - 6. Trademarks. This License does not grant permission to use the trade - names, trademarks, service marks, or product names of the Licensor, - except as required for reasonable and customary use in describing the - origin of the Work and reproducing the content of the NOTICE file. - - 7. Disclaimer of Warranty. Unless required by applicable law or - agreed to in writing, Licensor provides the Work (and each - Contributor provides its Contributions) on an "AS IS" BASIS, - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or - implied, including, without limitation, any warranties or conditions - of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A - PARTICULAR PURPOSE. You are solely responsible for determining the - appropriateness of using or redistributing the Work and assume any - risks associated with Your exercise of permissions under this License. - - 8. Limitation of Liability. In no event and under no legal theory, - whether in tort (including negligence), contract, or otherwise, - unless required by applicable law (such as deliberate and grossly - negligent acts) or agreed to in writing, shall any Contributor be - liable to You for damages, including any direct, indirect, special, - incidental, or consequential damages of any character arising as a - result of this License or out of the use or inability to use the - Work (including but not limited to damages for loss of goodwill, - work stoppage, computer failure or malfunction, or any and all - other commercial damages or losses), even if such Contributor - has been advised of the possibility of such damages. - - 9. Accepting Warranty or Additional Liability. While redistributing - the Work or Derivative Works thereof, You may choose to offer, - and charge a fee for, acceptance of support, warranty, indemnity, - or other liability obligations and/or rights consistent with this - License. However, in accepting such obligations, You may act only - on Your own behalf and on Your sole responsibility, not on behalf - of any other Contributor, and only if You agree to indemnify, - defend, and hold each Contributor harmless for any liability - incurred by, or claims asserted against, such Contributor by reason - of your accepting any such warranty or additional liability. - - END OF TERMS AND CONDITIONS - - APPENDIX: How to apply the Apache License to your work. - - To apply the Apache License to your work, attach the following - boilerplate notice, with the fields enclosed by brackets "[]" - replaced with your own identifying information. (Don't include - the brackets!) The text should be enclosed in the appropriate - comment syntax for the file format. We also recommend that a - file or class name and description of purpose be included on the - same "printed page" as the copyright notice for easier - identification within third-party archives. - - Copyright [yyyy] [name of copyright owner] - - 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. - -For the template/project/lib/ant-contrib/ant-contrib-1.0b3.jar component: - - The Apache Software License, Version 1.1 - - Copyright (c) 2001-2003 Ant-Contrib project. All rights reserved. - - Redistribution and use in source and binary forms, with or without - modification, are permitted provided that the following conditions - are met: - - 1. Redistributions of source code must retain the above copyright - notice, this list of conditions and the following disclaimer. - - 2. Redistributions in binary form must reproduce the above copyright - notice, this list of conditions and the following disclaimer in - the documentation and/or other materials provided with the - distribution. - - 3. The end-user documentation included with the redistribution, if - any, must include the following acknowlegement: - "This product includes software developed by the - Ant-Contrib project (http://sourceforge.net/projects/ant-contrib)." - Alternately, this acknowlegement may appear in the software itself, - if and wherever such third-party acknowlegements normally appear. - - 4. The name Ant-Contrib must not be used to endorse or promote products - derived from this software without prior written permission. For - written permission, please contact - ant-contrib-developers@lists.sourceforge.net. - - 5. Products derived from this software may not be called "Ant-Contrib" - nor may "Ant-Contrib" appear in their names without prior written - permission of the Ant-Contrib project. - - THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - DISCLAIMED. IN NO EVENT SHALL THE ANT-CONTRIB PROJECT OR ITS - CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - SUCH DAMAGE. - ==================================================================== - -For the template/project/www/json2.js component: - - http://www.JSON.org/json2.js - 2010-03-20 - - Public Domain. - - NO WARRANTY EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK. - - See http://www.JSON.org/js.html - - - This code should be minified before deployment. - See http://javascript.crockford.com/jsmin.html - - USE YOUR OWN COPY. IT IS EXTREMELY UNWISE TO LOAD CODE FROM SERVERS YOU DO - NOT CONTROL. http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/NOTICE ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/NOTICE b/lib/cordova-1.9.0/lib/blackberry/NOTICE deleted file mode 100755 index 23360ce..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/NOTICE +++ /dev/null @@ -1,8 +0,0 @@ -Apache Cordova -Copyright 2012 The Apache Software Foundation - -This product includes software developed by -The Apache Software Foundation (http://www.apache.org) - -This product includes software developed by -Ant-Contrib project (http://sourceforge.net/projects/ant-contrib). http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/README.md ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/README.md b/lib/cordova-1.9.0/lib/blackberry/README.md deleted file mode 100755 index 35a8393..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/README.md +++ /dev/null @@ -1,90 +0,0 @@ -Cordova BlackBerry Distribution -=============================== - -Cordova BlackBerry is a framework that allows for Cordova based projects to be built for the [BlackBerry WebWorks Platform](https://bdsc.webapps.blackberry.com/html5/). Cordova based applications are, at the core, an application written with web technology: HTML, CSS and JavaScript. The Cordova BlackBerry project allows web developers to develop applications targeting BlackBerry OS 5.0+ and PlayBook devices using the common [Cordova API](http://docs.phonegap.com). - -Apache Cordova is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator project. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. - -Pre-requisites --------------- - -- Windows XP (32-bit) or Windows 7 (32-bit and 64-bit) or Mac OSX 10.6.4+ -- Java JDK 1.5 -- Apache ANT -- [BlackBerry WebWorks SDK](https://bdsc.webapps.blackberry.com/html5/download/sdk) -- PlayBook development requires [Adobe Air SDK](http://www.adobe.com/devnet/air/air-sdk-download.html) - -Directory Structure -------------------- - - sample/ ... Ready-to-run sample project - www/ ...... Barebones project assets - -### Ready-to-Run Sample Project - -The quickest way to get started with Cordova BlackBerry is to make a copy of the `sample` folder. The `sample` folder is a complete Cordova BlackBerry project including build scripts. Copy the `sample` folder to a desired location to create a new Cordova BlackBerry project. - -#### Building and Deploying a Project - -The build scripts included in the `sample` folder automate common tasks, such as compiling your project, and deploying it to simulators or devices. To see what options are available, use: - - $ cd C:\development\my_new_project - $ ant help - -Every command is in the form `ant TARGET COMMAND [options]`, where -target is either `blackberry` or `playbook`. - -To build your project into a deployable application (.cod/.jad) file: - - $ ant TARGET build - -To build your project and load it in a BlackBerry simulator: - - $ ant TARGET load-simulator - -To build your project and load it onto a USB-attached device: - - $ ant TARGET load-device - -### Barebones Project Assets - -The `www` folder contains the Cordova specific assets that must be available in a BlackBerry WebWorks project. If you have an existing BlackBerry WebWorks project, copy/merge these files into your project to enable the project for Cordova. - - ext/cordova.jar - Native Cordova API implementations for smartphones. - ext-air/ - PlayBook Adobe Air extensions for Cordova API. - playbook/cordova.js - PlayBook Cordova JavaScript API. - cordova.js - Smartphone Cordova JavaScript API. - config.xml - BlackBerry WebWorks configuration file. - plugins.xml - Cordova plugin configuration file. - -`config.xml` is a sample that you are free to alter or merge with an existing BlackBerry WebWorks configuration file. The necessary Cordova sections are contained in the `` and `` sections: - - - - - - - - - -Frequently Asked Questions --------------------------- - -__Q: My simulator screen is not refreshing and I see blocks on a clicked position.__ - -__A:__ Windows 7 and the simulator's graphics acceleration do not mix. On the simulator, set View -> Graphics Acceleration to Off. - -__Q: When I use the Cordova [Camera.getPicture API](http://docs.phonegap.com/phonegap_camera_camera.md.html#camera.getPicture) on my device, the camera never returns to my application. Why does this happen?__ - -__A:__ Cordova uses a JavaScript Extension to invoke the native camera application so the user can take a picture. When the picture is taken, Cordova will close the native camera application by emulating a key injection (pressing the back/escape button). On a physical device, users will have to set permissions to allow the application to simulate key injections. Setting application permissions is device-specific. On a Storm2 (9550), for example, select the BlackBerry button from the Home screen to get to All Applications screen, then Options > Applications > Your Application. Then select Edit Default Permissions > Interactions > Input Simulation and set it to 'Allow'. Save your changes. - -__Q: None of the Cordova APIs are working, why is that?__ - -__A:__ You probably need to update your plugins.xml file in the root of your application. - -Additional Information ----------------------- -- [Cordova home](http://incubator.apache.org/cordova/) -- [Cordova Documentation](http://docs.phonegap.com) -- [Cordova Issue Tracker](https://issues.apache.org/jira/browse/CB) -- [BlackBerry WebWorks Framework](https://bdsc.webapps.blackberry.com/html5/) http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/VERSION ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/VERSION b/lib/cordova-1.9.0/lib/blackberry/VERSION deleted file mode 100755 index f8e233b..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/VERSION +++ /dev/null @@ -1 +0,0 @@ -1.9.0 http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/create ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/create b/lib/cordova-1.9.0/lib/blackberry/bin/create deleted file mode 100755 index 0d2a720..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/create +++ /dev/null @@ -1,87 +0,0 @@ -#! /bin/sh -# 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. -# -# create a cordova/android project -# -# USAGE -# ./create [path appname] -# -set -e - -if [ -n "$1" ] && [ "$1" == "-h" ] -then - echo 'usage: create path appname' - echo 'After you have created your application, make sure to customize the project.properties file inside your app directory with your environment specifics!' - exit 0 -fi - -BUILD_PATH=$( cd "$( dirname "$0" )/.." && pwd ) -VERSION=$(cat $BUILD_PATH/VERSION) - -PROJECT_PATH=${1:-"./example"} -APPNAME=${2:-"cordovaExample"} - -# clobber any existing example -if [ -d $PROJECT_PATH ] -then - echo "Project already exists! Delete and recreate" - exit 1 -fi - -# cleanup after exit and/or on error -function on_exit { - echo "Cleaning up ..." - [ -d $BUILD_PATH/build ] && rm -rf $BUILD_PATH/build - [ -d $BUILD_PATH/dist ] && rm -rf $BUILD_PATH/dist - echo "Remember to update the project.properties file inside your application directory!" -} - -function on_error { - echo "An error occured. Deleting project..." - [ -d $PROJECT_PATH ] && rm -rf $PROJECT_PATH -} - -# we do not want the script to silently fail -trap on_error ERR -trap on_exit EXIT - -ANT=$(which ant) - -MANIFEST_PATH=$PROJECT_PATH/www/config.xml - -# compile cordova.js and cordova.jar if in source, ignore if in distribution -if [ ! -e $BUILD_PATH/www/ext/cordova-$VERSION.jar ] && [ -d $BUILD_PATH/framework ] -then - echo "Building cordova-$VERSION.jar and cordova-$VERSION.js ..." - (cd $BUILD_PATH && $ANT dist &> /dev/null ) - - # copy project template - echo "Copying assets and resources ..." - cp -r $BUILD_PATH/dist/sample/. $PROJECT_PATH -else - # copy project template if in distribution - echo "Copying assets and resources ..." - cp -r $BUILD_PATH/sample/. $PROJECT_PATH -fi - -# re-copy over cordova scripts because ant doesn't preserve file modes when copying -cp -r -p $BUILD_PATH/bin/templates/project/cordova $PROJECT_PATH - -# interpolate the app name into config.xml -echo "Updating config.xml ..." -sed -i '' -e "s/__NAME__/${APPNAME}/g" $MANIFEST_PATH http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/create.bat ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/create.bat b/lib/cordova-1.9.0/lib/blackberry/bin/create.bat deleted file mode 100755 index 7b0b58e..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/create.bat +++ /dev/null @@ -1,14 +0,0 @@ -@ECHO OFF -IF NOT DEFINED JAVA_HOME GOTO MISSING -FOR %%X in (ant.bat) do ( - SET FOUND=%%~$PATH:X - IF NOT DEFINED FOUND GOTO MISSING -) -cscript %~dp0\create.js %* -GOTO END -:MISSING -ECHO Missing one of the following: -ECHO JDK: http://java.oracle.com -ECHO Apache ant: http://ant.apache.org -EXIT /B 1 -:END http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/create.js ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/create.js b/lib/cordova-1.9.0/lib/blackberry/bin/create.js deleted file mode 100755 index 2b777c2..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/create.js +++ /dev/null @@ -1,94 +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. -*/ - -/* - * create a cordova/android project - * - * USAGE - * ./create [path package activity] - */ - -var fso = WScript.CreateObject('Scripting.FileSystemObject'); - -function read(filename) { - var fso=WScript.CreateObject("Scripting.FileSystemObject"); - var f=fso.OpenTextFile(filename, 1); - var s=f.ReadAll(); - f.Close(); - return s; -} -function write(filename, contents) { - var fso=WScript.CreateObject("Scripting.FileSystemObject"); - var f=fso.OpenTextFile(filename, 2, true); - f.Write(contents); - f.Close(); -} -function replaceInFile(filename, regexp, replacement) { - write(filename, read(filename).replace(regexp, replacement)); -} -function exec(s, output) { - var o=shell.Exec(s); - while (o.Status == 0) { - WScript.Sleep(100); - } - //WScript.Echo("Command exited with code " + o.Status); -} - -function cleanup() { - // Cleanup - if(fso.FolderExists(ROOT + '\\dist')) { - fso.DeleteFolder(ROOT + '\\dist', true); - } - if(fso.FolderExists(ROOT + '\\build')) { - fso.DeleteFolder(ROOT + '\\build'); - } -} - -var args = WScript.Arguments, PROJECT_PATH="example", - APPNAME="cordovaExample", - shell=WScript.CreateObject("WScript.Shell"); - -// working dir -var ROOT = WScript.ScriptFullName.split('\\bin\\create.js').join(''); - -if (args.Count() == 2) { - PROJECT_PATH=args(0); - APPNAME=args(1); -} - -if(fso.FolderExists(PROJECT_PATH)) { - WScript.Echo("Project directory already exists! Please remove it first."); - WScript.Quit(1); -} - -var MANIFEST_PATH=PROJECT_PATH+'\\www\\config.xml'; -var VERSION=read(ROOT+'\\VERSION').replace(/\r\n/,'').replace(/\n/,''); - -if(fso.FolderExists(ROOT+'\\framework')){ - exec('ant.bat -f '+ ROOT +'\\build.xml dist'); - // copy in the project template - exec('cmd /c xcopy '+ ROOT + '\\dist\\sample\\* '+PROJECT_PATH+' /I /S /Y'); -}else{ - // copy in the project template - exec('cmd /c xcopy '+ ROOT + '\\sample\\* '+PROJECT_PATH+' /I /S /Y'); -} - -replaceInFile(MANIFEST_PATH, /__NAME__/, APPNAME); - -cleanup(); http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/templates/dist/README.md ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/templates/dist/README.md b/lib/cordova-1.9.0/lib/blackberry/bin/templates/dist/README.md deleted file mode 100755 index 35a8393..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/templates/dist/README.md +++ /dev/null @@ -1,90 +0,0 @@ -Cordova BlackBerry Distribution -=============================== - -Cordova BlackBerry is a framework that allows for Cordova based projects to be built for the [BlackBerry WebWorks Platform](https://bdsc.webapps.blackberry.com/html5/). Cordova based applications are, at the core, an application written with web technology: HTML, CSS and JavaScript. The Cordova BlackBerry project allows web developers to develop applications targeting BlackBerry OS 5.0+ and PlayBook devices using the common [Cordova API](http://docs.phonegap.com). - -Apache Cordova is an effort undergoing incubation at The Apache Software Foundation (ASF), sponsored by the Apache Incubator project. Incubation is required of all newly accepted projects until a further review indicates that the infrastructure, communications, and decision making process have stabilized in a manner consistent with other successful ASF projects. While incubation status is not necessarily a reflection of the completeness or stability of the code, it does indicate that the project has yet to be fully endorsed by the ASF. - -Pre-requisites --------------- - -- Windows XP (32-bit) or Windows 7 (32-bit and 64-bit) or Mac OSX 10.6.4+ -- Java JDK 1.5 -- Apache ANT -- [BlackBerry WebWorks SDK](https://bdsc.webapps.blackberry.com/html5/download/sdk) -- PlayBook development requires [Adobe Air SDK](http://www.adobe.com/devnet/air/air-sdk-download.html) - -Directory Structure -------------------- - - sample/ ... Ready-to-run sample project - www/ ...... Barebones project assets - -### Ready-to-Run Sample Project - -The quickest way to get started with Cordova BlackBerry is to make a copy of the `sample` folder. The `sample` folder is a complete Cordova BlackBerry project including build scripts. Copy the `sample` folder to a desired location to create a new Cordova BlackBerry project. - -#### Building and Deploying a Project - -The build scripts included in the `sample` folder automate common tasks, such as compiling your project, and deploying it to simulators or devices. To see what options are available, use: - - $ cd C:\development\my_new_project - $ ant help - -Every command is in the form `ant TARGET COMMAND [options]`, where -target is either `blackberry` or `playbook`. - -To build your project into a deployable application (.cod/.jad) file: - - $ ant TARGET build - -To build your project and load it in a BlackBerry simulator: - - $ ant TARGET load-simulator - -To build your project and load it onto a USB-attached device: - - $ ant TARGET load-device - -### Barebones Project Assets - -The `www` folder contains the Cordova specific assets that must be available in a BlackBerry WebWorks project. If you have an existing BlackBerry WebWorks project, copy/merge these files into your project to enable the project for Cordova. - - ext/cordova.jar - Native Cordova API implementations for smartphones. - ext-air/ - PlayBook Adobe Air extensions for Cordova API. - playbook/cordova.js - PlayBook Cordova JavaScript API. - cordova.js - Smartphone Cordova JavaScript API. - config.xml - BlackBerry WebWorks configuration file. - plugins.xml - Cordova plugin configuration file. - -`config.xml` is a sample that you are free to alter or merge with an existing BlackBerry WebWorks configuration file. The necessary Cordova sections are contained in the `` and `` sections: - - - - - - - - - -Frequently Asked Questions --------------------------- - -__Q: My simulator screen is not refreshing and I see blocks on a clicked position.__ - -__A:__ Windows 7 and the simulator's graphics acceleration do not mix. On the simulator, set View -> Graphics Acceleration to Off. - -__Q: When I use the Cordova [Camera.getPicture API](http://docs.phonegap.com/phonegap_camera_camera.md.html#camera.getPicture) on my device, the camera never returns to my application. Why does this happen?__ - -__A:__ Cordova uses a JavaScript Extension to invoke the native camera application so the user can take a picture. When the picture is taken, Cordova will close the native camera application by emulating a key injection (pressing the back/escape button). On a physical device, users will have to set permissions to allow the application to simulate key injections. Setting application permissions is device-specific. On a Storm2 (9550), for example, select the BlackBerry button from the Home screen to get to All Applications screen, then Options > Applications > Your Application. Then select Edit Default Permissions > Interactions > Input Simulation and set it to 'Allow'. Save your changes. - -__Q: None of the Cordova APIs are working, why is that?__ - -__A:__ You probably need to update your plugins.xml file in the root of your application. - -Additional Information ----------------------- -- [Cordova home](http://incubator.apache.org/cordova/) -- [Cordova Documentation](http://docs.phonegap.com) -- [Cordova Issue Tracker](https://issues.apache.org/jira/browse/CB) -- [BlackBerry WebWorks Framework](https://bdsc.webapps.blackberry.com/html5/) http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/blackberry.xml ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/blackberry.xml b/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/blackberry.xml deleted file mode 100755 index bce3051..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/blackberry.xml +++ /dev/null @@ -1,356 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -NAME - ${ant.project.name} - -SYNOPSIS - ant TARGET COMMAND [-D<argument>=<value>]... - -DESCRIPTION - You can build and deploy your project to a device or simulator. - -TARGETS - blackberry ........ Builds a cod file and deploys to a device or simulator - - playbook .......... Builds a bar file and deploys to a device or simulator - -COMMANDS - help .............. Show this help menu. - ant, ant help - - load-device ....... Builds and deploys project to a connected USB device. - ant load-device - - load-simulator .... Builds and deploys project to default simulator. - ant load-simulator - - build ............. Compiles and packages the project for deployment. - ant build - - clean ............. Remove all files from the build/ directory. - ant clean - - clean-device ...... Remove this project from the connected USB device. - ant clean-device - - clean-simulator ... Remove this project from the simulator (takes a while). - ant clean-simulator - -GETTING STARTED - 1. Edit project.properties - - 2. <ant load-simulator> to run the project on the simulator - - 3. Customize your project by editing www/config.xml - - 4. To run the project on a BlackBerry device, you will need to obtain - code signing keys from RIM. Once you have the key, a project is - installed by connecting a BlackBerry via USB and running - <ant load-device>. - - - http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/build.xml ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/build.xml b/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/build.xml deleted file mode 100755 index bde73c0..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/build.xml +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -NAME - ${ant.project.name} - -SYNOPSIS - ant TARGET COMMAND [-D<argument>=<value>]... - -DESCRIPTION - You can build and deploy your project to a device or simulator. - -TARGETS - blackberry ........ Builds a cod file and deploys to a device or simulator - - playbook .......... Builds a bar file and deploys to a device or simulator - -COMMANDS - help .............. Show this help menu. - ant, ant help - - load-device ....... Builds and deploys project to a connected USB device. - ant load-device - - load-simulator .... Builds and deploys project to default simulator. - ant load-simulator - - build ............. Compiles and packages the project for deployment. - ant build - - clean ............. Remove all files from the build/ directory. - ant clean - - clean-device ...... Remove this project from the connected USB device. - ant clean-device - - clean-simulator ... Remove this project from the simulator (takes a while). - ant clean-simulator - -GETTING STARTED - 1. Edit project.properties - - 2. <ant load-simulator> to run the project on the simulator - - 3. Customize your project by editing www/config.xml - - 4. To run the project on a BlackBerry device, you will need to obtain - code signing keys from RIM. Once you have the key, a project is - installed by connecting a BlackBerry via USB and running - <ant load-device>. - - - http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/debug ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/debug b/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/debug deleted file mode 100755 index 2b10cff..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/debug +++ /dev/null @@ -1,53 +0,0 @@ -#! /bin/sh -# 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. - -ANT=$(which ant) - -if [ -z "$1" ] -then - echo 'usage: debug ' - echo 'where can be one of "blackberry" or "playbook"' - echo 'NOTE: please customize the project.properties file first before using this command!' - exit 0 -fi - -if [ "$1" == "blackberry" ] -then - echo 'Do you have a BlackBerry smartphone connected to your computer? (y/n)' - read DEVICE - if [ $DEVICE == "y" ] - then - $ANT blackberry debug-device - else - $ANT blackberry load-simulator - fi -else - if [ "$1" == "playbook" ] - then - echo 'Do you have a BlackBerry Playbook connected to your computer? (y/n)' - read DEVICE - if [ $DEVICE == "y" ] - then - $ANT playbook debug-device - else - $ANT playbook load-simulator - fi - else - echo 'Platform not recognized! Please use one of "blackberry" or "playbook" for the platform parameter.' - fi -fi http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/emulate ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/emulate b/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/emulate deleted file mode 100755 index dc368b5..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/cordova/emulate +++ /dev/null @@ -1,40 +0,0 @@ -#! /bin/sh -# 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. - -ANT=$(which ant) - -if [ -z "$1" ] -then - echo 'usage: emulate ' - echo 'where can be one of "blackberry" or "playbook"' - echo 'NOTE: please customize the project.properties file first before using this command!' - exit 0 -fi - -if [ "$1" == "blackberry" ] -then - $ANT blackberry load-simulator -else - if [ "$1" == "playbook" ] - then - $ANT playbook load-simulator - else - echo 'Platform not recognized! Please use one of "blackberry" or "playbook" for the platform parameter.' - fi -fi - http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/LICENSE.txt ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/LICENSE.txt b/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/LICENSE.txt deleted file mode 100755 index 4d8c2fb..0000000 --- a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/LICENSE.txt +++ /dev/null @@ -1,47 +0,0 @@ -/* - * The Apache Software License, Version 1.1 - * - * Copyright (c) 2001-2003 Ant-Contrib project. All rights reserved. - * - * Redistribution and use in source and binary forms, with or without - * modification, are permitted provided that the following conditions - * are met: - * - * 1. Redistributions of source code must retain the above copyright - * notice, this list of conditions and the following disclaimer. - * - * 2. Redistributions in binary form must reproduce the above copyright - * notice, this list of conditions and the following disclaimer in - * the documentation and/or other materials provided with the - * distribution. - * - * 3. The end-user documentation included with the redistribution, if - * any, must include the following acknowlegement: - * "This product includes software developed by the - * Ant-Contrib project (http://sourceforge.net/projects/ant-contrib)." - * Alternately, this acknowlegement may appear in the software itself, - * if and wherever such third-party acknowlegements normally appear. - * - * 4. The name Ant-Contrib must not be used to endorse or promote products - * derived from this software without prior written permission. For - * written permission, please contact - * ant-contrib-developers@lists.sourceforge.net. - * - * 5. Products derived from this software may not be called "Ant-Contrib" - * nor may "Ant-Contrib" appear in their names without prior written - * permission of the Ant-Contrib project. - * - * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED - * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES - * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE - * DISCLAIMED. IN NO EVENT SHALL THE ANT-CONTRIB PROJECT OR ITS - * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, - * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT - * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF - * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND - * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, - * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT - * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF - * SUCH DAMAGE. - * ==================================================================== - */ http://git-wip-us.apache.org/repos/asf/incubator-cordova-labs/blob/244fae11/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/ant-contrib-1.0b3.jar ---------------------------------------------------------------------- diff --git a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/ant-contrib-1.0b3.jar b/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/ant-contrib-1.0b3.jar deleted file mode 100755 index 0625376..0000000 Binary files a/lib/cordova-1.9.0/lib/blackberry/bin/templates/project/lib/ant-contrib/ant-contrib-1.0b3.jar and /dev/null differ