mirror of
https://github.com/s4u/maven-settings-action.git
synced 2026-02-19 00:00:25 +08:00
update modules after merge
This commit is contained in:
6
node_modules/@actions/core/lib/command.d.ts
generated
vendored
6
node_modules/@actions/core/lib/command.d.ts
generated
vendored
@ -5,11 +5,11 @@ interface CommandProperties {
|
|||||||
* Commands
|
* Commands
|
||||||
*
|
*
|
||||||
* Command Format:
|
* Command Format:
|
||||||
* ##[name key=value;key=value]message
|
* ::name key=value,key=value::message
|
||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
* ##[warning]This is the user warning message
|
* ::warning::This is the message
|
||||||
* ##[set-secret name=mypassword]definitelyNotAPassword!
|
* ::set-env name=MY_VAR::some value
|
||||||
*/
|
*/
|
||||||
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
|
export declare function issueCommand(command: string, properties: CommandProperties, message: string): void;
|
||||||
export declare function issue(name: string, message?: string): void;
|
export declare function issue(name: string, message?: string): void;
|
||||||
|
|||||||
46
node_modules/@actions/core/lib/command.js
generated
vendored
46
node_modules/@actions/core/lib/command.js
generated
vendored
@ -1,15 +1,22 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
|
if (mod && mod.__esModule) return mod;
|
||||||
|
var result = {};
|
||||||
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
||||||
|
result["default"] = mod;
|
||||||
|
return result;
|
||||||
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const os = require("os");
|
const os = __importStar(require("os"));
|
||||||
/**
|
/**
|
||||||
* Commands
|
* Commands
|
||||||
*
|
*
|
||||||
* Command Format:
|
* Command Format:
|
||||||
* ##[name key=value;key=value]message
|
* ::name key=value,key=value::message
|
||||||
*
|
*
|
||||||
* Examples:
|
* Examples:
|
||||||
* ##[warning]This is the user warning message
|
* ::warning::This is the message
|
||||||
* ##[set-secret name=mypassword]definitelyNotAPassword!
|
* ::set-env name=MY_VAR::some value
|
||||||
*/
|
*/
|
||||||
function issueCommand(command, properties, message) {
|
function issueCommand(command, properties, message) {
|
||||||
const cmd = new Command(command, properties, message);
|
const cmd = new Command(command, properties, message);
|
||||||
@ -34,33 +41,38 @@ class Command {
|
|||||||
let cmdStr = CMD_STRING + this.command;
|
let cmdStr = CMD_STRING + this.command;
|
||||||
if (this.properties && Object.keys(this.properties).length > 0) {
|
if (this.properties && Object.keys(this.properties).length > 0) {
|
||||||
cmdStr += ' ';
|
cmdStr += ' ';
|
||||||
|
let first = true;
|
||||||
for (const key in this.properties) {
|
for (const key in this.properties) {
|
||||||
if (this.properties.hasOwnProperty(key)) {
|
if (this.properties.hasOwnProperty(key)) {
|
||||||
const val = this.properties[key];
|
const val = this.properties[key];
|
||||||
if (val) {
|
if (val) {
|
||||||
// safely append the val - avoid blowing up when attempting to
|
if (first) {
|
||||||
// call .replace() if message is not a string for some reason
|
first = false;
|
||||||
cmdStr += `${key}=${escape(`${val || ''}`)},`;
|
}
|
||||||
|
else {
|
||||||
|
cmdStr += ',';
|
||||||
|
}
|
||||||
|
cmdStr += `${key}=${escapeProperty(val)}`;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
cmdStr += CMD_STRING;
|
cmdStr += `${CMD_STRING}${escapeData(this.message)}`;
|
||||||
// safely append the message - avoid blowing up when attempting to
|
|
||||||
// call .replace() if message is not a string for some reason
|
|
||||||
const message = `${this.message || ''}`;
|
|
||||||
cmdStr += escapeData(message);
|
|
||||||
return cmdStr;
|
return cmdStr;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
function escapeData(s) {
|
function escapeData(s) {
|
||||||
return s.replace(/\r/g, '%0D').replace(/\n/g, '%0A');
|
return (s || '')
|
||||||
|
.replace(/%/g, '%25')
|
||||||
|
.replace(/\r/g, '%0D')
|
||||||
|
.replace(/\n/g, '%0A');
|
||||||
}
|
}
|
||||||
function escape(s) {
|
function escapeProperty(s) {
|
||||||
return s
|
return (s || '')
|
||||||
|
.replace(/%/g, '%25')
|
||||||
.replace(/\r/g, '%0D')
|
.replace(/\r/g, '%0D')
|
||||||
.replace(/\n/g, '%0A')
|
.replace(/\n/g, '%0A')
|
||||||
.replace(/]/g, '%5D')
|
.replace(/:/g, '%3A')
|
||||||
.replace(/;/g, '%3B');
|
.replace(/,/g, '%2C');
|
||||||
}
|
}
|
||||||
//# sourceMappingURL=command.js.map
|
//# sourceMappingURL=command.js.map
|
||||||
2
node_modules/@actions/core/lib/command.js.map
generated
vendored
2
node_modules/@actions/core/lib/command.js.map
generated
vendored
@ -1 +1 @@
|
|||||||
{"version":3,"file":"command.js","sourceRoot":"","sources":["../src/command.ts"],"names":[],"mappings":";;AAAA,yBAAwB;AAQxB;;;;;;;;;GASG;AACH,SAAgB,YAAY,CAC1B,OAAe,EACf,UAA6B,EAC7B,OAAe;IAEf,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,OAAO,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA;IACrD,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AAC/C,CAAC;AAPD,oCAOC;AAED,SAAgB,KAAK,CAAC,IAAY,EAAE,UAAkB,EAAE;IACtD,YAAY,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC,CAAA;AACjC,CAAC;AAFD,sBAEC;AAED,MAAM,UAAU,GAAG,IAAI,CAAA;AAEvB,MAAM,OAAO;IAKX,YAAY,OAAe,EAAE,UAA6B,EAAE,OAAe;QACzE,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,iBAAiB,CAAA;SAC5B;QAED,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAA;QAC5B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;IACxB,CAAC;IAED,QAAQ;QACN,IAAI,MAAM,GAAG,UAAU,GAAG,IAAI,CAAC,OAAO,CAAA;QAEtC,IAAI,IAAI,CAAC,UAAU,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;YAC9D,MAAM,IAAI,GAAG,CAAA;YACb,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,UAAU,EAAE;gBACjC,IAAI,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE;oBACvC,MAAM,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;oBAChC,IAAI,GAAG,EAAE;wBACP,8DAA8D;wBAC9D,6DAA6D;wBAC7D,MAAM,IAAI,GAAG,GAAG,IAAI,MAAM,CAAC,GAAG,GAAG,IAAI,EAAE,EAAE,CAAC,GAAG,CAAA;qBAC9C;iBACF;aACF;SACF;QAED,MAAM,IAAI,UAAU,CAAA;QAEpB,kEAAkE;QAClE,6DAA6D;QAC7D,MAAM,OAAO,GAAG,GAAG,IAAI,CAAC,OAAO,IAAI,EAAE,EAAE,CAAA;QACvC,MAAM,IAAI,UAAU,CAAC,OAAO,CAAC,CAAA;QAE7B,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAED,SAAS,UAAU,CAAC,CAAS;IAC3B,OAAO,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;AACtD,CAAC;AAED,SAAS,MAAM,CAAC,CAAS;IACvB,OAAO,CAAC;SACL,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,CAAA;AACzB,CAAC"}
|
{"version":3,"file":"command.js","sourceRoot":"","sources":["../src/command.ts"],"names":[],"mappings":";;;;;;;;;AAAA,uCAAwB;AAQxB;;;;;;;;;GASG;AACH,SAAgB,YAAY,CAC1B,OAAe,EACf,UAA6B,EAC7B,OAAe;IAEf,MAAM,GAAG,GAAG,IAAI,OAAO,CAAC,OAAO,EAAE,UAAU,EAAE,OAAO,CAAC,CAAA;IACrD,OAAO,CAAC,MAAM,CAAC,KAAK,CAAC,GAAG,CAAC,QAAQ,EAAE,GAAG,EAAE,CAAC,GAAG,CAAC,CAAA;AAC/C,CAAC;AAPD,oCAOC;AAED,SAAgB,KAAK,CAAC,IAAY,EAAE,UAAkB,EAAE;IACtD,YAAY,CAAC,IAAI,EAAE,EAAE,EAAE,OAAO,CAAC,CAAA;AACjC,CAAC;AAFD,sBAEC;AAED,MAAM,UAAU,GAAG,IAAI,CAAA;AAEvB,MAAM,OAAO;IAKX,YAAY,OAAe,EAAE,UAA6B,EAAE,OAAe;QACzE,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,iBAAiB,CAAA;SAC5B;QAED,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;QACtB,IAAI,CAAC,UAAU,GAAG,UAAU,CAAA;QAC5B,IAAI,CAAC,OAAO,GAAG,OAAO,CAAA;IACxB,CAAC;IAED,QAAQ;QACN,IAAI,MAAM,GAAG,UAAU,GAAG,IAAI,CAAC,OAAO,CAAA;QAEtC,IAAI,IAAI,CAAC,UAAU,IAAI,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,UAAU,CAAC,CAAC,MAAM,GAAG,CAAC,EAAE;YAC9D,MAAM,IAAI,GAAG,CAAA;YACb,IAAI,KAAK,GAAG,IAAI,CAAA;YAChB,KAAK,MAAM,GAAG,IAAI,IAAI,CAAC,UAAU,EAAE;gBACjC,IAAI,IAAI,CAAC,UAAU,CAAC,cAAc,CAAC,GAAG,CAAC,EAAE;oBACvC,MAAM,GAAG,GAAG,IAAI,CAAC,UAAU,CAAC,GAAG,CAAC,CAAA;oBAChC,IAAI,GAAG,EAAE;wBACP,IAAI,KAAK,EAAE;4BACT,KAAK,GAAG,KAAK,CAAA;yBACd;6BAAM;4BACL,MAAM,IAAI,GAAG,CAAA;yBACd;wBAED,MAAM,IAAI,GAAG,GAAG,IAAI,cAAc,CAAC,GAAG,CAAC,EAAE,CAAA;qBAC1C;iBACF;aACF;SACF;QAED,MAAM,IAAI,GAAG,UAAU,GAAG,UAAU,CAAC,IAAI,CAAC,OAAO,CAAC,EAAE,CAAA;QACpD,OAAO,MAAM,CAAA;IACf,CAAC;CACF;AAED,SAAS,UAAU,CAAC,CAAS;IAC3B,OAAO,CAAC,CAAC,IAAI,EAAE,CAAC;SACb,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC,CAAA;AAC1B,CAAC;AAED,SAAS,cAAc,CAAC,CAAS;IAC/B,OAAO,CAAC,CAAC,IAAI,EAAE,CAAC;SACb,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,KAAK,EAAE,KAAK,CAAC;SACrB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC;SACpB,OAAO,CAAC,IAAI,EAAE,KAAK,CAAC,CAAA;AACzB,CAAC"}
|
||||||
11
node_modules/@actions/core/lib/core.js
generated
vendored
11
node_modules/@actions/core/lib/core.js
generated
vendored
@ -8,10 +8,17 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|||||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
var __importStar = (this && this.__importStar) || function (mod) {
|
||||||
|
if (mod && mod.__esModule) return mod;
|
||||||
|
var result = {};
|
||||||
|
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
|
||||||
|
result["default"] = mod;
|
||||||
|
return result;
|
||||||
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
const command_1 = require("./command");
|
const command_1 = require("./command");
|
||||||
const os = require("os");
|
const os = __importStar(require("os"));
|
||||||
const path = require("path");
|
const path = __importStar(require("path"));
|
||||||
/**
|
/**
|
||||||
* The code to exit an action
|
* The code to exit an action
|
||||||
*/
|
*/
|
||||||
|
|||||||
2
node_modules/@actions/core/lib/core.js.map
generated
vendored
2
node_modules/@actions/core/lib/core.js.map
generated
vendored
@ -1 +1 @@
|
|||||||
{"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"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"}
|
{"version":3,"file":"core.js","sourceRoot":"","sources":["../src/core.ts"],"names":[],"mappings":"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"}
|
||||||
22
node_modules/@actions/core/package.json
generated
vendored
22
node_modules/@actions/core/package.json
generated
vendored
@ -1,32 +1,32 @@
|
|||||||
{
|
{
|
||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"@actions/core@1.2.0",
|
"@actions/core@1.2.2",
|
||||||
"."
|
"."
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "@actions/core@1.2.0",
|
"_from": "@actions/core@1.2.2",
|
||||||
"_id": "@actions/core@1.2.0",
|
"_id": "@actions/core@1.2.2",
|
||||||
"_inBundle": false,
|
"_inBundle": false,
|
||||||
"_integrity": "sha512-ZKdyhlSlyz38S6YFfPnyNgCDZuAF2T0Qv5eHflNWytPS8Qjvz39bZFMry9Bb/dpSnqWcNeav5yM2CTYpJeY+Dw==",
|
"_integrity": "sha512-IbCx7oefq+Gi6FWbSs2Fnw8VkEI6Y4gvjrYprY3RV//ksq/KPMlClOerJ4jRosyal6zkUIc8R9fS/cpRMlGClg==",
|
||||||
"_location": "/@actions/core",
|
"_location": "/@actions/core",
|
||||||
"_phantomChildren": {},
|
"_phantomChildren": {},
|
||||||
"_requested": {
|
"_requested": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"registry": true,
|
"registry": true,
|
||||||
"raw": "@actions/core@1.2.0",
|
"raw": "@actions/core@1.2.2",
|
||||||
"name": "@actions/core",
|
"name": "@actions/core",
|
||||||
"escapedName": "@actions%2fcore",
|
"escapedName": "@actions%2fcore",
|
||||||
"scope": "@actions",
|
"scope": "@actions",
|
||||||
"rawSpec": "1.2.0",
|
"rawSpec": "1.2.2",
|
||||||
"saveSpec": null,
|
"saveSpec": null,
|
||||||
"fetchSpec": "1.2.0"
|
"fetchSpec": "1.2.2"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/"
|
"/"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.0.tgz",
|
"_resolved": "https://registry.npmjs.org/@actions/core/-/core-1.2.2.tgz",
|
||||||
"_spec": "1.2.0",
|
"_spec": "1.2.2",
|
||||||
"_where": ".",
|
"_where": ".",
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://github.com/actions/toolkit/issues"
|
"url": "https://github.com/actions/toolkit/issues"
|
||||||
@ -60,8 +60,10 @@
|
|||||||
"directory": "packages/core"
|
"directory": "packages/core"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"audit-moderate": "npm install && npm audit --audit-level=moderate",
|
||||||
"test": "echo \"Error: run tests from root\" && exit 1",
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
||||||
"tsc": "tsc"
|
"tsc": "tsc"
|
||||||
},
|
},
|
||||||
"version": "1.2.0"
|
"types": "lib/core.d.ts",
|
||||||
|
"version": "1.2.2"
|
||||||
}
|
}
|
||||||
|
|||||||
5
node_modules/xmldom/.npmignore
generated
vendored
5
node_modules/xmldom/.npmignore
generated
vendored
@ -1,5 +0,0 @@
|
|||||||
test
|
|
||||||
t
|
|
||||||
travis.yml
|
|
||||||
.project
|
|
||||||
changelog
|
|
||||||
15
node_modules/xmldom/.travis.yml
generated
vendored
15
node_modules/xmldom/.travis.yml
generated
vendored
@ -1,5 +1,8 @@
|
|||||||
language: node_js
|
language: node_js
|
||||||
|
|
||||||
|
cache:
|
||||||
|
npm: false
|
||||||
|
|
||||||
node_js:
|
node_js:
|
||||||
- '0.10'
|
- '0.10'
|
||||||
|
|
||||||
@ -9,14 +12,4 @@ branches:
|
|||||||
- proof
|
- proof
|
||||||
- travis-ci
|
- travis-ci
|
||||||
|
|
||||||
# Not using `npm install --dev` because it is recursive. It will pull in the all
|
script: npm test
|
||||||
# development dependencies for CoffeeScript. Way too much spew in the Travis CI
|
|
||||||
# build output.
|
|
||||||
|
|
||||||
before_install:
|
|
||||||
- npm install
|
|
||||||
- npm install istanbul coveralls
|
|
||||||
|
|
||||||
env:
|
|
||||||
global:
|
|
||||||
- secure: "BxUHTsa1WVANLQoimilbZwa1MCWSdM9hOmPWBE/rsYb7uT/iiqkRXXwnWhKtN5CLvTvIQbiAzq4iyPID0S8UHrnxClYQrOuA6QkrtwgIEuDAmijao/bgxobPOremvkwXcpMGIwzYKyYQQtSEaEIQbqf6gSSKW9dBh/GZ/vfTsqo="
|
|
||||||
|
|||||||
9
node_modules/xmldom/dom-parser.js
generated
vendored
9
node_modules/xmldom/dom-parser.js
generated
vendored
@ -2,6 +2,7 @@ function DOMParser(options){
|
|||||||
this.options = options ||{locator:{}};
|
this.options = options ||{locator:{}};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DOMParser.prototype.parseFromString = function(source,mimeType){
|
DOMParser.prototype.parseFromString = function(source,mimeType){
|
||||||
var options = this.options;
|
var options = this.options;
|
||||||
var sax = new XMLReader();
|
var sax = new XMLReader();
|
||||||
@ -9,16 +10,15 @@ DOMParser.prototype.parseFromString = function(source,mimeType){
|
|||||||
var errorHandler = options.errorHandler;
|
var errorHandler = options.errorHandler;
|
||||||
var locator = options.locator;
|
var locator = options.locator;
|
||||||
var defaultNSMap = options.xmlns||{};
|
var defaultNSMap = options.xmlns||{};
|
||||||
var entityMap = {'lt':'<','gt':'>','amp':'&','quot':'"','apos':"'"}
|
var isHTML = /\/x?html?$/.test(mimeType);//mimeType.toLowerCase().indexOf('html') > -1;
|
||||||
|
var entityMap = isHTML?htmlEntity.entityMap:{'lt':'<','gt':'>','amp':'&','quot':'"','apos':"'"};
|
||||||
if(locator){
|
if(locator){
|
||||||
domBuilder.setDocumentLocator(locator)
|
domBuilder.setDocumentLocator(locator)
|
||||||
}
|
}
|
||||||
|
|
||||||
sax.errorHandler = buildErrorHandler(errorHandler,domBuilder,locator);
|
sax.errorHandler = buildErrorHandler(errorHandler,domBuilder,locator);
|
||||||
sax.domBuilder = options.domBuilder || domBuilder;
|
sax.domBuilder = options.domBuilder || domBuilder;
|
||||||
if(/\/x?html?$/.test(mimeType)){
|
if(isHTML){
|
||||||
entityMap.nbsp = '\xa0';
|
|
||||||
entityMap.copy = '\xa9';
|
|
||||||
defaultNSMap['']= 'http://www.w3.org/1999/xhtml';
|
defaultNSMap['']= 'http://www.w3.org/1999/xhtml';
|
||||||
}
|
}
|
||||||
defaultNSMap.xml = defaultNSMap.xml || 'http://www.w3.org/XML/1998/namespace';
|
defaultNSMap.xml = defaultNSMap.xml || 'http://www.w3.org/XML/1998/namespace';
|
||||||
@ -244,6 +244,7 @@ function appendElement (hander,node) {
|
|||||||
}//appendChild and setAttributeNS are preformance key
|
}//appendChild and setAttributeNS are preformance key
|
||||||
|
|
||||||
//if(typeof require == 'function'){
|
//if(typeof require == 'function'){
|
||||||
|
var htmlEntity = require('./entities');
|
||||||
var XMLReader = require('./sax').XMLReader;
|
var XMLReader = require('./sax').XMLReader;
|
||||||
var DOMImplementation = exports.DOMImplementation = require('./dom').DOMImplementation;
|
var DOMImplementation = exports.DOMImplementation = require('./dom').DOMImplementation;
|
||||||
exports.XMLSerializer = require('./dom').XMLSerializer ;
|
exports.XMLSerializer = require('./dom').XMLSerializer ;
|
||||||
|
|||||||
6
node_modules/xmldom/dom.js
generated
vendored
6
node_modules/xmldom/dom.js
generated
vendored
@ -16,10 +16,6 @@ function copy(src,dest){
|
|||||||
*/
|
*/
|
||||||
function _extends(Class,Super){
|
function _extends(Class,Super){
|
||||||
var pt = Class.prototype;
|
var pt = Class.prototype;
|
||||||
if(Object.create){
|
|
||||||
var ppt = Object.create(Super.prototype)
|
|
||||||
pt.__proto__ = ppt;
|
|
||||||
}
|
|
||||||
if(!(pt instanceof Super)){
|
if(!(pt instanceof Super)){
|
||||||
function t(){};
|
function t(){};
|
||||||
t.prototype = Super.prototype;
|
t.prototype = Super.prototype;
|
||||||
@ -916,7 +912,7 @@ XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
|
|||||||
Node.prototype.toString = nodeSerializeToString;
|
Node.prototype.toString = nodeSerializeToString;
|
||||||
function nodeSerializeToString(isHtml,nodeFilter){
|
function nodeSerializeToString(isHtml,nodeFilter){
|
||||||
var buf = [];
|
var buf = [];
|
||||||
var refNode = this.nodeType == 9?this.documentElement:this;
|
var refNode = this.nodeType == 9 && this.documentElement || this;
|
||||||
var prefix = refNode.prefix;
|
var prefix = refNode.prefix;
|
||||||
var uri = refNode.namespaceURI;
|
var uri = refNode.namespaceURI;
|
||||||
|
|
||||||
|
|||||||
244
node_modules/xmldom/entities.js
generated
vendored
Normal file
244
node_modules/xmldom/entities.js
generated
vendored
Normal file
@ -0,0 +1,244 @@
|
|||||||
|
exports.entityMap = {
|
||||||
|
lt: '<',
|
||||||
|
gt: '>',
|
||||||
|
amp: '&',
|
||||||
|
quot: '"',
|
||||||
|
apos: "'",
|
||||||
|
Agrave: "À",
|
||||||
|
Aacute: "Á",
|
||||||
|
Acirc: "Â",
|
||||||
|
Atilde: "Ã",
|
||||||
|
Auml: "Ä",
|
||||||
|
Aring: "Å",
|
||||||
|
AElig: "Æ",
|
||||||
|
Ccedil: "Ç",
|
||||||
|
Egrave: "È",
|
||||||
|
Eacute: "É",
|
||||||
|
Ecirc: "Ê",
|
||||||
|
Euml: "Ë",
|
||||||
|
Igrave: "Ì",
|
||||||
|
Iacute: "Í",
|
||||||
|
Icirc: "Î",
|
||||||
|
Iuml: "Ï",
|
||||||
|
ETH: "Ð",
|
||||||
|
Ntilde: "Ñ",
|
||||||
|
Ograve: "Ò",
|
||||||
|
Oacute: "Ó",
|
||||||
|
Ocirc: "Ô",
|
||||||
|
Otilde: "Õ",
|
||||||
|
Ouml: "Ö",
|
||||||
|
Oslash: "Ø",
|
||||||
|
Ugrave: "Ù",
|
||||||
|
Uacute: "Ú",
|
||||||
|
Ucirc: "Û",
|
||||||
|
Uuml: "Ü",
|
||||||
|
Yacute: "Ý",
|
||||||
|
THORN: "Þ",
|
||||||
|
szlig: "ß",
|
||||||
|
agrave: "à",
|
||||||
|
aacute: "á",
|
||||||
|
acirc: "â",
|
||||||
|
atilde: "ã",
|
||||||
|
auml: "ä",
|
||||||
|
aring: "å",
|
||||||
|
aelig: "æ",
|
||||||
|
ccedil: "ç",
|
||||||
|
egrave: "è",
|
||||||
|
eacute: "é",
|
||||||
|
ecirc: "ê",
|
||||||
|
euml: "ë",
|
||||||
|
igrave: "ì",
|
||||||
|
iacute: "í",
|
||||||
|
icirc: "î",
|
||||||
|
iuml: "ï",
|
||||||
|
eth: "ð",
|
||||||
|
ntilde: "ñ",
|
||||||
|
ograve: "ò",
|
||||||
|
oacute: "ó",
|
||||||
|
ocirc: "ô",
|
||||||
|
otilde: "õ",
|
||||||
|
ouml: "ö",
|
||||||
|
oslash: "ø",
|
||||||
|
ugrave: "ù",
|
||||||
|
uacute: "ú",
|
||||||
|
ucirc: "û",
|
||||||
|
uuml: "ü",
|
||||||
|
yacute: "ý",
|
||||||
|
thorn: "þ",
|
||||||
|
yuml: "ÿ",
|
||||||
|
nbsp: " ",
|
||||||
|
iexcl: "¡",
|
||||||
|
cent: "¢",
|
||||||
|
pound: "£",
|
||||||
|
curren: "¤",
|
||||||
|
yen: "¥",
|
||||||
|
brvbar: "¦",
|
||||||
|
sect: "§",
|
||||||
|
uml: "¨",
|
||||||
|
copy: "©",
|
||||||
|
ordf: "ª",
|
||||||
|
laquo: "«",
|
||||||
|
not: "¬",
|
||||||
|
shy: "",
|
||||||
|
reg: "®",
|
||||||
|
macr: "¯",
|
||||||
|
deg: "°",
|
||||||
|
plusmn: "±",
|
||||||
|
sup2: "²",
|
||||||
|
sup3: "³",
|
||||||
|
acute: "´",
|
||||||
|
micro: "µ",
|
||||||
|
para: "¶",
|
||||||
|
middot: "·",
|
||||||
|
cedil: "¸",
|
||||||
|
sup1: "¹",
|
||||||
|
ordm: "º",
|
||||||
|
raquo: "»",
|
||||||
|
frac14: "¼",
|
||||||
|
frac12: "½",
|
||||||
|
frac34: "¾",
|
||||||
|
iquest: "¿",
|
||||||
|
times: "×",
|
||||||
|
divide: "÷",
|
||||||
|
forall: "∀",
|
||||||
|
part: "∂",
|
||||||
|
exist: "∃",
|
||||||
|
empty: "∅",
|
||||||
|
nabla: "∇",
|
||||||
|
isin: "∈",
|
||||||
|
notin: "∉",
|
||||||
|
ni: "∋",
|
||||||
|
prod: "∏",
|
||||||
|
sum: "∑",
|
||||||
|
minus: "−",
|
||||||
|
lowast: "∗",
|
||||||
|
radic: "√",
|
||||||
|
prop: "∝",
|
||||||
|
infin: "∞",
|
||||||
|
ang: "∠",
|
||||||
|
and: "∧",
|
||||||
|
or: "∨",
|
||||||
|
cap: "∩",
|
||||||
|
cup: "∪",
|
||||||
|
'int': "∫",
|
||||||
|
there4: "∴",
|
||||||
|
sim: "∼",
|
||||||
|
cong: "≅",
|
||||||
|
asymp: "≈",
|
||||||
|
ne: "≠",
|
||||||
|
equiv: "≡",
|
||||||
|
le: "≤",
|
||||||
|
ge: "≥",
|
||||||
|
sub: "⊂",
|
||||||
|
sup: "⊃",
|
||||||
|
nsub: "⊄",
|
||||||
|
sube: "⊆",
|
||||||
|
supe: "⊇",
|
||||||
|
oplus: "⊕",
|
||||||
|
otimes: "⊗",
|
||||||
|
perp: "⊥",
|
||||||
|
sdot: "⋅",
|
||||||
|
Alpha: "Α",
|
||||||
|
Beta: "Β",
|
||||||
|
Gamma: "Γ",
|
||||||
|
Delta: "Δ",
|
||||||
|
Epsilon: "Ε",
|
||||||
|
Zeta: "Ζ",
|
||||||
|
Eta: "Η",
|
||||||
|
Theta: "Θ",
|
||||||
|
Iota: "Ι",
|
||||||
|
Kappa: "Κ",
|
||||||
|
Lambda: "Λ",
|
||||||
|
Mu: "Μ",
|
||||||
|
Nu: "Ν",
|
||||||
|
Xi: "Ξ",
|
||||||
|
Omicron: "Ο",
|
||||||
|
Pi: "Π",
|
||||||
|
Rho: "Ρ",
|
||||||
|
Sigma: "Σ",
|
||||||
|
Tau: "Τ",
|
||||||
|
Upsilon: "Υ",
|
||||||
|
Phi: "Φ",
|
||||||
|
Chi: "Χ",
|
||||||
|
Psi: "Ψ",
|
||||||
|
Omega: "Ω",
|
||||||
|
alpha: "α",
|
||||||
|
beta: "β",
|
||||||
|
gamma: "γ",
|
||||||
|
delta: "δ",
|
||||||
|
epsilon: "ε",
|
||||||
|
zeta: "ζ",
|
||||||
|
eta: "η",
|
||||||
|
theta: "θ",
|
||||||
|
iota: "ι",
|
||||||
|
kappa: "κ",
|
||||||
|
lambda: "λ",
|
||||||
|
mu: "μ",
|
||||||
|
nu: "ν",
|
||||||
|
xi: "ξ",
|
||||||
|
omicron: "ο",
|
||||||
|
pi: "π",
|
||||||
|
rho: "ρ",
|
||||||
|
sigmaf: "ς",
|
||||||
|
sigma: "σ",
|
||||||
|
tau: "τ",
|
||||||
|
upsilon: "υ",
|
||||||
|
phi: "φ",
|
||||||
|
chi: "χ",
|
||||||
|
psi: "ψ",
|
||||||
|
omega: "ω",
|
||||||
|
thetasym: "ϑ",
|
||||||
|
upsih: "ϒ",
|
||||||
|
piv: "ϖ",
|
||||||
|
OElig: "Œ",
|
||||||
|
oelig: "œ",
|
||||||
|
Scaron: "Š",
|
||||||
|
scaron: "š",
|
||||||
|
Yuml: "Ÿ",
|
||||||
|
fnof: "ƒ",
|
||||||
|
circ: "ˆ",
|
||||||
|
tilde: "˜",
|
||||||
|
ensp: " ",
|
||||||
|
emsp: " ",
|
||||||
|
thinsp: " ",
|
||||||
|
zwnj: "",
|
||||||
|
zwj: "",
|
||||||
|
lrm: "",
|
||||||
|
rlm: "",
|
||||||
|
ndash: "–",
|
||||||
|
mdash: "—",
|
||||||
|
lsquo: "‘",
|
||||||
|
rsquo: "’",
|
||||||
|
sbquo: "‚",
|
||||||
|
ldquo: "“",
|
||||||
|
rdquo: "”",
|
||||||
|
bdquo: "„",
|
||||||
|
dagger: "†",
|
||||||
|
Dagger: "‡",
|
||||||
|
bull: "•",
|
||||||
|
hellip: "…",
|
||||||
|
permil: "‰",
|
||||||
|
prime: "′",
|
||||||
|
Prime: "″",
|
||||||
|
lsaquo: "‹",
|
||||||
|
rsaquo: "›",
|
||||||
|
oline: "‾",
|
||||||
|
euro: "€",
|
||||||
|
trade: "™",
|
||||||
|
larr: "←",
|
||||||
|
uarr: "↑",
|
||||||
|
rarr: "→",
|
||||||
|
darr: "↓",
|
||||||
|
harr: "↔",
|
||||||
|
crarr: "↵",
|
||||||
|
lceil: "⌈",
|
||||||
|
rceil: "⌉",
|
||||||
|
lfloor: "⌊",
|
||||||
|
rfloor: "⌋",
|
||||||
|
loz: "◊",
|
||||||
|
spades: "♠",
|
||||||
|
clubs: "♣",
|
||||||
|
hearts: "♥",
|
||||||
|
diams: "♦"
|
||||||
|
};
|
||||||
|
//for(var n in exports.entityMap){console.log(exports.entityMap[n].charCodeAt())}
|
||||||
34
node_modules/xmldom/package.json
generated
vendored
34
node_modules/xmldom/package.json
generated
vendored
@ -1,31 +1,31 @@
|
|||||||
{
|
{
|
||||||
"_args": [
|
"_args": [
|
||||||
[
|
[
|
||||||
"xmldom@0.1.27",
|
"xmldom@0.2.1",
|
||||||
"."
|
"."
|
||||||
]
|
]
|
||||||
],
|
],
|
||||||
"_from": "xmldom@0.1.27",
|
"_from": "xmldom@0.2.1",
|
||||||
"_id": "xmldom@0.1.27",
|
"_id": "xmldom@0.2.1",
|
||||||
"_inBundle": false,
|
"_inBundle": false,
|
||||||
"_integrity": "sha1-1QH5ezvbQDr4757MIFcxh6rawOk=",
|
"_integrity": "sha512-kXXiYvmblIgEemGeB75y97FyaZavx6SQhGppLw5TKWAD2Wd0KAly0g23eVLh17YcpxZpnFym1Qk/eaRjy1APPg==",
|
||||||
"_location": "/xmldom",
|
"_location": "/xmldom",
|
||||||
"_phantomChildren": {},
|
"_phantomChildren": {},
|
||||||
"_requested": {
|
"_requested": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"registry": true,
|
"registry": true,
|
||||||
"raw": "xmldom@0.1.27",
|
"raw": "xmldom@0.2.1",
|
||||||
"name": "xmldom",
|
"name": "xmldom",
|
||||||
"escapedName": "xmldom",
|
"escapedName": "xmldom",
|
||||||
"rawSpec": "0.1.27",
|
"rawSpec": "0.2.1",
|
||||||
"saveSpec": null,
|
"saveSpec": null,
|
||||||
"fetchSpec": "0.1.27"
|
"fetchSpec": "0.2.1"
|
||||||
},
|
},
|
||||||
"_requiredBy": [
|
"_requiredBy": [
|
||||||
"/"
|
"/"
|
||||||
],
|
],
|
||||||
"_resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.1.27.tgz",
|
"_resolved": "https://registry.npmjs.org/xmldom/-/xmldom-0.2.1.tgz",
|
||||||
"_spec": "0.1.27",
|
"_spec": "0.2.1",
|
||||||
"_where": ".",
|
"_where": ".",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "jindw",
|
"name": "jindw",
|
||||||
@ -33,7 +33,7 @@
|
|||||||
"url": "http://www.xidea.org"
|
"url": "http://www.xidea.org"
|
||||||
},
|
},
|
||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "http://github.com/jindw/xmldom/issues",
|
"url": "http://github.com/xmldom/xmldom/issues",
|
||||||
"email": "jindw@xidea.org"
|
"email": "jindw@xidea.org"
|
||||||
},
|
},
|
||||||
"contributors": [
|
"contributors": [
|
||||||
@ -61,7 +61,7 @@
|
|||||||
"engines": {
|
"engines": {
|
||||||
"node": ">=0.1"
|
"node": ">=0.1"
|
||||||
},
|
},
|
||||||
"homepage": "https://github.com/jindw/xmldom",
|
"homepage": "https://github.com/xmldom/xmldom",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"w3c",
|
"w3c",
|
||||||
"dom",
|
"dom",
|
||||||
@ -71,13 +71,7 @@
|
|||||||
"DOMParser",
|
"DOMParser",
|
||||||
"XMLSerializer"
|
"XMLSerializer"
|
||||||
],
|
],
|
||||||
"licenses": [
|
"license": "(LGPL-2.0 or MIT)",
|
||||||
{
|
|
||||||
"type": "LGPL",
|
|
||||||
"url": "http://www.gnu.org/licenses/lgpl.html",
|
|
||||||
"MIT": "http://opensource.org/licenses/MIT"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"main": "./dom-parser.js",
|
"main": "./dom-parser.js",
|
||||||
"maintainers": [
|
"maintainers": [
|
||||||
{
|
{
|
||||||
@ -89,10 +83,10 @@
|
|||||||
"name": "xmldom",
|
"name": "xmldom",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git://github.com/jindw/xmldom.git"
|
"url": "git://github.com/xmldom/xmldom.git"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "proof platform win32 && proof test */*/*.t.js || t/test"
|
"test": "proof platform win32 && proof test */*/*.t.js || t/test"
|
||||||
},
|
},
|
||||||
"version": "0.1.27"
|
"version": "0.2.1"
|
||||||
}
|
}
|
||||||
|
|||||||
17
node_modules/xmldom/sax.js
generated
vendored
17
node_modules/xmldom/sax.js
generated
vendored
@ -600,23 +600,6 @@ ElementAttributes.prototype = {
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function _set_proto_(thiz,parent){
|
|
||||||
thiz.__proto__ = parent;
|
|
||||||
return thiz;
|
|
||||||
}
|
|
||||||
if(!(_set_proto_({},_set_proto_.prototype) instanceof _set_proto_)){
|
|
||||||
_set_proto_ = function(thiz,parent){
|
|
||||||
function p(){};
|
|
||||||
p.prototype = parent;
|
|
||||||
p = new p();
|
|
||||||
for(parent in thiz){
|
|
||||||
p[parent] = thiz[parent];
|
|
||||||
}
|
|
||||||
return p;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function split(source,start){
|
function split(source,start){
|
||||||
var match;
|
var match;
|
||||||
var buf = [];
|
var buf = [];
|
||||||
|
|||||||
Reference in New Issue
Block a user