11 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "sax",
3 | "description": "An evented streaming XML parser in JavaScript",
4 | "author": "Isaac Z. Schlueter (http://blog.izs.me/)",
5 | "version": "0.5.2",
6 | "main": "lib/sax.js",
7 | "license": "BSD",
8 | "scripts": [
9 | "lib/sax.js"
10 | ],
11 | "repository": "git://github.com/isaacs/sax-js.git"
12 | }
13 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/examples/hello-world.js:
--------------------------------------------------------------------------------
1 | require("http").createServer(function (req, res) {
2 | res.writeHead(200, {"content-type":"application/json"})
3 | res.end(JSON.stringify({ok: true}))
4 | }).listen(1337)
5 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/examples/not-pretty.xml:
--------------------------------------------------------------------------------
1 |
2 | something blerm a bit down here
9 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/examples/test.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | testing the parser
6 |
7 |
8 |
9 | hello
10 |
11 |
14 |
15 |
16 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/cdata-chunked.js:
--------------------------------------------------------------------------------
1 |
2 | require(__dirname).test({
3 | expect : [
4 | ["opentag", {"name": "R","attributes": {}, "isSelfClosing": false}],
5 | ["opencdata", undefined],
6 | ["cdata", " this is character data "],
7 | ["closecdata", undefined],
8 | ["closetag", "R"]
9 | ]
10 | }).write("").close();
11 |
12 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/cdata-end-split.js:
--------------------------------------------------------------------------------
1 |
2 | require(__dirname).test({
3 | expect : [
4 | ["opentag", {"name": "R","attributes": {}, "isSelfClosing": false}],
5 | ["opencdata", undefined],
6 | ["cdata", " this is "],
7 | ["closecdata", undefined],
8 | ["closetag", "R"]
9 | ]
10 | })
11 | .write("")
13 | .write("")
14 | .close();
15 |
16 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/cdata-multiple.js:
--------------------------------------------------------------------------------
1 |
2 | require(__dirname).test({
3 | expect : [
4 | ["opentag", {"name": "R","attributes": {}, "isSelfClosing": false}],
5 | ["opencdata", undefined],
6 | ["cdata", " this is "],
7 | ["closecdata", undefined],
8 | ["opencdata", undefined],
9 | ["cdata", "character data "],
10 | ["closecdata", undefined],
11 | ["closetag", "R"]
12 | ]
13 | }).write("").write("").close();
15 |
16 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/cdata.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test({
2 | xml : "",
3 | expect : [
4 | ["opentag", {"name": "R","attributes": {}, "isSelfClosing": false}],
5 | ["opencdata", undefined],
6 | ["cdata", " this is character data "],
7 | ["closecdata", undefined],
8 | ["closetag", "R"]
9 | ]
10 | });
11 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/cyrillic.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test({
2 | xml: '<Р>тестР>',
3 | expect: [
4 | ['opentag', {'name':'Р', attributes:{}, isSelfClosing: false}],
5 | ['text', 'тест'],
6 | ['closetag', 'Р']
7 | ]
8 | });
9 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/duplicate-attribute.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test
2 | ( { xml :
3 | ""
4 | , expect :
5 | [ [ "attribute", { name: "ID", value: "hello" } ]
6 | , [ "opentag", { name: "SPAN",
7 | attributes: { ID: "hello" }, isSelfClosing: false } ]
8 | , [ "closetag", "SPAN" ]
9 | ]
10 | , strict : false
11 | , opt : {}
12 | }
13 | )
14 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/entities.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test({
2 | xml: '⌋ ' +
3 | '♠ © → & ' +
4 | '< < < < < > ℜ ℘ €',
5 | expect: [
6 | ['opentag', {'name':'R', attributes:{}, isSelfClosing: false}],
7 | ['text', '⌋ ♠ © → & < < < < < > ℜ ℘ €'],
8 | ['closetag', 'R']
9 | ]
10 | });
11 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/entity-mega.js:
--------------------------------------------------------------------------------
1 | var sax = require('../');
2 | var xml = '';
3 | var text = '';
4 | for (var i in sax.ENTITIES) {
5 | xml += '&' + i + ';'
6 | text += sax.ENTITIES[i]
7 | }
8 | xml += ''
9 | require(__dirname).test({
10 | xml: xml,
11 | expect: [
12 | ['opentag', {'name':'R', attributes:{}, isSelfClosing: false}],
13 | ['text', text],
14 | ['closetag', 'R']
15 | ]
16 | });
17 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/issue-35.js:
--------------------------------------------------------------------------------
1 | // https://github.com/isaacs/sax-js/issues/35
2 | require(__dirname).test
3 | ( { xml : "
\n"+
4 | ""
5 |
6 | , expect :
7 | [ [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ]
8 | , [ "text", "\r\r\n" ]
9 | , [ "closetag", "xml" ]
10 | ]
11 | , strict : true
12 | , opt : {}
13 | }
14 | )
15 |
16 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/issue-47.js:
--------------------------------------------------------------------------------
1 | // https://github.com/isaacs/sax-js/issues/47
2 | require(__dirname).test
3 | ( { xml : ''
4 | , expect : [
5 | [ "attribute", { name:'HREF', value:"query.svc?x=1&y=2&z=3"} ],
6 | [ "opentag", { name: "A", attributes: { HREF:"query.svc?x=1&y=2&z=3"}, isSelfClosing: true } ],
7 | [ "closetag", "A" ]
8 | ]
9 | , opt : {}
10 | }
11 | )
12 |
13 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/issue-84.js:
--------------------------------------------------------------------------------
1 | // https://github.com/isaacs/sax-js/issues/49
2 | require(__dirname).test
3 | ( { xml : "body"
4 | , expect :
5 | [ [ "processinginstruction", { name: "has", body: "unbalanced \"quotes" } ],
6 | [ "opentag", { name: "xml", attributes: {}, isSelfClosing: false } ]
7 | , [ "text", "body" ]
8 | , [ "closetag", "xml" ]
9 | ]
10 | , strict : false
11 | , opt : { lowercasetags: true, noscript: true }
12 | }
13 | )
14 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/script-close-better.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test({
2 | xml : "
",
3 | expect : [
4 | ["opentag", {"name": "HTML","attributes": {}, isSelfClosing: false}],
5 | ["opentag", {"name": "HEAD","attributes": {}, isSelfClosing: false}],
6 | ["opentag", {"name": "SCRIPT","attributes": {}, isSelfClosing: false}],
7 | ["script", "'foo
'"],
8 | ["closetag", "SCRIPT"],
9 | ["closetag", "HEAD"],
10 | ["closetag", "HTML"]
11 | ]
12 | });
13 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/script.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test({
2 | xml : "",
3 | expect : [
4 | ["opentag", {"name": "HTML","attributes": {}, "isSelfClosing": false}],
5 | ["opentag", {"name": "HEAD","attributes": {}, "isSelfClosing": false}],
6 | ["opentag", {"name": "SCRIPT","attributes": {}, "isSelfClosing": false}],
7 | ["script", "if (1 < 0) { console.log('elo there'); }"],
8 | ["closetag", "SCRIPT"],
9 | ["closetag", "HEAD"],
10 | ["closetag", "HTML"]
11 | ]
12 | });
13 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/stray-ending.js:
--------------------------------------------------------------------------------
1 | // stray ending tags should just be ignored in non-strict mode.
2 | // https://github.com/isaacs/sax-js/issues/32
3 | require(__dirname).test
4 | ( { xml :
5 | ""
6 | , expect :
7 | [ [ "opentag", { name: "A", attributes: {}, isSelfClosing: false } ]
8 | , [ "opentag", { name: "B", attributes: {}, isSelfClosing: false } ]
9 | , [ "text", "" ]
10 | , [ "closetag", "B" ]
11 | , [ "closetag", "A" ]
12 | ]
13 | , strict : false
14 | , opt : {}
15 | }
16 | )
17 |
18 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/trailing-attribute-no-value.js:
--------------------------------------------------------------------------------
1 |
2 | require(__dirname).test({
3 | xml :
4 | "",
5 | expect : [
6 | ["attribute", {name:"ATTRIB", value:"attrib"}],
7 | ["opentag", {name:"ROOT", attributes:{"ATTRIB":"attrib"}, isSelfClosing: false}]
8 | ],
9 | opt : { trim : true }
10 | });
11 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/trailing-non-whitespace.js:
--------------------------------------------------------------------------------
1 |
2 | require(__dirname).test({
3 | xml : "Welcome, to monkey land",
4 | expect : [
5 | ["opentag", {
6 | "name": "SPAN",
7 | "attributes": {},
8 | isSelfClosing: false
9 | }],
10 | ["text", "Welcome,"],
11 | ["closetag", "SPAN"],
12 | ["text", " to monkey land"],
13 | ["end"],
14 | ["ready"]
15 | ],
16 | strict : false,
17 | opt : {}
18 | });
19 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/unclosed-root.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test
2 | ( { xml : ""
3 |
4 | , expect :
5 | [ [ "opentag", { name: "root", attributes: {}, isSelfClosing: false } ]
6 | , [ "error", "Unclosed root tag\nLine: 0\nColumn: 6\nChar: " ]
7 | ]
8 | , strict : true
9 | , opt : {}
10 | }
11 | )
12 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/xml2js/node_modules/sax/test/xmlns-xml-default-prefix.js:
--------------------------------------------------------------------------------
1 | require(__dirname).test(
2 | { xml : ""
3 | , expect :
4 | [
5 | [ "opentag"
6 | , { name: "xml:root"
7 | , uri: "http://www.w3.org/XML/1998/namespace"
8 | , prefix: "xml"
9 | , local: "root"
10 | , attributes: {}
11 | , ns: {}
12 | , isSelfClosing: true
13 | }
14 | ]
15 | , ["closetag", "xml:root"]
16 | ]
17 | , strict : true
18 | , opt : { xmlns: true }
19 | }
20 | )
21 |
22 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/CHANGES.md:
--------------------------------------------------------------------------------
1 |
2 | # 0.0.4
3 |
4 | - Updated dependencies.
5 | - Reader no longer requires ``new`` keyword
6 | - ``inflate`` module now at the root
7 |
8 | # 0.0.3
9 |
10 | - Fixed for NPM 1.0
11 |
12 | # 0.0.2
13 |
14 | - Removed a spurious buffer-io file that was confusing the
15 | new Node module search algorithm.
16 |
17 | # 0.0.1
18 |
19 | - fixed a dependency on q-io
20 |
21 | # 0.0.0
22 |
23 | - ported from Tom Robinson's
24 | for Narwhal.
25 |
26 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/README.md:
--------------------------------------------------------------------------------
1 |
2 | ```javascript
3 | var ZIP = require("zip");
4 | var data = new Buffer(...);
5 | var reader = ZIP.Reader(data);
6 | reader.toObject(charset_opt);
7 | reader.forEach(function (entry) {});
8 | reader.iterator();
9 | ```
10 |
11 | Copyright 1999 Masanao Izumo License Unknown
12 | Copyright 2010 Tom Robinson (http://tlrobinson.net/) MIT License (enclosed)
13 | Copyright 2011 Kristopher Michael Kowal MIT License (enclosed)
14 |
15 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q-io-buffer/README:
--------------------------------------------------------------------------------
1 | Provides a Q-IO compatible BufferIO type.
2 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q-io/README:
--------------------------------------------------------------------------------
1 |
2 | Copyright 2009, 2010 Kristopher Michael Kowal
3 | MIT License (enclosed)
4 |
5 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/.npmignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | CHANGES.html
3 | README.html
4 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/TODO:
--------------------------------------------------------------------------------
1 | reduce implementation fix for sparse arrays
2 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/delay.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q");
3 |
4 | var delay = function (delay) {
5 | var d = Q.defer();
6 | setTimeout(d.resolve, delay);
7 | return d.promise;
8 | };
9 |
10 | Q.when(delay(1000), function () {
11 | console.log('Hello, World!');
12 | });
13 |
14 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/join.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q/util");
3 | var FS = require("q-fs");
4 |
5 | var list = FS.list(__dirname);
6 | var files = Q.when(list, function (list) {
7 | list.forEach(function (fileName) {
8 | var content = FS.read(fileName);
9 | Q.when(content, function (content) {
10 | console.log(fileName, content.length);
11 | });
12 | });
13 | });
14 |
15 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/step1.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q/util");
3 | var FS = require("q-fs");
4 |
5 | Q.step(
6 | function () {
7 | return FS.read(__filename);
8 | },
9 | function (text) {
10 | return text.toUpperCase();
11 | },
12 | function (text) {
13 | console.log(text);
14 | }
15 | );
16 |
17 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/step2.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q/util");
3 | var FS = require("q-fs");
4 |
5 | Q.step(
6 | function () {
7 | return [
8 | FS.read(__filename),
9 | FS.read("/etc/passwd")
10 | ];
11 | },
12 | function (self, passwd) {
13 | console.log(__filename + ':', self.length);
14 | console.log('/etc/passwd:', passwd.length);
15 | }
16 | );
17 |
18 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/step3.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q/util");
3 | var FS = require("q-fs");
4 |
5 | Q.step(
6 | function () {
7 | return FS.list(__dirname);
8 | },
9 | function (fileNames) {
10 | return fileNames.map(function (fileName) {
11 | return [fileName, FS.read(fileName)];
12 | });
13 | },
14 | function (files) {
15 | files.forEach(function (pair) {
16 | var fileName = pair[0];
17 | var file = pair[1];
18 | console.log(fileName, file.length);
19 | });
20 | }
21 | );
22 |
23 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/then1.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q");
3 | var FS = require("q-fs");
4 |
5 | Q.when(FS.read(__filename))
6 | .then(function (text) {
7 | return text.toUpperCase();
8 | }).then(function (text) {
9 | console.log(text);
10 | });
11 |
12 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/then2.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q/util");
3 | var FS = require("q-fs");
4 |
5 | Q.when(Q.deep({
6 | "self": FS.read(__filename),
7 | "passwd": FS.read("/etc/passwd")
8 | })).then(function (texts) {
9 | console.log(__filename + ":" + texts.self.length);
10 | console.log("/ext/passwd:" + texts.passwd.length);
11 | });
12 |
13 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/then3.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q/util");
3 | var FS = require("q-fs");
4 |
5 | Q.when(FS.list(__dirname))
6 | .then(function (fileNames) {
7 | return Q.deep(fileNames.map(function (fileName) {
8 | return {
9 | "name": fileName,
10 | "text": FS.read(FS.join(__dirname, fileName))
11 | };
12 | }));
13 | }).then(function (files) {
14 | files.forEach(function (file) {
15 | console.log(file.name, file.text.length);
16 | });
17 | });
18 |
19 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/view1.js:
--------------------------------------------------------------------------------
1 |
2 | // constructing a view of a function
3 | // view information implicitly provided by fulfillment
4 |
5 | var Q = require("q");
6 | Q.ref(function () {
7 | return "called";
8 | })
9 | .view()
10 | .then(function (view) {
11 | return Q(view())
12 | .when(console.log);
13 | })
14 | .end()
15 |
16 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/view2.js:
--------------------------------------------------------------------------------
1 |
2 | // constructing a view from an object
3 | // view information implicitly provided by fulfillment
4 |
5 | var Q = require("q");
6 | Q.ref({
7 | "property": function () {
8 | return "called";
9 | }
10 | })
11 | .view()
12 | .then(function (view) {
13 | return Q(view.property())
14 | .when(console.log);
15 | })
16 | .end()
17 |
18 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/examples/view3.js:
--------------------------------------------------------------------------------
1 |
2 | // constructing a view from a promise for a function
3 | // view information provided explicitly before fulfillment
4 |
5 | var Q = require("q");
6 |
7 | var callableD = Q.defer();
8 | setTimeout(function () {
9 | callableD.resolve(function () {
10 | return "called";
11 | });
12 | }, 1000);
13 |
14 | callableD.promise
15 | .viewInfo({
16 | "type": "function"
17 | })
18 | .view()
19 | .when(function (view) {
20 | console.log("calling view");
21 | Q(view())
22 | .when(console.log)
23 | })
24 | .end()
25 |
26 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/node_modules/event-queue/readme.md:
--------------------------------------------------------------------------------
1 | # CommonJS event-queue module for NodeJS
2 |
3 | Implements subset of [event-queue] module proposal for CommonJS.
4 |
5 | [event-queue]:http://wiki.commonjs.org/wiki/Reactor/A
6 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/test/issue/22.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require('../../q');
3 |
4 | exports['test'] = function (ASSERT) {
5 |
6 | // make sure Array.prototype is intact
7 | var keys = [];
8 | for (item in []) {
9 | keys.push(item);
10 | }
11 | ASSERT.deepEqual(keys, [], 'no unexpected items in Array.prototype');
12 | };
13 |
14 | if (module == require.main) {
15 | require('test').run(exports);
16 | }
17 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/test/issue/9.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require('../../q');
3 |
4 | exports['test'] = function (ASSERT) {
5 | ASSERT.ok(Q.isResolved(null), 'null is a fully resolved value');
6 | ASSERT.ok(Q.isResolved(undefined), 'undefiend is a fully resolved value');
7 | ASSERT.ok(Q.isResolved(false), 'false is a fully resolved value');
8 | ASSERT.ok(Q.isResolved(), 'omitted argument is a fully resolved value');
9 | };
10 |
11 | if (module == require.main) {
12 | require('test').run(exports);
13 | }
14 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/node_modules/q/test/join.js:
--------------------------------------------------------------------------------
1 |
2 | var Q = require("q");
3 |
4 | Q.when(1)
5 | .wait(3, 4, 5)
6 | .join(2, 3, function (one, two, three) {
7 | console.log(one, two, three);
8 | })
9 | .end()
10 |
11 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/test.js:
--------------------------------------------------------------------------------
1 | var ZIP = require("./zip");
2 | var FS = require("fs");
3 | var data = FS.readFileSync("zip.zip")
4 | var reader = ZIP.Reader(data);
5 | console.log(reader.toObject('utf-8'));
6 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/node_modules/zip/zip.zip:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/blackberry10/cordova/node_modules/zip/zip.zip
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/run:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | CORDOVA_DIR=$(dirname "$0")
3 | source "$CORDOVA_DIR/init"
4 |
5 | "$CORDOVA_NODE/node" "$CORDOVA_DIR/lib/run" "$@"
6 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/target:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | BIN_DIR=$(dirname "$0")
3 | source "$BIN_DIR/init"
4 | "$CORDOVA_NODE/node" "$BIN_DIR/lib/target" "$@"
5 |
--------------------------------------------------------------------------------
/platforms/blackberry10/cordova/version:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | CORDOVA_DIR=$(dirname "$0")
3 | source "$CORDOVA_DIR/init"
4 |
5 | # Prints cordova version number
6 | "$CORDOVA_NODE/node" "$CORDOVA_DIR/lib/version" "$@"
7 |
8 |
--------------------------------------------------------------------------------
/platforms/blackberry10/native/device/plugins/jnext/auth.txt:
--------------------------------------------------------------------------------
1 | local:/// *
2 | file:// *
3 | http:// *
--------------------------------------------------------------------------------
/platforms/blackberry10/native/device/wwe:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | exec weblauncher "$@"
--------------------------------------------------------------------------------
/platforms/blackberry10/native/simulator/plugins/jnext/auth.txt:
--------------------------------------------------------------------------------
1 | local:/// *
2 | file:// *
3 | http:// *
--------------------------------------------------------------------------------
/platforms/blackberry10/native/simulator/wwe:
--------------------------------------------------------------------------------
1 | #!/bin/sh
2 | exec weblauncher "$@"
--------------------------------------------------------------------------------
/platforms/blackberry10/project.json:
--------------------------------------------------------------------------------
1 | {
2 | "barName": "cordova-BB10-app",
3 | "defaultTarget": "",
4 | "targets": {},
5 | "globalFetchDir": "/Users/don/.cordova/lib/blackberry10/cordova/3.1.0/plugins"
6 | }
7 |
--------------------------------------------------------------------------------
/platforms/blackberry10/www/res/icon/blackberry10/icon-80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/blackberry10/www/res/icon/blackberry10/icon-80.png
--------------------------------------------------------------------------------
/platforms/blackberry10/www/res/screen/blackberry10/splash-1280x768.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/blackberry10/www/res/screen/blackberry10/splash-1280x768.png
--------------------------------------------------------------------------------
/platforms/blackberry10/www/res/screen/blackberry10/splash-720x720.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/blackberry10/www/res/screen/blackberry10/splash-720x720.png
--------------------------------------------------------------------------------
/platforms/blackberry10/www/res/screen/blackberry10/splash-768x1280.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/blackberry10/www/res/screen/blackberry10/splash-768x1280.png
--------------------------------------------------------------------------------
/platforms/wp8/ApplicationIcon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/ApplicationIcon.png
--------------------------------------------------------------------------------
/platforms/wp8/Background.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/Background.png
--------------------------------------------------------------------------------
/platforms/wp8/Images/appbar.back.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/Images/appbar.back.rest.png
--------------------------------------------------------------------------------
/platforms/wp8/Images/appbar.close.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/Images/appbar.close.rest.png
--------------------------------------------------------------------------------
/platforms/wp8/Images/appbar.feature.video.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/Images/appbar.feature.video.rest.png
--------------------------------------------------------------------------------
/platforms/wp8/Images/appbar.next.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/Images/appbar.next.rest.png
--------------------------------------------------------------------------------
/platforms/wp8/Images/appbar.save.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/Images/appbar.save.rest.png
--------------------------------------------------------------------------------
/platforms/wp8/Images/appbar.stop.rest.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/Images/appbar.stop.rest.png
--------------------------------------------------------------------------------
/platforms/wp8/Properties/AppManifest.xml:
--------------------------------------------------------------------------------
1 |
4 |
5 |
6 |
7 |
--------------------------------------------------------------------------------
/platforms/wp8/SplashScreenImage.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/SplashScreenImage.jpg
--------------------------------------------------------------------------------
/platforms/wp8/VERSION:
--------------------------------------------------------------------------------
1 | 3.1.0
--------------------------------------------------------------------------------
/platforms/wp8/cordova/build.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0lib\build.js"
3 | IF EXIST %script_path% (
4 | cscript %script_path% %* //nologo
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find 'build.js' in cordova/lib, aborting...>&2
8 | EXIT /B 1
9 | )
--------------------------------------------------------------------------------
/platforms/wp8/cordova/clean.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0lib\clean.js"
3 | IF EXIST %script_path% (
4 | cscript %script_path% %* //nologo
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find 'clean.js' in cordova/lib, aborting...>&2
8 | EXIT /B 1
9 | )
--------------------------------------------------------------------------------
/platforms/wp8/cordova/lib/CordovaDeploy/CordovaDeploy/app.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
--------------------------------------------------------------------------------
/platforms/wp8/cordova/lib/install-device.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0deploy.js"
3 | IF EXIST %script_path% (
4 | cscript %script_path% %* --device --nobuild //nologo
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find 'deploy.js' in cordova/lib, aborting...>&2
8 | EXIT /B 1
9 | )
--------------------------------------------------------------------------------
/platforms/wp8/cordova/lib/install-emulator.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0deploy.js"
3 | IF EXIST %script_path% (
4 | cscript %script_path% %* --emulator --nobuild //nologo
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find 'deploy.js' in cordova/lib, aborting...>&2
8 | EXIT /B 1
9 | )
--------------------------------------------------------------------------------
/platforms/wp8/cordova/lib/list-devices.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0target-list.js"
3 | IF EXIST %script_path% (
4 | cscript %script_path% %* --devices //nologo
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find 'target-list.js' in cordova/lib, aborting...>&2
8 | EXIT /B 1
9 | )
--------------------------------------------------------------------------------
/platforms/wp8/cordova/lib/list-emulator-images.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0target-list.js"
3 | IF EXIST %script_path% (
4 | cscript %script_path% %* --emulators //nologo
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find 'target-list.js' in cordova/lib, aborting...>&2
8 | EXIT /B 1
9 | )
--------------------------------------------------------------------------------
/platforms/wp8/cordova/lib/list-started-emulators.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | ECHO Sorry, list-started-emulators is not availible yet for Windows Phone. 1>&2
3 | EXIT /B 1
--------------------------------------------------------------------------------
/platforms/wp8/cordova/lib/start-emulator.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | ECHO Sorry, start-emulator is not availible yet for Windows Phone. 1>&2
3 | EXIT /B 1
--------------------------------------------------------------------------------
/platforms/wp8/cordova/log.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | ECHO Sorry, logging is not supported for Windows Phone. 1>&2
3 | EXIT /B 1
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/.fetch.json:
--------------------------------------------------------------------------------
1 | {"source":{"type":"git","url":"https://github.com/chariotsolutions/phonegap-nfc","subdir":"."}}
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/VERSION:
--------------------------------------------------------------------------------
1 | 0.4.6
2 |
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_1_basic_app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_1_basic_app.png
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_2_dump_tag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_2_dump_tag.png
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_3_payload_as_string.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_3_payload_as_string.png
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/com.chariotsolutions.nfc.plugin/src/android/org/apache/cordova/api/Dummy.java:
--------------------------------------------------------------------------------
1 | package org.apache.cordova.api;
2 |
3 | // dummy class to ensure the org.apache.cordova.api package exists
4 | // this is required to support Cordova 2.9 and 3.0 with one code base
5 | // since I'm using wildcard imports to work around the renamed classes
6 | // import org.apache.cordova.*;
7 | // import org.apache.cordova.api.*;
8 | public class Dummy {
9 | }
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/org.apache.cordova.device/.fetch.json:
--------------------------------------------------------------------------------
1 | {"source":{"type":"local","path":"C:\\Users\\don\\AppData\\Local\\Temp\\org.apache.cordova.device\\package"}}
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/org.apache.cordova.device/README.md:
--------------------------------------------------------------------------------
1 | cordova-plugin-device
2 | -----------------------
3 | To install this plugin, follow the [Command-line Interface Guide](http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface).
4 |
5 | If you are not using the Cordova Command-line Interface, follow [Using Plugman to Manage Plugins](http://cordova.apache.org/docs/en/edge/plugin_ref_plugman.md.html).
6 |
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/org.apache.cordova.device/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.2.4",
3 | "name": "org.apache.cordova.device",
4 | "cordova_name": "Device",
5 | "description": "Cordova Device Plugin",
6 | "license": "Apache 2.0",
7 | "keywords": [
8 | "cordova",
9 | "device"
10 | ],
11 | "engines": []
12 | }
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/org.apache.cordova.vibration/.fetch.json:
--------------------------------------------------------------------------------
1 | {"source":{"type":"local","path":"C:\\Users\\don\\AppData\\Local\\Temp\\org.apache.cordova.vibration\\package"}}
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/org.apache.cordova.vibration/README.md:
--------------------------------------------------------------------------------
1 | cordova-plugin-vibration
2 | ---------------------------
3 | To install this plugin, follow the [Command-line Interface Guide](http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface).
4 |
5 | If you are not using the Cordova Command-line Interface, follow [Using Plugman to Manage Plugins](http://cordova.apache.org/docs/en/edge/plugin_ref_plugman.md.html).
6 |
--------------------------------------------------------------------------------
/platforms/wp8/cordova/plugins/org.apache.cordova.vibration/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.3.4",
3 | "name": "org.apache.cordova.vibration",
4 | "cordova_name": "Vibration",
5 | "description": "Cordova Vibration Plugin",
6 | "license": "Apache 2.0",
7 | "keywords": [
8 | "cordova",
9 | "vibration"
10 | ],
11 | "engines": []
12 | }
--------------------------------------------------------------------------------
/platforms/wp8/cordova/run.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0lib\deploy.js"
3 | IF EXIST %script_path% (
4 | cscript %script_path% %* //nologo
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find 'deploy.js' in cordova/lib, aborting...>&2
8 | EXIT /B 1
9 | )
10 |
--------------------------------------------------------------------------------
/platforms/wp8/cordova/version.bat:
--------------------------------------------------------------------------------
1 | @ECHO OFF
2 | SET script_path="%~dp0..\VERSION"
3 | IF EXIST %script_path% (
4 | type %script_path%
5 | ) ELSE (
6 | ECHO.
7 | ECHO ERROR: Could not find file VERSION in project folder, path tried was %script_path% >&2
8 | EXIT /B 1
9 | )
--------------------------------------------------------------------------------
/platforms/wp8/cordovalib/IBrowserDecorator.cs:
--------------------------------------------------------------------------------
1 | using Microsoft.Phone.Controls;
2 | using System;
3 | using System.Collections.Generic;
4 | using System.Linq;
5 | using System.Text;
6 | using System.Threading.Tasks;
7 |
8 | namespace WPCordovaClassLib.CordovaLib
9 | {
10 | interface IBrowserDecorator
11 | {
12 | WebBrowser Browser { get; set; }
13 | void InjectScript();
14 | bool HandleCommand(string cmd);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/plugins/com.blackberry.invoke/.fetch.json:
--------------------------------------------------------------------------------
1 | {"source":{"type":"local","path":"/var/folders/d7/l_4xwx_j3ys3_9yg0rvggdvr0000gn/T/com.blackberry.invoke/package"}}
--------------------------------------------------------------------------------
/plugins/com.blackberry.invoke/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "1.0.0",
3 | "name": "com.blackberry.invoke",
4 | "description": "BlackBerry 10 Invoke APIs",
5 | "license": "Apache 2.0",
6 | "engines": []
7 | }
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/.fetch.json:
--------------------------------------------------------------------------------
1 | {"source":{"type":"local","path":"/Users/don/phonegap-nfc"}}
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/VERSION:
--------------------------------------------------------------------------------
1 | 0.4.6
2 |
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_1_basic_app.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_1_basic_app.png
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_2_dump_tag.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_2_dump_tag.png
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_3_payload_as_string.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/doc/read_tag_3_payload_as_string.png
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/org/apache/cordova/api/Dummy.java:
--------------------------------------------------------------------------------
1 | package org.apache.cordova.api;
2 |
3 | // dummy class to ensure the org.apache.cordova.api package exists
4 | // this is required to support Cordova 2.9 and 3.0 with one code base
5 | // since I'm using wildcard imports to work around the renamed classes
6 | // import org.apache.cordova.*;
7 | // import org.apache.cordova.api.*;
8 | public class Dummy {
9 | }
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$1.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$1.class
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$2.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$2.class
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$3.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$3.class
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$4.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$4.class
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$5.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$5.class
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$6.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin$6.class
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/NfcPlugin.class
--------------------------------------------------------------------------------
/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/Util.class:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/plugins/com.chariotsolutions.nfc.plugin/src/android/target/com/chariotsolutions/nfc/plugin/Util.class
--------------------------------------------------------------------------------
/plugins/org.apache.cordova.device/.fetch.json:
--------------------------------------------------------------------------------
1 | {"source":{"type":"local","path":"/var/folders/d7/l_4xwx_j3ys3_9yg0rvggdvr0000gn/T/org.apache.cordova.device/package"}}
--------------------------------------------------------------------------------
/plugins/org.apache.cordova.device/README.md:
--------------------------------------------------------------------------------
1 | cordova-plugin-device
2 | -----------------------
3 | To install this plugin, follow the [Command-line Interface Guide](http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface).
4 |
5 | If you are not using the Cordova Command-line Interface, follow [Using Plugman to Manage Plugins](http://cordova.apache.org/docs/en/edge/plugin_ref_plugman.md.html).
6 |
--------------------------------------------------------------------------------
/plugins/org.apache.cordova.device/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.2.4",
3 | "name": "org.apache.cordova.device",
4 | "cordova_name": "Device",
5 | "description": "Cordova Device Plugin",
6 | "license": "Apache 2.0",
7 | "keywords": [
8 | "cordova",
9 | "device"
10 | ],
11 | "engines": []
12 | }
--------------------------------------------------------------------------------
/plugins/org.apache.cordova.vibration/.fetch.json:
--------------------------------------------------------------------------------
1 | {"source":{"type":"local","path":"/var/folders/d7/l_4xwx_j3ys3_9yg0rvggdvr0000gn/T/org.apache.cordova.vibration/package"}}
--------------------------------------------------------------------------------
/plugins/org.apache.cordova.vibration/README.md:
--------------------------------------------------------------------------------
1 | cordova-plugin-vibration
2 | ---------------------------
3 | To install this plugin, follow the [Command-line Interface Guide](http://cordova.apache.org/docs/en/edge/guide_cli_index.md.html#The%20Command-line%20Interface).
4 |
5 | If you are not using the Cordova Command-line Interface, follow [Using Plugman to Manage Plugins](http://cordova.apache.org/docs/en/edge/plugin_ref_plugman.md.html).
6 |
--------------------------------------------------------------------------------
/plugins/org.apache.cordova.vibration/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "version": "0.3.4",
3 | "name": "org.apache.cordova.vibration",
4 | "cordova_name": "Vibration",
5 | "description": "Cordova Vibration Plugin",
6 | "license": "Apache 2.0",
7 | "keywords": [
8 | "cordova",
9 | "vibration"
10 | ],
11 | "engines": []
12 | }
--------------------------------------------------------------------------------
/www/config.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 | NfcReader
4 |
5 | PhoneGap NFC Reader Demo
6 |
7 |
8 | Don Coleman
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------
/www/res/icon/blackberry10/icon-80.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/www/res/icon/blackberry10/icon-80.png
--------------------------------------------------------------------------------
/www/res/screen/blackberry10/splash-1280x768.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/www/res/screen/blackberry10/splash-1280x768.png
--------------------------------------------------------------------------------
/www/res/screen/blackberry10/splash-720x720.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/www/res/screen/blackberry10/splash-720x720.png
--------------------------------------------------------------------------------
/www/res/screen/blackberry10/splash-768x1280.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/don/phonegap-nfc-reader/740f6b08a116e59a8562e6a85b29f5783d7b8035/www/res/screen/blackberry10/splash-768x1280.png
--------------------------------------------------------------------------------