├── .gitignore ├── LICENSE ├── README.md ├── browser-code ├── .gitignore ├── ccda-to-json.js ├── example.xml └── test.html ├── ccda ├── ccd.js ├── cleanup.js ├── common.js ├── component.js ├── import.js ├── oids.js ├── parser.js └── processor.js ├── index.js ├── npm-shrinkwrap.json └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/README.md -------------------------------------------------------------------------------- /browser-code/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /browser-code/ccda-to-json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/browser-code/ccda-to-json.js -------------------------------------------------------------------------------- /browser-code/example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/browser-code/example.xml -------------------------------------------------------------------------------- /browser-code/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/browser-code/test.html -------------------------------------------------------------------------------- /ccda/ccd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/ccd.js -------------------------------------------------------------------------------- /ccda/cleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/cleanup.js -------------------------------------------------------------------------------- /ccda/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/common.js -------------------------------------------------------------------------------- /ccda/component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/component.js -------------------------------------------------------------------------------- /ccda/import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/import.js -------------------------------------------------------------------------------- /ccda/oids.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/oids.js -------------------------------------------------------------------------------- /ccda/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/parser.js -------------------------------------------------------------------------------- /ccda/processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/ccda/processor.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/index.js -------------------------------------------------------------------------------- /npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/npm-shrinkwrap.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jmandel/ccda-to-json/HEAD/package.json --------------------------------------------------------------------------------