corrade-nucleus-nucleons

Subversion Repositories:
Compare Path: Rev
With Path: Rev
?path1? @ 36  →  ?path2? @ 37
/bootstrap/001_bootstrap/bootstrap/index.html
@@ -16,8 +16,6 @@
<link href="/node_modules/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet" type="text/css">
<!-- Corrade Nucleus Fonts -->
<link href="/css/nucleus/fonts.css" rel="stylesheet" type="text/css">
<!-- Customized bootstrap style. -->
<link href="/css/nucleus/nucleus.css" rel="stylesheet" type="text/css">
 
</script>
</head>
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/.npmignore
@@ -0,0 +1 @@
node_modules
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/.travis.yml
@@ -0,0 +1,8 @@
language: node_js
sudo: false
node_js:
- "6"
before_script:
- export DISPLAY=:99.0
- sh -e /etc/init.d/xvfb start
script: npm run-script travistest
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/.vscode/launch.json
@@ -0,0 +1,46 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run tests",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/qunit-cli/bin/qunit-cli",
"stopOnEntry": false,
"args": [ "all_tests.js" ],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
},
{
"name": "Attach to Process",
"type": "node",
"request": "attach",
"processId": "${command.PickProcess}",
"port": 5858,
"sourceMaps": false,
"outDir": null
}
]
}
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/.vscode/settings.json
@@ -0,0 +1,5 @@
// Place your settings in this file to overwrite default and user settings.
{
"eslint.enable": true,
"javascript.validate.enable": false
}
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/README.md
@@ -0,0 +1,57 @@
# Maintainer needed
 
This library is no longer actively used at Axinom. It therefore lacks a maintainer who can pay attention to pull requests and issues. If you are an active developer who would like to take over, please open an issue stating your intentions and providing contact information so that the maintainership can be transferred to you.
 
# x2js
 
This is a library that converts between XML and JavaScript objects.
The conversion is not necessarily lossless but it is very convenient.
 
