You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bh...@apache.org on 2014/03/27 16:08:16 UTC

[02/51] [partial] CB-6346 - Add node_modules to source control

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/1139813c/blackberry10/node_modules/plugman/node_modules/plist/package.json
----------------------------------------------------------------------
diff --git a/blackberry10/node_modules/plugman/node_modules/plist/package.json b/blackberry10/node_modules/plugman/node_modules/plist/package.json
new file mode 100644
index 0000000..ea095c9
--- /dev/null
+++ b/blackberry10/node_modules/plugman/node_modules/plist/package.json
@@ -0,0 +1,58 @@
+{
+  "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.3",
+  "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"
+    },
+    {
+      "name": "Vladimir Tsvang"
+    },
+    {
+      "name": "Mathieu D'Amours"
+    }
+  ],
+  "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\nParsing a plist from string payload\n``` javascript\nvar plist = require('plist');\n\nvar obj = plist.parseStringSync('<plist><string>Hello World!</string></plist>');\nconsole.log(obj);  // Hello World!\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({'f
 oo' : '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('<plist><string>Hello World!</string></plist>', function(err, obj) {\n  if (err) throw err;\n\n  console.log(obj[0]);  // Hello World!\n});\n```\n",
+  "readmeFilename": "README.md",
+  "bugs": {
+    "url": "https://github.com/TooTallNate/node-plist/issues"
+  },
+  "_id": "plist@0.4.3",
+  "_from": "plist@0.4.x"
+}

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/1139813c/blackberry10/node_modules/plugman/node_modules/plist/tests/Cordova.plist
----------------------------------------------------------------------
diff --git a/blackberry10/node_modules/plugman/node_modules/plist/tests/Cordova.plist b/blackberry10/node_modules/plugman/node_modules/plist/tests/Cordova.plist
new file mode 100644
index 0000000..362b754
--- /dev/null
+++ b/blackberry10/node_modules/plugman/node_modules/plist/tests/Cordova.plist
@@ -0,0 +1,87 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<!--
+#
+# 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.
+#
+-->
+<plist version="1.0">
+<dict>
+	<key>UIWebViewBounce</key>
+	<true/>
+	<key>TopActivityIndicator</key>
+	<string>gray</string>
+	<key>EnableLocation</key>
+	<false/>
+	<key>EnableViewportScale</key>
+	<false/>
+	<key>AutoHideSplashScreen</key>
+	<true/>
+	<key>ShowSplashScreenSpinner</key>
+	<true/>
+	<key>MediaPlaybackRequiresUserAction</key>
+	<false/>
+	<key>AllowInlineMediaPlayback</key>
+	<false/>
+	<key>OpenAllWhitelistURLsInWebView</key>
+	<false/>
+	<key>BackupWebStorage</key>
+	<true/>
+	<key>ExternalHosts</key>
+	<array>
+      <string>*</string>
+	</array>
+	<key>Plugins</key>
+	<dict>
+		<key>Device</key>
+		<string>CDVDevice</string>
+		<key>Logger</key>
+		<string>CDVLogger</string>
+		<key>Compass</key>
+		<string>CDVLocation</string>
+		<key>Accelerometer</key>
+		<string>CDVAccelerometer</string>
+		<key>Camera</key>
+		<string>CDVCamera</string>
+		<key>NetworkStatus</key>
+		<string>CDVConnection</string>
+		<key>Contacts</key>
+		<string>CDVContacts</string>
+		<key>Debug Console</key>
+		<string>CDVDebugConsole</string>
+		<key>Echo</key>
+		<string>CDVEcho</string>
+		<key>File</key>
+		<string>CDVFile</string>
+		<key>FileTransfer</key>
+		<string>CDVFileTransfer</string>
+		<key>Geolocation</key>
+		<string>CDVLocation</string>
+		<key>Notification</key>
+		<string>CDVNotification</string>
+		<key>Media</key>
+		<string>CDVSound</string>
+		<key>Capture</key>
+		<string>CDVCapture</string>
+		<key>SplashScreen</key>
+		<string>CDVSplashScreen</string>
+		<key>Battery</key>
+		<string>CDVBattery</string>
+	</dict>
+</dict>
+</plist>
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/1139813c/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-Info.plist
----------------------------------------------------------------------
diff --git a/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-Info.plist b/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-Info.plist
new file mode 100644
index 0000000..4c4f934
--- /dev/null
+++ b/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-Info.plist
@@ -0,0 +1,49 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>CFBundleDevelopmentRegion</key>
+	<string>en</string>
+	<key>CFBundleDisplayName</key>
+	<string>${PRODUCT_NAME}</string>
+	<key>CFBundleExecutable</key>
+	<string>${EXECUTABLE_NAME}</string>
+	<key>CFBundleIconFiles</key>
+	<array/>
+	<key>CFBundleIdentifier</key>
+	<string>com.joshfire.ads</string>
+	<key>CFBundleInfoDictionaryVersion</key>
+	<string>6.0</string>
+	<key>CFBundleName</key>
+	<string>${PRODUCT_NAME}</string>
+	<key>CFBundlePackageType</key>
+	<string>APPL</string>
+	<key>CFBundleShortVersionString</key>
+	<string>1.0</string>
+	<key>CFBundleSignature</key>
+	<string>????</string>
+	<key>CFBundleVersion</key>
+	<string>1.0</string>
+	<key>LSRequiresIPhoneOS</key>
+	<true/>
+	<key>UIRequiredDeviceCapabilities</key>
+	<array>
+		<string>armv7</string>
+	</array>
+	<key>UISupportedInterfaceOrientations</key>
+	<array>
+		<string>UIInterfaceOrientationPortrait</string>
+		<string>UIInterfaceOrientationLandscapeLeft</string>
+		<string>UIInterfaceOrientationLandscapeRight</string>
+	</array>
+	<key>UISupportedInterfaceOrientations~ipad</key>
+	<array>
+		<string>UIInterfaceOrientationPortrait</string>
+		<string>UIInterfaceOrientationPortraitUpsideDown</string>
+		<string>UIInterfaceOrientationLandscapeLeft</string>
+		<string>UIInterfaceOrientationLandscapeRight</string>
+	</array>
+	<key>CFBundleAllowMixedLocalizations</key>
+	<true/>
+</dict>
+</plist>

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/1139813c/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-PhoneGap.plist
----------------------------------------------------------------------
diff --git a/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-PhoneGap.plist b/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-PhoneGap.plist
new file mode 100644
index 0000000..35c426d
--- /dev/null
+++ b/blackberry10/node_modules/plugman/node_modules/plist/tests/Xcode-PhoneGap.plist
@@ -0,0 +1,55 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+	<key>TopActivityIndicator</key>
+	<string>gray</string>
+	<key>EnableLocation</key>
+	<false/>
+	<key>EnableViewportScale</key>
+	<false/>
+	<key>AutoHideSplashScreen</key>
+	<true/>
+	<key>ShowSplashScreenSpinner</key>
+	<true/>
+	<key>MediaPlaybackRequiresUserAction</key>
+	<false/>
+	<key>AllowInlineMediaPlayback</key>
+	<false/>
+	<key>OpenAllWhitelistURLsInWebView</key>
+	<false/>
+	<key>ExternalHosts</key>
+	<array>
+		<string>*</string>
+	</array>
+	<key>Plugins</key>
+	<dict>
+		<key>com.phonegap.accelerometer</key>
+		<string>PGAccelerometer</string>
+		<key>com.phonegap.camera</key>
+		<string>PGCamera</string>
+		<key>com.phonegap.connection</key>
+		<string>PGConnection</string>
+		<key>com.phonegap.contacts</key>
+		<string>PGContacts</string>
+		<key>com.phonegap.debugconsole</key>
+		<string>PGDebugConsole</string>
+		<key>com.phonegap.file</key>
+		<string>PGFile</string>
+		<key>com.phonegap.filetransfer</key>
+		<string>PGFileTransfer</string>
+		<key>com.phonegap.geolocation</key>
+		<string>PGLocation</string>
+		<key>com.phonegap.notification</key>
+		<string>PGNotification</string>
+		<key>com.phonegap.media</key>
+		<string>PGSound</string>
+		<key>com.phonegap.mediacapture</key>
+		<string>PGCapture</string>
+		<key>com.phonegap.splashscreen</key>
+		<string>PGSplashScreen</string>
+		<key>com.joshfire.sas</key>
+		<string>PGSmartAdServer</string>
+	</dict>
+</dict>
+</plist>

http://git-wip-us.apache.org/repos/asf/cordova-blackberry/blob/1139813c/blackberry10/node_modules/plugman/node_modules/plist/tests/airplay.xml
----------------------------------------------------------------------
diff --git a/blackberry10/node_modules/plugman/node_modules/plist/tests/airplay.xml b/blackberry10/node_modules/plugman/node_modules/plist/tests/airplay.xml
new file mode 100644
index 0000000..0fe6411
--- /dev/null
+++ b/blackberry10/node_modules/plugman/node_modules/plist/tests/airplay.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
+<plist version="1.0">
+<dict>
+  <key>duration</key>
+  <real>5555.0495000000001</real>
+  <key>loadedTimeRanges</key>
+  <array>
+    <dict>
+      <key>duration</key>
+      <real>5555.0495000000001</real>
+      <key>start</key>
+      <real>0.0</real>
+    </dict>
+  </array>
+  <key>playbackBufferEmpty</key>
+  <true/>
+  <key>playbackBufferFull</key>
+  <false/>
+  <key>playbackLikelyToKeepUp</key>
+  <true/>
+  <key>position</key>
+  <real>4.6269989039999997</real>
+  <key>rate</key>
+  <real>1</real>
+  <key>readyToPlay</key>
+  <true/>
+  <key>seekableTimeRanges</key>
+  <array>
+    <dict>
+      <key>duration</key>
+      <real>5555.0495000000001</real>
+      <key>start</key>
+      <real>0.0</real>
+    </dict>
+  </array>
+</dict>
+</plist>