Return-Path: X-Original-To: apmail-cordova-commits-archive@www.apache.org Delivered-To: apmail-cordova-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id E826AD8D7 for ; Mon, 4 Mar 2013 19:32:59 +0000 (UTC) Received: (qmail 65332 invoked by uid 500); 4 Mar 2013 19:32:55 -0000 Delivered-To: apmail-cordova-commits-archive@cordova.apache.org Received: (qmail 65269 invoked by uid 500); 4 Mar 2013 19:32:55 -0000 Mailing-List: contact commits-help@cordova.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: callback-dev@cordova.apache.org Delivered-To: mailing list commits@cordova.apache.org Received: (qmail 63123 invoked by uid 99); 4 Mar 2013 19:32:53 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Mar 2013 19:32:52 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id C20C5314765; Mon, 4 Mar 2013 19:32:52 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anis@apache.org To: commits@cordova.apache.org X-Mailer: ASF-Git Admin Mailer Subject: [14/91] [abbrv] never ever check in node modules. baaad. Message-Id: <20130304193252.C20C5314765@tyr.zones.apache.org> Date: Mon, 4 Mar 2013 19:32:52 +0000 (UTC) http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/19cf42ee/node_modules/plist/package.json ---------------------------------------------------------------------- diff --git a/node_modules/plist/package.json b/node_modules/plist/package.json deleted file mode 100644 index ef3a9ca..0000000 --- a/node_modules/plist/package.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "name": "plist", - "description": "Mac OS X Plist parser/builder for NodeJS. Convert a Plist file or string into a native JS object and native JS object into a Plist file.", - "version": "0.4.0", - "author": { - "name": "Nathan Rajlich", - "email": "nathan@tootallnate.net" - }, - "contributors": [ - { - "name": "Hans Huebner", - "email": "hans.huebner@gmail.com" - }, - { - "name": "Pierre Metrailler" - }, - { - "name": "Mike Reinstein", - "email": "reinstein.mike@gmail.com" - } - ], - "repository": { - "type": "git", - "url": "git://github.com/TooTallNate/node-plist.git" - }, - "keywords": [ - "apple", - "mac", - "plist", - "parser", - "xml" - ], - "main": "./lib/plist", - "dependencies": { - "xmlbuilder": "0.4.x", - "xmldom": "0.1.x" - }, - "devDependencies": {}, - "scripts": { - "test": "nodeunit tests" - }, - "engines": { - "node": ">= 0.1.100" - }, - "readme": "# node-plist\n\nProvides facilities for reading and writing Mac OS X Plist (property list) files. These are often used in programming OS X and iOS applications, as well as the iTunes\nconfiguration XML file.\n\nPlist files represent stored programming \"object\"s. They are very similar\nto JSON. A valid Plist file is representable as a native JavaScript Object and vice-versa.\n\n## Tests\n`npm test`\n\n## Usage\nParsing a plist from filename\n``` javascript\nvar plist = require('plist');\n\nvar obj = plist.parseFileSync('myPlist.plist');\nconsole.log(JSON.stringify(obj));\n});\n```\n\nParsing a plist from string payload\n``` javascript\nvar plist = require('plist');\n\nvar obj = plist.parseStringSync('Hello World!');\nconsole.log(obj); // Hello World!\n});\n```\n\nGiven an existing JavaScript Object, you can turn it into an XML document that complies with the plist DTD\n\n``` javascript\nvar plist = require('plist');\n\nconsole.log(plist .build({'foo' : 'bar'}).toString());\n```\n\n\n\n### Deprecated methods\nThese functions work, but may be removed in a future release. version 0.4.x added Sync versions of these functions.\n\nParsing a plist from filename\n``` javascript\nvar plist = require('plist');\n\nplist.parseFile('myPlist.plist', function(err, obj) {\n if (err) throw err;\n\n console.log(JSON.stringify(obj));\n});\n```\n\nParsing a plist from string payload\n``` javascript\nvar plist = require('plist');\n\nplist.parseString('Hello World!', function(err, obj) {\n if (err) throw err;\n\n console.log(obj[0]); // Hello World!\n});\n```\n", - "_id": "plist@0.4.0", - "_from": "plist@0.4.x" -} http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/19cf42ee/node_modules/plist/tests/Cordova.plist ---------------------------------------------------------------------- diff --git a/node_modules/plist/tests/Cordova.plist b/node_modules/plist/tests/Cordova.plist deleted file mode 100644 index 362b754..0000000 --- a/node_modules/plist/tests/Cordova.plist +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - UIWebViewBounce - - TopActivityIndicator - gray - EnableLocation - - EnableViewportScale - - AutoHideSplashScreen - - ShowSplashScreenSpinner - - MediaPlaybackRequiresUserAction - - AllowInlineMediaPlayback - - OpenAllWhitelistURLsInWebView - - BackupWebStorage - - ExternalHosts - - * - - Plugins - - Device - CDVDevice - Logger - CDVLogger - Compass - CDVLocation - Accelerometer - CDVAccelerometer - Camera - CDVCamera - NetworkStatus - CDVConnection - Contacts - CDVContacts - Debug Console - CDVDebugConsole - Echo - CDVEcho - File - CDVFile - FileTransfer - CDVFileTransfer - Geolocation - CDVLocation - Notification - CDVNotification - Media - CDVSound - Capture - CDVCapture - SplashScreen - CDVSplashScreen - Battery - CDVBattery - - - \ No newline at end of file http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/19cf42ee/node_modules/plist/tests/Xcode-Info.plist ---------------------------------------------------------------------- diff --git a/node_modules/plist/tests/Xcode-Info.plist b/node_modules/plist/tests/Xcode-Info.plist deleted file mode 100644 index 4c4f934..0000000 --- a/node_modules/plist/tests/Xcode-Info.plist +++ /dev/null @@ -1,49 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleDisplayName - ${PRODUCT_NAME} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIconFiles - - CFBundleIdentifier - com.joshfire.ads - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - LSRequiresIPhoneOS - - UIRequiredDeviceCapabilities - - armv7 - - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - UISupportedInterfaceOrientations~ipad - - UIInterfaceOrientationPortrait - UIInterfaceOrientationPortraitUpsideDown - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - - CFBundleAllowMixedLocalizations - - - http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/19cf42ee/node_modules/plist/tests/Xcode-PhoneGap.plist ---------------------------------------------------------------------- diff --git a/node_modules/plist/tests/Xcode-PhoneGap.plist b/node_modules/plist/tests/Xcode-PhoneGap.plist deleted file mode 100644 index 35c426d..0000000 --- a/node_modules/plist/tests/Xcode-PhoneGap.plist +++ /dev/null @@ -1,55 +0,0 @@ - - - - - TopActivityIndicator - gray - EnableLocation - - EnableViewportScale - - AutoHideSplashScreen - - ShowSplashScreenSpinner - - MediaPlaybackRequiresUserAction - - AllowInlineMediaPlayback - - OpenAllWhitelistURLsInWebView - - ExternalHosts - - * - - Plugins - - com.phonegap.accelerometer - PGAccelerometer - com.phonegap.camera - PGCamera - com.phonegap.connection - PGConnection - com.phonegap.contacts - PGContacts - com.phonegap.debugconsole - PGDebugConsole - com.phonegap.file - PGFile - com.phonegap.filetransfer - PGFileTransfer - com.phonegap.geolocation - PGLocation - com.phonegap.notification - PGNotification - com.phonegap.media - PGSound - com.phonegap.mediacapture - PGCapture - com.phonegap.splashscreen - PGSplashScreen - com.joshfire.sas - PGSmartAdServer - - - http://git-wip-us.apache.org/repos/asf/cordova-plugman/blob/19cf42ee/node_modules/plist/tests/airplay.xml ---------------------------------------------------------------------- diff --git a/node_modules/plist/tests/airplay.xml b/node_modules/plist/tests/airplay.xml deleted file mode 100644 index 0fe6411..0000000 --- a/node_modules/plist/tests/airplay.xml +++ /dev/null @@ -1,38 +0,0 @@ - - - - - duration - 5555.0495000000001 - loadedTimeRanges - - - duration - 5555.0495000000001 - start - 0.0 - - - playbackBufferEmpty - - playbackBufferFull - - playbackLikelyToKeepUp - - position - 4.6269989039999997 - rate - 1 - readyToPlay - - seekableTimeRanges - - - duration - 5555.0495000000001 - start - 0.0 - - - -