[![npm version](https://badge.fury.io/js/x2js.svg)](https://badge.fury.io/js/x2js)
 
master | development
------ | -----------
[![Build Status](https://travis-ci.org/x2js/x2js.svg?branch=master)](https://travis-ci.org/x2js/x2js) | [![Build Status](https://travis-ci.org/x2js/x2js.svg?branch=development)](https://travis-ci.org/x2js/x2js)
 
# Integration
 
The code is all contained within the `x2js.js` file, so you can include it directly
via a script tag. It will create `window.X2JS`, which is a constructor that can be
used to create instances of the converter, providing an optional configuration object.
 
In a Node app, `require("x2js")` will give you the constructor that you can use the same way.
 
Loading via AMD-capable loaders (e.g. require.js) is also supported and works equivalently.
 
The `xmldom` package is a dependency but it is only used under Node, as in browsers the browser DOM is used.
 
# Quick start
 
```js
var x2js = new X2JS();
var document = x2js.xml2js(xml);
 
console.log(document.MyRootElement.ElementX[1].toString());
 
var xml = x2js.js2xml(document);
console.log(xml);
```
 
See the type definitions within `x2js.d.ts` for information about what configuration options you can pass.
 
# Automated tests
 
A set of QUnit test cases are part of the project and act as the primary usage examples.
 
Run `karma start --single run` to test with Chrome, Firefox and IE.
Run `node_modules\.bin\qunit-cli all_tests.js` to test with the Node runtime.
Run `npm test` to execute both sets of tests.
 
Travis CI uses `npm travistest` to run tests using Firefox via Karma and Node.
 
# Contributing
 
Contributions are welcome! To ensure speedy merges, please:
 
* base any pull requests on the **development** branch.
* ensure that the code passes ESLint validation with the included ruleset.
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/all_tests.js
@@ -0,0 +1,7 @@
// Entry point to easily run all tests under node.js
// Execute as qunit-cli all_tests.js
require("./tests_config");
require("./tests_funky");
require("./tests_js2xml");
require("./tests_smoke");
require("./tests_xml2js");
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/jsconfig.json
@@ -0,0 +1,2 @@
{
}
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/karma.conf.js
@@ -0,0 +1,59 @@
module.exports = function karmaExports(config) {
"use strict";
 
config.set({
// base path that will be used to resolve all patterns (eg. files, exclude)
"basePath": '',
 
 
// frameworks to use
// available frameworks: https://npmjs.org/browse/keyword/karma-adapter
"frameworks": ['qunit'],
 
// list of files / patterns to load in the browser
"files": [
'x2js.js',
'tests*.js'
],
 
// list of files to exclude
"exclude": [
],
 
// preprocess matching files before serving them to the browser
// available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor
"preprocessors": {
},
 
// test results reporter to use
// possible values: 'dots', 'progress'
// available reporters: https://npmjs.org/browse/keyword/karma-reporter
// 'progress' reports wrong totals on Travis CI, so just use dots
"reporters": ['dots'],
 
// web server port
"port": 9876,
 
// enable / disable colors in the output (reporters and logs)
"colors": true,
 
// level of logging
// possible values: config.LOG_DISABLE || config.LOG_ERROR || config.LOG_WARN || config.LOG_INFO || config.LOG_DEBUG
"logLevel": config.LOG_INFO,
 
// enable / disable watching file and executing tests whenever any file changes
"autoWatch": true,
 
// start these browsers
// available browser launchers: https://npmjs.org/browse/keyword/karma-launcher
"browsers": ['Chrome', 'IE', 'Firefox'],
 
// Continuous Integration mode
// if true, Karma captures browsers, runs the tests and exits
"singleRun": false,
 
// Concurrency level
// how many browser should be started simultanous
"concurrency": Infinity
});
};
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/package.json
@@ -0,0 +1,111 @@
{
"_args": [
[
{
"raw": "x2js@^3.1.1",
"scope": null,
"escapedName": "x2js",
"name": "x2js",
"rawSpec": "^3.1.1",
"spec": ">=3.1.1 <4.0.0",
"type": "range"
},
"/Users/evacomaroski/Documents/Development/corrade-nucleus-nucleons/bootstrap/001_bootstrap/bootstrap"
]
],
"_from": "x2js@>=3.1.1 <4.0.0",
"_id": "x2js@3.1.1",
"_inCache": true,
"_location": "/x2js",
"_nodeVersion": "6.10.2",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/x2js-3.1.1.tgz_1493014053224_0.5247435302007943"
},
"_npmUser": {
"name": "axinom",
"email": "saares@axinom.com"
},
"_npmVersion": "3.10.10",
"_phantomChildren": {},
"_requested": {
"raw": "x2js@^3.1.1",
"scope": null,
"escapedName": "x2js",
"name": "x2js",
"rawSpec": "^3.1.1",
"spec": ">=3.1.1 <4.0.0",
"type": "range"
},
"_requiredBy": [
"/"
],
"_resolved": "http://grimore.org:4873/x2js/-/x2js-3.1.1.tgz",
"_shasum": "f7c4e6077c29470f2b0dd6714805871b25667119",
"_shrinkwrap": null,
"_spec": "x2js@^3.1.1",
"_where": "/Users/evacomaroski/Documents/Development/corrade-nucleus-nucleons/bootstrap/001_bootstrap/bootstrap",
"author": {
"name": "Axinom"
},
"bugs": {
"url": "https://github.com/Axinom/x2js/issues"
},
"dependencies": {
"xmldom": "^0.1.19"
},
"description": "Transforms between XML string and JavaScript object trees.",
"devDependencies": {
"eslint": "^3.4.0",
"eslint-config-axinom": "^1.0.3",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-ie-launcher": "^1.0.0",
"karma-qunit": "^1.2.0",
"qunit-cli": "^0.2.0",
"qunitjs": "^2.0.1"
},
"directories": {},
"dist": {
"shasum": "f7c4e6077c29470f2b0dd6714805871b25667119",
"tarball": "http://grimore.org:4873/x2js/-/x2js-3.1.1.tgz"
},
"eslintConfig": {
"extends": "axinom",
"env": {
"qunit": true,
"node": true
}
},
"gitHead": "2bf0a269d957742669902de0a9809ea4ed99e7d7",
"homepage": "https://github.com/Axinom/x2js#readme",
"keywords": [
"xml",
"convert",
"transform",
"mapping",
"map"
],
"license": "Apache-2.0",
"main": "x2js.js",
"maintainers": [
{
"name": "axinom",
"email": "saares@axinom.com"
}
],
"name": "x2js",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git+https://github.com/Axinom/x2js.git"
},
"scripts": {
"test": "karma start --single-run && .\\node_modules\\.bin\\qunit-cli all_tests.js && node ./node_modules/eslint/bin/eslint.js --env qunit,node --no-eslintrc --config ./node_modules/eslint-config-axinom/index.js *.js",
"travistest": "./node_modules/karma/bin/karma start --single-run --browsers Firefox && ./node_modules/.bin/qunit-cli all_tests.js && node ./node_modules/eslint/bin/eslint.js --env qunit,node --no-eslintrc --config ./node_modules/eslint-config-axinom/index.js *.js"
},
"types": "x2js.d.ts",
"version": "3.1.1"
}
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/tests_config.js
@@ -0,0 +1,218 @@
(function (root, factory) {
'use strict';
 
if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but only CommonJS-like
// environments that support module.exports, like Node.
factory(require('./x2js'), require('qunit-cli'));
} else {
// Browser globals (root is window)
factory(root.X2JS, root.QUnit);
}
})(this, function (X2JS, QUnit) {
'use strict';
 
// Test cases are full of magic numbers and that's fine.
/* eslint-disable no-magic-numbers */
 
QUnit.module('Configuration options');
 
QUnit.test('Default attribute prefix', function (assert) {
var xml = '<document><element attribute="value" /></document>';
var x = new X2JS();
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.ok(js.document.element._attribute);
assert.strictEqual(js.document.element._attribute, 'value');
});
 
QUnit.test('Empty attribute prefix', function (assert) {
var xml = '<document><element attribute="value" /></document>';
var x = new X2JS({
'attributePrefix': ''
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.ok(js.document.element.attribute);
assert.strictEqual(js.document.element.attribute, 'value');
});
 
QUnit.test('Custom nonempty attribute prefix', function (assert) {
var xml = '<document><element attribute="value" /></document>';
var x = new X2JS({
'attributePrefix': '$$'
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.ok(js.document.element.$$attribute);
assert.strictEqual(js.document.element.$$attribute, 'value');
});
 
QUnit.test('Attribute converters run but only when appropriate', function (assert) {
var xml = '<Root><element test1="FAIL" test2="success 2.1">first</element><element test1="FAIL 1.2" test2="success 2.2">second</element></Root>';
var x = new X2JS({
'attributeConverters': [
{
'test': function (name, value) {
return name === 'test1';
},
'convert': function (name, value) {
return 'success 1.*';
}
}
]
});
var js = x.xml2js(xml);
 
assert.ok(js.Root);
assert.ok(js.Root.element);
assert.ok(js.Root.element.length);
assert.ok(js.Root.element[0]);
assert.ok(js.Root.element[0]._test1);
assert.ok(js.Root.element[0]._test2);
assert.strictEqual(js.Root.element[0]._test1, 'success 1.*');
assert.strictEqual(js.Root.element[0]._test2, 'success 2.1');
assert.strictEqual(js.Root.element[1]._test1, 'success 1.*');
assert.strictEqual(js.Root.element[1]._test2, 'success 2.2');
});
 
QUnit.test('Root element is dropped with ignoreRoot=true', function (assert) {
var xml = '<document><element attribute="value" /></document>';
var x = new X2JS({
'ignoreRoot': true
});
var js = x.xml2js(xml);
 
assert.notOk(js.document);
assert.ok(js.element);
});
 
QUnit.test('Array access-form override via path', function (assert) {
var xml = '<document><element attribute="value" /></document>';
var x = new X2JS({
'arrayAccessFormPaths': [
'document.element'
]
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.ok(js.document.element.length);
assert.strictEqual(js.document.element.length, 1);
assert.ok(js.document.element[0], 'value');
});
 
QUnit.test('Array access-form override via regex', function (assert) {
var xml = '<document><element attribute="value" /></document>';
var x = new X2JS({
'arrayAccessFormPaths': [
/.*\.element$/
]
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.ok(js.document.element.length);
assert.strictEqual(js.document.element.length, 1);
assert.ok(js.document.element[0], 'value');
});
 
QUnit.test('Array access-form override via function', function (assert) {
var xml = '<document><element attribute="value" /></document>';
var x = new X2JS({
'arrayAccessFormPaths': [
function (elementName, elementPath) {
return elementName === 'element';
}
]
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.ok(js.document.element.length);
assert.strictEqual(js.document.element.length, 1);
assert.ok(js.document.element[0], 'value');
});
 
QUnit.test('Datetime parsing via path', function (assert) {
var xml = '<document><datetimeElement>2002-10-10T12:00:00+04:00</datetimeElement></document>';
var x = new X2JS({
'datetimeAccessFormPaths': [
'document.datetimeElement'
]
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.datetimeElement);
assert.ok(js.document.datetimeElement instanceof Date);
assert.strictEqual(js.document.datetimeElement.getFullYear(), 2002);
});
 
QUnit.test('Datetime parsing via regex', function (assert) {
var xml = '<document><datetimeElement>2002-10-10T12:00:00+04:00</datetimeElement></document>';
var x = new X2JS({
'datetimeAccessFormPaths': [
/.*\.datetimeElement$/
]
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.datetimeElement);
assert.ok(js.document.datetimeElement instanceof Date);
assert.strictEqual(js.document.datetimeElement.getFullYear(), 2002);
});
 
QUnit.test('Datetime parsing via function', function (assert) {
var xml = '<document><datetimeElement>2002-10-10T12:00:00+04:00</datetimeElement></document>';
var x = new X2JS({
'datetimeAccessFormPaths': [
function (elementPath) {
return elementPath === 'document.datetimeElement';
}
]
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.datetimeElement);
assert.ok(js.document.datetimeElement instanceof Date);
assert.strictEqual(js.document.datetimeElement.getFullYear(), 2002);
});
 
QUnit.test('Datetime parsing in different formats', function (assert) {
var xml = '<document>' +
'<datetimeElement>2002-10-10T12:00:00+04:00</datetimeElement>' +
'<datetimeElement>2002-10-10T12:00:00Z</datetimeElement>' +
'<datetimeElement>2002-10-10T12:00:00</datetimeElement>' +
'<datetimeElement>2002-10-10T12:00:00Z</datetimeElement>' +
'</document>';
var x = new X2JS({
'datetimeAccessFormPaths': [
'document.datetimeElement'
]
});
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.datetimeElement);
assert.ok(js.document.datetimeElement.length);
assert.strictEqual(js.document.datetimeElement.length, 4);
 
for (var i = 0; i < js.document.datetimeElement.length; i++) {
assert.ok(js.document.datetimeElement[i]);
assert.ok(js.document.datetimeElement[i] instanceof Date);
assert.strictEqual(js.document.datetimeElement[i].getFullYear(), 2002);
}
});
});
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/tests_funky.js
@@ -0,0 +1,32 @@
(function (root, factory) {
'use strict';
 
if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but only CommonJS-like
// environments that support module.exports, like Node.
factory(require('./x2js'), require('qunit-cli'));
} else {
// Browser globals (root is window)
factory(root.X2JS, root.QUnit);
}
})(this, function (X2JS, QUnit) {
'use strict';
 
QUnit.module('Funky tests');
 
QUnit.test('asArray() converts to array', function (assert) {
var x = new X2JS();
 
// It preserves existing arrays.
assert.propEqual(x.asArray([1, 2, 3]), [1, 2, 3]);
 
// And converts anything else.
assert.propEqual(x.asArray('stringvalue'), ['stringvalue']);
assert.propEqual(x.asArray({}), [{}]);
assert.propEqual(x.asArray(''), ['']);
 
// Except some things, which are turned into empty arrays just because.
assert.propEqual(x.asArray(null), []);
assert.propEqual(x.asArray(undefined), []);
});
});
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/tests_js2xml.js
@@ -0,0 +1,336 @@
(function (root, factory) {
'use strict';
 
if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but only CommonJS-like
// environments that support module.exports, like Node.
factory(require('./x2js'), require('qunit-cli'));
} else {
// Browser globals (root is window)
factory(root.X2JS, root.QUnit);
}
})(this, function (X2JS, QUnit) {
'use strict';
 
QUnit.module('Converting JavaScript objects to XML');
 
QUnit.test('Element with attribute', function (assert) {
var js = {
'document': {
'element': {
'_attribute': 'value'
}
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<element attribute="value" />' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Element with attribute and selfClosingElements set to false', function (assert) {
var js = {
'document': {
'element': {
'_attribute': 'value'
}
}
};
var x = new X2JS({
'selfClosingElements': false
});
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<element attribute="value"></element>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Element with attribute and selfClosingElements set to true', function (assert) {
var js = {
'document': {
'element': {
'_attribute': 'value'
}
}
};
var x = new X2JS({
'selfClosingElements': true
});
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<element attribute="value" />' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Element with attribute containing XML characters', function (assert) {
var js = {
'document': {
'element': {
'_attribute': 'va&lue<'
}
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<element attribute="va&amp;lue&lt;" />' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Just a string', function (assert) {
var js = {
'document': {
'elementY': 'hello there'
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementY>hello there</elementY>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('String with XML characters', function (assert) {
var js = {
'document': {
'elementY': 'hello &there<'
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementY>hello &amp;there&lt;</elementY>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('CDATA', function (assert) {
var js = {
'document': {
'elementZ': { '__cdata': 'hello again' }
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementZ><![CDATA[hello again]]></elementZ>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('CDATA with XML characters', function (assert) {
var js = {
'document': {
'elementZ': { '__cdata': 'hello &again<' }
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementZ><![CDATA[hello &again<]]></elementZ>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Empty string as value', function (assert) {
var js = {
'document': {
'elementU': ''
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementU />' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Zero as value', function (assert) {
var js = {
'document': {
'element': 0
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<element>0</element>' +
'</document>';
 
assert.strictEqual(xml, expected);
});
 
QUnit.test('Empty string as value with selfClosingElements set to false', function (assert) {
var js = {
'document': {
'elementU': ''
}
};
var x = new X2JS({
'selfClosingElements': false
});
 
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementU></elementU>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Basic array', function (assert) {
var js = {
'document': {
'elementV': [
{ 'x': 't' },
{ 'm': 'n' }
]
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementV><x>t</x></elementV>' +
'<elementV><m>n</m></elementV>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Array of empty strings', function (assert) {
var js = {
'document': {
'elementX': ['', '']
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementX />' +
'<elementX />' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Array of empty strings with selfClosingElements set to false', function (assert) {
var js = {
'document': {
'elementX': ['', '']
}
};
var x = new X2JS({
'selfClosingElements': false
});
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementX></elementX>' +
'<elementX></elementX>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Attributes in array', function (assert) {
var js = {
'document': {
'elementV': [
{
'x': 't',
'_a': 'a'
},
{
'm': 'n',
'_b': 'b'
}
]
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<document>' +
'<elementV a="a"><x>t</x></elementV>' +
'<elementV b="b"><m>n</m></elementV>' +
'</document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
 
QUnit.test('Namespaces', function (assert) {
var js = {
'document': {
'__prefix': 'ns',
'_ns:xmlns': 'http://example.com',
'elementV': [
{
'__prefix': 'ns',
'x': 't',
'_a': 'a'
},
{
'm': {
'__text': 'n',
'__prefix': 'ns'
},
'_b': 'b'
}
]
}
};
var x = new X2JS();
var xml = x.js2xml(js);
 
var expected = '<ns:document ns:xmlns="http://example.com">' +
'<ns:elementV a="a"><x>t</x></ns:elementV>' +
'<elementV b="b"><ns:m>n</ns:m></elementV>' +
'</ns:document>';
 
// Implementation does not guarantee formatting so the test is somewhat fragile.
assert.strictEqual(xml, expected);
});
});
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/tests_smoke.js
@@ -0,0 +1,40 @@
(function (root, factory) {
'use strict';
 
if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but only CommonJS-like
// environments that support module.exports, like Node.
factory(require('./x2js'), require('qunit-cli'));
} else {
// Browser globals (root is window)
factory(root.X2JS, root.QUnit);
}
})(this, function (X2JS, QUnit) {
'use strict';
 
QUnit.module('Smoke tests');
 
QUnit.test('X->JS single element', function (assert) {
var xml = '<document><element>text</element></document>';
var x = new X2JS();
 
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.strictEqual(js.document.element, 'text');
});
 
QUnit.test('X->JS two elements', function (assert) {
var xml = '<document><element1>text</element1><element2>text2</element2></document>';
var x = new X2JS();
 
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element1);
assert.strictEqual(js.document.element1, 'text');
assert.ok(js.document.element2);
assert.strictEqual(js.document.element2, 'text2');
});
});
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/tests_xml2js.js
@@ -0,0 +1,99 @@
(function (root, factory) {
'use strict';
 
if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but only CommonJS-like
// environments that support module.exports, like Node.
factory(require('./x2js'), require('qunit-cli'));
} else {
// Browser globals (root is window)
factory(root.X2JS, root.QUnit);
}
})(this, function (X2JS, QUnit) {
'use strict';
 
// Test cases are full of magic numbers and that's fine.
/* eslint-disable no-magic-numbers */
 
QUnit.module('Converting XML to JavaScript objects');
 
QUnit.test('Basic XML', function (assert) {
var xml = '<document>' +
'<element attribute="value" />' +
'<elementX />' +
'<elementX />' +
'<elementY>hello there</elementY>' +
'<elementZ><![CDATA[hello again]]></elementZ>' +
'<elementZA>Test<![CDATA[ hello again]]></elementZA>' +
'</document>';
var x = new X2JS();
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.ok(js.document.element._attribute);
assert.strictEqual(js.document.element._attribute, 'value');
 
assert.ok(js.document.elementX);
assert.ok(js.document.elementX.length);
assert.strictEqual(js.document.elementX.length, 2);
assert.strictEqual(js.document.elementX[0], '');
assert.strictEqual(js.document.elementX[1], '');
 
assert.ok(js.document.elementY);
assert.strictEqual(js.document.elementY.toString(), 'hello there');
assert.strictEqual(js.document.elementY, 'hello there');
 
assert.ok(js.document.elementZ);
assert.strictEqual(js.document.elementZ.toString(), 'hello again');
assert.strictEqual(js.document.elementZ, 'hello again');
 
assert.ok(js.document.elementZA);
assert.strictEqual(js.document.elementZA.toString(), 'Test hello again');
assert.strictEqual(js.document.elementZA.__cdata, ' hello again');
});
 
QUnit.test('XML with namespace prefixes', function (assert) {
var xml = '<ns:root xmlns:ns="http://example.com" xmlns:ns2="http://example.com(2)">' +
'<nonamespace>' +
'<ns2:el ns:attribute="yes" />' +
'</nonamespace>' +
'</ns:root>';
 
var x = new X2JS();
var js = x.xml2js(xml);
 
// We don't understand namespaces but we do remember the prefixes.
assert.ok(js);
assert.ok(js.root);
assert.strictEqual(js.root.__prefix, 'ns');
assert.ok(js.root.nonamespace);
assert.ok(js.root.nonamespace.el);
assert.strictEqual(js.root.nonamespace.el.__prefix, 'ns2');
 
// Except for attributes, which we don't acknowledge can even use namespaces.
// Perhaps not the most convenient but whatever, not an important feature.
assert.ok(js.root.nonamespace.el['_ns:attribute']);
});
 
QUnit.test('XML with declaration', function (assert) {
var xml = '<?xml version="1.0" encoding="utf-8" ?>\n' +
'<document>' +
'<element>great success</element>' +
'</document>';
var x = new X2JS();
var js = x.xml2js(xml);
 
assert.ok(js.document);
assert.ok(js.document.element);
assert.strictEqual(js.document.element, 'great success');
});
 
QUnit.test('Passing non-string to xml2js returns null', function (assert) {
var x = new X2JS();
 
assert.propEqual(x.xml2js({ "wololo": "rogan" }), null);
assert.propEqual(x.xml2js(99), null);
assert.propEqual(x.xml2js(undefined), null);
});
});
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/x2js.d.ts
@@ -0,0 +1,253 @@
/**
* Transforms between XML string and JavaScript object trees.
*
* @class X2JS
*/
declare class X2JS {
/**
* Creates an instance of X2JS.
*
* @param {X2JS.Options} [config]
*
* @memberOf X2JS
*/
constructor(config?: X2JS.Options);
 
/**
* Converts the provided property into an array. If the property is already an Array then it will return unchanged.
*
* @template T
* @param {(T | Array<T>)} prop
* @returns {Array<T>}
*
* @memberOf X2JS
*/
asArray<T>(prop: T | Array<T>): Array<T>;
 
/**
* Converts the provided date value to a valid XML string.
*
* @param {(Date | number)} dt
* @returns {string}
*
* @memberOf X2JS
*/
toXmlDateTime(dt: Date | number): string;
 
/**
* Converts the provided date string into a javascript Date instance.
*
* @param {string} prop
* @returns {Date}
*
* @memberOf X2JS
*/
asDateTime(prop: string): Date;
 
/**
* Transformns an XML string into DOM-tree
*
* @param {string} xml
* @returns {Node}
*
* @memberOf X2JS
*/
xml2dom(xml: string): Document;
 
 
/**
* Transforms a DOM tree to JavaScript objects.
*
* @template T
* @param {Node} domNode
* @returns {T}
*
* @memberOf X2JS
*/
dom2js<T>(domNode: Document): T;
 
/**
*
*
* @template T
* @param {T} jsObject
* @returns {Node}
*
* @memberOf X2JS
*/
js2dom<T>(jsObject: T): Document;
 
/**
* Transformns an XML string into JavaScript objects.
*
* @template T
* @param {string} xml
* @returns {T}
*
* @memberOf X2JS
*/
xml2js<T>(xml: string): T;
 
/**
* Transforms JavaScript objects into an XML string.
*
* @template T
* @param {T} json
* @returns {string}
*
* @memberOf X2JS
*/
js2xml<T>(json: T): string;
 
/**
* Gets the current version of x2js.
*
* @returns {string}
*
* @memberOf X2JS
*/
getVersion(): string;
}
 
declare namespace X2JS {
export interface Options {
/**
* If set to "property" then <element>_asArray will be created to allow you to access any element as an array (even if there is only one of it).
*
* @type {('property' | 'none')}
* @memberOf X2JS.Options
*/
arrayAccessForm?: 'property' | 'none';
 
/**
* If "text" then <empty></empty> will be transformed to "". If "object" then <empty></empty> will be transformed to {}.
*
* @type {('object' | 'text')}
* @memberOf X2JS.Options
*/
emptyNodeForm?: 'object' | 'text';
 
/**
* Allows attribute values to be converted on the fly during parsing to objects.
*
* @type {Array<X2JS.AttributeConverter>}
* @memberOf X2JS.Options
*/
attributeConverters?: Array<AttributeConverter>;
 
/**
* Any elements that match the paths here will have their text parsed as an XML datetime value (2011-11-12T13:00:00-07:00 style). The path can be a plain string (parent.child1.child2), a regex (/.*\.child2/) or function(elementPath).
*
* @type {(Array<string | RegExp | ((elementPath: string) => boolean)>)}
* @memberOf X2JS.Options
*/
datetimeAccessFormPaths?: Array<string | RegExp | ((elementPath: string) => boolean)>;
 
/**
* Any elements that match the paths listed here will be stored in JavaScript objects as arrays even if there is only one of them. The path can be a plain string (parent.child1.child2), a regex (/.*\.child2/) or function(elementName, elementPath).
*
* @type {(Array<string | RegExp | ((elementName: string, elementPath: string) => boolean)>)}
* @memberOf X2JS.Options
*/
arrayAccessFormPaths?: Array<string | RegExp | ((elementName: string, elementPath: string) => boolean)>;
 
/**
* If true, a toString function is generated to print nodes containing text or cdata. Useful if you want to accept both plain text and CData as equivalent inputs.
*
* @type {boolean}
* @memberOf X2JS.Options
*/
enableToStringFunc?: boolean;
 
/**
* If true, empty text tags are ignored for elements with child nodes.
*
* @type {boolean}
* @memberOf X2JS.Options
*/
skipEmptyTextNodesForObj?: boolean;
 
/**
* If true, whitespace is trimmed from text nodes.
*
* @type {boolean}
* @memberOf X2JS.Options
*/
stripWhitespaces?: boolean;
 
/**
* If true, double quotes are used in generated XML.
*
* @type {boolean}
* @memberOf X2JS.Options
*/
useDoubleQuotes?: boolean;
 
/**
* If true, the root element of the XML document is ignored when converting to objects. The result will directly have the root element's children as its own properties.
*
* @type {boolean}
* @memberOf X2JS.Options
*/
ignoreRoot?: boolean;
 
/**
* Whether XML characters in text are escaped when reading/writing XML.
*
* @type {boolean}
* @memberOf X2JS.Options
*/
escapeMode?: boolean;
 
/**
* Prefix to use for properties that are created to represent XML attributes.
*
* @type {string}
* @memberOf X2JS.Options
*/
attributePrefix?: string;
 
/**
* If true, empty elements will created as self closing elements (<element />). If false, empty elements will be created with start and end tags (<element></element>).
*
* @type {boolean}
* @memberOf X2JS.Options
*/
selfClosingElements?: boolean;
 
/**
* If this property defined as false and an XML element has CData node ONLY, it will be converted to text without additional property "__cdata".
*
* @type {boolean}
* @memberOf X2JS.Options
*/
keepCData?: boolean;
}
 
export interface AttributeConverter {
/**
* Indicates whether an attribute should be converted.
*
* @param {string} name
* @param {*} value
* @returns {boolean}
*
* @memberOf X2JS.AttributeConverter
*/
test(name: string, value: any): boolean;
 
/**
* Will be called for every attribute where test() returns true, replacing the original value of the attribute.
*
* @param {string} name
* @param {*} value
* @returns {string}
*
* @memberOf X2JS.AttributeConverter
*/
convert(name: string, value: any): string;
}
}
 
export = X2JS;
/bootstrap/001_bootstrap/bootstrap/node_modules/x2js/x2js.js
@@ -0,0 +1,732 @@
/*
Copyright 2015 Axinom
Copyright 2011-2013 Abdulla Abdurakhmanov
Original sources are available at https://code.google.com/p/x2js/
 
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
 
http://www.apache.org/licenses/LICENSE-2.0
 
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
 
/*
Supported export methods:
* AMD
* <script> (window.X2JS)
* Node.js
 
Limitations:
* Attribute namespace prefixes are not parsed as such.
* Overall the serialization/deserializaton code is "best effort" and not foolproof.
*/
 
// Module definition pattern used is returnExports from https://github.com/umdjs/umd
(function (root, factory) {
"use strict";
 
/* global define */
if (typeof define === 'function' && define.amd) {
// AMD. Register as an anonymous module.
define([], factory);
} else if (typeof module === 'object' && module.exports) {
// Node. Does not work with strict CommonJS, but only CommonJS-like
// environments that support module.exports, like Node.
module.exports = factory(require("xmldom").DOMParser);
} else {
// Browser globals (root is window)
root.X2JS = factory();
}
})(this, function (CustomDOMParser) {
"use strict";
 
// We return a constructor that can be used to make X2JS instances.
return function X2JS(config) {
var VERSION = "3.1.1";
 
config = config || {};
 
function initConfigDefaults() {
// If set to "property" then <element>_asArray will be created
// to allow you to access any element as an array (even if there is only one of it).
config.arrayAccessForm = config.arrayAccessForm || "none";
 
// If "text" then <empty></empty> will be transformed to "".
// If "object" then <empty></empty> will be transformed to {}.
config.emptyNodeForm = config.emptyNodeForm || "text";
 
// Allows attribute values to be converted on the fly during parsing to objects.
// "test": function(name, value) { return true; }
// "convert": function(name, value) { return parseFloat(value);
// convert() will be called for every attribute where test() returns true
// and the return value from convert() will replace the original value of the attribute.
config.attributeConverters = config.attributeConverters || [];
 
// Any elements that match the paths here will have their text parsed
// as an XML datetime value (2011-11-12T13:00:00-07:00 style).
// The path can be a plain string (parent.child1.child2),
// a regex (/.*\.child2/) or function(elementPath).
config.datetimeAccessFormPaths = config.datetimeAccessFormPaths || [];
 
// Any elements that match the paths listed here will be stored in JavaScript objects
// as arrays even if there is only one of them. The path can be a plain string
// (parent.child1.child2), a regex (/.*\.child2/) or function(elementName, elementPath).
config.arrayAccessFormPaths = config.arrayAccessFormPaths || [];
 
// If true, a toString function is generated to print nodes containing text or cdata.
// Useful if you want to accept both plain text and CData as equivalent inputs.
if (config.enableToStringFunc === undefined) {
config.enableToStringFunc = true;
}
 
// If true, empty text tags are ignored for elements with child nodes.
if (config.skipEmptyTextNodesForObj === undefined) {
config.skipEmptyTextNodesForObj = true;
}
 
// If true, whitespace is trimmed from text nodes.
if (config.stripWhitespaces === undefined) {
config.stripWhitespaces = true;
}
 
// If true, double quotes are used in generated XML.
if (config.useDoubleQuotes === undefined) {
config.useDoubleQuotes = true;
}
 
// If true, the root element of the XML document is ignored when converting to objects.
// The result will directly have the root element's children as its own properties.
if (config.ignoreRoot === undefined) {
config.ignoreRoot = false;
}
 
// Whether XML characters in text are escaped when reading/writing XML.
if (config.escapeMode === undefined) {
config.escapeMode = true;
}
 
// Prefix to use for properties that are created to represent XML attributes.
if (config.attributePrefix === undefined) {
config.attributePrefix = "_";
}
 
// If true, empty elements will created as self closing elements (<element />)
// If false, empty elements will be created with start and end tags (<element></element>)
if (config.selfClosingElements === undefined) {
config.selfClosingElements = true;
}
 
// If this property defined as false and an XML element has CData node ONLY, it will be converted to text without additional property "__cdata"
if (config.keepCData === undefined) {
config.keepCData = false;
}
}
 
function initRequiredPolyfills() {
function pad(number) {
var r = String(number);
if (r.length === 1) {
r = '0' + r;
}
return r;
}
// Hello IE8-
if (typeof String.prototype.trim !== 'function') {
String.prototype.trim = function trim() {
return this.replace(/^\s+|^\n+|(\s|\n)+$/g, '');
};
}
if (typeof Date.prototype.toISOString !== 'function') {
// Implementation from http://stackoverflow.com/questions/2573521/how-do-i-output-an-iso-8601-formatted-string-in-javascript
Date.prototype.toISOString = function toISOString() {
var MS_IN_S = 1000;
 
return this.getUTCFullYear()
+ '-' + pad(this.getUTCMonth() + 1)
+ '-' + pad(this.getUTCDate())
+ 'T' + pad(this.getUTCHours())
+ ':' + pad(this.getUTCMinutes())
+ ':' + pad(this.getUTCSeconds())
+ '.' + String((this.getUTCMilliseconds() / MS_IN_S).toFixed(3)).slice(2, 5)
+ 'Z';
};
}
}
 
initConfigDefaults();
initRequiredPolyfills();
 
var DOMNodeTypes = {
"ELEMENT_NODE": 1,
"TEXT_NODE": 3,
"CDATA_SECTION_NODE": 4,
"COMMENT_NODE": 8,
"DOCUMENT_NODE": 9
};
 
function getDomNodeLocalName(domNode) {
var localName = domNode.localName;
if (localName == null) {
// Yeah, this is IE!!
localName = domNode.baseName;
}
if (localName == null || localName === "") {
// ==="" is IE too
localName = domNode.nodeName;
}
return localName;
}
 
function getDomNodeNamespacePrefix(node) {
return node.prefix;
}
 
function escapeXmlChars(str) {
if (typeof str === "string")
return str.replace(/&/g, '&amp;').replace(/</g, '&lt;').replace(/>/g, '&gt;').replace(/"/g, '&quot;').replace(/'/g, '&#x27;');
else
return str;
}
 
function unescapeXmlChars(str) {
return str.replace(/&lt;/g, '<').replace(/&gt;/g, '>').replace(/&quot;/g, '"').replace(/&#x27;/g, "'").replace(/&amp;/g, '&');
}
 
function ensureProperArrayAccessForm(element, childName, elementPath) {
switch (config.arrayAccessForm) {
case "property":
if (!(element[childName] instanceof Array))
element[childName + "_asArray"] = [element[childName]];
else
element[childName + "_asArray"] = element[childName];
break;
}
 
if (!(element[childName] instanceof Array) && config.arrayAccessFormPaths.length > 0) {
var match = false;
 
for (var i = 0; i < config.arrayAccessFormPaths.length; i++) {
var arrayPath = config.arrayAccessFormPaths[i];
if (typeof arrayPath === "string") {
if (arrayPath === elementPath) {
match = true;
break;
}
} else if (arrayPath instanceof RegExp) {
if (arrayPath.test(elementPath)) {
match = true;
break;
}
} else if (typeof arrayPath === "function") {
if (arrayPath(childName, elementPath)) {
match = true;
break;
}
}
}
 
if (match)
element[childName] = [element[childName]];
}
}
 
function xmlDateTimeToDate(prop) {
// Implementation based up on http://stackoverflow.com/questions/8178598/xml-datetime-to-javascript-date-object
// Improved to support full spec and optional parts
var MINUTES_PER_HOUR = 60;
 
var bits = prop.split(/[-T:+Z]/g);
 
var d = new Date(bits[0], bits[1] - 1, bits[2]);
var secondBits = bits[5].split("\.");
d.setHours(bits[3], bits[4], secondBits[0]);
if (secondBits.length > 1)
d.setMilliseconds(secondBits[1]);
 
// Get supplied time zone offset in minutes
if (bits[6] && bits[7]) {
var offsetMinutes = bits[6] * MINUTES_PER_HOUR + Number(bits[7]);
var sign = /\d\d-\d\d:\d\d$/.test(prop) ? '-' : '+';
 
// Apply the sign
offsetMinutes = 0 + (sign === '-' ? -1 * offsetMinutes : offsetMinutes);
 
// Apply offset and local timezone
d.setMinutes(d.getMinutes() - offsetMinutes - d.getTimezoneOffset());
} else if (prop.indexOf("Z", prop.length - 1) !== -1) {
d = new Date(Date.UTC(d.getFullYear(), d.getMonth(), d.getDate(), d.getHours(), d.getMinutes(), d.getSeconds(), d.getMilliseconds()));
}
 
// d is now a local time equivalent to the supplied time
return d;
}
 
function convertToDateIfRequired(value, childName, fullPath) {
if (config.datetimeAccessFormPaths.length > 0) {
var pathWithoutTextNode = fullPath.split("\.#")[0];
 
for (var i = 0; i < config.datetimeAccessFormPaths.length; i++) {
var candidatePath = config.datetimeAccessFormPaths[i];
if (typeof candidatePath === "string") {
if (candidatePath === pathWithoutTextNode)
return xmlDateTimeToDate(value);
} else if (candidatePath instanceof RegExp) {
if (candidatePath.test(pathWithoutTextNode))
return xmlDateTimeToDate(value);
} else if (typeof candidatePath === "function") {
if (candidatePath(pathWithoutTextNode))
return xmlDateTimeToDate(value);
}
}
}
 
return value;
}
 
function deserializeRootElementChildren(rootElement) {
var result = {};
var children = rootElement.childNodes;
 
// Alternative for firstElementChild which is not supported in some environments
for (var i = 0; i < children.length; i++) {
var child = children.item(i);
if (child.nodeType === DOMNodeTypes.ELEMENT_NODE) {
var childName = getDomNodeLocalName(child);
 
if (config.ignoreRoot)
result = deserializeDomChildren(child, childName);
else
result[childName] = deserializeDomChildren(child, childName);
}
}
 
return result;
}
 
function deserializeElementChildren(element, elementPath) {
var result = {};
result.__cnt = 0;
 
var nodeChildren = element.childNodes;
 
// Child nodes.
for (var iChild = 0; iChild < nodeChildren.length; iChild++) {
var child = nodeChildren.item(iChild);
var childName = getDomNodeLocalName(child);
 
if (child.nodeType === DOMNodeTypes.COMMENT_NODE)
continue;
 
result.__cnt++;
 
// We deliberately do not accept everything falsey here because
// elements that resolve to empty string should still be preserved.
if (result[childName] == null) {
result[childName] = deserializeDomChildren(child, elementPath + "." + childName);
ensureProperArrayAccessForm(result, childName, elementPath + "." + childName);
} else {
if (!(result[childName] instanceof Array)) {
result[childName] = [result[childName]];
ensureProperArrayAccessForm(result, childName, elementPath + "." + childName);
}
 
result[childName][result[childName].length] = deserializeDomChildren(child, elementPath + "." + childName);
}
}
 
// Attributes
for (var iAttribute = 0; iAttribute < element.attributes.length; iAttribute++) {
var attribute = element.attributes.item(iAttribute);
result.__cnt++;
 
var adjustedValue = attribute.value;
for (var iConverter = 0; iConverter < config.attributeConverters.length; iConverter++) {
var converter = config.attributeConverters[iConverter];
if (converter.test.call(null, attribute.name, attribute.value))
adjustedValue = converter.convert.call(null, attribute.name, attribute.value);
}
 
result[config.attributePrefix + attribute.name] = adjustedValue;
}
 
// Node namespace prefix
var namespacePrefix = getDomNodeNamespacePrefix(element);
if (namespacePrefix) {
result.__cnt++;
result.__prefix = namespacePrefix;
}
 
if (result["#text"]) {
result.__text = result["#text"];
 
if (result.__text instanceof Array) {
result.__text = result.__text.join("\n");
}
 
if (config.escapeMode)
result.__text = unescapeXmlChars(result.__text);
 
if (config.stripWhitespaces)
result.__text = result.__text.trim();
 
delete result["#text"];
 
if (config.arrayAccessForm === "property")
delete result["#text_asArray"];
 
result.__text = convertToDateIfRequired(result.__text, "#text", elementPath + ".#text");
}
 
if (result.hasOwnProperty('#cdata-section')) {
result.__cdata = result["#cdata-section"];
delete result["#cdata-section"];
 
if (config.arrayAccessForm === "property")
delete result["#cdata-section_asArray"];
}
 
if (result.__cnt === 1 && result.__text) {
result = result.__text;
} else if (result.__cnt === 0 && config.emptyNodeForm === "text") {
result = '';
} else if (result.__cnt > 1 && result.__text !== undefined && config.skipEmptyTextNodesForObj) {
if (config.stripWhitespaces && result.__text === "" || result.__text.trim() === "") {
delete result.__text;
}
}
delete result.__cnt;
if (!config.keepCData && (!result.hasOwnProperty('__text') && result.hasOwnProperty('__cdata'))) {
return (result.__cdata ? result.__cdata : '');
}
 
if (config.enableToStringFunc && (result.__text || result.__cdata)) {
result.toString = function toString() {
return (this.__text ? this.__text : '') + (this.__cdata ? this.__cdata : '');
};
}
 
return result;
}
 
function deserializeDomChildren(node, parentPath) {
if (node.nodeType === DOMNodeTypes.DOCUMENT_NODE) {
return deserializeRootElementChildren(node);
} else if (node.nodeType === DOMNodeTypes.ELEMENT_NODE) {
return deserializeElementChildren(node, parentPath);
} else if (node.nodeType === DOMNodeTypes.TEXT_NODE || node.nodeType === DOMNodeTypes.CDATA_SECTION_NODE) {
return node.nodeValue;
} else {
return null;
}
}
 
function serializeStartTag(jsObject, elementName, attributeNames, selfClosing) {
var resultStr = "<" + ((jsObject && jsObject.__prefix) ? (jsObject.__prefix + ":") : "") + elementName;
 
if (attributeNames) {
for (var i = 0; i < attributeNames.length; i++) {
var attributeName = attributeNames[i];
var attributeValue = jsObject[attributeName];
 
if (config.escapeMode)
attributeValue = escapeXmlChars(attributeValue);
 
resultStr += " " + attributeName.substr(config.attributePrefix.length) + "=";
 
if (config.useDoubleQuotes)
resultStr += '"' + attributeValue + '"';
else
resultStr += "'" + attributeValue + "'";
}
}
 
if (!selfClosing)
resultStr += ">";
else
resultStr += " />";
 
return resultStr;
}
 
function serializeEndTag(jsObject, elementName) {
return "</" + ((jsObject && jsObject.__prefix) ? (jsObject.__prefix + ":") : "") + elementName + ">";
}
 
function endsWith(str, suffix) {
return str.indexOf(suffix, str.length - suffix.length) !== -1;
}
 
function isSpecialProperty(jsonObj, propertyName) {
if ((config.arrayAccessForm === "property" && endsWith(propertyName.toString(), ("_asArray")))
|| propertyName.toString().indexOf(config.attributePrefix) === 0
|| propertyName.toString().indexOf("__") === 0
|| (jsonObj[propertyName] instanceof Function))
return true;
else
return false;
}
 
function getDataElementCount(jsObject) {
var count = 0;
 
if (jsObject instanceof Object) {
for (var propertyName in jsObject) {
if (isSpecialProperty(jsObject, propertyName))
continue;
 
count++;
}
}
 
return count;
}
 
function getDataAttributeNames(jsObject) {
var names = [];
 
if (jsObject instanceof Object) {
for (var attributeName in jsObject) {
if (attributeName.toString().indexOf("__") === -1
&& attributeName.toString().indexOf(config.attributePrefix) === 0) {
names.push(attributeName);
}
}
}
 
return names;
}
 
function serializeComplexTextNodeContents(textNode) {
var result = "";
 
if (textNode.__cdata) {
result += "<![CDATA[" + textNode.__cdata + "]]>";
}
 
if (textNode.__text) {
if (config.escapeMode)
result += escapeXmlChars(textNode.__text);
else
result += textNode.__text;
}
 
return result;
}
 
function serializeTextNodeContents(textNode) {
var result = "";
 
if (textNode instanceof Object) {
result += serializeComplexTextNodeContents(textNode);
} else if (textNode !== null) {
if (config.escapeMode)
result += escapeXmlChars(textNode);
else
result += textNode;
}
 
return result;
}
 
function serializeArray(elementArray, elementName, attributes) {
var result = "";
 
if (elementArray.length === 0) {
result += serializeStartTag(elementArray, elementName, attributes, true);
} else {
for (var i = 0; i < elementArray.length; i++) {
result += serializeJavaScriptObject(elementArray[i], elementName, getDataAttributeNames(elementArray[i]));
}
}
 
return result;
}
 
function serializeJavaScriptObject(element, elementName, attributes) {
var result = "";
 
if ((element === undefined || element === null || element === '') && config.selfClosingElements) {
result += serializeStartTag(element, elementName, attributes, true);
} else if (typeof element === 'object') {
if (Object.prototype.toString.call(element) === '[object Array]') {
result += serializeArray(element, elementName, attributes);
} else if (element instanceof Date) {
result += serializeStartTag(element, elementName, attributes, false);
result += element.toISOString();
result += serializeEndTag(element, elementName);
} else {
var childElementCount = getDataElementCount(element);
if (childElementCount > 0 || element.__text || element.__cdata) {
result += serializeStartTag(element, elementName, attributes, false);
result += serializeJavaScriptObjectChildren(element);
result += serializeEndTag(element, elementName);
} else if (config.selfClosingElements) {
result += serializeStartTag(element, elementName, attributes, true);
} else {
result += serializeStartTag(element, elementName, attributes, false);
result += serializeEndTag(element, elementName);
}
}
} else {
result += serializeStartTag(element, elementName, attributes, false);
result += serializeTextNodeContents(element);
result += serializeEndTag(element, elementName);
}
 
return result;
}
 
function serializeJavaScriptObjectChildren(jsObject) {
var result = "";
 
var elementCount = getDataElementCount(jsObject);
 
if (elementCount > 0) {
for (var elementName in jsObject) {
if (isSpecialProperty(jsObject, elementName))
continue;
 
var element = jsObject[elementName];
var attributes = getDataAttributeNames(element);
 
result += serializeJavaScriptObject(element, elementName, attributes);
}
}
 
result += serializeTextNodeContents(jsObject);
 
return result;
}
 
function parseXml(xml) {
if (xml === undefined) {
return null;
}
 
if (typeof xml !== "string") {
return null;
}
 
var parser = null;
var domNode = null;
 
if (CustomDOMParser) {
// This branch is used for node.js, with the xmldom parser.
parser = new CustomDOMParser();
 
domNode = parser.parseFromString(xml, "text/xml");
} else if (window && window.DOMParser) {
parser = new window.DOMParser();
var parsererrorNS = null;
 
var isIEParser = window.ActiveXObject || "ActiveXObject" in window;
 
// IE9+ now is here
if (!isIEParser) {
try {
parsererrorNS = parser.parseFromString("INVALID", "text/xml").childNodes[0].namespaceURI;
} catch (err) {
parsererrorNS = null;
}
}
 
try {
domNode = parser.parseFromString(xml, "text/xml");
if (parsererrorNS !== null && domNode.getElementsByTagNameNS(parsererrorNS, "parsererror").length > 0) {
domNode = null;
}
} catch (err) {
domNode = null;
}
} else {
// IE :(
if (xml.indexOf("<?") === 0) {
xml = xml.substr(xml.indexOf("?>") + 2);
}
 
/* global ActiveXObject */
domNode = new ActiveXObject("Microsoft.XMLDOM");
domNode.async = "false";
domNode.loadXML(xml);
}
 
return domNode;
}
 
this.asArray = function asArray(prop) {
if (prop === undefined || prop === null) {
return [];
} else if (prop instanceof Array) {
return prop;
} else {
return [prop];
}
};
 
this.toXmlDateTime = function toXmlDateTime(dt) {
if (dt instanceof Date) {
return dt.toISOString();
} else if (typeof (dt) === 'number') {
return new Date(dt).toISOString();
} else {
return null;
}
};
 
this.asDateTime = function asDateTime(prop) {
if (typeof (prop) === "string") {
return xmlDateTimeToDate(prop);
} else {
return prop;
}
};
 
/*
Internally the logic works in a cycle:
DOM->JS - implemented by custom logic (deserialization).
JS->XML - implemented by custom logic (serialization).
XML->DOM - implemented by browser.
*/
 
// Transformns an XML string into DOM-tree
this.xml2dom = function xml2dom(xml) {
return parseXml(xml);
};
 
// Transforms a DOM tree to JavaScript objects.
this.dom2js = function dom2js(domNode) {
return deserializeDomChildren(domNode, null);
};
 
// Transforms JavaScript objects to a DOM tree.
this.js2dom = function js2dom(jsObject) {
var xml = this.js2xml(jsObject);
return parseXml(xml);
};
 
// Transformns an XML string into JavaScript objects.
this.xml2js = function xml2js(xml) {
var domNode = parseXml(xml);
if (domNode != null)
return this.dom2js(domNode);
else
return null;
};
 
// Transforms JavaScript objects into an XML string.
this.js2xml = function js2xml(jsObject) {
return serializeJavaScriptObjectChildren(jsObject);
};
 
this.getVersion = function getVersion() {
return VERSION;
};
};
});
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/.npmignore
@@ -0,0 +1,5 @@
test
t
travis.yml
.project
changelog
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/.travis.yml
@@ -0,0 +1,22 @@
language: node_js
 
node_js:
- '0.10'
 
branches:
only:
- master
- proof
- travis-ci
 
# Not using `npm install --dev` because it is recursive. It will pull in the all
# 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="
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/LICENSE
@@ -0,0 +1,8 @@
You can choose any one of those:
 
The MIT License (MIT):
 
link:http://opensource.org/licenses/MIT
 
LGPL:
http://www.gnu.org/licenses/lgpl.html
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/__package__.js
@@ -0,0 +1,4 @@
this.addScript('dom.js',['DOMImplementation','XMLSerializer']);
this.addScript('dom-parser.js',['DOMHandler','DOMParser'],
['DOMImplementation','XMLReader']);
this.addScript('sax.js','XMLReader');
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/changelog
@@ -0,0 +1,14 @@
### Version 0.1.16
 
Sat May 4 14:58:03 UTC 2013
 
* Correctly handle multibyte Unicode greater than two byts. #57. #56.
* Initial unit testing and test coverage. #53. #46. #19.
* Create Bower `component.json` #52.
 
### Version 0.1.8
 
* Add: some test case from node-o3-xml(excludes xpath support)
* Fix: remove existed attribute before setting (bug introduced in v0.1.5)
* Fix: index direct access for childNodes and any NodeList collection(not w3c standard)
* Fix: remove last child bug
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/component.json
@@ -0,0 +1,10 @@
{
"name": "xmldom",
"version": "0.1.15",
"main": "dom-parser.js",
"ignore": [
"**/.*",
"node_modules",
"components"
]
}
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/dom-parser.js
@@ -0,0 +1,251 @@
function DOMParser(options){
this.options = options ||{locator:{}};
}
DOMParser.prototype.parseFromString = function(source,mimeType){
var options = this.options;
var sax = new XMLReader();
var domBuilder = options.domBuilder || new DOMHandler();//contentHandler and LexicalHandler
var errorHandler = options.errorHandler;
var locator = options.locator;
var defaultNSMap = options.xmlns||{};
var entityMap = {'lt':'<','gt':'>','amp':'&','quot':'"','apos':"'"}
if(locator){
domBuilder.setDocumentLocator(locator)
}
sax.errorHandler = buildErrorHandler(errorHandler,domBuilder,locator);
sax.domBuilder = options.domBuilder || domBuilder;
if(/\/x?html?$/.test(mimeType)){
entityMap.nbsp = '\xa0';
entityMap.copy = '\xa9';
defaultNSMap['']= 'http://www.w3.org/1999/xhtml';
}
defaultNSMap.xml = defaultNSMap.xml || 'http://www.w3.org/XML/1998/namespace';
if(source){
sax.parse(source,defaultNSMap,entityMap);
}else{
sax.errorHandler.error("invalid doc source");
}
return domBuilder.doc;
}
function buildErrorHandler(errorImpl,domBuilder,locator){
if(!errorImpl){
if(domBuilder instanceof DOMHandler){
return domBuilder;
}
errorImpl = domBuilder ;
}
var errorHandler = {}
var isCallback = errorImpl instanceof Function;
locator = locator||{}
function build(key){
var fn = errorImpl[key];
if(!fn && isCallback){
fn = errorImpl.length == 2?function(msg){errorImpl(key,msg)}:errorImpl;
}
errorHandler[key] = fn && function(msg){
fn('[xmldom '+key+']\t'+msg+_locator(locator));
}||function(){};
}
build('warning');
build('error');
build('fatalError');
return errorHandler;
}
 
//console.log('#\n\n\n\n\n\n\n####')
/**
* +ContentHandler+ErrorHandler
* +LexicalHandler+EntityResolver2
* -DeclHandler-DTDHandler
*
* DefaultHandler:EntityResolver, DTDHandler, ContentHandler, ErrorHandler
* DefaultHandler2:DefaultHandler,LexicalHandler, DeclHandler, EntityResolver2
* @link http://www.saxproject.org/apidoc/org/xml/sax/helpers/DefaultHandler.html
*/
function DOMHandler() {
this.cdata = false;
}
function position(locator,node){
node.lineNumber = locator.lineNumber;
node.columnNumber = locator.columnNumber;
}
/**
* @see org.xml.sax.ContentHandler#startDocument
* @link http://www.saxproject.org/apidoc/org/xml/sax/ContentHandler.html
*/
DOMHandler.prototype = {
startDocument : function() {
this.doc = new DOMImplementation().createDocument(null, null, null);
if (this.locator) {
this.doc.documentURI = this.locator.systemId;
}
},
startElement:function(namespaceURI, localName, qName, attrs) {
var doc = this.doc;
var el = doc.createElementNS(namespaceURI, qName||localName);
var len = attrs.length;
appendElement(this, el);
this.currentElement = el;
this.locator && position(this.locator,el)
for (var i = 0 ; i < len; i++) {
var namespaceURI = attrs.getURI(i);
var value = attrs.getValue(i);
var qName = attrs.getQName(i);
var attr = doc.createAttributeNS(namespaceURI, qName);
this.locator &&position(attrs.getLocator(i),attr);
attr.value = attr.nodeValue = value;
el.setAttributeNode(attr)
}
},
endElement:function(namespaceURI, localName, qName) {
var current = this.currentElement
var tagName = current.tagName;
this.currentElement = current.parentNode;
},
startPrefixMapping:function(prefix, uri) {
},
endPrefixMapping:function(prefix) {
},
processingInstruction:function(target, data) {
var ins = this.doc.createProcessingInstruction(target, data);
this.locator && position(this.locator,ins)
appendElement(this, ins);
},
ignorableWhitespace:function(ch, start, length) {
},
characters:function(chars, start, length) {
chars = _toString.apply(this,arguments)
//console.log(chars)
if(chars){
if (this.cdata) {
var charNode = this.doc.createCDATASection(chars);
} else {
var charNode = this.doc.createTextNode(chars);
}
if(this.currentElement){
this.currentElement.appendChild(charNode);
}else if(/^\s*$/.test(chars)){
this.doc.appendChild(charNode);
//process xml
}
this.locator && position(this.locator,charNode)
}
},
skippedEntity:function(name) {
},
endDocument:function() {
this.doc.normalize();
},
setDocumentLocator:function (locator) {
if(this.locator = locator){// && !('lineNumber' in locator)){
locator.lineNumber = 0;
}
},
//LexicalHandler
comment:function(chars, start, length) {
chars = _toString.apply(this,arguments)
var comm = this.doc.createComment(chars);
this.locator && position(this.locator,comm)
appendElement(this, comm);
},
startCDATA:function() {
//used in characters() methods
this.cdata = true;
},
endCDATA:function() {
this.cdata = false;
},
startDTD:function(name, publicId, systemId) {
var impl = this.doc.implementation;
if (impl && impl.createDocumentType) {
var dt = impl.createDocumentType(name, publicId, systemId);
this.locator && position(this.locator,dt)
appendElement(this, dt);
}
},
/**
* @see org.xml.sax.ErrorHandler
* @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html
*/
warning:function(error) {
console.warn('[xmldom warning]\t'+error,_locator(this.locator));
},
error:function(error) {
console.error('[xmldom error]\t'+error,_locator(this.locator));
},
fatalError:function(error) {
console.error('[xmldom fatalError]\t'+error,_locator(this.locator));
throw error;
}
}
function _locator(l){
if(l){
return '\n@'+(l.systemId ||'')+'#[line:'+l.lineNumber+',col:'+l.columnNumber+']'
}
}
function _toString(chars,start,length){
if(typeof chars == 'string'){
return chars.substr(start,length)
}else{//java sax connect width xmldom on rhino(what about: "? && !(chars instanceof String)")
if(chars.length >= start+length || start){
return new java.lang.String(chars,start,length)+'';
}
return chars;
}
}
 
/*
* @link http://www.saxproject.org/apidoc/org/xml/sax/ext/LexicalHandler.html
* used method of org.xml.sax.ext.LexicalHandler:
* #comment(chars, start, length)
* #startCDATA()
* #endCDATA()
* #startDTD(name, publicId, systemId)
*
*
* IGNORED method of org.xml.sax.ext.LexicalHandler:
* #endDTD()
* #startEntity(name)
* #endEntity(name)
*
*
* @link http://www.saxproject.org/apidoc/org/xml/sax/ext/DeclHandler.html
* IGNORED method of org.xml.sax.ext.DeclHandler
* #attributeDecl(eName, aName, type, mode, value)
* #elementDecl(name, model)
* #externalEntityDecl(name, publicId, systemId)
* #internalEntityDecl(name, value)
* @link http://www.saxproject.org/apidoc/org/xml/sax/ext/EntityResolver2.html
* IGNORED method of org.xml.sax.EntityResolver2
* #resolveEntity(String name,String publicId,String baseURI,String systemId)
* #resolveEntity(publicId, systemId)
* #getExternalSubset(name, baseURI)
* @link http://www.saxproject.org/apidoc/org/xml/sax/DTDHandler.html
* IGNORED method of org.xml.sax.DTDHandler
* #notationDecl(name, publicId, systemId) {};
* #unparsedEntityDecl(name, publicId, systemId, notationName) {};
*/
"endDTD,startEntity,endEntity,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,resolveEntity,getExternalSubset,notationDecl,unparsedEntityDecl".replace(/\w+/g,function(key){
DOMHandler.prototype[key] = function(){return null}
})
 
/* Private static helpers treated below as private instance methods, so don't need to add these to the public API; we might use a Relator to also get rid of non-standard public properties */
function appendElement (hander,node) {
if (!hander.currentElement) {
hander.doc.appendChild(node);
} else {
hander.currentElement.appendChild(node);
}
}//appendChild and setAttributeNS are preformance key
 
//if(typeof require == 'function'){
var XMLReader = require('./sax').XMLReader;
var DOMImplementation = exports.DOMImplementation = require('./dom').DOMImplementation;
exports.XMLSerializer = require('./dom').XMLSerializer ;
exports.DOMParser = DOMParser;
//}
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/dom.js
@@ -0,0 +1,1244 @@
/*
* DOM Level 2
* Object DOMException
* @see http://www.w3.org/TR/REC-DOM-Level-1/ecma-script-language-binding.html
* @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/ecma-script-binding.html
*/
 
function copy(src,dest){
for(var p in src){
dest[p] = src[p];
}
}
/**
^\w+\.prototype\.([_\w]+)\s*=\s*((?:.*\{\s*?[\r\n][\s\S]*?^})|\S.*?(?=[;\r\n]));?
^\w+\.prototype\.([_\w]+)\s*=\s*(\S.*?(?=[;\r\n]));?
*/
function _extends(Class,Super){
var pt = Class.prototype;
if(Object.create){
var ppt = Object.create(Super.prototype)
pt.__proto__ = ppt;
}
if(!(pt instanceof Super)){
function t(){};
t.prototype = Super.prototype;
t = new t();
copy(pt,t);
Class.prototype = pt = t;
}
if(pt.constructor != Class){
if(typeof Class != 'function'){
console.error("unknow Class:"+Class)
}
pt.constructor = Class
}
}
var htmlns = 'http://www.w3.org/1999/xhtml' ;
// Node Types
var NodeType = {}
var ELEMENT_NODE = NodeType.ELEMENT_NODE = 1;
var ATTRIBUTE_NODE = NodeType.ATTRIBUTE_NODE = 2;
var TEXT_NODE = NodeType.TEXT_NODE = 3;
var CDATA_SECTION_NODE = NodeType.CDATA_SECTION_NODE = 4;
var ENTITY_REFERENCE_NODE = NodeType.ENTITY_REFERENCE_NODE = 5;
var ENTITY_NODE = NodeType.ENTITY_NODE = 6;
var PROCESSING_INSTRUCTION_NODE = NodeType.PROCESSING_INSTRUCTION_NODE = 7;
var COMMENT_NODE = NodeType.COMMENT_NODE = 8;
var DOCUMENT_NODE = NodeType.DOCUMENT_NODE = 9;
var DOCUMENT_TYPE_NODE = NodeType.DOCUMENT_TYPE_NODE = 10;
var DOCUMENT_FRAGMENT_NODE = NodeType.DOCUMENT_FRAGMENT_NODE = 11;
var NOTATION_NODE = NodeType.NOTATION_NODE = 12;
 
// ExceptionCode
var ExceptionCode = {}
var ExceptionMessage = {};
var INDEX_SIZE_ERR = ExceptionCode.INDEX_SIZE_ERR = ((ExceptionMessage[1]="Index size error"),1);
var DOMSTRING_SIZE_ERR = ExceptionCode.DOMSTRING_SIZE_ERR = ((ExceptionMessage[2]="DOMString size error"),2);
var HIERARCHY_REQUEST_ERR = ExceptionCode.HIERARCHY_REQUEST_ERR = ((ExceptionMessage[3]="Hierarchy request error"),3);
var WRONG_DOCUMENT_ERR = ExceptionCode.WRONG_DOCUMENT_ERR = ((ExceptionMessage[4]="Wrong document"),4);
var INVALID_CHARACTER_ERR = ExceptionCode.INVALID_CHARACTER_ERR = ((ExceptionMessage[5]="Invalid character"),5);
var NO_DATA_ALLOWED_ERR = ExceptionCode.NO_DATA_ALLOWED_ERR = ((ExceptionMessage[6]="No data allowed"),6);
var NO_MODIFICATION_ALLOWED_ERR = ExceptionCode.NO_MODIFICATION_ALLOWED_ERR = ((ExceptionMessage[7]="No modification allowed"),7);
var NOT_FOUND_ERR = ExceptionCode.NOT_FOUND_ERR = ((ExceptionMessage[8]="Not found"),8);
var NOT_SUPPORTED_ERR = ExceptionCode.NOT_SUPPORTED_ERR = ((ExceptionMessage[9]="Not supported"),9);
var INUSE_ATTRIBUTE_ERR = ExceptionCode.INUSE_ATTRIBUTE_ERR = ((ExceptionMessage[10]="Attribute in use"),10);
//level2
var INVALID_STATE_ERR = ExceptionCode.INVALID_STATE_ERR = ((ExceptionMessage[11]="Invalid state"),11);
var SYNTAX_ERR = ExceptionCode.SYNTAX_ERR = ((ExceptionMessage[12]="Syntax error"),12);
var INVALID_MODIFICATION_ERR = ExceptionCode.INVALID_MODIFICATION_ERR = ((ExceptionMessage[13]="Invalid modification"),13);
var NAMESPACE_ERR = ExceptionCode.NAMESPACE_ERR = ((ExceptionMessage[14]="Invalid namespace"),14);
var INVALID_ACCESS_ERR = ExceptionCode.INVALID_ACCESS_ERR = ((ExceptionMessage[15]="Invalid access"),15);
 
 
function DOMException(code, message) {
if(message instanceof Error){
var error = message;
}else{
error = this;
Error.call(this, ExceptionMessage[code]);
this.message = ExceptionMessage[code];
if(Error.captureStackTrace) Error.captureStackTrace(this, DOMException);
}
error.code = code;
if(message) this.message = this.message + ": " + message;
return error;
};
DOMException.prototype = Error.prototype;
copy(ExceptionCode,DOMException)
/**
* @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-536297177
* The NodeList interface provides the abstraction of an ordered collection of nodes, without defining or constraining how this collection is implemented. NodeList objects in the DOM are live.
* The items in the NodeList are accessible via an integral index, starting from 0.
*/
function NodeList() {
};
NodeList.prototype = {
/**
* The number of nodes in the list. The range of valid child node indices is 0 to length-1 inclusive.
* @standard level1
*/
length:0,
/**
* Returns the indexth item in the collection. If index is greater than or equal to the number of nodes in the list, this returns null.
* @standard level1
* @param index unsigned long
* Index into the collection.
* @return Node
* The node at the indexth position in the NodeList, or null if that is not a valid index.
*/
item: function(index) {
return this[index] || null;
},
toString:function(isHTML,nodeFilter){
for(var buf = [], i = 0;i<this.length;i++){
serializeToString(this[i],buf,isHTML,nodeFilter);
}
return buf.join('');
}
};
function LiveNodeList(node,refresh){
this._node = node;
this._refresh = refresh
_updateLiveList(this);
}
function _updateLiveList(list){
var inc = list._node._inc || list._node.ownerDocument._inc;
if(list._inc != inc){
var ls = list._refresh(list._node);
//console.log(ls.length)
__set__(list,'length',ls.length);
copy(ls,list);
list._inc = inc;
}
}
LiveNodeList.prototype.item = function(i){
_updateLiveList(this);
return this[i];
}
 
_extends(LiveNodeList,NodeList);
/**
*
* Objects implementing the NamedNodeMap interface are used to represent collections of nodes that can be accessed by name. Note that NamedNodeMap does not inherit from NodeList; NamedNodeMaps are not maintained in any particular order. Objects contained in an object implementing NamedNodeMap may also be accessed by an ordinal index, but this is simply to allow convenient enumeration of the contents of a NamedNodeMap, and does not imply that the DOM specifies an order to these Nodes.
* NamedNodeMap objects in the DOM are live.
* used for attributes or DocumentType entities
*/
function NamedNodeMap() {
};
 
function _findNodeIndex(list,node){
var i = list.length;
while(i--){
if(list[i] === node){return i}
}
}
 
function _addNamedNode(el,list,newAttr,oldAttr){
if(oldAttr){
list[_findNodeIndex(list,oldAttr)] = newAttr;
}else{
list[list.length++] = newAttr;
}
if(el){
newAttr.ownerElement = el;
var doc = el.ownerDocument;
if(doc){
oldAttr && _onRemoveAttribute(doc,el,oldAttr);
_onAddAttribute(doc,el,newAttr);
}
}
}
function _removeNamedNode(el,list,attr){
//console.log('remove attr:'+attr)
var i = _findNodeIndex(list,attr);
if(i>=0){
var lastIndex = list.length-1
while(i<lastIndex){
list[i] = list[++i]
}
list.length = lastIndex;
if(el){
var doc = el.ownerDocument;
if(doc){
_onRemoveAttribute(doc,el,attr);
attr.ownerElement = null;
}
}
}else{
throw DOMException(NOT_FOUND_ERR,new Error(el.tagName+'@'+attr))
}
}
NamedNodeMap.prototype = {
length:0,
item:NodeList.prototype.item,
getNamedItem: function(key) {
// if(key.indexOf(':')>0 || key == 'xmlns'){
// return null;
// }
//console.log()
var i = this.length;
while(i--){
var attr = this[i];
//console.log(attr.nodeName,key)
if(attr.nodeName == key){
return attr;
}
}
},
setNamedItem: function(attr) {
var el = attr.ownerElement;
if(el && el!=this._ownerElement){
throw new DOMException(INUSE_ATTRIBUTE_ERR);
}
var oldAttr = this.getNamedItem(attr.nodeName);
_addNamedNode(this._ownerElement,this,attr,oldAttr);
return oldAttr;
},
/* returns Node */
setNamedItemNS: function(attr) {// raises: WRONG_DOCUMENT_ERR,NO_MODIFICATION_ALLOWED_ERR,INUSE_ATTRIBUTE_ERR
var el = attr.ownerElement, oldAttr;
if(el && el!=this._ownerElement){
throw new DOMException(INUSE_ATTRIBUTE_ERR);
}
oldAttr = this.getNamedItemNS(attr.namespaceURI,attr.localName);
_addNamedNode(this._ownerElement,this,attr,oldAttr);
return oldAttr;
},
 
/* returns Node */
removeNamedItem: function(key) {
var attr = this.getNamedItem(key);
_removeNamedNode(this._ownerElement,this,attr);
return attr;
},// raises: NOT_FOUND_ERR,NO_MODIFICATION_ALLOWED_ERR
//for level2
removeNamedItemNS:function(namespaceURI,localName){
var attr = this.getNamedItemNS(namespaceURI,localName);
_removeNamedNode(this._ownerElement,this,attr);
return attr;
},
getNamedItemNS: function(namespaceURI, localName) {
var i = this.length;
while(i--){
var node = this[i];
if(node.localName == localName && node.namespaceURI == namespaceURI){
return node;
}
}
return null;
}
};
/**
* @see http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#ID-102161490
*/
function DOMImplementation(/* Object */ features) {
this._features = {};
if (features) {
for (var feature in features) {
this._features = features[feature];
}
}
};
 
DOMImplementation.prototype = {
hasFeature: function(/* string */ feature, /* string */ version) {
var versions = this._features[feature.toLowerCase()];
if (versions && (!version || version in versions)) {
return true;
} else {
return false;
}
},
// Introduced in DOM Level 2:
createDocument:function(namespaceURI, qualifiedName, doctype){// raises:INVALID_CHARACTER_ERR,NAMESPACE_ERR,WRONG_DOCUMENT_ERR
var doc = new Document();
doc.implementation = this;
doc.childNodes = new NodeList();
doc.doctype = doctype;
if(doctype){
doc.appendChild(doctype);
}
if(qualifiedName){
var root = doc.createElementNS(namespaceURI,qualifiedName);
doc.appendChild(root);
}
return doc;
},
// Introduced in DOM Level 2:
createDocumentType:function(qualifiedName, publicId, systemId){// raises:INVALID_CHARACTER_ERR,NAMESPACE_ERR
var node = new DocumentType();
node.name = qualifiedName;
node.nodeName = qualifiedName;
node.publicId = publicId;
node.systemId = systemId;
// Introduced in DOM Level 2:
//readonly attribute DOMString internalSubset;
//TODO:..
// readonly attribute NamedNodeMap entities;
// readonly attribute NamedNodeMap notations;
return node;
}
};
 
 
/**
* @see http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1950641247
*/
 
function Node() {
};
 
Node.prototype = {
firstChild : null,
lastChild : null,
previousSibling : null,
nextSibling : null,
attributes : null,
parentNode : null,
childNodes : null,
ownerDocument : null,
nodeValue : null,
namespaceURI : null,
prefix : null,
localName : null,
// Modified in DOM Level 2:
insertBefore:function(newChild, refChild){//raises
return _insertBefore(this,newChild,refChild);
},
replaceChild:function(newChild, oldChild){//raises
this.insertBefore(newChild,oldChild);
if(oldChild){
this.removeChild(oldChild);
}
},
removeChild:function(oldChild){
return _removeChild(this,oldChild);
},
appendChild:function(newChild){
return this.insertBefore(newChild,null);
},
hasChildNodes:function(){
return this.firstChild != null;
},
cloneNode:function(deep){
return cloneNode(this.ownerDocument||this,this,deep);
},
// Modified in DOM Level 2:
normalize:function(){
var child = this.firstChild;
while(child){
var next = child.nextSibling;
if(next && next.nodeType == TEXT_NODE && child.nodeType == TEXT_NODE){
this.removeChild(next);
child.appendData(next.data);
}else{
child.normalize();
child = next;
}
}
},
// Introduced in DOM Level 2:
isSupported:function(feature, version){
return this.ownerDocument.implementation.hasFeature(feature,version);
},
// Introduced in DOM Level 2:
hasAttributes:function(){
return this.attributes.length>0;
},
lookupPrefix:function(namespaceURI){
var el = this;
while(el){
var map = el._nsMap;
//console.dir(map)
if(map){
for(var n in map){
if(map[n] == namespaceURI){
return n;
}
}
}
el = el.nodeType == ATTRIBUTE_NODE?el.ownerDocument : el.parentNode;
}
return null;
},
// Introduced in DOM Level 3:
lookupNamespaceURI:function(prefix){
var el = this;
while(el){
var map = el._nsMap;
//console.dir(map)
if(map){
if(prefix in map){
return map[prefix] ;
}
}
el = el.nodeType == ATTRIBUTE_NODE?el.ownerDocument : el.parentNode;
}
return null;
},
// Introduced in DOM Level 3:
isDefaultNamespace:function(namespaceURI){
var prefix = this.lookupPrefix(namespaceURI);
return prefix == null;
}
};
 
 
function _xmlEncoder(c){
return c == '<' && '&lt;' ||
c == '>' && '&gt;' ||
c == '&' && '&amp;' ||
c == '"' && '&quot;' ||
'&#'+c.charCodeAt()+';'
}
 
 
copy(NodeType,Node);
copy(NodeType,Node.prototype);
 
/**
* @param callback return true for continue,false for break
* @return boolean true: break visit;
*/
function _visitNode(node,callback){
if(callback(node)){
return true;
}
if(node = node.firstChild){
do{
if(_visitNode(node,callback)){return true}
}while(node=node.nextSibling)
}
}
 
 
 
function Document(){
}
function _onAddAttribute(doc,el,newAttr){
doc && doc._inc++;
var ns = newAttr.namespaceURI ;
if(ns == 'http://www.w3.org/2000/xmlns/'){
//update namespace
el._nsMap[newAttr.prefix?newAttr.localName:''] = newAttr.value
}
}
function _onRemoveAttribute(doc,el,newAttr,remove){
doc && doc._inc++;
var ns = newAttr.namespaceURI ;
if(ns == 'http://www.w3.org/2000/xmlns/'){
//update namespace
delete el._nsMap[newAttr.prefix?newAttr.localName:'']
}
}
function _onUpdateChild(doc,el,newChild){
if(doc && doc._inc){
doc._inc++;
//update childNodes
var cs = el.childNodes;
if(newChild){
cs[cs.length++] = newChild;
}else{
//console.log(1)
var child = el.firstChild;
var i = 0;
while(child){
cs[i++] = child;
child =child.nextSibling;
}
cs.length = i;
}
}
}
 
/**
* attributes;
* children;
*
* writeable properties:
* nodeValue,Attr:value,CharacterData:data
* prefix
*/
function _removeChild(parentNode,child){
var previous = child.previousSibling;
var next = child.nextSibling;
if(previous){
previous.nextSibling = next;
}else{
parentNode.firstChild = next
}
if(next){
next.previousSibling = previous;
}else{
parentNode.lastChild = previous;
}
_onUpdateChild(parentNode.ownerDocument,parentNode);
return child;
}
/**
* preformance key(refChild == null)
*/
function _insertBefore(parentNode,newChild,nextChild){
var cp = newChild.parentNode;
if(cp){
cp.removeChild(newChild);//remove and update
}
if(newChild.nodeType === DOCUMENT_FRAGMENT_NODE){
var newFirst = newChild.firstChild;
if (newFirst == null) {
return newChild;
}
var newLast = newChild.lastChild;
}else{
newFirst = newLast = newChild;
}
var pre = nextChild ? nextChild.previousSibling : parentNode.lastChild;
 
newFirst.previousSibling = pre;
newLast.nextSibling = nextChild;
if(pre){
pre.nextSibling = newFirst;
}else{
parentNode.firstChild = newFirst;
}
if(nextChild == null){
parentNode.lastChild = newLast;
}else{
nextChild.previousSibling = newLast;
}
do{
newFirst.parentNode = parentNode;
}while(newFirst !== newLast && (newFirst= newFirst.nextSibling))
_onUpdateChild(parentNode.ownerDocument||parentNode,parentNode);
//console.log(parentNode.lastChild.nextSibling == null)
if (newChild.nodeType == DOCUMENT_FRAGMENT_NODE) {
newChild.firstChild = newChild.lastChild = null;
}
return newChild;
}
function _appendSingleChild(parentNode,newChild){
var cp = newChild.parentNode;
if(cp){
var pre = parentNode.lastChild;
cp.removeChild(newChild);//remove and update
var pre = parentNode.lastChild;
}
var pre = parentNode.lastChild;
newChild.parentNode = parentNode;
newChild.previousSibling = pre;
newChild.nextSibling = null;
if(pre){
pre.nextSibling = newChild;
}else{
parentNode.firstChild = newChild;
}
parentNode.lastChild = newChild;
_onUpdateChild(parentNode.ownerDocument,parentNode,newChild);
return newChild;
//console.log("__aa",parentNode.lastChild.nextSibling == null)
}
Document.prototype = {
//implementation : null,
nodeName : '#document',
nodeType : DOCUMENT_NODE,
doctype : null,
documentElement : null,
_inc : 1,
insertBefore : function(newChild, refChild){//raises
if(newChild.nodeType == DOCUMENT_FRAGMENT_NODE){
var child = newChild.firstChild;
while(child){
var next = child.nextSibling;
this.insertBefore(child,refChild);
child = next;
}
return newChild;
}
if(this.documentElement == null && newChild.nodeType == ELEMENT_NODE){
this.documentElement = newChild;
}
return _insertBefore(this,newChild,refChild),(newChild.ownerDocument = this),newChild;
},
removeChild : function(oldChild){
if(this.documentElement == oldChild){
this.documentElement = null;
}
return _removeChild(this,oldChild);
},
// Introduced in DOM Level 2:
importNode : function(importedNode,deep){
return importNode(this,importedNode,deep);
},
// Introduced in DOM Level 2:
getElementById : function(id){
var rtv = null;
_visitNode(this.documentElement,function(node){
if(node.nodeType == ELEMENT_NODE){
if(node.getAttribute('id') == id){
rtv = node;
return true;
}
}
})
return rtv;
},
//document factory method:
createElement : function(tagName){
var node = new Element();
node.ownerDocument = this;
node.nodeName = tagName;
node.tagName = tagName;
node.childNodes = new NodeList();
var attrs = node.attributes = new NamedNodeMap();
attrs._ownerElement = node;
return node;
},
createDocumentFragment : function(){
var node = new DocumentFragment();
node.ownerDocument = this;
node.childNodes = new NodeList();
return node;
},
createTextNode : function(data){
var node = new Text();
node.ownerDocument = this;
node.appendData(data)
return node;
},
createComment : function(data){
var node = new Comment();
node.ownerDocument = this;
node.appendData(data)
return node;
},
createCDATASection : function(data){
var node = new CDATASection();
node.ownerDocument = this;
node.appendData(data)
return node;
},
createProcessingInstruction : function(target,data){
var node = new ProcessingInstruction();
node.ownerDocument = this;
node.tagName = node.target = target;
node.nodeValue= node.data = data;
return node;
},
createAttribute : function(name){
var node = new Attr();
node.ownerDocument = this;
node.name = name;
node.nodeName = name;
node.localName = name;
node.specified = true;
return node;
},
createEntityReference : function(name){
var node = new EntityReference();
node.ownerDocument = this;
node.nodeName = name;
return node;
},
// Introduced in DOM Level 2:
createElementNS : function(namespaceURI,qualifiedName){
var node = new Element();
var pl = qualifiedName.split(':');
var attrs = node.attributes = new NamedNodeMap();
node.childNodes = new NodeList();
node.ownerDocument = this;
node.nodeName = qualifiedName;
node.tagName = qualifiedName;
node.namespaceURI = namespaceURI;
if(pl.length == 2){
node.prefix = pl[0];
node.localName = pl[1];
}else{
//el.prefix = null;
node.localName = qualifiedName;
}
attrs._ownerElement = node;
return node;
},
// Introduced in DOM Level 2:
createAttributeNS : function(namespaceURI,qualifiedName){
var node = new Attr();
var pl = qualifiedName.split(':');
node.ownerDocument = this;
node.nodeName = qualifiedName;
node.name = qualifiedName;
node.namespaceURI = namespaceURI;
node.specified = true;
if(pl.length == 2){
node.prefix = pl[0];
node.localName = pl[1];
}else{
//el.prefix = null;
node.localName = qualifiedName;
}
return node;
}
};
_extends(Document,Node);
 
 
function Element() {
this._nsMap = {};
};
Element.prototype = {
nodeType : ELEMENT_NODE,
hasAttribute : function(name){
return this.getAttributeNode(name)!=null;
},
getAttribute : function(name){
var attr = this.getAttributeNode(name);
return attr && attr.value || '';
},
getAttributeNode : function(name){
return this.attributes.getNamedItem(name);
},
setAttribute : function(name, value){
var attr = this.ownerDocument.createAttribute(name);
attr.value = attr.nodeValue = "" + value;
this.setAttributeNode(attr)
},
removeAttribute : function(name){
var attr = this.getAttributeNode(name)
attr && this.removeAttributeNode(attr);
},
//four real opeartion method
appendChild:function(newChild){
if(newChild.nodeType === DOCUMENT_FRAGMENT_NODE){
return this.insertBefore(newChild,null);
}else{
return _appendSingleChild(this,newChild);
}
},
setAttributeNode : function(newAttr){
return this.attributes.setNamedItem(newAttr);
},
setAttributeNodeNS : function(newAttr){
return this.attributes.setNamedItemNS(newAttr);
},
removeAttributeNode : function(oldAttr){
//console.log(this == oldAttr.ownerElement)
return this.attributes.removeNamedItem(oldAttr.nodeName);
},
//get real attribute name,and remove it by removeAttributeNode
removeAttributeNS : function(namespaceURI, localName){
var old = this.getAttributeNodeNS(namespaceURI, localName);
old && this.removeAttributeNode(old);
},
hasAttributeNS : function(namespaceURI, localName){
return this.getAttributeNodeNS(namespaceURI, localName)!=null;
},
getAttributeNS : function(namespaceURI, localName){
var attr = this.getAttributeNodeNS(namespaceURI, localName);
return attr && attr.value || '';
},
setAttributeNS : function(namespaceURI, qualifiedName, value){
var attr = this.ownerDocument.createAttributeNS(namespaceURI, qualifiedName);
attr.value = attr.nodeValue = "" + value;
this.setAttributeNode(attr)
},
getAttributeNodeNS : function(namespaceURI, localName){
return this.attributes.getNamedItemNS(namespaceURI, localName);
},
getElementsByTagName : function(tagName){
return new LiveNodeList(this,function(base){
var ls = [];
_visitNode(base,function(node){
if(node !== base && node.nodeType == ELEMENT_NODE && (tagName === '*' || node.tagName == tagName)){
ls.push(node);
}
});
return ls;
});
},
getElementsByTagNameNS : function(namespaceURI, localName){
return new LiveNodeList(this,function(base){
var ls = [];
_visitNode(base,function(node){
if(node !== base && node.nodeType === ELEMENT_NODE && (namespaceURI === '*' || node.namespaceURI === namespaceURI) && (localName === '*' || node.localName == localName)){
ls.push(node);
}
});
return ls;
});
}
};
Document.prototype.getElementsByTagName = Element.prototype.getElementsByTagName;
Document.prototype.getElementsByTagNameNS = Element.prototype.getElementsByTagNameNS;
 
 
_extends(Element,Node);
function Attr() {
};
Attr.prototype.nodeType = ATTRIBUTE_NODE;
_extends(Attr,Node);
 
 
function CharacterData() {
};
CharacterData.prototype = {
data : '',
substringData : function(offset, count) {
return this.data.substring(offset, offset+count);
},
appendData: function(text) {
text = this.data+text;
this.nodeValue = this.data = text;
this.length = text.length;
},
insertData: function(offset,text) {
this.replaceData(offset,0,text);
},
appendChild:function(newChild){
throw new Error(ExceptionMessage[HIERARCHY_REQUEST_ERR])
},
deleteData: function(offset, count) {
this.replaceData(offset,count,"");
},
replaceData: function(offset, count, text) {
var start = this.data.substring(0,offset);
var end = this.data.substring(offset+count);
text = start + text + end;
this.nodeValue = this.data = text;
this.length = text.length;
}
}
_extends(CharacterData,Node);
function Text() {
};
Text.prototype = {
nodeName : "#text",
nodeType : TEXT_NODE,
splitText : function(offset) {
var text = this.data;
var newText = text.substring(offset);
text = text.substring(0, offset);
this.data = this.nodeValue = text;
this.length = text.length;
var newNode = this.ownerDocument.createTextNode(newText);
if(this.parentNode){
this.parentNode.insertBefore(newNode, this.nextSibling);
}
return newNode;
}
}
_extends(Text,CharacterData);
function Comment() {
};
Comment.prototype = {
nodeName : "#comment",
nodeType : COMMENT_NODE
}
_extends(Comment,CharacterData);
 
function CDATASection() {
};
CDATASection.prototype = {
nodeName : "#cdata-section",
nodeType : CDATA_SECTION_NODE
}
_extends(CDATASection,CharacterData);
 
 
function DocumentType() {
};
DocumentType.prototype.nodeType = DOCUMENT_TYPE_NODE;
_extends(DocumentType,Node);
 
function Notation() {
};
Notation.prototype.nodeType = NOTATION_NODE;
_extends(Notation,Node);
 
function Entity() {
};
Entity.prototype.nodeType = ENTITY_NODE;
_extends(Entity,Node);
 
function EntityReference() {
};
EntityReference.prototype.nodeType = ENTITY_REFERENCE_NODE;
_extends(EntityReference,Node);
 
function DocumentFragment() {
};
DocumentFragment.prototype.nodeName = "#document-fragment";
DocumentFragment.prototype.nodeType = DOCUMENT_FRAGMENT_NODE;
_extends(DocumentFragment,Node);
 
 
function ProcessingInstruction() {
}
ProcessingInstruction.prototype.nodeType = PROCESSING_INSTRUCTION_NODE;
_extends(ProcessingInstruction,Node);
function XMLSerializer(){}
XMLSerializer.prototype.serializeToString = function(node,isHtml,nodeFilter){
return nodeSerializeToString.call(node,isHtml,nodeFilter);
}
Node.prototype.toString = nodeSerializeToString;
function nodeSerializeToString(isHtml,nodeFilter){
var buf = [];
var refNode = this.nodeType == 9?this.documentElement:this;
var prefix = refNode.prefix;
var uri = refNode.namespaceURI;
if(uri && prefix == null){
//console.log(prefix)
var prefix = refNode.lookupPrefix(uri);
if(prefix == null){
//isHTML = true;
var visibleNamespaces=[
{namespace:uri,prefix:null}
//{namespace:uri,prefix:''}
]
}
}
serializeToString(this,buf,isHtml,nodeFilter,visibleNamespaces);
//console.log('###',this.nodeType,uri,prefix,buf.join(''))
return buf.join('');
}
function needNamespaceDefine(node,isHTML, visibleNamespaces) {
var prefix = node.prefix||'';
var uri = node.namespaceURI;
if (!prefix && !uri){
return false;
}
if (prefix === "xml" && uri === "http://www.w3.org/XML/1998/namespace"
|| uri == 'http://www.w3.org/2000/xmlns/'){
return false;
}
var i = visibleNamespaces.length
//console.log('@@@@',node.tagName,prefix,uri,visibleNamespaces)
while (i--) {
var ns = visibleNamespaces[i];
// get namespace prefix
//console.log(node.nodeType,node.tagName,ns.prefix,prefix)
if (ns.prefix == prefix){
return ns.namespace != uri;
}
}
//console.log(isHTML,uri,prefix=='')
//if(isHTML && prefix ==null && uri == 'http://www.w3.org/1999/xhtml'){
// return false;
//}
//node.flag = '11111'
//console.error(3,true,node.flag,node.prefix,node.namespaceURI)
return true;
}
function serializeToString(node,buf,isHTML,nodeFilter,visibleNamespaces){
if(nodeFilter){
node = nodeFilter(node);
if(node){
if(typeof node == 'string'){
buf.push(node);
return;
}
}else{
return;
}
//buf.sort.apply(attrs, attributeSorter);
}
switch(node.nodeType){
case ELEMENT_NODE:
if (!visibleNamespaces) visibleNamespaces = [];
var startVisibleNamespaces = visibleNamespaces.length;
var attrs = node.attributes;
var len = attrs.length;
var child = node.firstChild;
var nodeName = node.tagName;
isHTML = (htmlns === node.namespaceURI) ||isHTML
buf.push('<',nodeName);
for(var i=0;i<len;i++){
// add namespaces for attributes
var attr = attrs.item(i);
if (attr.prefix == 'xmlns') {
visibleNamespaces.push({ prefix: attr.localName, namespace: attr.value });
}else if(attr.nodeName == 'xmlns'){
visibleNamespaces.push({ prefix: '', namespace: attr.value });
}
}
for(var i=0;i<len;i++){
var attr = attrs.item(i);
if (needNamespaceDefine(attr,isHTML, visibleNamespaces)) {
var prefix = attr.prefix||'';
var uri = attr.namespaceURI;
var ns = prefix ? ' xmlns:' + prefix : " xmlns";
buf.push(ns, '="' , uri , '"');
visibleNamespaces.push({ prefix: prefix, namespace:uri });
}
serializeToString(attr,buf,isHTML,nodeFilter,visibleNamespaces);
}
// add namespace for current node
if (needNamespaceDefine(node,isHTML, visibleNamespaces)) {
var prefix = node.prefix||'';
var uri = node.namespaceURI;
var ns = prefix ? ' xmlns:' + prefix : " xmlns";
buf.push(ns, '="' , uri , '"');
visibleNamespaces.push({ prefix: prefix, namespace:uri });
}
if(child || isHTML && !/^(?:meta|link|img|br|hr|input)$/i.test(nodeName)){
buf.push('>');
//if is cdata child node
if(isHTML && /^script$/i.test(nodeName)){
while(child){
if(child.data){
buf.push(child.data);
}else{
serializeToString(child,buf,isHTML,nodeFilter,visibleNamespaces);
}
child = child.nextSibling;
}
}else
{
while(child){
serializeToString(child,buf,isHTML,nodeFilter,visibleNamespaces);
child = child.nextSibling;
}
}
buf.push('</',nodeName,'>');
}else{
buf.push('/>');
}
// remove added visible namespaces
//visibleNamespaces.length = startVisibleNamespaces;
return;
case DOCUMENT_NODE:
case DOCUMENT_FRAGMENT_NODE:
var child = node.firstChild;
while(child){
serializeToString(child,buf,isHTML,nodeFilter,visibleNamespaces);
child = child.nextSibling;
}
return;
case ATTRIBUTE_NODE:
return buf.push(' ',node.name,'="',node.value.replace(/[<&"]/g,_xmlEncoder),'"');
case TEXT_NODE:
return buf.push(node.data.replace(/[<&]/g,_xmlEncoder));
case CDATA_SECTION_NODE:
return buf.push( '<![CDATA[',node.data,']]>');
case COMMENT_NODE:
return buf.push( "<!--",node.data,"-->");
case DOCUMENT_TYPE_NODE:
var pubid = node.publicId;
var sysid = node.systemId;
buf.push('<!DOCTYPE ',node.name);
if(pubid){
buf.push(' PUBLIC "',pubid);
if (sysid && sysid!='.') {
buf.push( '" "',sysid);
}
buf.push('">');
}else if(sysid && sysid!='.'){
buf.push(' SYSTEM "',sysid,'">');
}else{
var sub = node.internalSubset;
if(sub){
buf.push(" [",sub,"]");
}
buf.push(">");
}
return;
case PROCESSING_INSTRUCTION_NODE:
return buf.push( "<?",node.target," ",node.data,"?>");
case ENTITY_REFERENCE_NODE:
return buf.push( '&',node.nodeName,';');
//case ENTITY_NODE:
//case NOTATION_NODE:
default:
buf.push('??',node.nodeName);
}
}
function importNode(doc,node,deep){
var node2;
switch (node.nodeType) {
case ELEMENT_NODE:
node2 = node.cloneNode(false);
node2.ownerDocument = doc;
//var attrs = node2.attributes;
//var len = attrs.length;
//for(var i=0;i<len;i++){
//node2.setAttributeNodeNS(importNode(doc,attrs.item(i),deep));
//}
case DOCUMENT_FRAGMENT_NODE:
break;
case ATTRIBUTE_NODE:
deep = true;
break;
//case ENTITY_REFERENCE_NODE:
//case PROCESSING_INSTRUCTION_NODE:
////case TEXT_NODE:
//case CDATA_SECTION_NODE:
//case COMMENT_NODE:
// deep = false;
// break;
//case DOCUMENT_NODE:
//case DOCUMENT_TYPE_NODE:
//cannot be imported.
//case ENTITY_NODE:
//case NOTATION_NODE:
//can not hit in level3
//default:throw e;
}
if(!node2){
node2 = node.cloneNode(false);//false
}
node2.ownerDocument = doc;
node2.parentNode = null;
if(deep){
var child = node.firstChild;
while(child){
node2.appendChild(importNode(doc,child,deep));
child = child.nextSibling;
}
}
return node2;
}
//
//var _relationMap = {firstChild:1,lastChild:1,previousSibling:1,nextSibling:1,
// attributes:1,childNodes:1,parentNode:1,documentElement:1,doctype,};
function cloneNode(doc,node,deep){
var node2 = new node.constructor();
for(var n in node){
var v = node[n];
if(typeof v != 'object' ){
if(v != node2[n]){
node2[n] = v;
}
}
}
if(node.childNodes){
node2.childNodes = new NodeList();
}
node2.ownerDocument = doc;
switch (node2.nodeType) {
case ELEMENT_NODE:
var attrs = node.attributes;
var attrs2 = node2.attributes = new NamedNodeMap();
var len = attrs.length
attrs2._ownerElement = node2;
for(var i=0;i<len;i++){
node2.setAttributeNode(cloneNode(doc,attrs.item(i),true));
}
break;;
case ATTRIBUTE_NODE:
deep = true;
}
if(deep){
var child = node.firstChild;
while(child){
node2.appendChild(cloneNode(doc,child,deep));
child = child.nextSibling;
}
}
return node2;
}
 
function __set__(object,key,value){
object[key] = value
}
//do dynamic
try{
if(Object.defineProperty){
Object.defineProperty(LiveNodeList.prototype,'length',{
get:function(){
_updateLiveList(this);
return this.$$length;
}
});
Object.defineProperty(Node.prototype,'textContent',{
get:function(){
return getTextContent(this);
},
set:function(data){
switch(this.nodeType){
case ELEMENT_NODE:
case DOCUMENT_FRAGMENT_NODE:
while(this.firstChild){
this.removeChild(this.firstChild);
}
if(data || String(data)){
this.appendChild(this.ownerDocument.createTextNode(data));
}
break;
default:
//TODO:
this.data = data;
this.value = data;
this.nodeValue = data;
}
}
})
function getTextContent(node){
switch(node.nodeType){
case ELEMENT_NODE:
case DOCUMENT_FRAGMENT_NODE:
var buf = [];
node = node.firstChild;
while(node){
if(node.nodeType!==7 && node.nodeType !==8){
buf.push(getTextContent(node));
}
node = node.nextSibling;
}
return buf.join('');
default:
return node.nodeValue;
}
}
__set__ = function(object,key,value){
//console.log(value)
object['$$'+key] = value
}
}
}catch(e){//ie8
}
 
//if(typeof require == 'function'){
exports.DOMImplementation = DOMImplementation;
exports.XMLSerializer = XMLSerializer;
//}
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/package.json
@@ -0,0 +1,139 @@
{
"_args": [
[
{
"raw": "xmldom@^0.1.19",
"scope": null,
"escapedName": "xmldom",
"name": "xmldom",
"rawSpec": "^0.1.19",
"spec": ">=0.1.19 <0.2.0",
"type": "range"
},
"/Users/evacomaroski/Documents/Development/corrade-nucleus-nucleons/bootstrap/001_bootstrap/bootstrap/node_modules/x2js"
]
],
"_from": "xmldom@>=0.1.19 <0.2.0",
"_id": "xmldom@0.1.27",
"_inCache": true,
"_location": "/xmldom",
"_nodeVersion": "5.5.0",
"_npmOperationalInternal": {
"host": "packages-12-west.internal.npmjs.com",
"tmp": "tmp/xmldom-0.1.27.tgz_1480305406093_0.9070004557725042"
},
"_npmUser": {
"name": "jindw",
"email": "jindw@xidea.org"
},
"_npmVersion": "3.3.12",
"_phantomChildren": {},
"_requested": {
"raw": "xmldom@^0.1.19",
"scope": null,
"escapedName": "xmldom",
"name": "xmldom",
"rawSpec": "^0.1.19",
"spec": ">=0.1.19 <0.2.0",
"type": "range"
},
"_requiredBy": [
"/x2js"
],
"_resolved": "http://grimore.org:4873/xmldom/-/xmldom-0.1.27.tgz",
"_shasum": "d501f97b3bdb403af8ef9ecc20573187aadac0e9",
"_shrinkwrap": null,
"_spec": "xmldom@^0.1.19",
"_where": "/Users/evacomaroski/Documents/Development/corrade-nucleus-nucleons/bootstrap/001_bootstrap/bootstrap/node_modules/x2js",
"author": {
"name": "jindw",
"email": "jindw@xidea.org",
"url": "http://www.xidea.org"
},
"bugs": {
"url": "http://github.com/jindw/xmldom/issues",
"email": "jindw@xidea.org"
},
"contributors": [
{
"name": "Yaron Naveh",
"email": "yaronn01@gmail.com",
"url": "http://webservices20.blogspot.com/"
},
{
"name": "Harutyun Amirjanyan",
"email": "amirjanyan@gmail.com",
"url": "https://github.com/nightwing"
},
{
"name": "Alan Gutierrez",
"email": "alan@prettyrobots.com",
"url": "http://www.prettyrobots.com/"
}
],
"dependencies": {},
"description": "A W3C Standard XML DOM(Level2 CORE) implementation and parser(DOMParser/XMLSerializer).",
"devDependencies": {
"proof": "0.0.28"
},
"directories": {},
"dist": {
"shasum": "d501f97b3bdb403af8ef9ecc20573187aadac0e9",
"tarball": "http://grimore.org:4873/xmldom/-/xmldom-0.1.27.tgz"
},
"engines": {
"node": ">=0.1"
},
"gitHead": "b53aa82a36160d85faab394035dcd1784764537f",
"homepage": "https://github.com/jindw/xmldom",
"keywords": [
"w3c",
"dom",
"xml",
"parser",
"javascript",
"DOMParser",
"XMLSerializer"
],
"licenses": [
{
"type": "LGPL",
"url": "http://www.gnu.org/licenses/lgpl.html",
"MIT": "http://opensource.org/licenses/MIT"
}
],
"main": "./dom-parser.js",
"maintainers": [
{
"name": "jindw",
"email": "jindw@xidea.org"
},
{
"name": "yaron",
"email": "yaronn01@gmail.com"
},
{
"name": "bigeasy",
"email": "alan@prettyrobots.com"
},
{
"name": "kethinov",
"email": "kethinov@gmail.com"
},
{
"name": "jinjinyun",
"email": "jinyun.jin@gmail.com"
}
],
"name": "xmldom",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git://github.com/jindw/xmldom.git"
},
"scripts": {
"test": "proof platform win32 && proof test */*/*.t.js || t/test"
},
"version": "0.1.27"
}
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/readme.md
@@ -0,0 +1,219 @@
# XMLDOM [![Build Status](https://secure.travis-ci.org/bigeasy/xmldom.png?branch=master)](http://travis-ci.org/bigeasy/xmldom) [![Coverage Status](https://coveralls.io/repos/bigeasy/xmldom/badge.png?branch=master)](https://coveralls.io/r/bigeasy/xmldom) [![NPM version](https://badge.fury.io/js/xmldom.png)](http://badge.fury.io/js/xmldom)
 
A JavaScript implementation of W3C DOM for Node.js, Rhino and the browser. Fully
compatible with `W3C DOM level2`; and some compatible with `level3`. Supports
`DOMParser` and `XMLSerializer` interface such as in browser.
 
Install:
-------
>npm install xmldom
 
Example:
====
```javascript
var DOMParser = require('xmldom').DOMParser;
var doc = new DOMParser().parseFromString(
'<xml xmlns="a" xmlns:c="./lite">\n'+
'\t<child>test</child>\n'+
'\t<child></child>\n'+
'\t<child/>\n'+
'</xml>'
,'text/xml');
doc.documentElement.setAttribute('x','y');
doc.documentElement.setAttributeNS('./lite','c:x','y2');
var nsAttr = doc.documentElement.getAttributeNS('./lite','x')
console.info(nsAttr)
console.info(doc)
```
API Reference
=====
 
* [DOMParser](https://developer.mozilla.org/en/DOMParser):
 
```javascript
parseFromString(xmlsource,mimeType)
```
* **options extension** _by xmldom_(not BOM standard!!)
 
```javascript
//added the options argument
new DOMParser(options)
//errorHandler is supported
new DOMParser({
/**
* locator is always need for error position info
*/
locator:{},
/**
* you can override the errorHandler for xml parser
* @link http://www.saxproject.org/apidoc/org/xml/sax/ErrorHandler.html
*/
errorHandler:{warning:function(w){console.warn(w)},error:callback,fatalError:callback}
//only callback model
//errorHandler:function(level,msg){console.log(level,msg)}
})
```
 
* [XMLSerializer](https://developer.mozilla.org/en/XMLSerializer)
```javascript
serializeToString(node)
```
DOM level2 method and attribute:
------
 
* [Node](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1950641247)
attribute:
nodeValue|prefix
readonly attribute:
nodeName|nodeType|parentNode|childNodes|firstChild|lastChild|previousSibling|nextSibling|attributes|ownerDocument|namespaceURI|localName
method:
insertBefore(newChild, refChild)
replaceChild(newChild, oldChild)
removeChild(oldChild)
appendChild(newChild)
hasChildNodes()
cloneNode(deep)
normalize()
isSupported(feature, version)
hasAttributes()
 
* [DOMImplementation](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-102161490)
method:
hasFeature(feature, version)
createDocumentType(qualifiedName, publicId, systemId)
createDocument(namespaceURI, qualifiedName, doctype)
 
* [Document](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#i-Document) : Node
readonly attribute:
doctype|implementation|documentElement
method:
createElement(tagName)
createDocumentFragment()
createTextNode(data)
createComment(data)
createCDATASection(data)
createProcessingInstruction(target, data)
createAttribute(name)
createEntityReference(name)
getElementsByTagName(tagname)
importNode(importedNode, deep)
createElementNS(namespaceURI, qualifiedName)
createAttributeNS(namespaceURI, qualifiedName)
getElementsByTagNameNS(namespaceURI, localName)
getElementById(elementId)
 
* [DocumentFragment](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-B63ED1A3) : Node
* [Element](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-745549614) : Node
readonly attribute:
tagName
method:
getAttribute(name)
setAttribute(name, value)
removeAttribute(name)
getAttributeNode(name)
setAttributeNode(newAttr)
removeAttributeNode(oldAttr)
getElementsByTagName(name)
getAttributeNS(namespaceURI, localName)
setAttributeNS(namespaceURI, qualifiedName, value)
removeAttributeNS(namespaceURI, localName)
getAttributeNodeNS(namespaceURI, localName)
setAttributeNodeNS(newAttr)
getElementsByTagNameNS(namespaceURI, localName)
hasAttribute(name)
hasAttributeNS(namespaceURI, localName)
 
* [Attr](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-637646024) : Node
attribute:
value
readonly attribute:
name|specified|ownerElement
 
* [NodeList](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-536297177)
readonly attribute:
length
method:
item(index)
* [NamedNodeMap](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1780488922)
 
readonly attribute:
length
method:
getNamedItem(name)
setNamedItem(arg)
removeNamedItem(name)
item(index)
getNamedItemNS(namespaceURI, localName)
setNamedItemNS(arg)
removeNamedItemNS(namespaceURI, localName)
* [CharacterData](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-FF21A306) : Node
method:
substringData(offset, count)
appendData(arg)
insertData(offset, arg)
deleteData(offset, count)
replaceData(offset, count, arg)
* [Text](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1312295772) : CharacterData
method:
splitText(offset)
* [CDATASection](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-667469212)
* [Comment](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-1728279322) : CharacterData
* [DocumentType](http://www.w3.org/TR/2000/REC-DOM-Level-2-Core-20001113/core.html#ID-412266927)
readonly attribute:
name|entities|notations|publicId|systemId|internalSubset
* Notation : Node
readonly attribute:
publicId|systemId
* Entity : Node
readonly attribute:
publicId|systemId|notationName
* EntityReference : Node
* ProcessingInstruction : Node
attribute:
data
readonly attribute:
target
DOM level 3 support:
-----
 
* [Node](http://www.w3.org/TR/DOM-Level-3-Core/core.html#Node3-textContent)
attribute:
textContent
method:
isDefaultNamespace(namespaceURI){
lookupNamespaceURI(prefix)
 
DOM extension by xmldom
---
* [Node] Source position extension;
attribute:
//Numbered starting from '1'
lineNumber
//Numbered starting from '1'
columnNumber
/bootstrap/001_bootstrap/bootstrap/node_modules/xmldom/sax.js
@@ -0,0 +1,633 @@
//[4] NameStartChar ::= ":" | [A-Z] | "_" | [a-z] | [#xC0-#xD6] | [#xD8-#xF6] | [#xF8-#x2FF] | [#x370-#x37D] | [#x37F-#x1FFF] | [#x200C-#x200D] | [#x2070-#x218F] | [#x2C00-#x2FEF] | [#x3001-#xD7FF] | [#xF900-#xFDCF] | [#xFDF0-#xFFFD] | [#x10000-#xEFFFF]
//[4a] NameChar ::= NameStartChar | "-" | "." | [0-9] | #xB7 | [#x0300-#x036F] | [#x203F-#x2040]
//[5] Name ::= NameStartChar (NameChar)*
var nameStartChar = /[A-Z_a-z\xC0-\xD6\xD8-\xF6\u00F8-\u02FF\u0370-\u037D\u037F-\u1FFF\u200C-\u200D\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD]///\u10000-\uEFFFF
var nameChar = new RegExp("[\\-\\.0-9"+nameStartChar.source.slice(1,-1)+"\\u00B7\\u0300-\\u036F\\u203F-\\u2040]");
var tagNamePattern = new RegExp('^'+nameStartChar.source+nameChar.source+'*(?:\:'+nameStartChar.source+nameChar.source+'*)?$');
//var tagNamePattern = /^[a-zA-Z_][\w\-\.]*(?:\:[a-zA-Z_][\w\-\.]*)?$/
//var handlers = 'resolveEntity,getExternalSubset,characters,endDocument,endElement,endPrefixMapping,ignorableWhitespace,processingInstruction,setDocumentLocator,skippedEntity,startDocument,startElement,startPrefixMapping,notationDecl,unparsedEntityDecl,error,fatalError,warning,attributeDecl,elementDecl,externalEntityDecl,internalEntityDecl,comment,endCDATA,endDTD,endEntity,startCDATA,startDTD,startEntity'.split(',')
 
//S_TAG, S_ATTR, S_EQ, S_ATTR_NOQUOT_VALUE
//S_ATTR_SPACE, S_ATTR_END, S_TAG_SPACE, S_TAG_CLOSE
var S_TAG = 0;//tag name offerring
var S_ATTR = 1;//attr name offerring
var S_ATTR_SPACE=2;//attr name end and space offer
var S_EQ = 3;//=space?
var S_ATTR_NOQUOT_VALUE = 4;//attr value(no quot value only)
var S_ATTR_END = 5;//attr value end and no space(quot end)
var S_TAG_SPACE = 6;//(attr value end || tag end ) && (space offer)
var S_TAG_CLOSE = 7;//closed el<el />
 
function XMLReader(){
}
 
XMLReader.prototype = {
parse:function(source,defaultNSMap,entityMap){
var domBuilder = this.domBuilder;
domBuilder.startDocument();
_copy(defaultNSMap ,defaultNSMap = {})
parse(source,defaultNSMap,entityMap,
domBuilder,this.errorHandler);
domBuilder.endDocument();
}
}
function parse(source,defaultNSMapCopy,entityMap,domBuilder,errorHandler){
function fixedFromCharCode(code) {
// String.prototype.fromCharCode does not supports
// > 2 bytes unicode chars directly
if (code > 0xffff) {
code -= 0x10000;
var surrogate1 = 0xd800 + (code >> 10)
, surrogate2 = 0xdc00 + (code & 0x3ff);
 
return String.fromCharCode(surrogate1, surrogate2);
} else {
return String.fromCharCode(code);
}
}
function entityReplacer(a){
var k = a.slice(1,-1);
if(k in entityMap){
return entityMap[k];
}else if(k.charAt(0) === '#'){
return fixedFromCharCode(parseInt(k.substr(1).replace('x','0x')))
}else{
errorHandler.error('entity not found:'+a);
return a;
}
}
function appendText(end){//has some bugs
if(end>start){
var xt = source.substring(start,end).replace(/&#?\w+;/g,entityReplacer);
locator&&position(start);
domBuilder.characters(xt,0,end-start);
start = end
}
}
function position(p,m){
while(p>=lineEnd && (m = linePattern.exec(source))){
lineStart = m.index;
lineEnd = lineStart + m[0].length;
locator.lineNumber++;
//console.log('line++:',locator,startPos,endPos)
}
locator.columnNumber = p-lineStart+1;
}
var lineStart = 0;
var lineEnd = 0;
var linePattern = /.*(?:\r\n?|\n)|.*$/g
var locator = domBuilder.locator;
var parseStack = [{currentNSMap:defaultNSMapCopy}]
var closeMap = {};
var start = 0;
while(true){
try{
var tagStart = source.indexOf('<',start);
if(tagStart<0){
if(!source.substr(start).match(/^\s*$/)){
var doc = domBuilder.doc;
var text = doc.createTextNode(source.substr(start));
doc.appendChild(text);
domBuilder.currentElement = text;
}
return;
}
if(tagStart>start){
appendText(tagStart);
}
switch(source.charAt(tagStart+1)){
case '/':
var end = source.indexOf('>',tagStart+3);
var tagName = source.substring(tagStart+2,end);
var config = parseStack.pop();
if(end<0){
tagName = source.substring(tagStart+2).replace(/[\s<].*/,'');
//console.error('#@@@@@@'+tagName)
errorHandler.error("end tag name: "+tagName+' is not complete:'+config.tagName);
end = tagStart+1+tagName.length;
}else if(tagName.match(/\s</)){
tagName = tagName.replace(/[\s<].*/,'');
errorHandler.error("end tag name: "+tagName+' maybe not complete');
end = tagStart+1+tagName.length;
}
//console.error(parseStack.length,parseStack)
//console.error(config);
var localNSMap = config.localNSMap;
var endMatch = config.tagName == tagName;
var endIgnoreCaseMach = endMatch || config.tagName&&config.tagName.toLowerCase() == tagName.toLowerCase()
if(endIgnoreCaseMach){
domBuilder.endElement(config.uri,config.localName,tagName);
if(localNSMap){
for(var prefix in localNSMap){
domBuilder.endPrefixMapping(prefix) ;
}
}
if(!endMatch){
errorHandler.fatalError("end tag name: "+tagName+' is not match the current start tagName:'+config.tagName );
}
}else{
parseStack.push(config)
}
end++;
break;
// end elment
case '?':// <?...?>
locator&&position(tagStart);
end = parseInstruction(source,tagStart,domBuilder);
break;
case '!':// <!doctype,<![CDATA,<!--
locator&&position(tagStart);
end = parseDCC(source,tagStart,domBuilder,errorHandler);
break;
default:
locator&&position(tagStart);
var el = new ElementAttributes();
var currentNSMap = parseStack[parseStack.length-1].currentNSMap;
//elStartEnd
var end = parseElementStartPart(source,tagStart,el,currentNSMap,entityReplacer,errorHandler);
var len = el.length;
if(!el.closed && fixSelfClosed(source,end,el.tagName,closeMap)){
el.closed = true;
if(!entityMap.nbsp){
errorHandler.warning('unclosed xml attribute');
}
}
if(locator && len){
var locator2 = copyLocator(locator,{});
//try{//attribute position fixed
for(var i = 0;i<len;i++){
var a = el[i];
position(a.offset);
a.locator = copyLocator(locator,{});
}
//}catch(e){console.error('@@@@@'+e)}
domBuilder.locator = locator2
if(appendElement(el,domBuilder,currentNSMap)){
parseStack.push(el)
}
domBuilder.locator = locator;
}else{
if(appendElement(el,domBuilder,currentNSMap)){
parseStack.push(el)
}
}
if(el.uri === 'http://www.w3.org/1999/xhtml' && !el.closed){
end = parseHtmlSpecialContent(source,end,el.tagName,entityReplacer,domBuilder)
}else{
end++;
}
}
}catch(e){
errorHandler.error('element parse error: '+e)
//errorHandler.error('element parse error: '+e);
end = -1;
//throw e;
}
if(end>start){
start = end;
}else{
//TODO: 这里有可能sax回退,有位置错误风险
appendText(Math.max(tagStart,start)+1);
}
}
}
function copyLocator(f,t){
t.lineNumber = f.lineNumber;
t.columnNumber = f.columnNumber;
return t;
}
 
/**
* @see #appendElement(source,elStartEnd,el,selfClosed,entityReplacer,domBuilder,parseStack);
* @return end of the elementStartPart(end of elementEndPart for selfClosed el)
*/
function parseElementStartPart(source,start,el,currentNSMap,entityReplacer,errorHandler){
var attrName;
var value;
var p = ++start;
var s = S_TAG;//status
while(true){
var c = source.charAt(p);
switch(c){
case '=':
if(s === S_ATTR){//attrName
attrName = source.slice(start,p);
s = S_EQ;
}else if(s === S_ATTR_SPACE){
s = S_EQ;
}else{
//fatalError: equal must after attrName or space after attrName
throw new Error('attribute equal must after attrName');
}
break;
case '\'':
case '"':
if(s === S_EQ || s === S_ATTR //|| s == S_ATTR_SPACE
){//equal
if(s === S_ATTR){
errorHandler.warning('attribute value must after "="')
attrName = source.slice(start,p)
}
start = p+1;
p = source.indexOf(c,start)
if(p>0){
value = source.slice(start,p).replace(/&#?\w+;/g,entityReplacer);
el.add(attrName,value,start-1);
s = S_ATTR_END;
}else{
//fatalError: no end quot match
throw new Error('attribute value no end \''+c+'\' match');
}
}else if(s == S_ATTR_NOQUOT_VALUE){
value = source.slice(start,p).replace(/&#?\w+;/g,entityReplacer);
//console.log(attrName,value,start,p)
el.add(attrName,value,start);
//console.dir(el)
errorHandler.warning('attribute "'+attrName+'" missed start quot('+c+')!!');
start = p+1;
s = S_ATTR_END
}else{
//fatalError: no equal before
throw new Error('attribute value must after "="');
}
break;
case '/':
switch(s){
case S_TAG:
el.setTagName(source.slice(start,p));
case S_ATTR_END:
case S_TAG_SPACE:
case S_TAG_CLOSE:
s =S_TAG_CLOSE;
el.closed = true;
case S_ATTR_NOQUOT_VALUE:
case S_ATTR:
case S_ATTR_SPACE:
break;
//case S_EQ:
default:
throw new Error("attribute invalid close char('/')")
}
break;
case ''://end document
//throw new Error('unexpected end of input')
errorHandler.error('unexpected end of input');
if(s == S_TAG){
el.setTagName(source.slice(start,p));
}
return p;
case '>':
switch(s){
case S_TAG:
el.setTagName(source.slice(start,p));
case S_ATTR_END:
case S_TAG_SPACE:
case S_TAG_CLOSE:
break;//normal
case S_ATTR_NOQUOT_VALUE://Compatible state
case S_ATTR:
value = source.slice(start,p);
if(value.slice(-1) === '/'){
el.closed = true;
value = value.slice(0,-1)
}
case S_ATTR_SPACE:
if(s === S_ATTR_SPACE){
value = attrName;
}
if(s == S_ATTR_NOQUOT_VALUE){
errorHandler.warning('attribute "'+value+'" missed quot(")!!');
el.add(attrName,value.replace(/&#?\w+;/g,entityReplacer),start)
}else{
if(currentNSMap[''] !== 'http://www.w3.org/1999/xhtml' || !value.match(/^(?:disabled|checked|selected)$/i)){
errorHandler.warning('attribute "'+value+'" missed value!! "'+value+'" instead!!')
}
el.add(value,value,start)
}
break;
case S_EQ:
throw new Error('attribute value missed!!');
}
// console.log(tagName,tagNamePattern,tagNamePattern.test(tagName))
return p;
/*xml space '\x20' | #x9 | #xD | #xA; */
case '\u0080':
c = ' ';
default:
if(c<= ' '){//space
switch(s){
case S_TAG:
el.setTagName(source.slice(start,p));//tagName
s = S_TAG_SPACE;
break;
case S_ATTR:
attrName = source.slice(start,p)
s = S_ATTR_SPACE;
break;
case S_ATTR_NOQUOT_VALUE:
var value = source.slice(start,p).replace(/&#?\w+;/g,entityReplacer);
errorHandler.warning('attribute "'+value+'" missed quot(")!!');
el.add(attrName,value,start)
case S_ATTR_END:
s = S_TAG_SPACE;
break;
//case S_TAG_SPACE:
//case S_EQ:
//case S_ATTR_SPACE:
// void();break;
//case S_TAG_CLOSE:
//ignore warning
}
}else{//not space
//S_TAG, S_ATTR, S_EQ, S_ATTR_NOQUOT_VALUE
//S_ATTR_SPACE, S_ATTR_END, S_TAG_SPACE, S_TAG_CLOSE
switch(s){
//case S_TAG:void();break;
//case S_ATTR:void();break;
//case S_ATTR_NOQUOT_VALUE:void();break;
case S_ATTR_SPACE:
var tagName = el.tagName;
if(currentNSMap[''] !== 'http://www.w3.org/1999/xhtml' || !attrName.match(/^(?:disabled|checked|selected)$/i)){
errorHandler.warning('attribute "'+attrName+'" missed value!! "'+attrName+'" instead2!!')
}
el.add(attrName,attrName,start);
start = p;
s = S_ATTR;
break;
case S_ATTR_END:
errorHandler.warning('attribute space is required"'+attrName+'"!!')
case S_TAG_SPACE:
s = S_ATTR;
start = p;
break;
case S_EQ:
s = S_ATTR_NOQUOT_VALUE;
start = p;
break;
case S_TAG_CLOSE:
throw new Error("elements closed character '/' and '>' must be connected to");
}
}
}//end outer switch
//console.log('p++',p)
p++;
}
}
/**
* @return true if has new namespace define
*/
function appendElement(el,domBuilder,currentNSMap){
var tagName = el.tagName;
var localNSMap = null;
//var currentNSMap = parseStack[parseStack.length-1].currentNSMap;
var i = el.length;
while(i--){
var a = el[i];
var qName = a.qName;
var value = a.value;
var nsp = qName.indexOf(':');
if(nsp>0){
var prefix = a.prefix = qName.slice(0,nsp);
var localName = qName.slice(nsp+1);
var nsPrefix = prefix === 'xmlns' && localName
}else{
localName = qName;
prefix = null
nsPrefix = qName === 'xmlns' && ''
}
//can not set prefix,because prefix !== ''
a.localName = localName ;
//prefix == null for no ns prefix attribute
if(nsPrefix !== false){//hack!!
if(localNSMap == null){
localNSMap = {}
//console.log(currentNSMap,0)
_copy(currentNSMap,currentNSMap={})
//console.log(currentNSMap,1)
}
currentNSMap[nsPrefix] = localNSMap[nsPrefix] = value;
a.uri = 'http://www.w3.org/2000/xmlns/'
domBuilder.startPrefixMapping(nsPrefix, value)
}
}
var i = el.length;
while(i--){
a = el[i];
var prefix = a.prefix;
if(prefix){//no prefix attribute has no namespace
if(prefix === 'xml'){
a.uri = 'http://www.w3.org/XML/1998/namespace';
}if(prefix !== 'xmlns'){
a.uri = currentNSMap[prefix || '']
//{console.log('###'+a.qName,domBuilder.locator.systemId+'',currentNSMap,a.uri)}
}
}
}
var nsp = tagName.indexOf(':');
if(nsp>0){
prefix = el.prefix = tagName.slice(0,nsp);
localName = el.localName = tagName.slice(nsp+1);
}else{
prefix = null;//important!!
localName = el.localName = tagName;
}
//no prefix element has default namespace
var ns = el.uri = currentNSMap[prefix || ''];
domBuilder.startElement(ns,localName,tagName,el);
//endPrefixMapping and startPrefixMapping have not any help for dom builder
//localNSMap = null
if(el.closed){
domBuilder.endElement(ns,localName,tagName);
if(localNSMap){
for(prefix in localNSMap){
domBuilder.endPrefixMapping(prefix)
}
}
}else{
el.currentNSMap = currentNSMap;
el.localNSMap = localNSMap;
//parseStack.push(el);
return true;
}
}
function parseHtmlSpecialContent(source,elStartEnd,tagName,entityReplacer,domBuilder){
if(/^(?:script|textarea)$/i.test(tagName)){
var elEndStart = source.indexOf('</'+tagName+'>',elStartEnd);
var text = source.substring(elStartEnd+1,elEndStart);
if(/[&<]/.test(text)){
if(/^script$/i.test(tagName)){
//if(!/\]\]>/.test(text)){
//lexHandler.startCDATA();
domBuilder.characters(text,0,text.length);
//lexHandler.endCDATA();
return elEndStart;
//}
}//}else{//text area
text = text.replace(/&#?\w+;/g,entityReplacer);
domBuilder.characters(text,0,text.length);
return elEndStart;
//}
}
}
return elStartEnd+1;
}
function fixSelfClosed(source,elStartEnd,tagName,closeMap){
//if(tagName in closeMap){
var pos = closeMap[tagName];
if(pos == null){
//console.log(tagName)
pos = source.lastIndexOf('</'+tagName+'>')
if(pos<elStartEnd){//忘记闭合
pos = source.lastIndexOf('</'+tagName)
}
closeMap[tagName] =pos
}
return pos<elStartEnd;
//}
}
function _copy(source,target){
for(var n in source){target[n] = source[n]}
}
function parseDCC(source,start,domBuilder,errorHandler){//sure start with '<!'
var next= source.charAt(start+2)
switch(next){
case '-':
if(source.charAt(start + 3) === '-'){
var end = source.indexOf('-->',start+4);
//append comment source.substring(4,end)//<!--
if(end>start){
domBuilder.comment(source,start+4,end-start-4);
return end+3;
}else{
errorHandler.error("Unclosed comment");
return -1;
}
}else{
//error
return -1;
}
default:
if(source.substr(start+3,6) == 'CDATA['){
var end = source.indexOf(']]>',start+9);
domBuilder.startCDATA();
domBuilder.characters(source,start+9,end-start-9);
domBuilder.endCDATA()
return end+3;
}
//<!DOCTYPE
//startDTD(java.lang.String name, java.lang.String publicId, java.lang.String systemId)
var matchs = split(source,start);
var len = matchs.length;
if(len>1 && /!doctype/i.test(matchs[0][0])){
var name = matchs[1][0];
var pubid = len>3 && /^public$/i.test(matchs[2][0]) && matchs[3][0]
var sysid = len>4 && matchs[4][0];
var lastMatch = matchs[len-1]
domBuilder.startDTD(name,pubid && pubid.replace(/^(['"])(.*?)\1$/,'$2'),
sysid && sysid.replace(/^(['"])(.*?)\1$/,'$2'));
domBuilder.endDTD();
return lastMatch.index+lastMatch[0].length
}
}
return -1;
}
 
 
 
function parseInstruction(source,start,domBuilder){
var end = source.indexOf('?>',start);
if(end){
var match = source.substring(start,end).match(/^<\?(\S*)\s*([\s\S]*?)\s*$/);
if(match){
var len = match[0].length;
domBuilder.processingInstruction(match[1], match[2]) ;
return end+2;
}else{//error
return -1;
}
}
return -1;
}
 
/**
* @param source
*/
function ElementAttributes(source){
}
ElementAttributes.prototype = {
setTagName:function(tagName){
if(!tagNamePattern.test(tagName)){
throw new Error('invalid tagName:'+tagName)
}
this.tagName = tagName
},
add:function(qName,value,offset){
if(!tagNamePattern.test(qName)){
throw new Error('invalid attribute:'+qName)
}
this[this.length++] = {qName:qName,value:value,offset:offset}
},
length:0,
getLocalName:function(i){return this[i].localName},
getLocator:function(i){return this[i].locator},
getQName:function(i){return this[i].qName},
getURI:function(i){return this[i].uri},
getValue:function(i){return this[i].value}
// ,getIndex:function(uri, localName)){
// if(localName){
//
// }else{
// var qName = uri
// }
// },
// getValue:function(){return this.getValue(this.getIndex.apply(this,arguments))},
// getType:function(uri,localName){}
// getType:function(i){},
}
 
 
 
 
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){
var match;
var buf = [];
var reg = /'[^']+'|"[^"]+"|[^\s<>\/=]+=?|(\/?\s*>|<)/g;
reg.lastIndex = start;
reg.exec(source);//skip <
while(match = reg.exec(source)){
buf.push(match);
if(match[1])return buf;
}
}
 
exports.XMLReader = XMLReader;